-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathpayload_dumper.py
executable file
·282 lines (239 loc) · 9.59 KB
/
payload_dumper.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
#!/usr/bin/env python3
import struct
import hashlib
import bz2
import sys
import argparse
import bsdiff4
import io
import os
import brotli
import zipfile
import zstandard
import fsspec
import urllib.parse
from pathlib import Path
try:
import lzma
except ImportError:
from backports import lzma
import update_metadata_pb2 as um
BSDF2_MAGIC = b'BSDF2'
flatten = lambda l: [item for sublist in l for item in sublist]
def u32(x):
return struct.unpack('>I', x)[0]
def u64(x):
return struct.unpack('>Q', x)[0]
def bsdf2_decompress(alg, data):
if alg == 0:
return data
elif alg == 1:
return bz2.decompress(data)
elif alg == 2:
return brotli.decompress(data)
# Adapted from bsdiff4.read_patch
def bsdf2_read_patch(fi):
"""read a bsdiff/BSDF2-format patch from stream 'fi'
"""
magic = fi.read(8)
if magic == bsdiff4.format.MAGIC:
# bsdiff4 uses bzip2 (algorithm 1)
alg_control = alg_diff = alg_extra = 1
elif magic[:5] == BSDF2_MAGIC:
alg_control = magic[5]
alg_diff = magic[6]
alg_extra = magic[7]
else:
raise ValueError("incorrect magic bsdiff/BSDF2 header")
# length headers
len_control = bsdiff4.core.decode_int64(fi.read(8))
len_diff = bsdiff4.core.decode_int64(fi.read(8))
len_dst = bsdiff4.core.decode_int64(fi.read(8))
# read the control header
bcontrol = bsdf2_decompress(alg_control, fi.read(len_control))
tcontrol = [(bsdiff4.core.decode_int64(bcontrol[i:i + 8]),
bsdiff4.core.decode_int64(bcontrol[i + 8:i + 16]),
bsdiff4.core.decode_int64(bcontrol[i + 16:i + 24]))
for i in range(0, len(bcontrol), 24)]
# read the diff and extra blocks
bdiff = bsdf2_decompress(alg_diff, fi.read(len_diff))
bextra = bsdf2_decompress(alg_extra, fi.read())
return len_dst, tcontrol, bdiff, bextra
def verify_contiguous(exts):
blocks = 0
for ext in exts:
if ext.start_block != blocks:
return False
blocks += ext.num_blocks
return True
def open_payload_file(file_path):
"""
Opens a payload file, whether it's a local file, a remote file,
or inside a zip archive (local or remote).
Returns a file-like object pointing to the payload.bin content.
"""
# Check if the file is a URL
is_url = file_path.startswith(('http://', 'https://', 's3://', 'gs://'))
if is_url:
# Handle remote file
protocol = urllib.parse.urlparse(file_path).scheme
fs = fsspec.filesystem(protocol)
# Open the remote file
remote_file = fs.open(file_path)
# Check if it's a zip file
if zipfile.is_zipfile(remote_file):
# Reset the file pointer
remote_file.seek(0)
# Open as a zip file and extract payload.bin
with zipfile.ZipFile(remote_file) as zf:
if "payload.bin" in zf.namelist():
return zf.open("payload.bin")
else:
raise ValueError("payload.bin not found in zip file")
else:
# Not a zip file, use as is
return remote_file
else:
# Local file
if zipfile.is_zipfile(file_path):
with zipfile.ZipFile(file_path) as zf:
if "payload.bin" in zf.namelist():
return zf.open("payload.bin")
else:
raise ValueError("payload.bin not found in zip file")
else:
# Local file, not a zip
return open(file_path, 'rb')
def data_for_op(op, payload_file, out_file, old_file, data_offset, block_size):
payload_file.seek(data_offset + op.data_offset)
data = payload_file.read(op.data_length)
if op.data_sha256_hash:
assert hashlib.sha256(data).digest() == op.data_sha256_hash, 'operation data hash mismatch'
if op.type == op.REPLACE_XZ:
dec = lzma.LZMADecompressor()
data = dec.decompress(data)
out_file.seek(op.dst_extents[0].start_block*block_size)
out_file.write(data)
elif op.type == op.ZSTD:
dec = zstandard.ZstdDecompressor().decompressobj()
data = dec.decompress(data)
out_file.seek(op.dst_extents[0].start_block*block_size)
out_file.write(data)
elif op.type == op.REPLACE_BZ:
dec = bz2.BZ2Decompressor()
data = dec.decompress(data)
out_file.seek(op.dst_extents[0].start_block*block_size)
out_file.write(data)
elif op.type == op.REPLACE:
out_file.seek(op.dst_extents[0].start_block*block_size)
out_file.write(data)
elif op.type == op.SOURCE_COPY:
if not old_file:
print("SOURCE_COPY supported only for differential OTA")
sys.exit(-2)
out_file.seek(op.dst_extents[0].start_block*block_size)
for ext in op.src_extents:
old_file.seek(ext.start_block*block_size)
data = old_file.read(ext.num_blocks*block_size)
out_file.write(data)
elif op.type in (op.SOURCE_BSDIFF, op.BROTLI_BSDIFF):
if not old_file:
print("BSDIFF supported only for differential OTA")
sys.exit(-3)
out_file.seek(op.dst_extents[0].start_block*block_size)
tmp_buff = io.BytesIO()
for ext in op.src_extents:
old_file.seek(ext.start_block*block_size)
old_data = old_file.read(ext.num_blocks*block_size)
tmp_buff.write(old_data)
tmp_buff.seek(0)
old_data = tmp_buff.read()
tmp_buff.seek(0)
tmp_buff.write(bsdiff4.core.patch(old_data, *bsdf2_read_patch(io.BytesIO(data))))
n = 0
tmp_buff.seek(0)
for ext in op.dst_extents:
tmp_buff.seek(n*block_size)
n += ext.num_blocks
data = tmp_buff.read(ext.num_blocks*block_size)
out_file.seek(ext.start_block*block_size)
out_file.write(data)
elif op.type == op.ZERO:
for ext in op.dst_extents:
out_file.seek(ext.start_block*block_size)
out_file.write(b'\x00' * ext.num_blocks*block_size)
else:
print("Unsupported type = %d" % op.type)
sys.exit(-1)
return data
def dump_part(part, payload_file, data_offset, block_size, out_dir, old_dir=None, use_diff=False):
sys.stdout.write(f"Processing {part.partition_name} partition")
sys.stdout.flush()
# Ensure output directory exists
Path(out_dir).mkdir(exist_ok=True)
out_file = open(f'{out_dir}/{part.partition_name}.img', 'wb')
if use_diff:
old_file_path = f'{old_dir}/{part.partition_name}.img'
if os.path.exists(old_file_path):
old_file = open(old_file_path, 'rb')
else:
print(f"\nWarning: Original image {old_file_path} not found for differential OTA")
old_file = None
else:
old_file = None
for op in part.operations:
data = data_for_op(op, payload_file, out_file, old_file, data_offset, block_size)
sys.stdout.write(".")
sys.stdout.flush()
out_file.close()
if old_file:
old_file.close()
print("Done")
def main():
parser = argparse.ArgumentParser(description='OTA payload dumper')
parser.add_argument('payload_path', type=str,
help='payload file path or URL (can be a zip file)')
parser.add_argument('--out', default='output',
help='output directory (default: output)')
parser.add_argument('--diff', action='store_true',
help='extract differential OTA, you need put original images to old dir')
parser.add_argument('--old', default='old',
help='directory with original images for differential OTA (default: old)')
parser.add_argument('--images', default="",
help='comma-separated list of images to extract (default: all)')
args = parser.parse_args()
# Ensure output directory exists
if not os.path.exists(args.out):
os.makedirs(args.out)
# Open the payload file (handles local/remote and zip/non-zip)
with open_payload_file(args.payload_path) as payload_file:
# Read and verify the magic header
magic = payload_file.read(4)
assert magic == b'CrAU', "Invalid magic header, not an OTA payload"
file_format_version = u64(payload_file.read(8))
assert file_format_version == 2, f"Unsupported file format version: {file_format_version}"
manifest_size = u64(payload_file.read(8))
metadata_signature_size = 0
if file_format_version > 1:
metadata_signature_size = u32(payload_file.read(4))
manifest = payload_file.read(manifest_size)
metadata_signature = payload_file.read(metadata_signature_size)
data_offset = payload_file.tell()
dam = um.DeltaArchiveManifest()
dam.ParseFromString(manifest)
block_size = dam.block_size
if args.images == "":
for part in dam.partitions:
dump_part(part, payload_file, data_offset, block_size, args.out,
args.old if args.diff else None, args.diff)
else:
images = args.images.split(",")
for image in images:
partition = [part for part in dam.partitions if part.partition_name == image]
if partition:
dump_part(partition[0], payload_file, data_offset, block_size, args.out,
args.old if args.diff else None, args.diff)
else:
sys.stderr.write(f"Partition {image} not found in payload!\n")
if __name__ == "__main__":
main()