forked from NordicSemiconductor/pc-nrfutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.py
539 lines (439 loc) · 20 KB
/
package.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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
from __future__ import absolute_import
#
# Copyright (c) 2016 Nordic Semiconductor ASA
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this
# list of conditions and the following disclaimer in the documentation and/or
# other materials provided with the distribution.
#
# 3. Neither the name of Nordic Semiconductor ASA nor the names of other
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# 4. This software must only be used in or with a processor manufactured by Nordic
# Semiconductor ASA, or in or with a processor manufactured by a third party that
# is used in combination with a processor manufactured by Nordic Semiconductor.
#
# 5. Any software provided in binary or object form under this license must not be
# reverse engineered, decompiled, modified and/or disassembled.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Python standard library
import os
import tempfile
import shutil
import binascii
from enum import Enum
# 3rd party libraries
from zipfile import ZipFile
import hashlib
# Nordic libraries
from pc_ble_driver_py.exceptions import NordicSemiException
from nordicsemi.dfu.nrfhex import *
from nordicsemi.dfu.init_packet_pb import *
from nordicsemi.dfu.manifest import ManifestGenerator, Manifest
from nordicsemi.dfu.model import HexType, FirmwareKeys
from nordicsemi.dfu.crc16 import *
from .signing import Signing
HexTypeToInitPacketFwTypemap = {
HexType.APPLICATION: DFUType.APPLICATION,
HexType.BOOTLOADER: DFUType.BOOTLOADER,
HexType.SOFTDEVICE: DFUType.SOFTDEVICE,
HexType.SD_BL: DFUType.SOFTDEVICE_BOOTLOADER
}
class PacketField(Enum):
DEBUG_MODE = 1
HW_VERSION = 2
FW_VERSION = 3
REQUIRED_SOFTDEVICES_ARRAY = 4
class Package(object):
"""
Packages and unpacks Nordic DFU packages. Nordic DFU packages are zip files that contains firmware and meta-information
necessary for utilities to perform a DFU on nRF5X devices.
The internal data model used in Package is a dictionary. The dictionary is expressed like this in
json format:
{
"manifest": {
"bootloader": {
"bin_file": "asdf.bin",
"dat_file": "asdf.dat",
"init_packet_data": {
"application_version": null,
"device_revision": null,
"device_type": 5,
"firmware_hash": "asdfasdkfjhasdkfjashfkjasfhaskjfhkjsdfhasjkhf",
"softdevice_req": [
17,
18
]
}
}
}
Attributes application, bootloader, softdevice, softdevice_bootloader shall not be put into the manifest if they are null
"""
DEFAULT_DEBUG_MODE = False
DEFAULT_HW_VERSION = 0xFFFFFFFF
DEFAULT_APP_VERSION = 0xFFFFFFFF
DEFAULT_BL_VERSION = 0xFFFFFFFF
DEFAULT_SD_REQ = [0xFFFE]
DEFAULT_SD_ID = [0xFFFE]
DEFAULT_DFU_VER = 0.5
MANIFEST_FILENAME = "manifest.json"
def __init__(self,
debug_mode=DEFAULT_DEBUG_MODE,
hw_version=DEFAULT_HW_VERSION,
app_version=DEFAULT_APP_VERSION,
bl_version=DEFAULT_BL_VERSION,
sd_req=DEFAULT_SD_REQ,
sd_id=DEFAULT_SD_ID,
app_fw=None,
bootloader_fw=None,
softdevice_fw=None,
key_file=None):
"""
Constructor that requires values used for generating a Nordic DFU package.
:param int debug_mode: Debug init-packet field
:param int hw_version: Hardware version init-packet field
:param int app_version: App version init-packet field
:param int bl_version: Bootloader version init-packet field
:param list sd_req: Softdevice Requirement init-packet field
:param list sd_id: Softdevice Requirement init-packet field for the Application if softdevice_fw is set
:param str app_fw: Path to application firmware file
:param str bootloader_fw: Path to bootloader firmware file
:param str softdevice_fw: Path to softdevice firmware file
:param str key_file: Path to Signing key file (PEM)
:return: None
"""
init_packet_vars = {}
if debug_mode is not None:
init_packet_vars[PacketField.DEBUG_MODE] = debug_mode
if hw_version is not None:
init_packet_vars[PacketField.HW_VERSION] = hw_version
if sd_id is not None:
init_packet_vars[PacketField.REQUIRED_SOFTDEVICES_ARRAY] = sd_id
self.firmwares_data = {}
if app_fw:
self.__add_firmware_info(firmware_type=HexType.APPLICATION,
firmware_version=app_version,
filename=app_fw,
init_packet_data=init_packet_vars)
if sd_req is not None:
init_packet_vars[PacketField.REQUIRED_SOFTDEVICES_ARRAY] = sd_req
if bootloader_fw:
self.__add_firmware_info(firmware_type=HexType.BOOTLOADER,
firmware_version=bl_version,
filename=bootloader_fw,
init_packet_data=init_packet_vars)
if softdevice_fw:
self.__add_firmware_info(firmware_type=HexType.SOFTDEVICE,
firmware_version=0xFFFFFFFF,
filename=softdevice_fw,
init_packet_data=init_packet_vars)
self.key_file = key_file
self.work_dir = None
self.manifest = None
def __del__(self):
"""
Destructor removes the temporary working directory
:return:
"""
if self.work_dir is not None:
shutil.rmtree(self.work_dir)
self.work_dir = None
def rm_work_dir(self, preserve):
# Delete the temporary directory
if self.work_dir is not None:
if not preserve:
shutil.rmtree(self.work_dir)
self.work_dir = None
def parse_package(self, filename, preserve_work_dir=False):
self.work_dir = self.__create_temp_workspace()
self.zip_file = filename
self.zip_dir = os.path.join(self.work_dir, 'unpacked_zip')
self.manifest = Package.unpack_package(filename, self.zip_dir)
self.rm_work_dir(preserve_work_dir)
def image_str(self, index, hex_type, img):
type_strs = {HexType.SD_BL : "sd_bl",
HexType.SOFTDEVICE : "softdevice",
HexType.BOOTLOADER : "bootloader",
HexType.APPLICATION : "application" }
# parse init packet
with open(os.path.join(self.zip_dir, img.dat_file), "rb") as imgf:
initp_bytes = imgf.read()
initp = InitPacketPB(from_bytes=initp_bytes)
sd_req = ""
for x in initp.init_command.sd_req:
sd_req = sd_req + "0x{0:02X}, ".format(x)
if len(sd_req) != 0:
sd_req = sd_req[:-2]
if (initp.packet.HasField('signed_command')):
cmd = initp.packet.signed_command.command
signature_type = SigningTypes(initp.packet.signed_command.signature_type).name
signature_hex = binascii.hexlify(initp.packet.signed_command.signature)
else:
cmd = initp.packet.command
signature_type = 'UNSIGNED'
signature_hex = 'N/A'
s = """|
|- Image #{0}:
|- Type: {1}
|- Image file: {2}
|- Init packet file: {3}
|
|- op_code: {4}
|- signature_type: {5}
|- signature (little-endian): {6}
|
|- fw_version: 0x{7:08X} ({7})
|- hw_version 0x{8:08X} ({8})
|- sd_req: {9}
|- type: {10}
|- sd_size: {11}
|- bl_size: {12}
|- app_size: {13}
|
|- hash_type: {14}
|- hash (little-endian): {15}
|
|- is_debug: {16}
""".format(index,
type_strs[hex_type],
img.bin_file,
img.dat_file,
CommandTypes(cmd.op_code).name,
signature_type,
signature_hex,
cmd.init.fw_version,
cmd.init.hw_version,
sd_req,
DFUType(cmd.init.type).name,
cmd.init.sd_size,
cmd.init.bl_size,
cmd.init.app_size,
HashTypes(cmd.init.hash.hash_type).name,
binascii.hexlify(cmd.init.hash.hash),
cmd.init.is_debug,
)
return s
def __str__(self):
imgs = ""
i = 0
if self.manifest.softdevice_bootloader:
imgs = imgs + self.image_str(i, HexType.SD_BL, self.manifest.softdevice_bootloader)
i = i + 1
if self.manifest.softdevice:
imgs = imgs + self.image_str(i, HexType.SOFTDEVICE, self.manifest.softdevice)
i = i + 1
if self.manifest.bootloader:
imgs = imgs + self.image_str(i, HexType.BOOTLOADER, self.manifest.bootloader)
i = i + 1
if self.manifest.application:
imgs = imgs + self.image_str(i, HexType.APPLICATION, self.manifest.application)
i = i + 1
s = """
DFU Package: <{0}>:
|
|- Image count: {1}
""".format(self.zip_file, i)
s = s + imgs
return s
def generate_package(self, filename, preserve_work_dir=False):
"""
Generates a Nordic DFU package. The package is a zip file containing firmware(s) and metadata required
for Nordic DFU applications to perform DFU onn nRF5X devices.
:param str filename: Filename for generated package.
:param bool preserve_work_dir: True to preserve the temporary working directory.
Useful for debugging of a package, and if the user wants to look at the generated package without having to
unzip it.
:return: None
"""
self.zip_file = filename
self.work_dir = self.__create_temp_workspace()
if Package._is_bootloader_softdevice_combination(self.firmwares_data):
# Removing softdevice and bootloader data from dictionary and adding the combined later
softdevice_fw_data = self.firmwares_data.pop(HexType.SOFTDEVICE)
bootloader_fw_data = self.firmwares_data.pop(HexType.BOOTLOADER)
softdevice_fw_name = softdevice_fw_data[FirmwareKeys.FIRMWARE_FILENAME]
bootloader_fw_name = bootloader_fw_data[FirmwareKeys.FIRMWARE_FILENAME]
new_filename = "sd_bl.bin"
sd_bl_file_path = os.path.join(self.work_dir, new_filename)
nrf_hex = nRFHex(softdevice_fw_name, bootloader_fw_name)
nrf_hex.tobinfile(sd_bl_file_path)
softdevice_size = nrf_hex.size()
bootloader_size = nrf_hex.bootloadersize()
self.__add_firmware_info(firmware_type=HexType.SD_BL,
firmware_version=bootloader_fw_data[FirmwareKeys.INIT_PACKET_DATA][PacketField.FW_VERSION], # use bootloader version in combination with SD
filename=sd_bl_file_path,
init_packet_data=softdevice_fw_data[FirmwareKeys.INIT_PACKET_DATA],
sd_size=softdevice_size,
bl_size=bootloader_size)
for key, firmware_data in self.firmwares_data.iteritems():
# Normalize the firmware file and store it in the work directory
firmware_data[FirmwareKeys.BIN_FILENAME] = \
Package.normalize_firmware_to_bin(self.work_dir, firmware_data[FirmwareKeys.FIRMWARE_FILENAME])
# Calculate the hash for the .bin file located in the work directory
bin_file_path = os.path.join(self.work_dir, firmware_data[FirmwareKeys.BIN_FILENAME])
firmware_hash = Package.calculate_sha256_hash(bin_file_path)
bin_length = int(Package.calculate_file_size(bin_file_path))
sd_size = 0
bl_size = 0
app_size = 0
if key == HexType.APPLICATION:
app_size = bin_length
elif key == HexType.SOFTDEVICE:
sd_size = bin_length
elif key == HexType.BOOTLOADER:
bl_size = bin_length
elif key == HexType.SD_BL:
bl_size = firmware_data[FirmwareKeys.BL_SIZE]
sd_size = firmware_data[FirmwareKeys.SD_SIZE]
init_packet = InitPacketPB(
from_bytes = None,
hash_bytes=firmware_hash,
hash_type=HashTypes.SHA256,
dfu_type=HexTypeToInitPacketFwTypemap[key],
is_debug=firmware_data[FirmwareKeys.INIT_PACKET_DATA][PacketField.DEBUG_MODE],
fw_version=firmware_data[FirmwareKeys.INIT_PACKET_DATA][PacketField.FW_VERSION],
hw_version=firmware_data[FirmwareKeys.INIT_PACKET_DATA][PacketField.HW_VERSION],
sd_size=sd_size,
app_size=app_size,
bl_size=bl_size,
sd_req=firmware_data[FirmwareKeys.INIT_PACKET_DATA][PacketField.REQUIRED_SOFTDEVICES_ARRAY])
if (self.key_file is not None):
signer = Signing()
signer.load_key(self.key_file)
signature = signer.sign(init_packet.get_init_command_bytes())
init_packet.set_signature(signature, SigningTypes.ECDSA_P256_SHA256)
# Store the .dat file in the work directory
init_packet_filename = firmware_data[FirmwareKeys.BIN_FILENAME].replace(".bin", ".dat")
with open(os.path.join(self.work_dir, init_packet_filename), 'wb') as init_packet_file:
init_packet_file.write(init_packet.get_init_packet_pb_bytes())
firmware_data[FirmwareKeys.DAT_FILENAME] = \
init_packet_filename
# Store the manifest to manifest.json
manifest = self.create_manifest()
with open(os.path.join(self.work_dir, Package.MANIFEST_FILENAME), "w") as manifest_file:
manifest_file.write(manifest)
# Package the work_dir to a zip file
Package.create_zip_package(self.work_dir, filename)
# Delete the temporary directory
self.rm_work_dir(preserve_work_dir)
@staticmethod
def __create_temp_workspace():
return tempfile.mkdtemp(prefix="nrf_dfu_pkg_")
@staticmethod
def create_zip_package(work_dir, filename):
files = os.listdir(work_dir)
with ZipFile(filename, 'w') as package:
for _file in files:
file_path = os.path.join(work_dir, _file)
package.write(file_path, _file)
@staticmethod
def calculate_file_size(firmware_filename):
b = os.path.getsize(firmware_filename)
return b
@staticmethod
def calculate_sha256_hash(firmware_filename):
read_buffer = 4096
digest = hashlib.sha256()
with open(firmware_filename, 'rb') as firmware_file:
while True:
data = firmware_file.read(read_buffer)
if data:
digest.update(data)
else:
break
# return hash in little endian
sha256 = digest.digest()
return sha256[31::-1]
@staticmethod
def calculate_crc(crc, firmware_filename):
"""
Calculates CRC16 has on provided firmware filename
:type str firmware_filename:
"""
data_buffer = b''
read_size = 4096
with open(firmware_filename, 'rb') as firmware_file:
while True:
data = firmware_file.read(read_size)
if data:
data_buffer += data
else:
break
if crc == 16:
return calc_crc16(data_buffer, 0xffff)
elif crc == 32:
return binascii.crc32(data_buffer)
else:
raise NordicSemiException("Invalid CRC type")
def create_manifest(self):
manifest = ManifestGenerator(self.firmwares_data)
return manifest.generate_manifest()
@staticmethod
def _is_bootloader_softdevice_combination(firmwares):
return (HexType.BOOTLOADER in firmwares) and (HexType.SOFTDEVICE in firmwares)
def __add_firmware_info(self, firmware_type, firmware_version, filename, init_packet_data, sd_size=None, bl_size=None):
self.firmwares_data[firmware_type] = {
FirmwareKeys.FIRMWARE_FILENAME: filename,
FirmwareKeys.INIT_PACKET_DATA: init_packet_data.copy(),
# Copying init packet to avoid using the same for all firmware
}
if firmware_type == HexType.SD_BL:
self.firmwares_data[firmware_type][FirmwareKeys.SD_SIZE] = sd_size
self.firmwares_data[firmware_type][FirmwareKeys.BL_SIZE] = bl_size
if firmware_version is not None:
self.firmwares_data[firmware_type][FirmwareKeys.INIT_PACKET_DATA][PacketField.FW_VERSION] = firmware_version
@staticmethod
def normalize_firmware_to_bin(work_dir, firmware_path):
firmware_filename = os.path.basename(firmware_path)
new_filename = firmware_filename.replace(".hex", ".bin")
new_filepath = os.path.join(work_dir, new_filename)
if not os.path.exists(new_filepath):
temp = nRFHex(firmware_path)
temp.tobinfile(new_filepath)
return new_filepath
@staticmethod
def unpack_package(package_path, target_dir):
"""
Unpacks a Nordic DFU package.
:param str package_path: Path to the package
:param str target_dir: Target directory to unpack the package to
:return: Manifest Manifest: Returns a manifest back to the user. The manifest is a parse datamodel
of the manifest found in the Nordic DFU package.
"""
if not os.path.isfile(package_path):
raise NordicSemiException("Package {0} not found.".format(package_path))
target_dir = os.path.abspath(target_dir)
target_base_path = os.path.dirname(target_dir)
if not os.path.exists(target_base_path):
raise NordicSemiException("Base path to target directory {0} does not exist.".format(target_base_path))
if not os.path.isdir(target_base_path):
raise NordicSemiException("Base path to target directory {0} is not a directory.".format(target_base_path))
if os.path.exists(target_dir):
raise NordicSemiException(
"Target directory {0} exists, not able to unpack to that directory.",
target_dir)
with ZipFile(package_path, 'r') as pkg:
pkg.extractall(target_dir)
with open(os.path.join(target_dir, Package.MANIFEST_FILENAME), 'r') as f:
_json = f.read()
""":type :str """
return Manifest.from_json(_json)