mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[Crypto] Slightly more robust error handling
This commit is contained in:
parent
0494ca0064
commit
3cf8427670
5 changed files with 41 additions and 34 deletions
|
@ -11,11 +11,10 @@
|
||||||
|
|
||||||
namespace Crypto {
|
namespace Crypto {
|
||||||
constexpr std::size_t AesKeySize = 0x10;
|
constexpr std::size_t AesKeySize = 0x10;
|
||||||
|
using AESKey = std::array<u8, AesKeySize>;
|
||||||
|
|
||||||
using AESKey = std::array<uint8_t, AesKeySize>;
|
template <std::size_t N>
|
||||||
|
static std::array<u8, N> rolArray(const std::array<u8, N>& value, std::size_t bits) {
|
||||||
template<std::size_t N>
|
|
||||||
static std::array<uint8_t, N> rolArray(const std::array<uint8_t, N>& value, std::size_t bits) {
|
|
||||||
const auto bitWidth = N * CHAR_BIT;
|
const auto bitWidth = N * CHAR_BIT;
|
||||||
|
|
||||||
bits %= bitWidth;
|
bits %= bitWidth;
|
||||||
|
@ -23,7 +22,7 @@ namespace Crypto {
|
||||||
const auto byteShift = bits / CHAR_BIT;
|
const auto byteShift = bits / CHAR_BIT;
|
||||||
const auto bitShift = bits % CHAR_BIT;
|
const auto bitShift = bits % CHAR_BIT;
|
||||||
|
|
||||||
std::array<uint8_t, N> result;
|
std::array<u8, N> result;
|
||||||
|
|
||||||
for (std::size_t i = 0; i < N; i++) {
|
for (std::size_t i = 0; i < N; i++) {
|
||||||
result[i] = ((value[(i + byteShift) % N] << bitShift) | (value[(i + byteShift + 1) % N] >> (CHAR_BIT - bitShift))) & UINT8_MAX;
|
result[i] = ((value[(i + byteShift) % N] << bitShift) | (value[(i + byteShift + 1) % N] >> (CHAR_BIT - bitShift))) & UINT8_MAX;
|
||||||
|
@ -32,24 +31,24 @@ namespace Crypto {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<std::size_t N>
|
template <std::size_t N>
|
||||||
static std::array<uint8_t, N> addArray(const std::array<uint8_t, N>& a, const std::array<uint8_t, N>& b) {
|
static std::array<u8, N> addArray(const std::array<u8, N>& a, const std::array<u8, N>& b) {
|
||||||
std::array<uint8_t, N> result;
|
std::array<u8, N> result;
|
||||||
std::size_t sum = 0;
|
std::size_t sum = 0;
|
||||||
std::size_t carry = 0;
|
std::size_t carry = 0;
|
||||||
|
|
||||||
for (std::int64_t i = N - 1; i >= 0; i--) {
|
for (std::int64_t i = N - 1; i >= 0; i--) {
|
||||||
sum = a[i] + b[i] + carry;
|
sum = a[i] + b[i] + carry;
|
||||||
carry = sum >> CHAR_BIT;
|
carry = sum >> CHAR_BIT;
|
||||||
result[i] = static_cast<std::uint8_t>(sum & UINT8_MAX);
|
result[i] = static_cast<u8>(sum & UINT8_MAX);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<std::size_t N>
|
template <std::size_t N>
|
||||||
static std::array<uint8_t, N> xorArray(const std::array<uint8_t, N>& a, const std::array<uint8_t, N>& b) {
|
static std::array<u8, N> xorArray(const std::array<u8, N>& a, const std::array<u8, N>& b) {
|
||||||
std::array<uint8_t, N> result;
|
std::array<u8, N> result;
|
||||||
|
|
||||||
for (std::size_t i = 0; i < N; i++) {
|
for (std::size_t i = 0; i < N; i++) {
|
||||||
result[i] = a[i] ^ b[i];
|
result[i] = a[i] ^ b[i];
|
||||||
|
@ -65,16 +64,16 @@ namespace Crypto {
|
||||||
|
|
||||||
AESKey rawKey;
|
AESKey rawKey;
|
||||||
for (std::size_t i = 0; i < rawKey.size(); i++) {
|
for (std::size_t i = 0; i < rawKey.size(); i++) {
|
||||||
rawKey[i] = static_cast<uint8_t>(std::stoi(hex.substr(i * 2, 2), 0, 16));
|
rawKey[i] = static_cast<u8>(std::stoi(hex.substr(i * 2, 2), 0, 16));
|
||||||
}
|
}
|
||||||
|
|
||||||
return rawKey;
|
return rawKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct AESKeySlot {
|
struct AESKeySlot {
|
||||||
std::optional<AESKey> keyX{std::nullopt};
|
std::optional<AESKey> keyX = std::nullopt;
|
||||||
std::optional<AESKey> keyY{std::nullopt};
|
std::optional<AESKey> keyY = std::nullopt;
|
||||||
std::optional<AESKey> normalKey{std::nullopt};
|
std::optional<AESKey> normalKey = std::nullopt;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum KeySlotId : std::size_t {
|
enum KeySlotId : std::size_t {
|
||||||
|
@ -88,8 +87,9 @@ namespace Crypto {
|
||||||
private:
|
private:
|
||||||
constexpr static std::size_t AesKeySlotCount = 0x40;
|
constexpr static std::size_t AesKeySlotCount = 0x40;
|
||||||
|
|
||||||
std::optional<AESKey> m_generator;
|
std::optional<AESKey> m_generator = std::nullopt;
|
||||||
std::array<AESKeySlot, AesKeySlotCount> m_slots;
|
std::array<AESKeySlot, AesKeySlotCount> m_slots;
|
||||||
|
bool keysLoaded = false;
|
||||||
|
|
||||||
constexpr void updateNormalKey(std::size_t slotId) {
|
constexpr void updateNormalKey(std::size_t slotId) {
|
||||||
if (m_generator.has_value() && hasKeyX(slotId) && hasKeyY(slotId)) {
|
if (m_generator.has_value() && hasKeyX(slotId) && hasKeyY(slotId)) {
|
||||||
|
@ -103,8 +103,8 @@ namespace Crypto {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
AESEngine() {}
|
AESEngine() {}
|
||||||
|
|
||||||
void loadKeys(const std::filesystem::path& path);
|
void loadKeys(const std::filesystem::path& path);
|
||||||
|
bool haveKeys() { return keysLoaded; }
|
||||||
|
|
||||||
constexpr bool hasKeyX(std::size_t slotId) {
|
constexpr bool hasKeyX(std::size_t slotId) {
|
||||||
if (slotId >= AesKeySlotCount) {
|
if (slotId >= AesKeySlotCount) {
|
||||||
|
@ -121,7 +121,6 @@ namespace Crypto {
|
||||||
constexpr void setKeyX(std::size_t slotId, const AESKey &key) {
|
constexpr void setKeyX(std::size_t slotId, const AESKey &key) {
|
||||||
if (slotId < AesKeySlotCount) {
|
if (slotId < AesKeySlotCount) {
|
||||||
m_slots.at(slotId).keyX = key;
|
m_slots.at(slotId).keyX = key;
|
||||||
|
|
||||||
updateNormalKey(slotId);
|
updateNormalKey(slotId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,7 +140,6 @@ namespace Crypto {
|
||||||
constexpr void setKeyY(std::size_t slotId, const AESKey &key) {
|
constexpr void setKeyY(std::size_t slotId, const AESKey &key) {
|
||||||
if (slotId < AesKeySlotCount) {
|
if (slotId < AesKeySlotCount) {
|
||||||
m_slots.at(slotId).keyY = key;
|
m_slots.at(slotId).keyY = key;
|
||||||
|
|
||||||
updateNormalKey(slotId);
|
updateNormalKey(slotId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,13 +9,12 @@ namespace Crypto {
|
||||||
std::ifstream file(path, std::ios::in);
|
std::ifstream file(path, std::ios::in);
|
||||||
|
|
||||||
if (file.fail()) {
|
if (file.fail()) {
|
||||||
Helpers::warn("keys: Couldn't read key file: %s", path.c_str());
|
Helpers::warn("Keys: Couldn't read key file: %s", path.c_str());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!file.eof()) {
|
while (!file.eof()) {
|
||||||
std::string line;
|
std::string line;
|
||||||
|
|
||||||
std::getline(file, line);
|
std::getline(file, line);
|
||||||
|
|
||||||
// Skip obvious invalid lines
|
// Skip obvious invalid lines
|
||||||
|
@ -24,9 +23,8 @@ namespace Crypto {
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto parts = Helpers::split(line, '=');
|
const auto parts = Helpers::split(line, '=');
|
||||||
|
|
||||||
if (parts.size() != 2) {
|
if (parts.size() != 2) {
|
||||||
Helpers::warn("keys: Failed to parse %s", line.c_str());
|
Helpers::warn("Keys: Failed to parse %s", line.c_str());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,16 +35,15 @@ namespace Crypto {
|
||||||
char keyType;
|
char keyType;
|
||||||
|
|
||||||
bool is_generator = name == "generator";
|
bool is_generator = name == "generator";
|
||||||
|
|
||||||
if (!is_generator && std::sscanf(name.c_str(), "slot0x%zXKey%c", &slotId, &keyType) != 2) {
|
if (!is_generator && std::sscanf(name.c_str(), "slot0x%zXKey%c", &slotId, &keyType) != 2) {
|
||||||
Helpers::warn("keys: Ignoring unknown key %s", name.c_str());
|
Helpers::warn("Keys: Ignoring unknown key %s", name.c_str());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto key = createKeyFromHex(rawKeyHex);
|
auto key = createKeyFromHex(rawKeyHex);
|
||||||
|
|
||||||
if (!key.has_value()) {
|
if (!key.has_value()) {
|
||||||
Helpers::warn("keys: Failed to parse raw key %s", rawKeyHex.c_str());
|
Helpers::warn("Keys: Failed to parse raw key %s", rawKeyHex.c_str());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,7 +53,7 @@ namespace Crypto {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (slotId >= AesKeySlotCount) {
|
if (slotId >= AesKeySlotCount) {
|
||||||
Helpers::warn("keys: Invalid key slot id %u", slotId);
|
Helpers::warn("Keys: Invalid key slot id %u", slotId);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +68,7 @@ namespace Crypto {
|
||||||
setNormalKey(slotId, key.value());
|
setNormalKey(slotId, key.value());
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
Helpers::warn("keys: Invalid key type %c", keyType);
|
Helpers::warn("Keys: Invalid key type %c", keyType);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -80,5 +77,7 @@ namespace Crypto {
|
||||||
for (std::size_t i = 0; i < AesKeySlotCount; i++) {
|
for (std::size_t i = 0; i < AesKeySlotCount; i++) {
|
||||||
updateNormalKey(i);
|
updateNormalKey(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
keysLoaded = true;
|
||||||
}
|
}
|
||||||
};
|
};
|
|
@ -54,6 +54,14 @@ bool NCCH::loadFromHeader(Crypto::AESEngine &aesEngine, IOFile& file, const FSIn
|
||||||
romFS.hashRegionSize = u64(*(u32*)&header[0x1B8]) * mediaUnit;
|
romFS.hashRegionSize = u64(*(u32*)&header[0x1B8]) * mediaUnit;
|
||||||
|
|
||||||
if (encrypted) {
|
if (encrypted) {
|
||||||
|
if (!aesEngine.haveKeys()) {
|
||||||
|
Helpers::panic(
|
||||||
|
"Loaded an encrypted ROM but AES keys don't seem to have been provided correctly! Navigate to the emulator's\n"
|
||||||
|
"app data folder and make sure you have a sysdata directory with a file called aes_keys.txt which contains your keys!"
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
Crypto::AESKey primaryKeyY;
|
Crypto::AESKey primaryKeyY;
|
||||||
Crypto::AESKey secondaryKeyY;
|
Crypto::AESKey secondaryKeyY;
|
||||||
std::memcpy(primaryKeyY.data(), header, primaryKeyY.size());
|
std::memcpy(primaryKeyY.data(), header, primaryKeyY.size());
|
||||||
|
|
|
@ -137,15 +137,17 @@ bool Emulator::loadROM(const std::filesystem::path& path) {
|
||||||
char* appData = SDL_GetPrefPath(nullptr, "Alber");
|
char* appData = SDL_GetPrefPath(nullptr, "Alber");
|
||||||
const std::filesystem::path appDataPath = std::filesystem::path(appData);
|
const std::filesystem::path appDataPath = std::filesystem::path(appData);
|
||||||
const std::filesystem::path dataPath = appDataPath / path.filename().stem();
|
const std::filesystem::path dataPath = appDataPath / path.filename().stem();
|
||||||
const std::filesystem::path aesKeysPath = appDataPath / "sysdata" / "aes_keys.txt";
|
const std::filesystem::path aesKeysPath = appDataPath / "sysdata" / "aes_keys.txt";
|
||||||
IOFile::setAppDataDir(dataPath);
|
IOFile::setAppDataDir(dataPath);
|
||||||
|
SDL_free(appData);
|
||||||
|
|
||||||
if (std::filesystem::exists(aesKeysPath)) {
|
// Open the text file containing our AES keys if it exists. We use the std::filesystem::exists overload that takes an error code param to
|
||||||
|
// avoid the call throwing exceptions
|
||||||
|
std::error_code ec;
|
||||||
|
if (std::filesystem::exists(aesKeysPath, ec) && !ec) {
|
||||||
aesEngine.loadKeys(aesKeysPath);
|
aesEngine.loadKeys(aesKeysPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_free(appData);
|
|
||||||
|
|
||||||
kernel.initializeFS();
|
kernel.initializeFS();
|
||||||
auto extension = path.extension();
|
auto extension = path.extension();
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ int main (int argc, char *argv[]) {
|
||||||
|
|
||||||
emu.initGraphicsContext();
|
emu.initGraphicsContext();
|
||||||
|
|
||||||
auto romPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "Metroid Prime - Federation Force (Europe) (En,Fr,De,Es,It).3ds");
|
auto romPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "OoT Demo Encrypted.3ds");
|
||||||
if (!emu.loadROM(romPath)) {
|
if (!emu.loadROM(romPath)) {
|
||||||
// For some reason just .c_str() doesn't show the proper path
|
// For some reason just .c_str() doesn't show the proper path
|
||||||
Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());
|
Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());
|
||||||
|
|
Loading…
Add table
Reference in a new issue