2018-09-07 15:00:13 +00:00
|
|
|
/*
|
2019-04-08 02:00:49 +00:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 15:00:13 +00:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-06-19 06:23:31 +00:00
|
|
|
|
2018-04-12 00:19:01 +00:00
|
|
|
#ifndef FUSEE_PACKAGE2_H
|
|
|
|
#define FUSEE_PACKAGE2_H
|
|
|
|
|
|
|
|
/* This is a library for patching Package2 prior to handoff to Exosphere. */
|
|
|
|
|
|
|
|
#define MAGIC_PK21 (0x31324B50)
|
|
|
|
#define PACKAGE2_SIZE_MAX 0x7FC000
|
2018-04-12 02:29:35 +00:00
|
|
|
|
|
|
|
#define PACKAGE2_SECTION_KERNEL 0x0
|
|
|
|
#define PACKAGE2_SECTION_INI1 0x1
|
|
|
|
#define PACKAGE2_SECTION_UNUSED 0x2
|
2018-04-12 00:19:01 +00:00
|
|
|
#define PACKAGE2_SECTION_MAX 0x3
|
|
|
|
|
2018-04-12 02:29:35 +00:00
|
|
|
#define PACKAGE2_MINVER_THEORETICAL 0x0
|
|
|
|
#define PACKAGE2_MAXVER_100 0x2
|
|
|
|
#define PACKAGE2_MAXVER_200 0x3
|
|
|
|
#define PACKAGE2_MAXVER_300 0x4
|
|
|
|
#define PACKAGE2_MAXVER_302 0x5
|
|
|
|
#define PACKAGE2_MAXVER_400_410 0x6
|
2018-09-26 20:30:53 +00:00
|
|
|
#define PACKAGE2_MAXVER_500_510 0x7
|
2018-11-26 06:37:24 +00:00
|
|
|
#define PACKAGE2_MAXVER_600_610 0x8
|
2019-01-31 10:23:43 +00:00
|
|
|
#define PACKAGE2_MAXVER_620 0x9
|
2019-06-19 06:23:31 +00:00
|
|
|
#define PACKAGE2_MAXVER_700_800 0xA
|
2019-09-12 08:18:58 +00:00
|
|
|
#define PACKAGE2_MAXVER_810 0xB
|
2019-12-07 21:44:08 +00:00
|
|
|
#define PACKAGE2_MAXVER_900 0xC
|
|
|
|
#define PACKAGE2_MAXVER_910_CURRENT 0xD
|
2018-04-12 02:29:35 +00:00
|
|
|
|
|
|
|
#define PACKAGE2_MINVER_100 0x3
|
|
|
|
#define PACKAGE2_MINVER_200 0x4
|
|
|
|
#define PACKAGE2_MINVER_300 0x5
|
|
|
|
#define PACKAGE2_MINVER_302 0x6
|
|
|
|
#define PACKAGE2_MINVER_400_410 0x7
|
2018-09-26 20:30:53 +00:00
|
|
|
#define PACKAGE2_MINVER_500_510 0x8
|
2018-11-26 06:37:24 +00:00
|
|
|
#define PACKAGE2_MINVER_600_610 0x9
|
2019-01-31 10:23:43 +00:00
|
|
|
#define PACKAGE2_MINVER_620 0xA
|
2019-06-19 06:23:31 +00:00
|
|
|
#define PACKAGE2_MINVER_700_800 0xB
|
2019-09-12 08:18:58 +00:00
|
|
|
#define PACKAGE2_MINVER_810 0xC
|
2019-12-07 21:44:08 +00:00
|
|
|
#define PACKAGE2_MINVER_900 0xD
|
|
|
|
#define PACKAGE2_MINVER_910_CURRENT 0xE
|
2018-04-12 02:29:35 +00:00
|
|
|
|
|
|
|
#define NX_BOOTLOADER_PACKAGE2_LOAD_ADDRESS ((void *)(0xA9800000ull))
|
|
|
|
|
2018-04-12 00:19:01 +00:00
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
uint8_t ctr[0x10];
|
|
|
|
uint32_t ctr_dwords[0x4];
|
|
|
|
};
|
|
|
|
uint8_t section_ctrs[4][0x10];
|
|
|
|
uint32_t magic;
|
|
|
|
uint32_t entrypoint;
|
|
|
|
uint32_t _0x58;
|
|
|
|
uint8_t version_max; /* Must be > TZ value. */
|
|
|
|
uint8_t version_min; /* Must be < TZ value. */
|
|
|
|
uint16_t _0x5E;
|
|
|
|
uint32_t section_sizes[4];
|
|
|
|
uint32_t section_offsets[4];
|
|
|
|
uint8_t section_hashes[4][0x20];
|
|
|
|
} package2_meta_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t signature[0x100];
|
|
|
|
union {
|
|
|
|
package2_meta_t metadata;
|
|
|
|
uint8_t encrypted_header[0x100];
|
|
|
|
};
|
2018-05-17 13:56:02 +00:00
|
|
|
uint8_t data[];
|
2018-04-12 00:19:01 +00:00
|
|
|
} package2_header_t;
|
|
|
|
|
2018-05-17 13:56:02 +00:00
|
|
|
/* Package2 can be encrypted or unencrypted for these functions: */
|
|
|
|
|
|
|
|
static inline size_t package2_meta_get_size(const package2_meta_t *metadata) {
|
2019-06-19 06:23:31 +00:00
|
|
|
return metadata->ctr_dwords[0] ^ metadata->ctr_dwords[2] ^ metadata->ctr_dwords[3];
|
2018-05-17 13:56:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint8_t package2_meta_get_header_version(const package2_meta_t *metadata) {
|
|
|
|
return (uint8_t)((metadata->ctr_dwords[1] ^ (metadata->ctr_dwords[1] >> 16) ^ (metadata->ctr_dwords[1] >> 24)) & 0xFF);
|
|
|
|
}
|
|
|
|
|
2019-06-14 13:37:25 +00:00
|
|
|
void package2_rebuild_and_copy(package2_header_t *package2, uint32_t target_firmware, void *emummc, size_t emummc_size);
|
2018-04-12 00:19:01 +00:00
|
|
|
|
2018-05-08 22:19:51 +00:00
|
|
|
#endif
|