forked from nxp-mcuxpresso/spsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.spec
389 lines (344 loc) · 13.4 KB
/
apps.spec
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
# -*- mode: python ; coding: utf-8 -*-
#
# Copyright 2020-2024 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
"""Configuration file for PyInstaller for SPSDK Applications."""
import importlib
import importlib.resources
import os
import re
import shutil
from typing import Dict, List, Tuple
import cmsis_pack_manager
import jinja2
from libusbsio import LIBUSBSIO
from PyInstaller.building.build_main import BUNDLE, COLLECT, EXE, MERGE, PYZ, Analysis
from PyInstaller.compat import is_darwin
from PyInstaller.config import CONF
from PyInstaller.utils.hooks import copy_metadata
def create_resource_symlinks(app_dir: str, symlink_list: List[Tuple[str, str, str]]) -> None:
"""Creates symlinks from Resources to shared libraries.
This must be done in the MacOS in order to be signed and notarized.
:param app_dir: directory where the PyInstaller creates the layout
:param symlink_list: list of tuples with source directory, relative directory and name of the package
"""
for _source, relative, extra_dir in symlink_list:
rsrc_path = os.path.join(app_dir, "Contents", "Resources", extra_dir, relative)
bin_path = os.path.join(app_dir, "Contents", "MacOS", "tools_bin", extra_dir, relative)
os.makedirs(os.path.dirname(bin_path), exist_ok=True)
shutil.move(rsrc_path, bin_path)
# number of folders - by splitting by "/" means how many times we should go back using ../
back_cnt = len(relative.split("/")) + 1
os.symlink("../" * back_cnt + "MacOS/tools_bin/" + extra_dir + "/" + relative, rsrc_path)
USE_BLOCK_CIPHER = None
datas = []
# setuptools_scm checks the version of setuptools and if not satisfied, it complains in console
datas.extend(copy_metadata("setuptools", recursive=False))
# exclude imports and make them available outside of the executable
# smartcard is LGPL so make it external outside of the executable so it can be replaced
excluded_imports = ["smartcard"]
macos_dirs_to_copy = list()
for pkg in excluded_imports:
module = importlib.import_module(pkg)
mod_path = module.__path__[0]
if is_darwin:
# on MacOS it is needed to split the library into correct place, PyInstaller does it incorrectly
macos_dirs_to_copy.append(mod_path)
else:
# Windows and Linux, just put it as data
datas.append((mod_path, os.path.basename(mod_path)))
hidden_imports = {"pkg_resources"}
# List of packages that should have there Distutils entrypoints included.
def create_runtime_hook_entry_points(
ep_packages: List[str], template_path: str = "pyinst_pkg_hook.j2"
) -> Dict[str, List[str]]:
"""Creates runtime hook configured to simulate entry_points.
:param ep_packages: list of packages to be analyzed for entry points
:param template_path: path to the jinja template with the runtime hook
:return: dictionary with entry point name and appropriate list of items
"""
hook_ep_packages: Dict[str, List[str]] = {}
import importlib
from importlib_metadata import entry_points
for ep_package in ep_packages:
for entry_point in importlib.metadata.entry_points(group=ep_package):
if ep_package in hook_ep_packages:
package_entry_point = hook_ep_packages[ep_package]
else:
package_entry_point = []
hook_ep_packages[ep_package] = package_entry_point
module_name, _, attr = entry_point.value.partition(":")
package_entry_point.append(f"{entry_point.name} = {module_name}:{attr}")
hidden_imports.add(module_name)
with open(template_path) as f:
# jinja2.Template doesn't have __init__, therefor the awkward type-hint
template: jinja2.Template = jinja2.Template(f.read())
os.makedirs("./generated", exist_ok=True)
with open("./generated/pkg_resources_hook.py", "w", newline="") as f:
f.write(template.render(packages=str(hook_ep_packages)))
return hook_ep_packages
entries = create_runtime_hook_entry_points(
["pyocd.probe", "pyocd_pemicro", "pyocd", "pyocd_pemicro"],
template_path="tools/pyinstaller/pyinst_pkg_hook.j2",
)
# take from entry items the package name - line is in form "package:class"
for k, v in entries.items():
for line in v:
match = re.match(r"(.* = )(\w+):", line)
if match:
hidden_imports.add(match[2])
# add library for cmsis_pack_manager
cmsis_mod_dir = os.path.dirname(cmsis_pack_manager.__file__)
shared_binaries = [
(cmsis_mod_dir + "/cmsis_pack_manager/*.so", "cmsis_pack_manager/cmsis_pack_manager/")
]
# add library for libusbsio
usblib = LIBUSBSIO()
usblib.LoadDLL()
shared_binaries.append(
# pylint: disable=protected-access # there's no other way
(usblib._dllpath, os.path.dirname(usblib._dllpath[usblib._dllpath.find("libusbsio") :]))
)
# optionally add libraries for PQC
try:
import spsdk_pqc
spsdk_pqc_dir = os.path.dirname(spsdk_pqc.__file__)
shared_binaries.append((spsdk_pqc_dir + "/*.so", "spsdk_pqc"))
except ImportError:
pass
# add libuuu libraries
try:
import libuuu
uuudll = libuuu.LibUUU().DLL
shared_binaries.append((uuudll, "libuuu/lib"))
except OSError:
pass
datas.extend([("spsdk/data", "spsdk/data")])
# Additional PyOCD resources
SEQUENCE_LARK = "sequences.lark"
with importlib.resources.files("pyocd.debug.sequences") as package_path:
resource_path = package_path / SEQUENCE_LARK
datas.extend([(resource_path, "pyocd/debug/sequences")])
def analyze(sources: List[str]) -> Analysis:
"""Helper for analysis the sources using PyInstaller.
:param sources: array of python sources to be analyzed
:return: Analysis instance
"""
return Analysis(
sources,
pathex=["./"],
binaries=shared_binaries,
datas=datas,
hiddenimports=list(hidden_imports),
hookspath=["./tools/pyinstaller/hooks"],
runtime_hooks=["./generated/pkg_resources_hook.py"],
excludes=excluded_imports,
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=USE_BLOCK_CIPHER,
noarchive=False,
)
def executable(analysis: Analysis, name: str, version: str) -> EXE:
"""Creates PyInstaller executable information.
:param analysis: Analysis instance from analyze function
:param name: name of the application (no exe extension)
:param version: (relative) path to version file
:return: EXE instance
"""
pyz = PYZ(analysis.pure, analysis.zipped_data, cipher=USE_BLOCK_CIPHER)
return EXE(
pyz,
analysis.scripts,
[],
exclude_binaries=True,
name=name,
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
version=version,
console=True,
)
# analysis
a_bl = analyze(["spsdk/apps/blhost.py"])
a_sdp = analyze(["spsdk/apps/sdphost.py"])
a_ndm = analyze(["spsdk/apps/nxpdebugmbox.py"])
a_pfr = analyze(["spsdk/apps/pfr.py"])
a_nxpele = analyze(["spsdk/apps/nxpele.py"])
a_nxpdevhsm = analyze(["spsdk/apps/nxpdevhsm.py"])
a_nxpimage = analyze(["spsdk/apps/nxpimage.py"])
a_shadowregs = analyze(["spsdk/apps/shadowregs.py"])
a_tphost = analyze(["spsdk/apps/tphost.py"])
a_tpconfig = analyze(["spsdk/apps/tpconfig.py"])
a_nxpdevscan = analyze(["spsdk/apps/nxpdevscan.py"])
a_ifr = analyze(["spsdk/apps/ifr.py"])
a_nxpcrypto = analyze(["spsdk/apps/nxpcrypto.py"])
a_nxpmemcfg = analyze(["spsdk/apps/nxpmemcfg.py"])
a_nxpwpc = analyze(["spsdk/apps/nxpwpc.py"])
a_el2go = analyze(["spsdk/apps/el2go.py"])
a_dk6prog = analyze(["spsdk/apps/dk6prog.py"])
a_lpcprog = analyze(["spsdk/apps/lpcprog.py"])
a_nxpdice = analyze(["spsdk/apps/nxpdice.py"])
a_nxpfuses = analyze(["spsdk/apps/nxpfuses.py"])
# merge the dependencies together so the (first) blhost contains all required dependencies from all tools
MERGE(
(a_bl, "blhost", "blhost"),
(a_sdp, "sdphost", "sdphost"),
(a_ndm, "nxpdebugmbox", "nxpdebugmbox"),
(a_pfr, "pfr", "pfr"),
(a_nxpele, "nxpele", "nxpele"),
(a_nxpdevhsm, "nxpdevhsm", "nxpdevhsm"),
(a_nxpimage, "nxpimage", "nxpimage"),
(a_shadowregs, "shadowregs", "shadowregs"),
(a_tphost, "tphost", "tphost"),
(a_tpconfig, "tpconfig", "tpconfig"),
(a_ifr, "ifr", "ifr"),
(a_nxpdevscan, "nxpdevscan", "nxpdevscan"),
(a_nxpcrypto, "nxpcrypto", "nxpcrypto"),
(a_nxpmemcfg, "nxpmemcfg", "nxpmemcfg"),
(a_nxpwpc, "nxpwpc", "nxpwpc"),
(a_el2go, "el2go-host", "el2go-host"),
(a_dk6prog, "dk6prog", "dk6prog"),
(a_lpcprog, "lpcprog", "lpcprog"),
(a_nxpdice, "lnxpdice", "lnxpdice"),
(a_nxpfuses, "nxpfuses", "nxpfuses"),
)
# executables
exe_bl = executable(a_bl, "blhost", "tools/pyinstaller/blhost_version_info.txt")
exe_sdp = executable(a_sdp, "sdphost", "tools/pyinstaller/sdphost_version_info.txt")
exe_ndm = executable(a_ndm, "nxpdebugmbox", "tools/pyinstaller/nxpdebugmbox_version_info.txt")
exe_pfr = executable(a_pfr, "pfr", "tools/pyinstaller/pfr_version_info.txt")
exe_nxpele = executable(a_nxpele, "nxpele", "tools/pyinstaller/nxpele_version_info.txt")
exe_nxpdevhsm = executable(a_nxpdevhsm, "nxpdevhsm", "tools/pyinstaller/nxpdevhsm_version_info.txt")
exe_nxpimage = executable(a_nxpimage, "nxpimage", "tools/pyinstaller/nxpimage_version_info.txt")
exe_shadowregs = executable(
a_shadowregs, "shadowregs", "tools/pyinstaller/shadowregs_version_info.txt"
)
exe_tphost = executable(a_tphost, "tphost", "tools/pyinstaller/tphost_version_info.txt")
exe_tpconfig = executable(a_tpconfig, "tpconfig", "tools/pyinstaller/tpconfig_version_info.txt")
exe_nxpdevscan = executable(
a_nxpdevscan, "nxpdevscan", "tools/pyinstaller/nxpdevscan_version_info.txt"
)
exe_ifr = executable(a_ifr, "ifr", "tools/pyinstaller/ifr_version_info.txt")
exe_nxpcrypto = executable(a_nxpcrypto, "nxpcrypto", "tools/pyinstaller/nxpcrypto_version_info.txt")
exe_nxpmemcfg = executable(a_nxpmemcfg, "nxpmemcfg", "tools/pyinstaller/nxpmemcfg_version_info.txt")
exe_nxpwpc = executable(a_nxpwpc, "nxpwpc", "tools/pyinstaller/nxpwpc_version_info.txt")
exe_el2go = executable(a_el2go, "el2go-host", "tools/pyinstaller/el2go_version_info.txt")
exe_dk6prog = executable(a_dk6prog, "dk6prog", "tools/pyinstaller/dk6prog_version_info.txt")
exe_lpcprog = executable(a_lpcprog, "lpcprog", "tools/pyinstaller/lpcprog_version_info.txt")
exe_nxpdice = executable(a_nxpdice, "nxpdice", "tools/pyinstaller/nxpdice_version_info.txt")
exe_nxpfuses = executable(
a_nxpfuses, "nxpfuses", "tools/pyinstaller/nxpfuses_version_info.txt"
)
# collect all bundles together
coll_apps = COLLECT(
exe_bl,
exe_sdp,
exe_ndm,
exe_pfr,
exe_nxpele,
exe_nxpdevhsm,
exe_nxpimage,
exe_shadowregs,
exe_tphost,
exe_tpconfig,
exe_nxpdevscan,
exe_ifr,
exe_nxpcrypto,
exe_nxpmemcfg,
exe_nxpwpc,
exe_el2go,
exe_dk6prog,
a_bl.binaries,
a_bl.zipfiles,
a_bl.datas,
a_sdp.binaries,
a_sdp.zipfiles,
a_sdp.datas,
a_ndm.binaries,
a_ndm.zipfiles,
a_ndm.datas,
a_pfr.binaries,
a_pfr.zipfiles,
a_pfr.datas,
a_nxpele.binaries,
a_nxpele.zipfiles,
a_nxpele.datas,
a_nxpdevhsm.binaries,
a_nxpdevhsm.zipfiles,
a_nxpdevhsm.datas,
a_nxpimage.binaries,
a_nxpimage.zipfiles,
a_nxpimage.datas,
a_shadowregs.binaries,
a_shadowregs.zipfiles,
a_shadowregs.datas,
a_tphost.binaries,
a_tphost.zipfiles,
a_tphost.datas,
a_tpconfig.binaries,
a_tpconfig.zipfiles,
a_tpconfig.datas,
a_nxpdevscan.binaries,
a_nxpdevscan.zipfiles,
a_nxpdevscan.datas,
a_ifr.binaries,
a_ifr.zipfiles,
a_ifr.datas,
a_nxpcrypto.binaries,
a_nxpcrypto.zipfiles,
a_nxpcrypto.datas,
a_nxpmemcfg.binaries,
a_nxpmemcfg.zipfiles,
a_nxpmemcfg.datas,
a_nxpwpc.binaries,
a_nxpwpc.zipfiles,
a_nxpwpc.datas,
a_el2go.binaries,
a_el2go.zipfiles,
a_el2go.datas,
a_dk6prog.binaries,
a_dk6prog.zipfiles,
a_dk6prog.datas,
a_lpcprog.binaries,
a_lpcprog.zipfiles,
a_lpcprog.datas,
a_lpcprog.binaries,
a_lpcprog.zipfiles,
a_lpcprog.datas,
strip=False,
upx=True,
upx_exclude=[],
name="spsdk",
)
if is_darwin:
app = BUNDLE(
coll_apps,
name="spsdk.app",
# icon='resources/securep.icns',
bundle_identifier=None,
)
DIST_ROOT = os.path.join(CONF["distpath"], app.name)
DIST_RSRCS = os.path.join(DIST_ROOT, "Contents", "Resources")
DIST_MACOS = os.path.join(DIST_ROOT, "Contents", "MacOS")
DIST_FRMWK = os.path.join(DIST_ROOT, "Contents", "Frameworks")
# copy modules into the resources folder and make symlinks for binaries
macos_symlinks = list()
for mod_path in macos_dirs_to_copy:
mod_name = os.path.basename(mod_path)
# get files that should be soft-linked
for root, dirs, files in os.walk(mod_path):
for f in list(filter(lambda x: x.endswith(".so"), files)):
macos_symlinks.append(
(
os.path.join(root, f),
os.path.relpath(os.path.join(root, f), mod_path),
os.path.basename(mod_path),
)
)
# copy all files into the Resources and create a soft link in the main binary directory
shutil.copytree(mod_path, os.path.join(DIST_RSRCS, mod_name))
os.symlink("../Resources/" + mod_name, os.path.join(DIST_FRMWK, mod_name))
# move binary executables into tools_bin directory and create a soft link
create_resource_symlinks(DIST_ROOT, macos_symlinks)