-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbootimg.py
executable file
·361 lines (291 loc) · 11.7 KB
/
bootimg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
#!/usr/bin/env python3
"""Parse, split, or shrink `fastboot.bin`."""
from enum import IntEnum
from typing import TYPE_CHECKING, NamedTuple
if TYPE_CHECKING:
from _typeshed import ReadableBuffer
__all__ = ['Memcpy', 'KeyRights', 'OTPID', 'BootParamError', 'BootParam']
def uint32(buf: bytes, offset: int) -> int:
return int.from_bytes(buf[offset:offset + 4], 'little')
class Memcpy(NamedTuple):
addr: int
"destination address"
size: int
"data size"
data: 'ReadableBuffer'
"data"
def __bool__(self):
"""
Test if the region contains data (all bytes are NOT the same).
Note this is different from `bool(self.size)`.
"""
if not self.size:
return False
view = memoryview(self.data)
b = view[0]
return any(x != b for x in view)
def __bytes__(self):
return bytes(self.data)
def __len__(self):
return self.size
def __repr__(self):
return '{1}(addr={0.addr:#x}, size={0.size:#x}, data={0.data!r})' \
.format(self, type(self).__name__)
def __getitem__(self, s: slice):
view = memoryview(self.data)[s]
return type(self)(self.addr + (s.start or 0), len(view), view)
@property
def end(self):
return self.addr + self.size
@classmethod
def cut(cls, addr: int, size: int, data: 'ReadableBuffer', offset=0):
view = memoryview(data)
if size < 0 or addr < 0 or addr + size > len(view):
raise ValueError
return cls(addr + offset, size, view[addr:addr + size])
@classmethod
def cuts(cls, addr: int, size: int, data: 'ReadableBuffer', offset=0):
view = memoryview(data)
if size < 0 or addr < 0 or addr + size > len(view):
raise ValueError
return [
cls(i + offset, size, view[i:i + size])
for i in range(addr, len(view), size)]
class KeyRights(IntEnum):
__slots__ = ()
TYPE_1 = 0x3c78962d
class FlashBootEnc(IntEnum):
__slots__ = ()
TYPE_1 = 0x3c7896e1
class OTPID(IntEnum):
__slots__ = ()
NORMAL = 0x2a13c812
SB = 0x83855248
class BootParamError(Exception):
__slots__ = ()
class BootParam(NamedTuple):
head: Memcpy
aux: Memcpy
asc: Memcpy
unchecked: Memcpy
boot: Memcpy
regs: list[Memcpy]
# do not use enum types here, since we may encounter unknown values
# we don't know the exact meaning of these parameters, and these names are
# simply wild guesses
extra_size: int = 0
key_rights: int = 0
flash_boot_enc_flag: int = 0
aux_enc_flag: int = 0
":class:`OTPID`"
multi_param: bool = False
boot_store_addr: int = 0
offset: int = 0
"advance length in source file"
def __repr__(self):
return (
'{1}(head={0.head!r}, aux={0.aux!r}, asc={0.asc!r}, '
'unchecked={0.unchecked!r}, boot={0.boot!r}, regs={0.regs!r}, '
'extra_size={0.extra_size:#x}, key_rights={0.key_rights:#x}, '
'flash_boot_enc_flag={0.flash_boot_enc_flag:#x}, '
'aux_enc_flag={0.aux_enc_flag:#x}, multi_param={0.multi_param!r}, '
'boot_store_addr={0.boot_store_addr:#x}, offset={0.offset:#x})'
.format(self, type(self).__name__))
def __iter__(self):
yield 'head', self.head
yield 'aux', self.aux
yield 'asc', self.asc
yield 'unchecked', self.unchecked
yield 'boot', self.boot
for reg in self.regs:
yield 'reg', reg
def last_pos(self):
"""Return the last position of the boot image where contents are."""
return max((region.end for _, region in self if region), default=0)
@classmethod
def parse_v1(cls, image: 'ReadableBuffer'):
view = memoryview(image)
aux_addr = uint32(view, 0x214)
if aux_addr != 0x3000:
raise BootParamError(
f'v1 aux addr should be 0x3000, got {aux_addr:#x}')
key_rights = uint32(view, 0x210)
flash_boot_enc_flag = uint32(view, 0x40c)
aux_enc_flag = uint32(view, 0x40c)
multi_param = bool(uint32(view, 0x2fe0))
boot_store_addr = uint32(view, 0x2fec)
extra_size = 0
if aux_enc_flag == OTPID.SB:
extra_size = uint32(view, 0x410)
if extra_size > 0x2a00:
raise BootParamError(
f'invalid v1 extra area size {extra_size:#x}')
head = Memcpy.cut(0, 0x3000, view)
aux = Memcpy.cut(head.end, uint32(view, 0x218), view)
asc = Memcpy.cut(aux.end, 0, view)
unchecked = Memcpy.cut(asc.end, 0x1000, view)
boot = Memcpy.cut(
unchecked.end, uint32(view, 0x408) - unchecked.size, view)
regs = Memcpy.cuts(
uint32(view, 0x2fe4), uint32(view, 0x2fe8), view)
return cls(
head, aux, asc, unchecked, boot, regs, extra_size,
key_rights, flash_boot_enc_flag, aux_enc_flag, multi_param,
boot_store_addr)
@classmethod
def parse_v2(cls, image: 'ReadableBuffer'):
offset = 0x10000
view = memoryview(image)[offset:]
key_rights = uint32(view, 0x210)
flash_boot_enc_flag = uint32(view, 0x40c)
aux_enc_flag = uint32(view, 0x2fc8)
multi_param = bool(uint32(view, 0x2fe0))
boot_store_addr = uint32(view, 0x2fec)
head = Memcpy.cut(0, 0x3000, view, offset)
aux = Memcpy.cut(head.end, uint32(view, 0x214), view, offset)
asc = Memcpy.cut(aux.end, uint32(view, 0x218), view, offset)
unchecked = Memcpy.cut(asc.end, 0x1000, view, offset)
boot = Memcpy.cut(
unchecked.end, uint32(view, 0x2fe4) - unchecked.end, view, offset)
regs = Memcpy.cuts(boot.end, uint32(view, 0x2fe8), view, offset)
return cls(
head, aux, asc, unchecked, boot, regs, 0,
key_rights, flash_boot_enc_flag, aux_enc_flag, multi_param,
boot_store_addr)
@classmethod
def parse_v3(cls, image: 'ReadableBuffer'):
view = memoryview(image)
key_rights = uint32(view, 0x210)
flash_boot_enc_flag = uint32(view, 0x40c)
aux_enc_flag = uint32(view, 0x428)
multi_param = True
boot_store_addr = uint32(view, 0x2fec)
head = Memcpy.cut(0, 0x3000, view)
aux = Memcpy.cut(head.end, uint32(view, 0x214), view)
asc = Memcpy.cut(aux.end, uint32(view, 0x218), view)
unchecked = Memcpy.cut(asc.end, 0x1000, view)
boot = Memcpy.cut(
unchecked.end, uint32(view, 0x408) - unchecked.size, view)
regs = Memcpy.cuts(boot.end, uint32(view, 0x42c), view)
return cls(
head, aux, asc, unchecked, boot, regs, 0,
key_rights, flash_boot_enc_flag, aux_enc_flag, multi_param,
boot_store_addr)
@classmethod
def parse_v4(cls, image: 'ReadableBuffer'):
view = memoryview(image)
key_rights = uint32(view, 0x210)
offset = 0 if key_rights == KeyRights.TYPE_1 else 0x10000
view = view[offset:]
flash_boot_enc_flag = uint32(view, 0x40c)
aux_enc_flag = uint32(view, 0x428)
multi_param = True
boot_store_addr = uint32(view, 0x2fec)
head = Memcpy.cut(0, 0x3000, view, offset)
aux = Memcpy.cut(head.end, uint32(view, 0x214), view, offset)
asc = Memcpy.cut(aux.end, uint32(view, 0x218), view, offset)
unchecked = Memcpy.cut(asc.end, 0x1000, view, offset)
boot = Memcpy.cut(
unchecked.end, uint32(view, 0x408) - unchecked.size, view, offset)
regs = Memcpy.cuts(boot.end, uint32(view, 0x42c), view, offset)
return cls(
head, aux, asc, unchecked, boot, regs, 0,
key_rights, flash_boot_enc_flag, aux_enc_flag, multi_param,
boot_store_addr)
@classmethod
def parse(cls, version: int, image: 'ReadableBuffer'):
if version == 1:
return cls.parse_v1(image)
elif version == 2:
return cls.parse_v2(image)
elif version == 3:
return cls.parse_v3(image)
elif version == 4:
return cls.parse_v4(image)
else:
raise BootParamError(f'boot param version {version} unknown')
def main():
import argparse
import os
import sys
def dir_path(s):
if not os.path.isdir(s):
raise NotADirectoryError(s)
return s
parser = argparse.ArgumentParser(
description='Parse, split, or shrink fastboot.bin.')
parser.add_argument(
'--dd', action='store_true',
help="generate 'dd' commands")
parser.add_argument(
'-s', '--split', metavar='DIR', type=dir_path,
help='output dir of split files (empty regions are skipped)')
parser.add_argument(
'-o', '--output', metavar='PATH', type=argparse.FileType('wb'),
help='output path of shrinked file')
parser.add_argument(
'bootimg', metavar='fastboot.bin', type=argparse.FileType('rb'),
help='fastboot.bin to use')
parser.add_argument(
'version', type=int, help='boot param version')
args = parser.parse_args()
image = args.bootimg.read()
try:
params = BootParam.parse(args.version, image)
except BootParamError as e:
print(f'Error when parsing input file: {e}', file=sys.stderr)
return 1
if not args.dd:
def print_memcpy(name: str, region: Memcpy, offset=0):
if not region:
return
print(
f'{name}: {offset + region.addr:#8x}, '
f'{offset + region.end:#8x} ({region.size:#7x})')
print(
'Extra size : {0.extra_size:#x}\n'
'Key rights : {0.key_rights:#x}\n'
'Flash boot enc flag : {0.flash_boot_enc_flag:#x}\n'
'Aux enc flag : {0.aux_enc_flag:#x}\n'
'Support multi param : {0.multi_param!r}\n'
'Boot store addr : {0.boot_store_addr:#010x}'.format(params))
print_memcpy('Head ', params.head, params.offset)
print_memcpy('Auxiliary code ', params.aux, params.offset)
print_memcpy('ACPU start code ', params.asc, params.offset)
print_memcpy('Unchecked area ', params.unchecked, params.offset)
print_memcpy('Bootloader ', params.boot, params.offset)
for i, reg in enumerate(params.regs):
print_memcpy(f'Reg param {i}', reg, params.offset)
if args.split or args.dd:
for name, region in params:
if not region:
continue
filename = f'{name}@{region.addr:x}.bin'
if args.split:
with open(os.path.join(args.split, filename), 'wb') as f:
f.write(region.data)
if args.dd:
print(
'{cmd} if={src} of={dst} skip={addr} count={size}\n'
'{cmd} conv=notrunc if={dst} of={src} seek={addr} count={size}\n'
.format(
cmd='dd iflag=skip_bytes,count_bytes',
src=args.bootimg.name, dst=filename,
addr=region.addr, size=region.size))
file_end = params.last_pos()
if not args.output:
if file_end < len(image):
print(
'\nThis file can be shrinked to {0:#x} ({0}) bytes '
'from {1:#x} ({1}) bytes.'.format(file_end, len(image)))
else:
args.output.write(image[:file_end])
if file_end < len(image):
print(
'\nFile shrinked to {0:#x} ({0}) bytes from {1:#x} ({1}) bytes.'
.format(file_end, len(image)))
else:
print('\nFile is {0:#x} ({0}) bytes intact.'.format(len(image)))
return 0
if __name__ == '__main__':
exit(main())