blob: e64740094f60ac0118850abdd2b1a7fbca2c7693 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassbf7fd502016-11-25 20:15:51 -07002# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glassbf7fd502016-11-25 20:15:51 -07005# Creates binary images from input files controlled by a description
6#
7
8from collections import OrderedDict
Simon Glass87d43322020-08-05 13:27:46 -06009import glob
Simon Glassbf7fd502016-11-25 20:15:51 -070010import os
Simon Glass9fbfaba2020-08-29 11:36:14 -060011import pkg_resources
Simon Glassb2381432020-09-06 10:39:09 -060012import re
Simon Glass9fbfaba2020-08-29 11:36:14 -060013
Simon Glassbf7fd502016-11-25 20:15:51 -070014import sys
Simon Glassbf776672020-04-17 18:09:04 -060015from patman import tools
Simon Glassbf7fd502016-11-25 20:15:51 -070016
Simon Glass386c63c2022-01-09 20:13:50 -070017from binman import bintool
Simon Glass16287932020-04-17 18:09:03 -060018from binman import cbfs_util
Simon Glassbf776672020-04-17 18:09:04 -060019from patman import command
Simon Glass7960a0a2022-08-07 09:46:46 -060020from binman import elf
21from binman import entry
Simon Glassbf776672020-04-17 18:09:04 -060022from patman import tout
Simon Glassbf7fd502016-11-25 20:15:51 -070023
Simon Glass8d2ef3e2022-02-11 13:23:21 -070024# These are imported if needed since they import libfdt
25state = None
26Image = None
27
Simon Glassbf7fd502016-11-25 20:15:51 -070028# List of images we plan to create
29# Make this global so that it can be referenced from tests
30images = OrderedDict()
31
Simon Glassb2381432020-09-06 10:39:09 -060032# Help text for each type of missing blob, dict:
33# key: Value of the entry's 'missing-msg' or entry name
34# value: Text for the help
35missing_blob_help = {}
36
Simon Glass0b6023e2021-03-18 20:25:06 +130037def _ReadImageDesc(binman_node, use_expanded):
Simon Glassbf7fd502016-11-25 20:15:51 -070038 """Read the image descriptions from the /binman node
39
40 This normally produces a single Image object called 'image'. But if
41 multiple images are present, they will all be returned.
42
43 Args:
44 binman_node: Node object of the /binman node
Simon Glass0b6023e2021-03-18 20:25:06 +130045 use_expanded: True if the FDT will be updated with the entry information
Simon Glassbf7fd502016-11-25 20:15:51 -070046 Returns:
47 OrderedDict of Image objects, each of which describes an image
48 """
Simon Glass8d2ef3e2022-02-11 13:23:21 -070049 # For Image()
50 # pylint: disable=E1102
Simon Glassbf7fd502016-11-25 20:15:51 -070051 images = OrderedDict()
52 if 'multiple-images' in binman_node.props:
53 for node in binman_node.subnodes:
Simon Glass0b6023e2021-03-18 20:25:06 +130054 images[node.name] = Image(node.name, node,
55 use_expanded=use_expanded)
Simon Glassbf7fd502016-11-25 20:15:51 -070056 else:
Simon Glass0b6023e2021-03-18 20:25:06 +130057 images['image'] = Image('image', binman_node, use_expanded=use_expanded)
Simon Glassbf7fd502016-11-25 20:15:51 -070058 return images
59
Simon Glassec3f3782017-05-27 07:38:29 -060060def _FindBinmanNode(dtb):
Simon Glassbf7fd502016-11-25 20:15:51 -070061 """Find the 'binman' node in the device tree
62
63 Args:
Simon Glassec3f3782017-05-27 07:38:29 -060064 dtb: Fdt object to scan
Simon Glassbf7fd502016-11-25 20:15:51 -070065 Returns:
66 Node object of /binman node, or None if not found
67 """
Simon Glassec3f3782017-05-27 07:38:29 -060068 for node in dtb.GetRoot().subnodes:
Simon Glassbf7fd502016-11-25 20:15:51 -070069 if node.name == 'binman':
70 return node
71 return None
72
Simon Glassb2381432020-09-06 10:39:09 -060073def _ReadMissingBlobHelp():
74 """Read the missing-blob-help file
75
76 This file containins help messages explaining what to do when external blobs
77 are missing.
78
79 Returns:
80 Dict:
81 key: Message tag (str)
82 value: Message text (str)
83 """
84
85 def _FinishTag(tag, msg, result):
86 if tag:
87 result[tag] = msg.rstrip()
88 tag = None
89 msg = ''
90 return tag, msg
91
92 my_data = pkg_resources.resource_string(__name__, 'missing-blob-help')
93 re_tag = re.compile('^([-a-z0-9]+):$')
94 result = {}
95 tag = None
96 msg = ''
97 for line in my_data.decode('utf-8').splitlines():
98 if not line.startswith('#'):
99 m_tag = re_tag.match(line)
100 if m_tag:
101 _, msg = _FinishTag(tag, msg, result)
102 tag = m_tag.group(1)
103 elif tag:
104 msg += line + '\n'
105 _FinishTag(tag, msg, result)
106 return result
107
108def _ShowBlobHelp(path, text):
Simon Glassf3385a52022-01-29 14:14:15 -0700109 tout.warning('\n%s:' % path)
Simon Glassb2381432020-09-06 10:39:09 -0600110 for line in text.splitlines():
Simon Glassf3385a52022-01-29 14:14:15 -0700111 tout.warning(' %s' % line)
Simon Glassb2381432020-09-06 10:39:09 -0600112
113def _ShowHelpForMissingBlobs(missing_list):
114 """Show help for each missing blob to help the user take action
115
116 Args:
117 missing_list: List of Entry objects to show help for
118 """
119 global missing_blob_help
120
121 if not missing_blob_help:
122 missing_blob_help = _ReadMissingBlobHelp()
123
124 for entry in missing_list:
125 tags = entry.GetHelpTags()
126
127 # Show the first match help message
128 for tag in tags:
129 if tag in missing_blob_help:
130 _ShowBlobHelp(entry._node.path, missing_blob_help[tag])
131 break
132
Simon Glass87d43322020-08-05 13:27:46 -0600133def GetEntryModules(include_testing=True):
134 """Get a set of entry class implementations
135
136 Returns:
137 Set of paths to entry class filenames
138 """
Simon Glass9fbfaba2020-08-29 11:36:14 -0600139 glob_list = pkg_resources.resource_listdir(__name__, 'etype')
140 glob_list = [fname for fname in glob_list if fname.endswith('.py')]
Simon Glass87d43322020-08-05 13:27:46 -0600141 return set([os.path.splitext(os.path.basename(item))[0]
142 for item in glob_list
143 if include_testing or '_testing' not in item])
144
Simon Glassc55a50f2018-09-14 04:57:19 -0600145def WriteEntryDocs(modules, test_missing=None):
146 """Write out documentation for all entries
Simon Glassecab8972018-07-06 10:27:40 -0600147
148 Args:
Simon Glassc55a50f2018-09-14 04:57:19 -0600149 modules: List of Module objects to get docs for
Simon Glassbc570642022-01-09 20:14:11 -0700150 test_missing: Used for testing only, to force an entry's documentation
Simon Glassc55a50f2018-09-14 04:57:19 -0600151 to show as missing even if it is present. Should be set to None in
152 normal use.
Simon Glassecab8972018-07-06 10:27:40 -0600153 """
Simon Glass16287932020-04-17 18:09:03 -0600154 from binman.entry import Entry
Simon Glassfd8d1f72018-07-17 13:25:36 -0600155 Entry.WriteDocs(modules, test_missing)
156
Simon Glass61f564d2019-07-08 14:25:48 -0600157
Simon Glassbc570642022-01-09 20:14:11 -0700158def write_bintool_docs(modules, test_missing=None):
159 """Write out documentation for all bintools
160
161 Args:
162 modules: List of Module objects to get docs for
163 test_missing: Used for testing only, to force an entry's documentation
164 to show as missing even if it is present. Should be set to None in
165 normal use.
166 """
167 bintool.Bintool.WriteDocs(modules, test_missing)
168
169
Simon Glass61f564d2019-07-08 14:25:48 -0600170def ListEntries(image_fname, entry_paths):
171 """List the entries in an image
172
173 This decodes the supplied image and displays a table of entries from that
174 image, preceded by a header.
175
176 Args:
177 image_fname: Image filename to process
178 entry_paths: List of wildcarded paths (e.g. ['*dtb*', 'u-boot*',
179 'section/u-boot'])
180 """
181 image = Image.FromFile(image_fname)
182
183 entries, lines, widths = image.GetListEntries(entry_paths)
184
185 num_columns = len(widths)
186 for linenum, line in enumerate(lines):
187 if linenum == 1:
188 # Print header line
189 print('-' * (sum(widths) + num_columns * 2))
190 out = ''
191 for i, item in enumerate(line):
192 width = -widths[i]
193 if item.startswith('>'):
194 width = -width
195 item = item[1:]
196 txt = '%*s ' % (width, item)
197 out += txt
198 print(out.rstrip())
199
Simon Glassf667e452019-07-08 14:25:50 -0600200
201def ReadEntry(image_fname, entry_path, decomp=True):
202 """Extract an entry from an image
203
204 This extracts the data from a particular entry in an image
205
206 Args:
207 image_fname: Image filename to process
208 entry_path: Path to entry to extract
209 decomp: True to return uncompressed data, if the data is compress
210 False to return the raw data
211
212 Returns:
213 data extracted from the entry
214 """
Simon Glass8dbb7442019-08-24 07:22:44 -0600215 global Image
Simon Glass07237982020-08-05 13:27:47 -0600216 from binman.image import Image
Simon Glass8dbb7442019-08-24 07:22:44 -0600217
Simon Glassf667e452019-07-08 14:25:50 -0600218 image = Image.FromFile(image_fname)
Stefan Herbrechtsmeier917b3c32022-08-19 16:25:22 +0200219 image.CollectBintools()
Simon Glassf667e452019-07-08 14:25:50 -0600220 entry = image.FindEntryPath(entry_path)
221 return entry.ReadData(decomp)
222
223
Simon Glass943bf782021-11-23 21:09:50 -0700224def ShowAltFormats(image):
225 """Show alternative formats available for entries in the image
226
227 This shows a list of formats available.
228
229 Args:
230 image (Image): Image to check
231 """
232 alt_formats = {}
233 image.CheckAltFormats(alt_formats)
234 print('%-10s %-20s %s' % ('Flag (-F)', 'Entry type', 'Description'))
235 for name, val in alt_formats.items():
236 entry, helptext = val
237 print('%-10s %-20s %s' % (name, entry.etype, helptext))
238
239
Simon Glass71ce0ba2019-07-08 14:25:52 -0600240def ExtractEntries(image_fname, output_fname, outdir, entry_paths,
Simon Glass943bf782021-11-23 21:09:50 -0700241 decomp=True, alt_format=None):
Simon Glass71ce0ba2019-07-08 14:25:52 -0600242 """Extract the data from one or more entries and write it to files
243
244 Args:
245 image_fname: Image filename to process
246 output_fname: Single output filename to use if extracting one file, None
247 otherwise
248 outdir: Output directory to use (for any number of files), else None
249 entry_paths: List of entry paths to extract
Simon Glass3ad804e2019-07-20 12:24:12 -0600250 decomp: True to decompress the entry data
Simon Glass71ce0ba2019-07-08 14:25:52 -0600251
252 Returns:
253 List of EntryInfo records that were written
254 """
255 image = Image.FromFile(image_fname)
Stefan Herbrechtsmeier917b3c32022-08-19 16:25:22 +0200256 image.CollectBintools()
Simon Glass71ce0ba2019-07-08 14:25:52 -0600257
Simon Glass943bf782021-11-23 21:09:50 -0700258 if alt_format == 'list':
259 ShowAltFormats(image)
260 return
261
Simon Glass71ce0ba2019-07-08 14:25:52 -0600262 # Output an entry to a single file, as a special case
263 if output_fname:
264 if not entry_paths:
Simon Glassbb5edc12019-07-20 12:24:14 -0600265 raise ValueError('Must specify an entry path to write with -f')
Simon Glass71ce0ba2019-07-08 14:25:52 -0600266 if len(entry_paths) != 1:
Simon Glassbb5edc12019-07-20 12:24:14 -0600267 raise ValueError('Must specify exactly one entry path to write with -f')
Simon Glass71ce0ba2019-07-08 14:25:52 -0600268 entry = image.FindEntryPath(entry_paths[0])
Simon Glass943bf782021-11-23 21:09:50 -0700269 data = entry.ReadData(decomp, alt_format)
Simon Glassc1aa66e2022-01-29 14:14:04 -0700270 tools.write_file(output_fname, data)
Simon Glassf3385a52022-01-29 14:14:15 -0700271 tout.notice("Wrote %#x bytes to file '%s'" % (len(data), output_fname))
Simon Glass71ce0ba2019-07-08 14:25:52 -0600272 return
273
274 # Otherwise we will output to a path given by the entry path of each entry.
275 # This means that entries will appear in subdirectories if they are part of
276 # a sub-section.
277 einfos = image.GetListEntries(entry_paths)[0]
Simon Glassf3385a52022-01-29 14:14:15 -0700278 tout.notice('%d entries match and will be written' % len(einfos))
Simon Glass71ce0ba2019-07-08 14:25:52 -0600279 for einfo in einfos:
280 entry = einfo.entry
Simon Glass943bf782021-11-23 21:09:50 -0700281 data = entry.ReadData(decomp, alt_format)
Simon Glass71ce0ba2019-07-08 14:25:52 -0600282 path = entry.GetPath()[1:]
283 fname = os.path.join(outdir, path)
284
285 # If this entry has children, create a directory for it and put its
286 # data in a file called 'root' in that directory
287 if entry.GetEntries():
Simon Glass862ddf92021-03-18 20:24:51 +1300288 if fname and not os.path.exists(fname):
Simon Glass71ce0ba2019-07-08 14:25:52 -0600289 os.makedirs(fname)
290 fname = os.path.join(fname, 'root')
Simon Glassf3385a52022-01-29 14:14:15 -0700291 tout.notice("Write entry '%s' size %x to '%s'" %
Simon Glass5b378e42021-01-06 21:35:13 -0700292 (entry.GetPath(), len(data), fname))
Simon Glassc1aa66e2022-01-29 14:14:04 -0700293 tools.write_file(fname, data)
Simon Glass71ce0ba2019-07-08 14:25:52 -0600294 return einfos
295
296
Simon Glassd7fa4e42019-07-20 12:24:13 -0600297def BeforeReplace(image, allow_resize):
298 """Handle getting an image ready for replacing entries in it
299
300 Args:
301 image: Image to prepare
302 """
303 state.PrepareFromLoadedData(image)
304 image.LoadData()
Alper Nebi Yasak8ee4ec92022-03-27 18:31:45 +0300305 image.CollectBintools()
Simon Glassd7fa4e42019-07-20 12:24:13 -0600306
307 # If repacking, drop the old offset/size values except for the original
308 # ones, so we are only left with the constraints.
Alper Nebi Yasake2ce4fb2022-03-27 18:31:46 +0300309 if image.allow_repack and allow_resize:
Simon Glassd7fa4e42019-07-20 12:24:13 -0600310 image.ResetForPack()
311
312
313def ReplaceOneEntry(image, entry, data, do_compress, allow_resize):
314 """Handle replacing a single entry an an image
315
316 Args:
317 image: Image to update
318 entry: Entry to write
319 data: Data to replace with
320 do_compress: True to compress the data if needed, False if data is
321 already compressed so should be used as is
322 allow_resize: True to allow entries to change size (this does a re-pack
323 of the entries), False to raise an exception
324 """
325 if not entry.WriteData(data, do_compress):
326 if not image.allow_repack:
327 entry.Raise('Entry data size does not match, but allow-repack is not present for this image')
328 if not allow_resize:
329 entry.Raise('Entry data size does not match, but resize is disabled')
330
331
332def AfterReplace(image, allow_resize, write_map):
333 """Handle write out an image after replacing entries in it
334
335 Args:
336 image: Image to write
337 allow_resize: True to allow entries to change size (this does a re-pack
338 of the entries), False to raise an exception
339 write_map: True to write a map file
340 """
Simon Glassf3385a52022-01-29 14:14:15 -0700341 tout.info('Processing image')
Simon Glassd7fa4e42019-07-20 12:24:13 -0600342 ProcessImage(image, update_fdt=True, write_map=write_map,
343 get_contents=False, allow_resize=allow_resize)
344
345
346def WriteEntryToImage(image, entry, data, do_compress=True, allow_resize=True,
347 write_map=False):
348 BeforeReplace(image, allow_resize)
Simon Glassf3385a52022-01-29 14:14:15 -0700349 tout.info('Writing data to %s' % entry.GetPath())
Simon Glassd7fa4e42019-07-20 12:24:13 -0600350 ReplaceOneEntry(image, entry, data, do_compress, allow_resize)
351 AfterReplace(image, allow_resize=allow_resize, write_map=write_map)
352
353
Simon Glass3ad804e2019-07-20 12:24:12 -0600354def WriteEntry(image_fname, entry_path, data, do_compress=True,
355 allow_resize=True, write_map=False):
Simon Glass22a76b72019-07-20 12:24:11 -0600356 """Replace an entry in an image
357
358 This replaces the data in a particular entry in an image. This size of the
359 new data must match the size of the old data unless allow_resize is True.
360
361 Args:
362 image_fname: Image filename to process
363 entry_path: Path to entry to extract
364 data: Data to replace with
Simon Glass3ad804e2019-07-20 12:24:12 -0600365 do_compress: True to compress the data if needed, False if data is
Simon Glass22a76b72019-07-20 12:24:11 -0600366 already compressed so should be used as is
367 allow_resize: True to allow entries to change size (this does a re-pack
368 of the entries), False to raise an exception
Simon Glass3ad804e2019-07-20 12:24:12 -0600369 write_map: True to write a map file
Simon Glass22a76b72019-07-20 12:24:11 -0600370
371 Returns:
372 Image object that was updated
373 """
Simon Glassf3385a52022-01-29 14:14:15 -0700374 tout.info("Write entry '%s', file '%s'" % (entry_path, image_fname))
Simon Glass22a76b72019-07-20 12:24:11 -0600375 image = Image.FromFile(image_fname)
Stefan Herbrechtsmeier917b3c32022-08-19 16:25:22 +0200376 image.CollectBintools()
Simon Glass22a76b72019-07-20 12:24:11 -0600377 entry = image.FindEntryPath(entry_path)
Simon Glassd7fa4e42019-07-20 12:24:13 -0600378 WriteEntryToImage(image, entry, data, do_compress=do_compress,
379 allow_resize=allow_resize, write_map=write_map)
Simon Glass22a76b72019-07-20 12:24:11 -0600380
Simon Glass22a76b72019-07-20 12:24:11 -0600381 return image
382
Simon Glassa6cb9952019-07-20 12:24:15 -0600383
384def ReplaceEntries(image_fname, input_fname, indir, entry_paths,
385 do_compress=True, allow_resize=True, write_map=False):
386 """Replace the data from one or more entries from input files
387
388 Args:
389 image_fname: Image filename to process
Jan Kiszka89cc0522021-11-11 08:13:30 +0100390 input_fname: Single input filename to use if replacing one file, None
Simon Glassa6cb9952019-07-20 12:24:15 -0600391 otherwise
392 indir: Input directory to use (for any number of files), else None
Jan Kiszka89cc0522021-11-11 08:13:30 +0100393 entry_paths: List of entry paths to replace
Simon Glassa6cb9952019-07-20 12:24:15 -0600394 do_compress: True if the input data is uncompressed and may need to be
395 compressed if the entry requires it, False if the data is already
396 compressed.
397 write_map: True to write a map file
398
399 Returns:
400 List of EntryInfo records that were written
401 """
Jan Kiszkac700f102021-11-11 08:14:18 +0100402 image_fname = os.path.abspath(image_fname)
Simon Glassa6cb9952019-07-20 12:24:15 -0600403 image = Image.FromFile(image_fname)
404
405 # Replace an entry from a single file, as a special case
406 if input_fname:
407 if not entry_paths:
408 raise ValueError('Must specify an entry path to read with -f')
409 if len(entry_paths) != 1:
410 raise ValueError('Must specify exactly one entry path to write with -f')
411 entry = image.FindEntryPath(entry_paths[0])
Simon Glassc1aa66e2022-01-29 14:14:04 -0700412 data = tools.read_file(input_fname)
Simon Glassf3385a52022-01-29 14:14:15 -0700413 tout.notice("Read %#x bytes from file '%s'" % (len(data), input_fname))
Simon Glassa6cb9952019-07-20 12:24:15 -0600414 WriteEntryToImage(image, entry, data, do_compress=do_compress,
415 allow_resize=allow_resize, write_map=write_map)
416 return
417
418 # Otherwise we will input from a path given by the entry path of each entry.
419 # This means that files must appear in subdirectories if they are part of
420 # a sub-section.
421 einfos = image.GetListEntries(entry_paths)[0]
Simon Glassf3385a52022-01-29 14:14:15 -0700422 tout.notice("Replacing %d matching entries in image '%s'" %
Simon Glassa6cb9952019-07-20 12:24:15 -0600423 (len(einfos), image_fname))
424
425 BeforeReplace(image, allow_resize)
426
427 for einfo in einfos:
428 entry = einfo.entry
429 if entry.GetEntries():
Simon Glassf3385a52022-01-29 14:14:15 -0700430 tout.info("Skipping section entry '%s'" % entry.GetPath())
Simon Glassa6cb9952019-07-20 12:24:15 -0600431 continue
432
433 path = entry.GetPath()[1:]
434 fname = os.path.join(indir, path)
435
436 if os.path.exists(fname):
Simon Glassf3385a52022-01-29 14:14:15 -0700437 tout.notice("Write entry '%s' from file '%s'" %
Simon Glassa6cb9952019-07-20 12:24:15 -0600438 (entry.GetPath(), fname))
Simon Glassc1aa66e2022-01-29 14:14:04 -0700439 data = tools.read_file(fname)
Simon Glassa6cb9952019-07-20 12:24:15 -0600440 ReplaceOneEntry(image, entry, data, do_compress, allow_resize)
441 else:
Simon Glassf3385a52022-01-29 14:14:15 -0700442 tout.warning("Skipping entry '%s' from missing file '%s'" %
Simon Glassa6cb9952019-07-20 12:24:15 -0600443 (entry.GetPath(), fname))
444
445 AfterReplace(image, allow_resize=allow_resize, write_map=write_map)
446 return image
447
448
Simon Glass0b6023e2021-03-18 20:25:06 +1300449def PrepareImagesAndDtbs(dtb_fname, select_images, update_fdt, use_expanded):
Simon Glassa8573c42019-07-20 12:23:27 -0600450 """Prepare the images to be processed and select the device tree
451
452 This function:
453 - reads in the device tree
454 - finds and scans the binman node to create all entries
455 - selects which images to build
456 - Updates the device tress with placeholder properties for offset,
457 image-pos, etc.
458
459 Args:
460 dtb_fname: Filename of the device tree file to use (.dts or .dtb)
461 selected_images: List of images to output, or None for all
462 update_fdt: True to update the FDT wth entry offsets, etc.
Simon Glass0b6023e2021-03-18 20:25:06 +1300463 use_expanded: True to use expanded versions of entries, if available.
464 So if 'u-boot' is called for, we use 'u-boot-expanded' instead. This
465 is needed if update_fdt is True (although tests may disable it)
Simon Glasse9d336d2020-09-01 05:13:55 -0600466
467 Returns:
468 OrderedDict of images:
469 key: Image name (str)
470 value: Image object
Simon Glassa8573c42019-07-20 12:23:27 -0600471 """
472 # Import these here in case libfdt.py is not available, in which case
473 # the above help option still works.
Simon Glass16287932020-04-17 18:09:03 -0600474 from dtoc import fdt
475 from dtoc import fdt_util
Simon Glassa8573c42019-07-20 12:23:27 -0600476 global images
477
478 # Get the device tree ready by compiling it and copying the compiled
479 # output into a file in our output directly. Then scan it for use
480 # in binman.
481 dtb_fname = fdt_util.EnsureCompiled(dtb_fname)
Simon Glassc1aa66e2022-01-29 14:14:04 -0700482 fname = tools.get_output_filename('u-boot.dtb.out')
483 tools.write_file(fname, tools.read_file(dtb_fname))
Simon Glassa8573c42019-07-20 12:23:27 -0600484 dtb = fdt.FdtScan(fname)
485
486 node = _FindBinmanNode(dtb)
487 if not node:
488 raise ValueError("Device tree '%s' does not have a 'binman' "
489 "node" % dtb_fname)
490
Simon Glass0b6023e2021-03-18 20:25:06 +1300491 images = _ReadImageDesc(node, use_expanded)
Simon Glassa8573c42019-07-20 12:23:27 -0600492
493 if select_images:
494 skip = []
495 new_images = OrderedDict()
496 for name, image in images.items():
497 if name in select_images:
498 new_images[name] = image
499 else:
500 skip.append(name)
501 images = new_images
Simon Glassf3385a52022-01-29 14:14:15 -0700502 tout.notice('Skipping images: %s' % ', '.join(skip))
Simon Glassa8573c42019-07-20 12:23:27 -0600503
504 state.Prepare(images, dtb)
505
506 # Prepare the device tree by making sure that any missing
507 # properties are added (e.g. 'pos' and 'size'). The values of these
508 # may not be correct yet, but we add placeholders so that the
509 # size of the device tree is correct. Later, in
510 # SetCalculatedProperties() we will insert the correct values
511 # without changing the device-tree size, thus ensuring that our
512 # entry offsets remain the same.
513 for image in images.values():
Simon Glassc9ee33a2022-03-05 20:19:00 -0700514 image.gen_entries()
Stefan Herbrechtsmeier917b3c32022-08-19 16:25:22 +0200515 image.CollectBintools()
Simon Glassa8573c42019-07-20 12:23:27 -0600516 if update_fdt:
Simon Glassa9fad072020-10-26 17:40:17 -0600517 image.AddMissingProperties(True)
Simon Glassa8573c42019-07-20 12:23:27 -0600518 image.ProcessFdt(dtb)
519
Simon Glass4bdd1152019-07-20 12:23:29 -0600520 for dtb_item in state.GetAllFdts():
Simon Glassa8573c42019-07-20 12:23:27 -0600521 dtb_item.Sync(auto_resize=True)
522 dtb_item.Pack()
523 dtb_item.Flush()
524 return images
525
526
Simon Glass51014aa2019-07-20 12:23:56 -0600527def ProcessImage(image, update_fdt, write_map, get_contents=True,
Heiko Thierya89c8f22022-01-06 11:49:41 +0100528 allow_resize=True, allow_missing=False,
529 allow_fake_blobs=False):
Simon Glassb88e81c2019-07-20 12:23:24 -0600530 """Perform all steps for this image, including checking and # writing it.
531
532 This means that errors found with a later image will be reported after
533 earlier images are already completed and written, but that does not seem
534 important.
535
536 Args:
537 image: Image to process
538 update_fdt: True to update the FDT wth entry offsets, etc.
539 write_map: True to write a map file
Simon Glass10f9d002019-07-20 12:23:50 -0600540 get_contents: True to get the image contents from files, etc., False if
541 the contents is already present
Simon Glass51014aa2019-07-20 12:23:56 -0600542 allow_resize: True to allow entries to change size (this does a re-pack
543 of the entries), False to raise an exception
Simon Glass4f9f1052020-07-09 18:39:38 -0600544 allow_missing: Allow blob_ext objects to be missing
Heiko Thierya89c8f22022-01-06 11:49:41 +0100545 allow_fake_blobs: Allow blob_ext objects to be faked with dummy files
Simon Glassb1cca952020-07-09 18:39:40 -0600546
547 Returns:
Heiko Thierya89c8f22022-01-06 11:49:41 +0100548 True if one or more external blobs are missing or faked,
549 False if all are present
Simon Glassb88e81c2019-07-20 12:23:24 -0600550 """
Simon Glass10f9d002019-07-20 12:23:50 -0600551 if get_contents:
Simon Glass4f9f1052020-07-09 18:39:38 -0600552 image.SetAllowMissing(allow_missing)
Heiko Thierya89c8f22022-01-06 11:49:41 +0100553 image.SetAllowFakeBlob(allow_fake_blobs)
Simon Glass10f9d002019-07-20 12:23:50 -0600554 image.GetEntryContents()
Simon Glassc8c9f312023-01-07 14:07:12 -0700555 image.drop_absent()
Simon Glassb88e81c2019-07-20 12:23:24 -0600556 image.GetEntryOffsets()
557
558 # We need to pack the entries to figure out where everything
559 # should be placed. This sets the offset/size of each entry.
560 # However, after packing we call ProcessEntryContents() which
561 # may result in an entry changing size. In that case we need to
562 # do another pass. Since the device tree often contains the
563 # final offset/size information we try to make space for this in
564 # AddMissingProperties() above. However, if the device is
565 # compressed we cannot know this compressed size in advance,
566 # since changing an offset from 0x100 to 0x104 (for example) can
567 # alter the compressed size of the device tree. So we need a
568 # third pass for this.
Simon Glasseb0f4a42019-07-20 12:24:06 -0600569 passes = 5
Simon Glassb88e81c2019-07-20 12:23:24 -0600570 for pack_pass in range(passes):
571 try:
572 image.PackEntries()
Simon Glassb88e81c2019-07-20 12:23:24 -0600573 except Exception as e:
574 if write_map:
575 fname = image.WriteMap()
576 print("Wrote map file '%s' to show errors" % fname)
577 raise
578 image.SetImagePos()
579 if update_fdt:
580 image.SetCalculatedProperties()
Simon Glass4bdd1152019-07-20 12:23:29 -0600581 for dtb_item in state.GetAllFdts():
Simon Glassb88e81c2019-07-20 12:23:24 -0600582 dtb_item.Sync()
Simon Glass51014aa2019-07-20 12:23:56 -0600583 dtb_item.Flush()
Simon Glass261cbe02019-08-24 07:23:12 -0600584 image.WriteSymbols()
Simon Glassb88e81c2019-07-20 12:23:24 -0600585 sizes_ok = image.ProcessEntryContents()
586 if sizes_ok:
587 break
588 image.ResetForPack()
Simon Glassf3385a52022-01-29 14:14:15 -0700589 tout.info('Pack completed after %d pass(es)' % (pack_pass + 1))
Simon Glassb88e81c2019-07-20 12:23:24 -0600590 if not sizes_ok:
Simon Glass61ec04f2019-07-20 12:23:58 -0600591 image.Raise('Entries changed size after packing (tried %s passes)' %
Simon Glassb88e81c2019-07-20 12:23:24 -0600592 passes)
593
Simon Glassb88e81c2019-07-20 12:23:24 -0600594 image.BuildImage()
595 if write_map:
596 image.WriteMap()
Simon Glass67a05012023-01-07 14:07:15 -0700597
Simon Glassb1cca952020-07-09 18:39:40 -0600598 missing_list = []
599 image.CheckMissing(missing_list)
600 if missing_list:
Simon Glassf3385a52022-01-29 14:14:15 -0700601 tout.warning("Image '%s' is missing external blobs and is non-functional: %s" %
Simon Glassb1cca952020-07-09 18:39:40 -0600602 (image.name, ' '.join([e.name for e in missing_list])))
Simon Glassb2381432020-09-06 10:39:09 -0600603 _ShowHelpForMissingBlobs(missing_list)
Simon Glass67a05012023-01-07 14:07:15 -0700604
Heiko Thierya89c8f22022-01-06 11:49:41 +0100605 faked_list = []
606 image.CheckFakedBlobs(faked_list)
607 if faked_list:
Simon Glassf3385a52022-01-29 14:14:15 -0700608 tout.warning(
Simon Glass2cc8c1f2022-01-09 20:13:45 -0700609 "Image '%s' has faked external blobs and is non-functional: %s" %
610 (image.name, ' '.join([os.path.basename(e.GetDefaultFilename())
611 for e in faked_list])))
Simon Glass67a05012023-01-07 14:07:15 -0700612
613 optional_list = []
614 image.CheckOptional(optional_list)
615 if optional_list:
616 tout.warning(
617 "Image '%s' is missing external blobs but is still functional: %s" %
618 (image.name, ' '.join([e.name for e in optional_list])))
619 _ShowHelpForMissingBlobs(optional_list)
620
Simon Glass4f9ee832022-01-09 20:14:09 -0700621 missing_bintool_list = []
622 image.check_missing_bintools(missing_bintool_list)
623 if missing_bintool_list:
Simon Glassf3385a52022-01-29 14:14:15 -0700624 tout.warning(
Simon Glass4f9ee832022-01-09 20:14:09 -0700625 "Image '%s' has missing bintools and is non-functional: %s" %
626 (image.name, ' '.join([os.path.basename(bintool.name)
627 for bintool in missing_bintool_list])))
628 return any([missing_list, faked_list, missing_bintool_list])
Simon Glassb88e81c2019-07-20 12:23:24 -0600629
630
Simon Glass53cd5d92019-07-08 14:25:29 -0600631def Binman(args):
Simon Glassbf7fd502016-11-25 20:15:51 -0700632 """The main control code for binman
633
634 This assumes that help and test options have already been dealt with. It
635 deals with the core task of building images.
636
637 Args:
Simon Glass53cd5d92019-07-08 14:25:29 -0600638 args: Command line arguments Namespace object
Simon Glassbf7fd502016-11-25 20:15:51 -0700639 """
Simon Glass8dbb7442019-08-24 07:22:44 -0600640 global Image
641 global state
642
Simon Glass53cd5d92019-07-08 14:25:29 -0600643 if args.full_help:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700644 tools.print_full_help(
Paul Barker5fe50f92021-09-08 12:38:01 +0100645 os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'README.rst')
646 )
Simon Glassbf7fd502016-11-25 20:15:51 -0700647 return 0
648
Simon Glass8dbb7442019-08-24 07:22:44 -0600649 # Put these here so that we can import this module without libfdt
Simon Glass07237982020-08-05 13:27:47 -0600650 from binman.image import Image
Simon Glass16287932020-04-17 18:09:03 -0600651 from binman import state
Simon Glass8dbb7442019-08-24 07:22:44 -0600652
Simon Glass386c63c2022-01-09 20:13:50 -0700653 if args.cmd in ['ls', 'extract', 'replace', 'tool']:
Simon Glass96b6c502019-07-20 12:23:53 -0600654 try:
Simon Glassf3385a52022-01-29 14:14:15 -0700655 tout.init(args.verbosity)
Simon Glassc1aa66e2022-01-29 14:14:04 -0700656 tools.prepare_output_dir(None)
Simon Glass7bc4f0f2019-09-15 18:10:36 -0600657 if args.cmd == 'ls':
658 ListEntries(args.image, args.paths)
Simon Glass61f564d2019-07-08 14:25:48 -0600659
Simon Glass7bc4f0f2019-09-15 18:10:36 -0600660 if args.cmd == 'extract':
661 ExtractEntries(args.image, args.filename, args.outdir, args.paths,
Simon Glass943bf782021-11-23 21:09:50 -0700662 not args.uncompressed, args.format)
Simon Glass71ce0ba2019-07-08 14:25:52 -0600663
Simon Glass7bc4f0f2019-09-15 18:10:36 -0600664 if args.cmd == 'replace':
665 ReplaceEntries(args.image, args.filename, args.indir, args.paths,
666 do_compress=not args.compressed,
667 allow_resize=not args.fix_size, write_map=args.map)
Simon Glass386c63c2022-01-09 20:13:50 -0700668
669 if args.cmd == 'tool':
Simon Glassc1aa66e2022-01-29 14:14:04 -0700670 tools.set_tool_paths(args.toolpath)
Simon Glass386c63c2022-01-09 20:13:50 -0700671 if args.list:
672 bintool.Bintool.list_all()
673 elif args.fetch:
674 if not args.bintools:
675 raise ValueError(
676 "Please specify bintools to fetch or 'all' or 'missing'")
677 bintool.Bintool.fetch_tools(bintool.FETCH_ANY,
678 args.bintools)
679 else:
680 raise ValueError("Invalid arguments to 'tool' subcommand")
Simon Glass7bc4f0f2019-09-15 18:10:36 -0600681 except:
682 raise
Simon Glassa6cb9952019-07-20 12:24:15 -0600683 finally:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700684 tools.finalise_output_dir()
Simon Glassa6cb9952019-07-20 12:24:15 -0600685 return 0
686
Simon Glass0427bed2021-11-03 21:09:18 -0600687 elf_params = None
688 if args.update_fdt_in_elf:
689 elf_params = args.update_fdt_in_elf.split(',')
690 if len(elf_params) != 4:
691 raise ValueError('Invalid args %s to --update-fdt-in-elf: expected infile,outfile,begin_sym,end_sym' %
692 elf_params)
693
Simon Glassbf7fd502016-11-25 20:15:51 -0700694 # Try to figure out which device tree contains our image description
Simon Glass53cd5d92019-07-08 14:25:29 -0600695 if args.dt:
696 dtb_fname = args.dt
Simon Glassbf7fd502016-11-25 20:15:51 -0700697 else:
Simon Glass53cd5d92019-07-08 14:25:29 -0600698 board = args.board
Simon Glassbf7fd502016-11-25 20:15:51 -0700699 if not board:
700 raise ValueError('Must provide a board to process (use -b <board>)')
Simon Glass53cd5d92019-07-08 14:25:29 -0600701 board_pathname = os.path.join(args.build_dir, board)
Simon Glassbf7fd502016-11-25 20:15:51 -0700702 dtb_fname = os.path.join(board_pathname, 'u-boot.dtb')
Simon Glass53cd5d92019-07-08 14:25:29 -0600703 if not args.indir:
704 args.indir = ['.']
705 args.indir.append(board_pathname)
Simon Glassbf7fd502016-11-25 20:15:51 -0700706
707 try:
Simon Glassf3385a52022-01-29 14:14:15 -0700708 tout.init(args.verbosity)
Simon Glass53cd5d92019-07-08 14:25:29 -0600709 elf.debug = args.debug
710 cbfs_util.VERBOSE = args.verbosity > 2
711 state.use_fake_dtb = args.fake_dtb
Simon Glass0b6023e2021-03-18 20:25:06 +1300712
713 # Normally we replace the 'u-boot' etype with 'u-boot-expanded', etc.
714 # When running tests this can be disabled using this flag. When not
715 # updating the FDT in image, it is not needed by binman, but we use it
716 # for consistency, so that the images look the same to U-Boot at
717 # runtime.
718 use_expanded = not args.no_expanded
Simon Glassbf7fd502016-11-25 20:15:51 -0700719 try:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700720 tools.set_input_dirs(args.indir)
721 tools.prepare_output_dir(args.outdir, args.preserve)
722 tools.set_tool_paths(args.toolpath)
Simon Glass53cd5d92019-07-08 14:25:29 -0600723 state.SetEntryArgs(args.entry_arg)
Simon Glassc69d19c2021-07-06 10:36:37 -0600724 state.SetThreads(args.threads)
Simon Glassecab8972018-07-06 10:27:40 -0600725
Simon Glassa8573c42019-07-20 12:23:27 -0600726 images = PrepareImagesAndDtbs(dtb_fname, args.image,
Simon Glass0b6023e2021-03-18 20:25:06 +1300727 args.update_fdt, use_expanded)
Heiko Thierya89c8f22022-01-06 11:49:41 +0100728
Simon Glassc69d19c2021-07-06 10:36:37 -0600729 if args.test_section_timeout:
730 # Set the first image to timeout, used in testThreadTimeout()
731 images[list(images.keys())[0]].test_section_timeout = True
Heiko Thierya89c8f22022-01-06 11:49:41 +0100732 invalid = False
Simon Glass4f9ee832022-01-09 20:14:09 -0700733 bintool.Bintool.set_missing_list(
734 args.force_missing_bintools.split(',') if
735 args.force_missing_bintools else None)
Simon Glass7960a0a2022-08-07 09:46:46 -0600736
737 # Create the directory here instead of Entry.check_fake_fname()
738 # since that is called from a threaded context so different threads
739 # may race to create the directory
740 if args.fake_ext_blobs:
741 entry.Entry.create_fake_dir()
742
Simon Glassbf7fd502016-11-25 20:15:51 -0700743 for image in images.values():
Heiko Thierya89c8f22022-01-06 11:49:41 +0100744 invalid |= ProcessImage(image, args.update_fdt, args.map,
745 allow_missing=args.allow_missing,
746 allow_fake_blobs=args.fake_ext_blobs)
Simon Glass2a72cc72018-09-14 04:57:20 -0600747
748 # Write the updated FDTs to our output files
Simon Glass4bdd1152019-07-20 12:23:29 -0600749 for dtb_item in state.GetAllFdts():
Simon Glassc1aa66e2022-01-29 14:14:04 -0700750 tools.write_file(dtb_item._fname, dtb_item.GetContents())
Simon Glass2a72cc72018-09-14 04:57:20 -0600751
Simon Glass0427bed2021-11-03 21:09:18 -0600752 if elf_params:
753 data = state.GetFdtForEtype('u-boot-dtb').GetContents()
754 elf.UpdateFile(*elf_params, data)
755
Simon Glassb38da152022-11-09 19:14:42 -0700756 # This can only be True if -M is provided, since otherwise binman
757 # would have raised an error already
Heiko Thierya89c8f22022-01-06 11:49:41 +0100758 if invalid:
Simon Glassb38da152022-11-09 19:14:42 -0700759 msg = '\nSome images are invalid'
760 if args.ignore_missing:
761 tout.warning(msg)
762 else:
763 tout.error(msg)
764 return 103
Simon Glass03ebc202021-07-06 10:36:41 -0600765
766 # Use this to debug the time take to pack the image
767 #state.TimingShow()
Simon Glassbf7fd502016-11-25 20:15:51 -0700768 finally:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700769 tools.finalise_output_dir()
Simon Glassbf7fd502016-11-25 20:15:51 -0700770 finally:
Simon Glassf3385a52022-01-29 14:14:15 -0700771 tout.uninit()
Simon Glassbf7fd502016-11-25 20:15:51 -0700772
773 return 0