2021-08-24 05:15:51 +01:00
|
|
|
#!/usr/bin/env python
|
2021-09-05 23:45:40 +01:00
|
|
|
import sys, lz4, hashlib, os
|
2021-09-03 07:45:51 +01:00
|
|
|
from struct import unpack as up, pack as pk
|
2021-08-24 05:15:51 +01:00
|
|
|
|
|
|
|
def lz4_compress(data):
|
|
|
|
try:
|
|
|
|
import lz4.block as block
|
|
|
|
except ImportError:
|
|
|
|
block = lz4.LZ4_compress
|
|
|
|
return block.compress(data, 'high_compression', store_size=False)
|
|
|
|
|
|
|
|
def read_file(fn):
|
|
|
|
with open(fn, 'rb') as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
def pad(data, size):
|
2021-09-02 02:10:48 +01:00
|
|
|
assert len(data) <= size
|
2021-08-24 05:15:51 +01:00
|
|
|
return (data + '\x00' * size)[:size]
|
|
|
|
|
|
|
|
def get_overlay(program, i):
|
|
|
|
return program[0x2B000 + 0x14000 * i:0x2B000 + 0x14000 * (i+1)]
|
|
|
|
|
2021-09-03 07:45:51 +01:00
|
|
|
KIP_NAMES = ['Loader', 'NCM', 'ProcessManager', 'sm', 'boot', 'spl', 'ams_mitm']
|
|
|
|
|
2021-09-05 23:45:40 +01:00
|
|
|
def get_kips(ams_dir):
|
|
|
|
emummc = read_file(os.path.join(ams_dir, 'emummc/emummc_unpacked.kip'))
|
|
|
|
loader = read_file(os.path.join(ams_dir, 'stratosphere/loader/loader.kip'))
|
|
|
|
ncm = read_file(os.path.join(ams_dir, 'stratosphere/ncm/ncm.kip'))
|
|
|
|
pm = read_file(os.path.join(ams_dir, 'stratosphere/pm/pm.kip'))
|
|
|
|
sm = read_file(os.path.join(ams_dir, 'stratosphere/sm/sm.kip'))
|
|
|
|
boot = read_file(os.path.join(ams_dir, 'stratosphere/boot/boot.kip'))
|
|
|
|
spl = read_file(os.path.join(ams_dir, 'stratosphere/spl/spl.kip'))
|
|
|
|
ams_mitm = read_file(os.path.join(ams_dir, 'stratosphere/ams_mitm/ams_mitm.kip'))
|
2021-09-03 07:45:51 +01:00
|
|
|
return (emummc, {
|
|
|
|
'Loader' : loader,
|
|
|
|
'NCM' : ncm,
|
|
|
|
'ProcessManager' : pm,
|
|
|
|
'sm' : sm,
|
|
|
|
'boot' : boot,
|
|
|
|
'spl' : spl,
|
|
|
|
'ams_mitm' : ams_mitm,
|
|
|
|
})
|
|
|
|
|
|
|
|
def write_kip_meta(f, kip, ofs):
|
|
|
|
# Write program id
|
|
|
|
f.write(kip[0x10:0x18])
|
|
|
|
# Write offset, size
|
2021-09-04 02:34:20 +01:00
|
|
|
f.write(pk('<II', ofs - 0x100000, len(kip)))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write hash
|
|
|
|
f.write(hashlib.sha256(kip).digest())
|
|
|
|
|
2021-09-06 04:28:33 +01:00
|
|
|
def write_header(f, all_kips, wb_size, tk_size, xf_size, ex_size, ms_size, fs_size, rb_size, git_revision, major, minor, micro, relstep, s_major, s_minor, s_micro, s_relstep):
|
2021-09-03 07:45:51 +01:00
|
|
|
# Unpack kips
|
|
|
|
emummc, kips = all_kips
|
2021-09-06 06:59:54 +01:00
|
|
|
# Write magic as PK31 magic.
|
|
|
|
f.write(b'PK31')
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write metadata offset = 0x10
|
|
|
|
f.write(pk('<I', 0x20))
|
|
|
|
# Write flags
|
|
|
|
f.write(pk('<I', 0x00000000))
|
2021-09-04 02:34:20 +01:00
|
|
|
# Write meso_size
|
2021-09-06 04:28:33 +01:00
|
|
|
f.write(pk('<I', ms_size))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write num_kips
|
|
|
|
f.write(pk('<I', len(KIP_NAMES)))
|
2021-09-04 02:34:20 +01:00
|
|
|
# Write reserved1
|
|
|
|
f.write(b'\xCC' * 0xC)
|
2021-09-06 06:59:54 +01:00
|
|
|
# Write legacy magic
|
|
|
|
f.write(b'FSS0')
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write total size
|
|
|
|
f.write(pk('<I', 0x800000))
|
2021-09-04 02:34:20 +01:00
|
|
|
# Write reserved2
|
2021-09-03 07:45:51 +01:00
|
|
|
f.write(pk('<I', 0xCCCCCCCC))
|
|
|
|
# Write content_header_offset
|
|
|
|
f.write(pk('<I', 0x40))
|
|
|
|
# Write num_content_headers;
|
|
|
|
f.write(pk('<I', 8 + len(KIP_NAMES)))
|
|
|
|
# Write supported_hos_version;
|
2021-09-05 23:46:34 +01:00
|
|
|
f.write(pk('<BBBB', s_relstep, s_micro, s_minor, s_major))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write release_version;
|
2021-09-05 23:46:34 +01:00
|
|
|
f.write(pk('<BBBB', relstep, micro, minor, major))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write git_revision;
|
2021-09-05 23:46:34 +01:00
|
|
|
f.write(pk('<I', git_revision))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write content metas
|
2021-09-06 04:28:33 +01:00
|
|
|
f.write(pk('<IIBBBBI16s', 0x000800, wb_size, 2, 0, 0, 0, 0xCCCCCCCC, 'warmboot'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x002000, tk_size, 12, 0, 0, 0, 0xCCCCCCCC, 'tsec_keygen'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x004000, xf_size, 11, 0, 0, 0, 0xCCCCCCCC, 'exosphere_fatal'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x048000, ex_size, 1, 0, 0, 0, 0xCCCCCCCC, 'exosphere'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x056000, ms_size, 10, 0, 0, 0, 0xCCCCCCCC, 'mesosphere'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x7C0000, fs_size, 0, 0, 0, 0, 0xCCCCCCCC, 'fusee'))
|
|
|
|
f.write(pk('<IIBBBBI16s', 0x7E0000, rb_size, 3, 0, 0, 0, 0xCCCCCCCC, 'rebootstub'))
|
2021-09-03 07:45:51 +01:00
|
|
|
f.write(pk('<IIBBBBI16s', 0x100000, len(emummc), 8, 0, 0, 0, 0xCCCCCCCC, 'emummc'))
|
2021-09-04 02:34:20 +01:00
|
|
|
ofs = (0x100000 + len(emummc) + 0xF) & ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
for kip_name in KIP_NAMES:
|
|
|
|
kip_data = kips[kip_name]
|
|
|
|
f.write(pk('<IIBBBBI16s', ofs, len(kip_data), 6, 0, 0, 0, 0xCCCCCCCC, kip_name))
|
|
|
|
ofs += len(kip_data)
|
2021-09-04 02:34:20 +01:00
|
|
|
ofs += 0xF
|
|
|
|
ofs &= ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
# Pad to kip metas.
|
|
|
|
f.write(b'\xCC' * (0x400 - 0x40 - (0x20 * (8 + len(KIP_NAMES)))))
|
|
|
|
# Write emummc_meta. */
|
|
|
|
write_kip_meta(f, emummc, 0x100000)
|
|
|
|
# Write kip metas
|
2021-09-04 02:34:20 +01:00
|
|
|
ofs = (0x100000 + len(emummc) + 0xF) & ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
for kip_name in KIP_NAMES:
|
|
|
|
kip_data = kips[kip_name]
|
|
|
|
write_kip_meta(f, kip_data, ofs)
|
|
|
|
ofs += len(kip_data)
|
2021-09-04 02:34:20 +01:00
|
|
|
ofs += 0xF
|
|
|
|
ofs &= ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
# Pad to end of header
|
|
|
|
f.write(b'\xCC' * (0x800 - (0x400 + (1 + len(KIP_NAMES)) * 0x30)))
|
|
|
|
|
|
|
|
def write_kips(f, all_kips):
|
|
|
|
# Unpack kips
|
|
|
|
emummc, kips = all_kips
|
|
|
|
# Write emummc
|
|
|
|
f.write(emummc)
|
|
|
|
# Write kips
|
|
|
|
tot = len(emummc)
|
2021-09-04 02:34:20 +01:00
|
|
|
if (tot & 0xF):
|
|
|
|
f.write('\xCC' * (0x10 - (tot & 0xF)))
|
|
|
|
tot += 0xF
|
|
|
|
tot &= ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
for kip_name in KIP_NAMES:
|
|
|
|
kip_data = kips[kip_name]
|
|
|
|
f.write(kip_data)
|
|
|
|
tot += len(kip_data)
|
2021-09-04 02:34:20 +01:00
|
|
|
if (tot & 0xF):
|
|
|
|
f.write('\xCC' * (0x10 - (tot & 0xF)))
|
|
|
|
tot += 0xF
|
|
|
|
tot &= ~0xF
|
2021-09-03 07:45:51 +01:00
|
|
|
# Pad to 3 MB
|
|
|
|
f.write(b'\xCC' * (0x300000 - tot))
|
|
|
|
|
2021-08-24 05:15:51 +01:00
|
|
|
def main(argc, argv):
|
2021-09-05 23:45:40 +01:00
|
|
|
if argc != 12:
|
|
|
|
print('Usage: %s ams_dir target revision major minor micro relstep s_major s_minor s_micro s_relstep' % argv[0])
|
2021-08-24 05:15:51 +01:00
|
|
|
return 1
|
2021-09-05 23:45:40 +01:00
|
|
|
# Parse arguments
|
|
|
|
ams_dir = argv[1]
|
|
|
|
target = '' if argv[2] == 'release' else ('_%s' % argv[2])
|
|
|
|
revision = int(argv[3], 16)
|
|
|
|
major = int(argv[4])
|
|
|
|
minor = int(argv[5])
|
|
|
|
micro = int(argv[6])
|
|
|
|
relstep = int(argv[7])
|
|
|
|
s_major = int(argv[8])
|
|
|
|
s_minor = int(argv[9])
|
|
|
|
s_micro = int(argv[10])
|
|
|
|
s_relstep = int(argv[11])
|
|
|
|
# Read/parse fusee
|
|
|
|
fusee_program = read_file(os.path.join(ams_dir, 'fusee/program/program%s.bin' % target))
|
|
|
|
fusee_bin = read_file(os.path.join(ams_dir, 'fusee/fusee%s.bin' % target))
|
|
|
|
erista_mtc = get_overlay(fusee_program, 1)
|
|
|
|
mariko_mtc = get_overlay(fusee_program, 2)
|
2021-09-03 09:49:18 +01:00
|
|
|
erista_hsh = hashlib.sha256(erista_mtc[:-4]).digest()[:4]
|
|
|
|
mariko_hsh = hashlib.sha256(mariko_mtc[:-4]).digest()[:4]
|
2021-09-05 23:45:40 +01:00
|
|
|
# Read other files
|
|
|
|
exosphere = read_file(os.path.join(ams_dir, 'exosphere/exosphere%s.bin' % target))
|
|
|
|
warmboot = read_file(os.path.join(ams_dir, 'exosphere/warmboot%s.bin' % target))
|
|
|
|
mariko_fatal = read_file(os.path.join(ams_dir, 'exosphere/mariko_fatal%s.bin' % target))
|
|
|
|
rebootstub = read_file(os.path.join(ams_dir, 'exosphere/program/rebootstub/rebootstub%s.bin' % target))
|
|
|
|
mesosphere = read_file(os.path.join(ams_dir, 'mesosphere/mesosphere%s.bin' % target))
|
|
|
|
all_kips = get_kips(ams_dir)
|
|
|
|
tsec_keygen = read_file(os.path.join(ams_dir, 'fusee/program/tsec_keygen/tsec_keygen.bin'))
|
2021-09-07 00:21:55 +01:00
|
|
|
splash_bin = read_file(os.path.join(ams_dir, 'img/splash.bin'))
|
2021-09-05 23:45:40 +01:00
|
|
|
assert len(splash_bin) == 0x3C0000
|
|
|
|
with open(os.path.join(ams_dir, 'fusee/package3%s' % target), 'wb') as f:
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write header
|
2021-09-06 04:28:33 +01:00
|
|
|
write_header(f, all_kips, len(warmboot), len(tsec_keygen), len(mariko_fatal), len(exosphere), len(mesosphere), len(fusee_bin), len(rebootstub), revision, major, minor, micro, relstep, s_major, s_minor, s_micro, s_relstep)
|
2021-09-02 02:10:48 +01:00
|
|
|
# Write warmboot
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(warmboot, 0x1800))
|
2021-08-24 05:15:51 +01:00
|
|
|
# Write TSEC Keygen
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(tsec_keygen, 0x2000))
|
2021-09-02 02:10:48 +01:00
|
|
|
# Write Mariko Fatal
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(mariko_fatal, 0x1C000))
|
2021-08-24 05:15:51 +01:00
|
|
|
# Write Erista MTC
|
2021-09-03 09:49:18 +01:00
|
|
|
f.write(erista_mtc[:-4] + erista_hsh)
|
2021-08-24 05:15:51 +01:00
|
|
|
# Write Mariko MTC
|
2021-09-03 09:49:18 +01:00
|
|
|
f.write(mariko_mtc[:-4] + mariko_hsh)
|
2021-09-02 02:10:48 +01:00
|
|
|
# Write exosphere
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(exosphere, 0xE000))
|
2021-09-02 02:10:48 +01:00
|
|
|
# Write mesosphere
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(mesosphere, 0xAA000))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write kips
|
|
|
|
write_kips(f, all_kips)
|
2021-08-24 05:15:51 +01:00
|
|
|
# Write Splash Screen
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(splash_bin)
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write fusee
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(fusee_bin, 0x20000))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Write rebootstub
|
2021-09-05 23:45:40 +01:00
|
|
|
f.write(pad(rebootstub, 0x1000))
|
2021-09-03 07:45:51 +01:00
|
|
|
# Pad to 8 MB
|
|
|
|
f.write(b'\xCC' * (0x800000 - 0x7E1000))
|
|
|
|
|
2021-08-24 05:15:51 +01:00
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main(len(sys.argv), sys.argv))
|