Savegames: Difference between revisions
Nuke the old content. Sorry for removing the next diagram, but it is really outdated. I will make a new one but please fix wiki image uploading first! |
m fix typos |
||
(13 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
== Overview == | == Overview == | ||
Savegames are stored in [[DISA and DIFF|DISA container | Savegames are stored in [[DISA and DIFF|DISA container format]]. Inside the DISA container, it forms a [[Inner FAT|FAT filesystem]]. '''Please refer to these pages for how to fully extract save files'''. This page only describes additional encryption wear leveling on top of the DISA container. These layers only apply to gamecard save games. SD savegames and NAND savegames are DISA containers in plaintext after decrypting the common SD/NAND encryption layer. | ||
== Gamecard savegame Encryption == | |||
== | Gamecard encryption is AES-CTR applied on top of DISA container, but below the wear leveling layer (if exists). The same key Y used for encryption is also used for DISA CMAC signing. Several versions of encryption scheme have been introduced over the time. | ||
{| class="wikitable" border="1" | |||
|- | |||
! FW Introduced | |||
! Old3DS | |||
! [[AES#Keyslot|AES Keyslots]] (Encryption / CMAC) | |||
! KeyY generation method | |||
! Repeating CTR | |||
|- | |||
| The initial version | |||
| style="background: #ccffbb" | Yes | |||
| 0x37 / 0x33 | |||
| v1 | |||
| style="background: #ccffbb" | Yes | |||
|- | |||
| [[2.0.0-2]] | |||
| style="background: #ccffbb" | Yes | |||
| 0x37 / 0x33 | |||
| v2 | |||
| style="background: #ccffbb" | Yes | |||
|- | |||
| [[2.2.0-4]] | |||
| style="background: #ccffbb" | Yes | |||
| 0x37 / 0x33 | |||
| v2 | |||
| style="background: #ffccbb" | No | |||
|- | |||
| [[6.0.0-11]] | |||
| style="background: #ccffbb" | Yes | |||
| 0x37 / 0x33 | |||
| v3 | |||
| style="background: #ffccbb" | No | |||
|- | |||
| [[9.6.0-24|9.6.0-X]] | |||
| style="background: #ffccbb" | No | |||
| 0x1A / 0x19 | |||
| v2? | |||
| style="background: #ffccbb" | No | |||
|} | |||
=== Repeating CTR Fail === | === Repeating CTR Fail === | ||
Line 15: | Line 54: | ||
So how do you use this to decrypt a savegame on a 3DS? First off, you chunk up the savegame into 512 byte chunks. Then, you bin these chunks by their contents, discarding any that contain only FF. Now look for the most common chunk. This is your keystream. Now XOR the keystream with your original savegame and you should have a fully decrypted savegame. XOR with the keystream again to produce an encrypted savegame. | So how do you use this to decrypt a savegame on a 3DS? First off, you chunk up the savegame into 512 byte chunks. Then, you bin these chunks by their contents, discarding any that contain only FF. Now look for the most common chunk. This is your keystream. Now XOR the keystream with your original savegame and you should have a fully decrypted savegame. XOR with the keystream again to produce an encrypted savegame. | ||
=== KeyY Generation method === | |||
The [[NCSD]] partition flags determine the method used to generate this keyY. | |||
==== v1 ==== | |||
When all of the flags checked by the running NATIVE_FIRM are clear, the keyY | When all of the flags checked by the running NATIVE_FIRM are clear, the keyY is the following: | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
Line 41: | Line 81: | ||
|} | |} | ||
==== | ==== v2 ==== | ||
Key Y is the first 0x10 bytes of SHA-256 calculated over the following data | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset | |||
! Size | |||
! Description | |||
|- | |||
| 0x0 | |||
| 0x8 | |||
| First 8-bytes from the plaintext [[NCCH#CXI|CXI]] accessdesc signature. | |||
|- | |||
| 0x8 | |||
| 0x40 | |||
| read from a gamecard command(this 0x40-byte data is also read by [[Process_Services_PXI|GetRomId]], which is the gamecard-uniqueID) | |||
|} | |||
This keyY generation method was implemented with [[2.0.0-2]] via NCSD partition flag[3], however the proper CTR wasn't implemented for flag[7] until [[2.2.0-4]]. The hashed keyY flag[3] implemented with [[2.0.0-2]] was likely never used with retail gamecards. | This keyY generation method was implemented with [[2.0.0-2]] via NCSD partition flag[3], however the proper CTR wasn't implemented for flag[7] until [[2.2.0-4]]. The hashed keyY flag[3] implemented with [[2.0.0-2]] was likely never used with retail gamecards. | ||
==== | ==== v3 ==== | ||
[[6.0.0-11]] implemented support for generating the savegame keyY with a new method, this method is much more complex than previous keyY methods. This is enabled via new [[NCSD]] partition flags, all retail games which have the NCSD image finalized after the [[6.0.0-11]] release(and [[6.0.0-11]]+ in the system update partition) will have these flags set for using this new method. | [[6.0.0-11]] implemented support for generating the savegame keyY with a new method, this method is much more complex than previous keyY methods. This is enabled via new [[NCSD]] partition flags, all retail games which have the NCSD image finalized after the [[6.0.0-11]] release(and [[6.0.0-11]]+ in the system update partition) will have these flags set for using this new method. | ||
First, a SHA-256 hash is calculated over the following data | |||
{| class="wikitable" border="1" | |||
|- | |||
! Offset | |||
! Size | |||
! Description | |||
|- | |||
| 0x0 | |||
| 0x8 | |||
| First 8-bytes from the plaintext [[NCCH#CXI|CXI]] accessdesc signature. | |||
|- | |||
| 0x8 | |||
| 0x40 | |||
| Same ID as [[Process_Services_PXI|GetRomId]] | |||
|- | |||
| 0x48 | |||
| 0x8 | |||
| CXI Program ID | |||
|- | |||
| 0x50 | |||
| 0x20 | |||
| ExeFS:/.code hash from the decrypted [[ExeFS]] header | |||
|} | |||
Then an [[AES]]-CMAC is calculated over this hash. The output CMAC is used for keyY. The key slot for this CMAC is 0x2F. | |||
The keyY used for calculating this AES-CMAC is initialized while NATIVE_FIRM is loading, this keyY is generated via the [[RSA]] engine. The RSA slot used here is slot0(key-data for slot0 is initialized by bootrom), this RSA slot0 key-data is overwritten during system boot. This RSA slot0 key-data gets overwritten with the RSA key-data used for verifying RSA signatures, every time Process9 verifies any RSA signatures except for [[NCCH|NCCH]] accessdesc signatures. Starting with [[7.0.0-13]] this key-init function used at boot is also used to initialize a separate keyslot used for the new [[NCCH]] encryption method. | The 0x2F keyY used for calculating this AES-CMAC (not to be confused with the final keyY for decrypting/signing savegames) is initialized while NATIVE_FIRM is loading, this keyY is generated via the [[RSA]] engine. The RSA slot used here is slot0(key-data for slot0 is initialized by bootrom), this RSA slot0 key-data is overwritten during system boot. This RSA slot0 key-data gets overwritten with the RSA key-data used for verifying RSA signatures, every time Process9 verifies any RSA signatures except for [[NCCH|NCCH]] accessdesc signatures. Starting with [[7.0.0-13]] this key-init function used at boot is also used to initialize a separate keyslot used for the new [[NCCH]] encryption method. | ||
This [[FIRM|Process9]] key-init function first checks if a certain 0x10-byte block in the 0x01FF8000 region is all-zero. When all-zero it immediately returns, otherwise it clears that block then continues to do the key generation. This is likely for supporting launching a v6.0+ NATIVE_FIRM under this FIRM. | This [[FIRM|Process9]] key-init function first checks if a certain 0x10-byte block in the 0x01FF8000 region is all-zero. When all-zero it immediately returns, otherwise it clears that block then continues to do the key generation. This is likely for supporting launching a v6.0+ NATIVE_FIRM under this FIRM. | ||
Line 61: | Line 141: | ||
The 3DS employs a wear leveling scheme on the savegame FLASH chips(only used for CARD1 gamecards). This is done through the usage of blockmaps and a journal. The blockmap is located at offset 0 of the flash chip, and is immediately followed by the journal. The initial state is dictated by the blockmap, and the journal is then applied to that. | The 3DS employs a wear leveling scheme on the savegame FLASH chips(only used for CARD1 gamecards). This is done through the usage of blockmaps and a journal. The blockmap is located at offset 0 of the flash chip, and is immediately followed by the journal. The initial state is dictated by the blockmap, and the journal is then applied to that. | ||
First, there are | There are two versions of wear leveling have been observed. V1 is used for 128KB and 512 KB CARD1 flash chips. V2 is used for 1MB CARD1 flash chips (uncommon. Pokemon Sun/Moon is an example). | ||
The blockmap | |||
First, there are two 32-bit integers whose purposes are currently unknown. They generally increase the value as the savegame is written more times, so probably counter for how many times the journal became full and got flushed into the block map, and/or how many times <code>alloc_cnt</code> has wrapped around. | |||
Then comes the actual blockmap. The block map contains entries of 10 bytes (V1) or 2 bytes (V2) with total number of <code>(flash_size / 0x1000 - 1)</code>. | |||
The blockmap entry is simple: | |||
<pre> | <pre> | ||
struct | struct blockmap_entry_v1 { | ||
uint8_t phys_sec; // when bit7 is set, block has checksums, otherwise checksums are all zero | uint8_t phys_sec; // when bit7 is set, block is initialized and has checksums, otherwise checksums are all zero | ||
uint8_t alloc_cnt; | uint8_t alloc_cnt; | ||
uint8_t chksums[8]; | uint8_t chksums[8]; | ||
} __attribute__((__packed__)); | |||
struct blockmap_entry_v2 { | |||
// Note that the phys_sec and alloc_cnt field are swapped in v2, | |||
// but the initialized bit is still on the first byte | |||
uint8_t alloc_cnt; // when bit7 is set, block is initialized | |||
uint8_t phys_sec; | |||
// v2 has no chksums | |||
} __attribute__((__packed__)); | } __attribute__((__packed__)); | ||
</pre> | </pre> | ||
There's one entry per sector, counting from physical sector 1 (sector 0 contains the blockmap/journal). | There's one entry per 0x1000-byte sector, counting from physical sector 1 (sector 0 contains the blockmap/journal). | ||
A 2-byte CRC16 follows the block map. For V1 it immediately follows the last block map entry. For V2 it is located at 0x3FE, and bytes before the CRC is padded with zero. The CRC16 checks all the bytes before it, including the two unknown integers, the block map, and the padding bytes for V2. The CRC standard used looks like CRC-16-IBM (modbus). Here is the code in Rust for it | |||
<pre> | <pre> | ||
struct | fn crc16(data: &[u8]) -> u16 { | ||
let poly = 0xA001; | |||
let mut crc = 0xFFFFu16; | |||
for byte in data { | |||
crc ^= <u16>::from(*byte); | |||
for _ in 0..8 { | |||
let b = crc & 1 != 0; | |||
crc >>= 1; | |||
if b { | |||
crc ^= poly; | |||
} | |||
} | |||
} | |||
crc | |||
} | |||
</pre> | |||
Then comes the journal. The journal contains entries that describes how sectors should be remapped. The rest bytes before 0x1000 after all journal entries are padded with 0xFF | |||
The journal entry structure is as follows: | |||
<pre> | |||
struct journal_entry_half { | |||
uint8_t virt_sec; // Mapped to sector | uint8_t virt_sec; // Mapped to sector | ||
uint8_t prev_virt_sec; // Physical sector previously mapped to | uint8_t prev_virt_sec; // Physical sector previously mapped to | ||
Line 85: | Line 195: | ||
uint8_t phys_realloc_cnt; // Amount of times physical sector has been remapped | uint8_t phys_realloc_cnt; // Amount of times physical sector has been remapped | ||
uint8_t virt_realloc_cnt; // Amount of times virtual sector has been remapped | uint8_t virt_realloc_cnt; // Amount of times virtual sector has been remapped | ||
uint8_t chksums[8]; | uint8_t chksums[8]; // Unused & uninitialized for V2 | ||
} __attribute__((__packed__)); | } __attribute__((__packed__)); | ||
struct | struct journal_entry{ | ||
struct | struct journal_entry_half entry; | ||
struct | struct journal_entry_half dupe; // same data as `entry`. No idea what this is used fore | ||
uint32_t | uint32_t uninitialized; // 0xFFFFFFFF in newer system | ||
}__attribute__((__packed__)); | }__attribute__((__packed__)); | ||
</pre> | </pre> | ||
The checksums in the blockmap/journal entries work as follows: | The checksums in the blockmap/journal entries work as follows: | ||
* each byte is the checksum of an encrypted 0x200 bytes large block | * each byte is the checksum of an encrypted 0x200 bytes large block | ||
* to calculate the checksum, a CRC16 of the block ( | * to calculate the checksum, a CRC16 of the block (same CRC16 algorithm as above) is calculated, and the two bytes of the CRC16 are XORed together to produce the 8bit checksum | ||
== Initialization == | == Initialization == | ||
Line 315: | Line 224: | ||
== Tools == | == Tools == | ||
* [https://github.com/3dshax/3ds/tree/master/3dsfuse 3dsfuse] supports reading and modifying savegames. In the mounted FUSE filesystem, the /output.sav is the raw FLASH save-image. When the save was modified, a separate tool to update the CMAC must be used with /clean.sav, prior to writing output.sav to a gamecard. | * [https://github.com/wwylele/save3ds save3ds] supports reading and modifying savegames, extdata and title database in FUSE filesystem or batch extracting/importing. | ||
* [https://github.com/3dshax/3ds/tree/master/3dsfuse 3dsfuse] supports reading and modifying savegames. In the mounted FUSE filesystem, the /output.sav is the raw FLASH save-image. When the save was modified, a separate tool to update the CMAC must be used with /clean.sav, prior to writing output.sav to a gamecard. (This is an old tool that doesn't handle the savegame format correctly. --[[User:Wwylele|Wwylele]] ([[User talk:Wwylele|talk]]) 16:13, 2 December 2019 (CET)) | |||
* [[3DSExplorer]] supports reading of savegames, it doesn't support reading the new encrypted savegames and maybe in the future it will support modifying (some of the modyfing code is already implemented). | * [[3DSExplorer]] supports reading of savegames, it doesn't support reading the new encrypted savegames and maybe in the future it will support modifying (some of the modyfing code is already implemented). | ||
* [https://github.com/wwylele/3ds-save-tool wwylele's 3ds-save-tool] supports extracting files from savegames and extdata. It properly reconstructs data from the DPFS tree and extracts files in directories hierarchy | * [https://github.com/wwylele/3ds-save-tool wwylele's 3ds-save-tool] supports extracting files from savegames and extdata. It properly reconstructs data from the DPFS tree and extracts files in directories hierarchy. | ||
[[セーブデータ|Japanese]] | [[セーブデータ|Japanese]] |