2018-07-28 03:55:23 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2018-07-29 01:39:42 +00:00
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
#include <array>
|
2018-08-04 20:35:35 +00:00
|
|
|
#include <string>
|
2018-08-16 21:10:01 +00:00
|
|
|
#include <boost/container/flat_map.hpp>
|
2018-09-04 01:58:19 +00:00
|
|
|
#include <boost/optional.hpp>
|
2018-07-28 18:28:14 +00:00
|
|
|
#include <fmt/format.h>
|
2018-07-28 03:55:23 +00:00
|
|
|
#include "common/common_types.h"
|
2018-09-04 01:58:19 +00:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
enum class ResultStatus : u16;
|
|
|
|
}
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
namespace Core::Crypto {
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-08-25 15:48:23 +00:00
|
|
|
constexpr u64 TICKET_FILE_TITLEKEY_OFFSET = 0x180;
|
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
using Key128 = std::array<u8, 0x10>;
|
|
|
|
using Key256 = std::array<u8, 0x20>;
|
|
|
|
using SHA256Hash = std::array<u8, 0x20>;
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
static_assert(sizeof(Key128) == 16, "Key128 must be 128 bytes big.");
|
|
|
|
static_assert(sizeof(Key256) == 32, "Key128 must be 128 bytes big.");
|
|
|
|
|
2018-09-24 00:37:27 +00:00
|
|
|
enum class KeyCategory : u8 {
|
|
|
|
Standard,
|
|
|
|
Title,
|
|
|
|
Console,
|
|
|
|
};
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
enum class S256KeyType : u64 {
|
2018-09-24 00:56:02 +00:00
|
|
|
SDKey, // f1=SDKeyType
|
|
|
|
Header, //
|
|
|
|
SDKeySource, // f1=SDKeyType
|
|
|
|
HeaderSource, //
|
2018-07-28 03:55:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class S128KeyType : u64 {
|
2018-07-29 01:39:42 +00:00
|
|
|
Master, // f1=crypto revision
|
|
|
|
Package1, // f1=crypto revision
|
|
|
|
Package2, // f1=crypto revision
|
|
|
|
Titlekek, // f1=crypto revision
|
|
|
|
ETicketRSAKek, //
|
|
|
|
KeyArea, // f1=crypto revision f2=type {app, ocean, system}
|
|
|
|
SDSeed, //
|
|
|
|
Titlekey, // f1=rights id LSB f2=rights id MSB
|
2018-08-16 21:12:05 +00:00
|
|
|
Source, // f1=source type, f2= sub id
|
2018-09-24 00:56:02 +00:00
|
|
|
Keyblob, // f1=crypto revision
|
|
|
|
KeyblobMAC, // f1=crypto revision
|
|
|
|
TSEC, //
|
|
|
|
SecureBoot, //
|
|
|
|
BIS, // f1=partition (0-3), f2=type {crypt, tweak}
|
|
|
|
HeaderKek, //
|
|
|
|
SDKek, //
|
|
|
|
RSAKek, //
|
2018-07-28 03:55:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class KeyAreaKeyType : u8 {
|
|
|
|
Application,
|
|
|
|
Ocean,
|
|
|
|
System,
|
|
|
|
};
|
|
|
|
|
2018-08-16 21:12:05 +00:00
|
|
|
enum class SourceKeyType : u8 {
|
2018-09-24 00:31:00 +00:00
|
|
|
SDKek, //
|
|
|
|
AESKekGeneration, //
|
|
|
|
AESKeyGeneration, //
|
2018-09-24 00:56:02 +00:00
|
|
|
RSAOaepKekGeneration, //
|
|
|
|
Master, //
|
|
|
|
Keyblob, // f2=crypto revision
|
|
|
|
KeyAreaKey, // f2=KeyAreaKeyType
|
|
|
|
Titlekek, //
|
|
|
|
Package2, //
|
|
|
|
HeaderKek, //
|
|
|
|
KeyblobMAC, //
|
|
|
|
ETicketKek, //
|
|
|
|
ETicketKekek, //
|
2018-08-16 21:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class SDKeyType : u8 {
|
|
|
|
Save,
|
|
|
|
NCA,
|
|
|
|
};
|
|
|
|
|
2018-09-24 00:56:02 +00:00
|
|
|
enum class BISKeyType : u8 {
|
|
|
|
Crypto,
|
|
|
|
Tweak,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class RSAKekType : u8 {
|
|
|
|
Mask0,
|
|
|
|
Seed3,
|
|
|
|
};
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
template <typename KeyType>
|
|
|
|
struct KeyIndex {
|
|
|
|
KeyType type;
|
|
|
|
u64 field1;
|
|
|
|
u64 field2;
|
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
std::string DebugInfo() const {
|
2018-07-28 03:55:23 +00:00
|
|
|
u8 key_size = 16;
|
2018-07-29 23:00:09 +00:00
|
|
|
if constexpr (std::is_same_v<KeyType, S256KeyType>)
|
2018-07-28 03:55:23 +00:00
|
|
|
key_size = 32;
|
|
|
|
return fmt::format("key_size={:02X}, key={:02X}, field1={:016X}, field2={:016X}", key_size,
|
|
|
|
static_cast<u8>(type), field1, field2);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-16 21:10:01 +00:00
|
|
|
// boost flat_map requires operator< for O(log(n)) lookups.
|
2018-07-29 01:39:42 +00:00
|
|
|
template <typename KeyType>
|
2018-08-16 21:10:01 +00:00
|
|
|
bool operator<(const KeyIndex<KeyType>& lhs, const KeyIndex<KeyType>& rhs) {
|
2018-08-19 01:16:20 +00:00
|
|
|
return std::tie(lhs.type, lhs.field1, lhs.field2) < std::tie(rhs.type, rhs.field1, rhs.field2);
|
2018-07-29 01:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class KeyManager {
|
|
|
|
public:
|
|
|
|
KeyManager();
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
bool HasKey(S128KeyType id, u64 field1 = 0, u64 field2 = 0) const;
|
|
|
|
bool HasKey(S256KeyType id, u64 field1 = 0, u64 field2 = 0) const;
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
Key128 GetKey(S128KeyType id, u64 field1 = 0, u64 field2 = 0) const;
|
|
|
|
Key256 GetKey(S256KeyType id, u64 field1 = 0, u64 field2 = 0) const;
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
void SetKey(S128KeyType id, Key128 key, u64 field1 = 0, u64 field2 = 0);
|
|
|
|
void SetKey(S256KeyType id, Key256 key, u64 field1 = 0, u64 field2 = 0);
|
|
|
|
|
2018-07-30 16:46:23 +00:00
|
|
|
static bool KeyFileExists(bool title);
|
|
|
|
|
2018-08-16 21:12:05 +00:00
|
|
|
// Call before using the sd seed to attempt to derive it if it dosen't exist. Needs system save
|
|
|
|
// 8*43 and the private file to exist.
|
|
|
|
void DeriveSDSeedLazy();
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
private:
|
2018-08-16 21:10:01 +00:00
|
|
|
boost::container::flat_map<KeyIndex<S128KeyType>, Key128> s128_keys;
|
|
|
|
boost::container::flat_map<KeyIndex<S256KeyType>, Key256> s256_keys;
|
2018-09-24 00:51:44 +00:00
|
|
|
std::array<std::array<u8, 0xB0>, 0x20> encrypted_keyblobs{};
|
|
|
|
std::array<std::array<u8, 0x90>, 0x20> keyblobs{};
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
bool dev_mode;
|
2018-08-04 20:35:35 +00:00
|
|
|
void LoadFromFile(const std::string& filename, bool is_title_keys);
|
|
|
|
void AttemptLoadKeyFile(const std::string& dir1, const std::string& dir2,
|
|
|
|
const std::string& filename, bool title);
|
2018-09-15 13:21:06 +00:00
|
|
|
template <std::size_t Size>
|
2018-08-19 01:16:20 +00:00
|
|
|
void WriteKeyToFile(bool title_key, std::string_view keyname, const std::array<u8, Size>& key);
|
2018-07-28 03:55:23 +00:00
|
|
|
|
2018-08-16 21:10:01 +00:00
|
|
|
static const boost::container::flat_map<std::string, KeyIndex<S128KeyType>> s128_file_id;
|
|
|
|
static const boost::container::flat_map<std::string, KeyIndex<S256KeyType>> s256_file_id;
|
2018-07-28 03:55:23 +00:00
|
|
|
};
|
2018-08-16 21:12:05 +00:00
|
|
|
|
|
|
|
Key128 GenerateKeyEncryptionKey(Key128 source, Key128 master, Key128 kek_seed, Key128 key_seed);
|
2018-09-24 00:51:44 +00:00
|
|
|
Key128 DeriveKeyblobKey(Key128 sbk, Key128 tsec, Key128 source);
|
|
|
|
|
2018-08-16 21:12:05 +00:00
|
|
|
boost::optional<Key128> DeriveSDSeed();
|
|
|
|
Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, const KeyManager& keys);
|
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
} // namespace Core::Crypto
|