/* * Copyright (c) 2018-2020 Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "../secmon_error.hpp" #include "secmon_smc_device_unique_data.hpp" namespace ams::secmon::smc { namespace { constexpr inline size_t DeviceUniqueDataIvSize = se::AesBlockSize; constexpr inline size_t DeviceUniqueDataMacSize = se::AesBlockSize; constexpr inline size_t DeviceUniqueDataDeviceIdSize = sizeof(u64); constexpr inline size_t DeviceUniqueDataPaddingSize = se::AesBlockSize - DeviceUniqueDataDeviceIdSize; constexpr inline size_t DeviceUniqueDataOuterMetaSize = DeviceUniqueDataIvSize; constexpr inline size_t DeviceUniqueDataInnerMetaSize = DeviceUniqueDataMacSize + DeviceUniqueDataDeviceIdSize + DeviceUniqueDataPaddingSize; constexpr inline size_t DeviceUniqueDataTotalMetaSize = DeviceUniqueDataOuterMetaSize + DeviceUniqueDataInnerMetaSize; void PrepareDeviceUniqueDataKey(const void *seal_key_source, size_t seal_key_source_size, const void *access_key, size_t access_key_size, const void *key_source, size_t key_source_size) { /* Derive the seal key. */ se::SetEncryptedAesKey128(pkg1::AesKeySlot_Smc, pkg1::AesKeySlot_RandomForUserWrap, seal_key_source, seal_key_source_size); /* Derive the device unique data kek. */ se::SetEncryptedAesKey128(pkg1::AesKeySlot_Smc, pkg1::AesKeySlot_Smc, access_key, access_key_size); /* Derive the actual device unique data key. */ se::SetEncryptedAesKey128(pkg1::AesKeySlot_Smc, pkg1::AesKeySlot_Smc, key_source, key_source_size); } void ComputeGmac(void *dst, size_t dst_size, const void *data, size_t data_size, const void *iv, size_t iv_size) { /* Declare keyslot (as encryptor will need to take it by pointer/reference). */ constexpr int Slot = pkg1::AesKeySlot_Smc; /* Calculate the mac. */ crypto::Aes128GcmEncryptor gcm; gcm.Initialize(std::addressof(Slot), sizeof(Slot), iv, iv_size); gcm.UpdateAad(data, data_size); gcm.GetMac(dst, dst_size); } constexpr u64 GetDeviceIdLow(u64 device_id) { /* Mask out the top byte. */ constexpr u64 ByteMask = (static_cast(1) << BITSIZEOF(u8)) - 1; constexpr u64 LowMask = ~(ByteMask << (BITSIZEOF(u64) - BITSIZEOF(u8))); return device_id & LowMask; } constexpr u8 GetDeviceIdHigh(u64 device_id) { /* Get the top byte. */ return static_cast(device_id >> (BITSIZEOF(u64) - BITSIZEOF(u8))); } } bool DecryptDeviceUniqueData(void *dst, size_t dst_size, u8 *out_device_id_high, const void *seal_key_source, size_t seal_key_source_size, const void *access_key, size_t access_key_size, const void *key_source, size_t key_source_size, const void *src, size_t src_size) { /* Determine how much decrypted data there will be. */ const size_t enc_size = src_size - DeviceUniqueDataInnerMetaSize; const size_t dec_size = src_size - DeviceUniqueDataOuterMetaSize; /* Ensure that our sizes are allowed. */ AMS_ABORT_UNLESS(src_size > DeviceUniqueDataTotalMetaSize); AMS_ABORT_UNLESS(dst_size >= enc_size); /* Determine the extents of the data. */ const u8 * const iv = static_cast(src); const u8 * const enc = iv + DeviceUniqueDataIvSize; const u8 * const mac = enc + enc_size; /* Decrypt the data. */ { /* Declare temporaries. */ u8 temp_iv[DeviceUniqueDataIvSize]; u8 calc_mac[DeviceUniqueDataMacSize]; ON_SCOPE_EXIT { crypto::ClearMemory(temp_iv, sizeof(temp_iv)); crypto::ClearMemory(calc_mac, sizeof(calc_mac)); }; /* Prepare the key used to decrypt the data. */ PrepareDeviceUniqueDataKey(seal_key_source, seal_key_source_size, access_key, access_key_size, key_source, key_source_size); /* Copy the iv to stack. */ std::memcpy(temp_iv, iv, sizeof(temp_iv)); /* Decrypt the data. */ se::ComputeAes128Ctr(dst, dst_size, pkg1::AesKeySlot_Smc, enc, enc_size, temp_iv, DeviceUniqueDataIvSize); /* Compute the gmac. */ ComputeGmac(calc_mac, DeviceUniqueDataMacSize, dst, enc_size, temp_iv, DeviceUniqueDataIvSize); /* Validate the gmac. */ if (!crypto::IsSameBytes(mac, calc_mac, sizeof(calc_mac))) { return false; } } /* Validate device id, output device id if needed. */ { /* Locate the device id in the decryption output. */ const u8 * const padding = static_cast(dst) + dec_size; const u8 * const device_id = padding + DeviceUniqueDataPaddingSize; /* Load the big endian device id. */ const u64 device_id_val = util::LoadBigEndian(static_cast(static_cast(device_id))); /* Validate that the device id low matches the value in fuses. */ if (GetDeviceIdLow(device_id_val) != fuse::GetDeviceId()) { return false; } /* Set the output device id high, if needed. */ if (out_device_id_high != nullptr) { *out_device_id_high = GetDeviceIdHigh(device_id_val); } } return true; } }