blob: 42e0b7b9145060715d07aec73d6d6d9b3ede67bf [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#
Simon Glassbf7fd502016-11-25 20:15:51 -07004# Base class for all entries
5#
6
Simon Glass53af22a2018-07-17 13:25:32 -06007from collections import namedtuple
Simon Glassb4cf5f12019-10-31 07:42:59 -06008import importlib
Simon Glassbadf0ec2018-06-01 09:38:15 -06009import os
Simon Glass790ba9f2022-01-12 13:10:36 -070010import pathlib
Simon Glassbadf0ec2018-06-01 09:38:15 -060011import sys
Simon Glass7960a0a2022-08-07 09:46:46 -060012import time
Simon Glassc55a50f2018-09-14 04:57:19 -060013
Simon Glass386c63c2022-01-09 20:13:50 -070014from binman import bintool
Simon Glass3fbba552022-10-20 18:22:46 -060015from binman import elf
Simon Glass16287932020-04-17 18:09:03 -060016from dtoc import fdt_util
Simon Glass4583c002023-02-23 18:18:04 -070017from u_boot_pylib import tools
18from u_boot_pylib.tools import to_hex, to_hex_size
19from u_boot_pylib import tout
Simon Glassbf7fd502016-11-25 20:15:51 -070020
21modules = {}
22
Simon Glass8d2ef3e2022-02-11 13:23:21 -070023# This is imported if needed
24state = None
Simon Glass53af22a2018-07-17 13:25:32 -060025
26# An argument which can be passed to entries on the command line, in lieu of
27# device-tree properties.
28EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
29
Simon Glass41b8ba02019-07-08 14:25:43 -060030# Information about an entry for use when displaying summaries
31EntryInfo = namedtuple('EntryInfo', ['indent', 'name', 'etype', 'size',
32 'image_pos', 'uncomp_size', 'offset',
33 'entry'])
Simon Glass53af22a2018-07-17 13:25:32 -060034
Simon Glassbf7fd502016-11-25 20:15:51 -070035class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060036 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070037
38 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060039 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070040 Entries can be placed either right next to each other, or with padding
41 between them. The type of the entry determines the data that is in it.
42
43 This class is not used by itself. All entry objects are subclasses of
44 Entry.
45
46 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060047 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070048 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060049 offset: Offset of entry within the section, None if not known yet (in
50 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070051 size: Entry size in bytes, None if not known
Samuel Hollandb01ae032023-01-21 17:25:16 -060052 min_size: Minimum entry size in bytes
Simon Glass9a5d3dc2019-10-31 07:43:02 -060053 pre_reset_size: size as it was before ResetForPack(). This allows us to
54 keep track of the size we started with and detect size changes
Simon Glass8287ee82019-07-08 14:25:30 -060055 uncomp_size: Size of uncompressed data in bytes, if the entry is
56 compressed, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070057 contents_size: Size of contents in bytes, 0 by default
Simon Glass4eec34c2020-10-26 17:40:10 -060058 align: Entry start offset alignment relative to the start of the
59 containing section, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070060 align_size: Entry size alignment, or None
Simon Glass4eec34c2020-10-26 17:40:10 -060061 align_end: Entry end offset alignment relative to the start of the
62 containing section, or None
Simon Glassf90d9062020-10-26 17:40:09 -060063 pad_before: Number of pad bytes before the contents when it is placed
64 in the containing section, 0 if none. The pad bytes become part of
65 the entry.
66 pad_after: Number of pad bytes after the contents when it is placed in
67 the containing section, 0 if none. The pad bytes become part of
68 the entry.
69 data: Contents of entry (string of bytes). This does not include
Simon Glass97c3e9a2020-10-26 17:40:15 -060070 padding created by pad_before or pad_after. If the entry is
71 compressed, this contains the compressed data.
72 uncomp_data: Original uncompressed data, if this entry is compressed,
73 else None
Simon Glass8287ee82019-07-08 14:25:30 -060074 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glassc52c9e72019-07-08 14:25:37 -060075 orig_offset: Original offset value read from node
76 orig_size: Original size value read from node
Simon Glass67a05012023-01-07 14:07:15 -070077 missing: True if this entry is missing its contents. Note that if it is
78 optional, this entry will not appear in the list generated by
79 entry.CheckMissing() since it is considered OK for it to be missing.
Simon Glass87958982020-09-01 05:13:57 -060080 allow_missing: Allow children of this entry to be missing (used by
81 subclasses such as Entry_section)
Heiko Thierya89c8f22022-01-06 11:49:41 +010082 allow_fake: Allow creating a dummy fake file if the blob file is not
83 available. This is mainly used for testing.
Simon Glass87958982020-09-01 05:13:57 -060084 external: True if this entry contains an external binary blob
Simon Glass386c63c2022-01-09 20:13:50 -070085 bintools: Bintools used by this entry (only populated for Image)
Simon Glass4f9ee832022-01-09 20:14:09 -070086 missing_bintools: List of missing bintools for this entry
Alper Nebi Yasakee813c82022-02-09 22:02:35 +030087 update_hash: True if this entry's "hash" subnode should be
88 updated with a hash of the entry contents
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +020089 comp_bintool: Bintools used for compress and decompress data
Simon Glass7960a0a2022-08-07 09:46:46 -060090 fake_fname: Fake filename, if one was created, else None
Simon Glasscdadada2022-08-13 11:40:44 -060091 required_props (dict of str): Properties which must be present. This can
92 be added to by subclasses
Simon Glass3fbba552022-10-20 18:22:46 -060093 elf_fname (str): Filename of the ELF file, if this entry holds an ELF
94 file, or is a binary file produced from an ELF file
95 auto_write_symbols (bool): True to write ELF symbols into this entry's
96 contents
Simon Glassc8c9f312023-01-07 14:07:12 -070097 absent (bool): True if this entry is absent. This can be controlled by
98 the entry itself, allowing it to vanish in certain circumstances.
99 An absent entry is removed during processing so that it does not
100 appear in the map
Simon Glass67a05012023-01-07 14:07:15 -0700101 optional (bool): True if this entry contains an optional external blob
Simon Glass9766f692023-01-11 16:10:16 -0700102 overlap (bool): True if this entry overlaps with others
Simon Glass9dbb02b2023-02-12 17:11:15 -0700103 preserve (bool): True if this entry should be preserved when updating
104 firmware. This means that it will not be changed by the update.
105 This is just a signal: enforcement of this is up to the updater.
106 This flag does not automatically propagate down to child entries.
Simon Glass7caa3722023-03-02 17:02:44 -0700107 build_done (bool): Indicates that the entry data has been built and does
108 not need to be done again. This is only used with 'binman replace',
109 to stop sections from being rebuilt if their entries have not been
110 replaced
Simon Glassbf7fd502016-11-25 20:15:51 -0700111 """
Simon Glass7960a0a2022-08-07 09:46:46 -0600112 fake_dir = None
113
Simon Glass3fbba552022-10-20 18:22:46 -0600114 def __init__(self, section, etype, node, name_prefix='',
115 auto_write_symbols=False):
Simon Glass8dbb7442019-08-24 07:22:44 -0600116 # Put this here to allow entry-docs and help to work without libfdt
117 global state
Simon Glass16287932020-04-17 18:09:03 -0600118 from binman import state
Simon Glass8dbb7442019-08-24 07:22:44 -0600119
Simon Glass25ac0e62018-06-01 09:38:14 -0600120 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -0700121 self.etype = etype
122 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -0600123 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -0600124 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -0700125 self.size = None
Samuel Hollandb01ae032023-01-21 17:25:16 -0600126 self.min_size = 0
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600127 self.pre_reset_size = None
Simon Glass8287ee82019-07-08 14:25:30 -0600128 self.uncomp_size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -0600129 self.data = None
Simon Glass97c3e9a2020-10-26 17:40:15 -0600130 self.uncomp_data = None
Simon Glassbf7fd502016-11-25 20:15:51 -0700131 self.contents_size = 0
132 self.align = None
133 self.align_size = None
134 self.align_end = None
135 self.pad_before = 0
136 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -0600137 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -0600138 self.image_pos = None
Simon Glass80a66ae2022-03-05 20:18:59 -0700139 self.extend_size = False
Simon Glass8287ee82019-07-08 14:25:30 -0600140 self.compress = 'none'
Simon Glassb1cca952020-07-09 18:39:40 -0600141 self.missing = False
Heiko Thierya89c8f22022-01-06 11:49:41 +0100142 self.faked = False
Simon Glass87958982020-09-01 05:13:57 -0600143 self.external = False
144 self.allow_missing = False
Heiko Thierya89c8f22022-01-06 11:49:41 +0100145 self.allow_fake = False
Simon Glass386c63c2022-01-09 20:13:50 -0700146 self.bintools = {}
Simon Glass4f9ee832022-01-09 20:14:09 -0700147 self.missing_bintools = []
Alper Nebi Yasakee813c82022-02-09 22:02:35 +0300148 self.update_hash = True
Simon Glass7960a0a2022-08-07 09:46:46 -0600149 self.fake_fname = None
Simon Glasscdadada2022-08-13 11:40:44 -0600150 self.required_props = []
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +0200151 self.comp_bintool = None
Simon Glass3fbba552022-10-20 18:22:46 -0600152 self.elf_fname = None
153 self.auto_write_symbols = auto_write_symbols
Simon Glassc8c9f312023-01-07 14:07:12 -0700154 self.absent = False
Simon Glass67a05012023-01-07 14:07:15 -0700155 self.optional = False
Simon Glass9766f692023-01-11 16:10:16 -0700156 self.overlap = False
Simon Glassc1157862023-01-11 16:10:17 -0700157 self.elf_base_sym = None
Simon Glass571bc4e2023-01-11 16:10:19 -0700158 self.offset_from_elf = None
Simon Glass9dbb02b2023-02-12 17:11:15 -0700159 self.preserve = False
Simon Glass7caa3722023-03-02 17:02:44 -0700160 self.build_done = False
Simon Glass4649bea2023-07-18 07:23:54 -0600161 self.no_write_symbols = False
Simon Glassbf7fd502016-11-25 20:15:51 -0700162
163 @staticmethod
Simon Glass858436d2021-11-23 21:09:49 -0700164 def FindEntryClass(etype, expanded):
Simon Glassfd8d1f72018-07-17 13:25:36 -0600165 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -0700166
167 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -0600168 node_node: Path name of Node object containing information about
169 the entry to create (used for errors)
170 etype: Entry type to use
Simon Glassb35fb172021-03-18 20:25:04 +1300171 expanded: Use the expanded version of etype
Simon Glassbf7fd502016-11-25 20:15:51 -0700172
173 Returns:
Simon Glassb35fb172021-03-18 20:25:04 +1300174 The entry class object if found, else None if not found and expanded
Simon Glass858436d2021-11-23 21:09:49 -0700175 is True, else a tuple:
176 module name that could not be found
177 exception received
Simon Glassbf7fd502016-11-25 20:15:51 -0700178 """
Simon Glassdd57c132018-06-01 09:38:11 -0600179 # Convert something like 'u-boot@0' to 'u_boot' since we are only
180 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700181 module_name = etype.replace('-', '_')
Simon Glassb35fb172021-03-18 20:25:04 +1300182
Simon Glassdd57c132018-06-01 09:38:11 -0600183 if '@' in module_name:
184 module_name = module_name.split('@')[0]
Simon Glassb35fb172021-03-18 20:25:04 +1300185 if expanded:
186 module_name += '_expanded'
Simon Glassbf7fd502016-11-25 20:15:51 -0700187 module = modules.get(module_name)
188
Simon Glassbadf0ec2018-06-01 09:38:15 -0600189 # Also allow entry-type modules to be brought in from the etype directory.
190
Simon Glassbf7fd502016-11-25 20:15:51 -0700191 # Import the module if we have not already done so.
192 if not module:
193 try:
Simon Glass16287932020-04-17 18:09:03 -0600194 module = importlib.import_module('binman.etype.' + module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600195 except ImportError as e:
Simon Glassb35fb172021-03-18 20:25:04 +1300196 if expanded:
197 return None
Simon Glass858436d2021-11-23 21:09:49 -0700198 return module_name, e
Simon Glassbf7fd502016-11-25 20:15:51 -0700199 modules[module_name] = module
200
Simon Glassfd8d1f72018-07-17 13:25:36 -0600201 # Look up the expected class name
202 return getattr(module, 'Entry_%s' % module_name)
203
204 @staticmethod
Simon Glass858436d2021-11-23 21:09:49 -0700205 def Lookup(node_path, etype, expanded, missing_etype=False):
206 """Look up the entry class for a node.
207
208 Args:
209 node_node (str): Path name of Node object containing information
210 about the entry to create (used for errors)
211 etype (str): Entry type to use
212 expanded (bool): Use the expanded version of etype
213 missing_etype (bool): True to default to a blob etype if the
214 requested etype is not found
215
216 Returns:
217 The entry class object if found, else None if not found and expanded
218 is True
219
220 Raise:
221 ValueError if expanded is False and the class is not found
222 """
223 # Convert something like 'u-boot@0' to 'u_boot' since we are only
224 # interested in the type.
225 cls = Entry.FindEntryClass(etype, expanded)
226 if cls is None:
227 return None
228 elif isinstance(cls, tuple):
229 if missing_etype:
230 cls = Entry.FindEntryClass('blob', False)
231 if isinstance(cls, tuple): # This should not fail
232 module_name, e = cls
233 raise ValueError(
234 "Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
235 (etype, node_path, module_name, e))
236 return cls
237
238 @staticmethod
239 def Create(section, node, etype=None, expanded=False, missing_etype=False):
Simon Glassfd8d1f72018-07-17 13:25:36 -0600240 """Create a new entry for a node.
241
242 Args:
Simon Glass858436d2021-11-23 21:09:49 -0700243 section (entry_Section): Section object containing this node
244 node (Node): Node object containing information about the entry to
245 create
246 etype (str): Entry type to use, or None to work it out (used for
247 tests)
248 expanded (bool): Use the expanded version of etype
249 missing_etype (bool): True to default to a blob etype if the
250 requested etype is not found
Simon Glassfd8d1f72018-07-17 13:25:36 -0600251
252 Returns:
253 A new Entry object of the correct type (a subclass of Entry)
254 """
255 if not etype:
256 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glass858436d2021-11-23 21:09:49 -0700257 obj = Entry.Lookup(node.path, etype, expanded, missing_etype)
Simon Glassb35fb172021-03-18 20:25:04 +1300258 if obj and expanded:
259 # Check whether to use the expanded entry
260 new_etype = etype + '-expanded'
Simon Glass3d433382021-03-21 18:24:30 +1300261 can_expand = not fdt_util.GetBool(node, 'no-expanded')
262 if can_expand and obj.UseExpanded(node, etype, new_etype):
Simon Glassb35fb172021-03-18 20:25:04 +1300263 etype = new_etype
264 else:
265 obj = None
266 if not obj:
Simon Glass858436d2021-11-23 21:09:49 -0700267 obj = Entry.Lookup(node.path, etype, False, missing_etype)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600268
Simon Glassbf7fd502016-11-25 20:15:51 -0700269 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600270 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700271
272 def ReadNode(self):
273 """Read entry information from the node
274
Simon Glassc6bd6e22019-07-20 12:23:45 -0600275 This must be called as the first thing after the Entry is created.
276
Simon Glassbf7fd502016-11-25 20:15:51 -0700277 This reads all the fields we recognise from the node, ready for use.
278 """
Simon Glasscdadada2022-08-13 11:40:44 -0600279 self.ensure_props()
Simon Glass15a587c2018-07-17 13:25:51 -0600280 if 'pos' in self._node.props:
281 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass80a66ae2022-03-05 20:18:59 -0700282 if 'expand-size' in self._node.props:
283 self.Raise("Please use 'extend-size' instead of 'expand-size'")
Simon Glass3ab95982018-08-01 15:22:37 -0600284 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700285 self.size = fdt_util.GetInt(self._node, 'size')
Samuel Hollandb01ae032023-01-21 17:25:16 -0600286 self.min_size = fdt_util.GetInt(self._node, 'min-size', 0)
Simon Glass12bb1a92019-07-20 12:23:51 -0600287 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
288 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
289 if self.GetImage().copy_to_orig:
290 self.orig_offset = self.offset
291 self.orig_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600292
Simon Glassffded752019-07-08 14:25:46 -0600293 # These should not be set in input files, but are set in an FDT map,
294 # which is also read by this code.
295 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
296 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
297
Simon Glassbf7fd502016-11-25 20:15:51 -0700298 self.align = fdt_util.GetInt(self._node, 'align')
Simon Glassc1aa66e2022-01-29 14:14:04 -0700299 if tools.not_power_of_two(self.align):
Simon Glassbf7fd502016-11-25 20:15:51 -0700300 raise ValueError("Node '%s': Alignment %s must be a power of two" %
301 (self._node.path, self.align))
Simon Glass5ff9fed2021-03-21 18:24:33 +1300302 if self.section and self.align is None:
303 self.align = self.section.align_default
Simon Glassbf7fd502016-11-25 20:15:51 -0700304 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
305 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
306 self.align_size = fdt_util.GetInt(self._node, 'align-size')
Simon Glassc1aa66e2022-01-29 14:14:04 -0700307 if tools.not_power_of_two(self.align_size):
Simon Glass8beb11e2019-07-08 14:25:47 -0600308 self.Raise("Alignment size %s must be a power of two" %
309 self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700310 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600311 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glass80a66ae2022-03-05 20:18:59 -0700312 self.extend_size = fdt_util.GetBool(self._node, 'extend-size')
Simon Glassb2381432020-09-06 10:39:09 -0600313 self.missing_msg = fdt_util.GetString(self._node, 'missing-msg')
Simon Glass67a05012023-01-07 14:07:15 -0700314 self.optional = fdt_util.GetBool(self._node, 'optional')
Simon Glass9766f692023-01-11 16:10:16 -0700315 self.overlap = fdt_util.GetBool(self._node, 'overlap')
316 if self.overlap:
317 self.required_props += ['offset', 'size']
Simon Glassbf7fd502016-11-25 20:15:51 -0700318
Simon Glass87c96292020-10-26 17:40:06 -0600319 # This is only supported by blobs and sections at present
320 self.compress = fdt_util.GetString(self._node, 'compress', 'none')
Simon Glass571bc4e2023-01-11 16:10:19 -0700321 self.offset_from_elf = fdt_util.GetPhandleNameOffset(self._node,
322 'offset-from-elf')
Simon Glass87c96292020-10-26 17:40:06 -0600323
Simon Glass9dbb02b2023-02-12 17:11:15 -0700324 self.preserve = fdt_util.GetBool(self._node, 'preserve')
Simon Glass4649bea2023-07-18 07:23:54 -0600325 self.no_write_symbols = fdt_util.GetBool(self._node, 'no-write-symbols')
Simon Glass9dbb02b2023-02-12 17:11:15 -0700326
Simon Glass6c234bf2018-09-14 04:57:18 -0600327 def GetDefaultFilename(self):
328 return None
329
Simon Glassa8adb6d2019-07-20 12:23:28 -0600330 def GetFdts(self):
331 """Get the device trees used by this entry
Simon Glass539aece2018-09-14 04:57:22 -0600332
333 Returns:
Simon Glassa8adb6d2019-07-20 12:23:28 -0600334 Empty dict, if this entry is not a .dtb, otherwise:
335 Dict:
336 key: Filename from this entry (without the path)
Simon Glass4bdd3002019-07-20 12:23:31 -0600337 value: Tuple:
Simon Glassadb67bb2021-03-18 20:25:02 +1300338 Entry object for this dtb
Simon Glass4bdd3002019-07-20 12:23:31 -0600339 Filename of file containing this dtb
Simon Glass539aece2018-09-14 04:57:22 -0600340 """
Simon Glassa8adb6d2019-07-20 12:23:28 -0600341 return {}
Simon Glass539aece2018-09-14 04:57:22 -0600342
Simon Glassc9ee33a2022-03-05 20:19:00 -0700343 def gen_entries(self):
344 """Allow entries to generate other entries
Simon Glassa01d1a22021-03-18 20:24:52 +1300345
346 Some entries generate subnodes automatically, from which sub-entries
347 are then created. This method allows those to be added to the binman
348 definition for the current image. An entry which implements this method
349 should call state.AddSubnode() to add a subnode and can add properties
350 with state.AddString(), etc.
351
352 An example is 'files', which produces a section containing a list of
353 files.
354 """
Simon Glass0a98b282018-09-14 04:57:28 -0600355 pass
356
Simon Glassa9fad072020-10-26 17:40:17 -0600357 def AddMissingProperties(self, have_image_pos):
358 """Add new properties to the device tree as needed for this entry
359
360 Args:
361 have_image_pos: True if this entry has an image position. This can
362 be False if its parent section is compressed, since compression
363 groups all entries together into a compressed block of data,
364 obscuring the start of each individual child entry
365 """
366 for prop in ['offset', 'size']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600367 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600368 state.AddZeroProp(self._node, prop)
Simon Glassa9fad072020-10-26 17:40:17 -0600369 if have_image_pos and 'image-pos' not in self._node.props:
370 state.AddZeroProp(self._node, 'image-pos')
Simon Glass12bb1a92019-07-20 12:23:51 -0600371 if self.GetImage().allow_repack:
372 if self.orig_offset is not None:
373 state.AddZeroProp(self._node, 'orig-offset', True)
374 if self.orig_size is not None:
375 state.AddZeroProp(self._node, 'orig-size', True)
376
Simon Glass8287ee82019-07-08 14:25:30 -0600377 if self.compress != 'none':
378 state.AddZeroProp(self._node, 'uncomp-size')
Alper Nebi Yasakee813c82022-02-09 22:02:35 +0300379
380 if self.update_hash:
381 err = state.CheckAddHashProp(self._node)
382 if err:
383 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600384
385 def SetCalculatedProperties(self):
386 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600387 state.SetInt(self._node, 'offset', self.offset)
388 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600389 base = self.section.GetRootSkipAtStart() if self.section else 0
Simon Glassa9fad072020-10-26 17:40:17 -0600390 if self.image_pos is not None:
Simon Glass08594d42020-11-02 12:55:44 -0700391 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glass12bb1a92019-07-20 12:23:51 -0600392 if self.GetImage().allow_repack:
393 if self.orig_offset is not None:
394 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
395 if self.orig_size is not None:
396 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600397 if self.uncomp_size is not None:
398 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Alper Nebi Yasakee813c82022-02-09 22:02:35 +0300399
400 if self.update_hash:
401 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600402
Simon Glassecab8972018-07-06 10:27:40 -0600403 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600404 """Allow entries to adjust the device tree
405
406 Some entries need to adjust the device tree for their purposes. This
407 may involve adding or deleting properties.
408
409 Returns:
410 True if processing is complete
411 False if processing could not be completed due to a dependency.
412 This will cause the entry to be retried after others have been
413 called
414 """
Simon Glassecab8972018-07-06 10:27:40 -0600415 return True
416
Simon Glassc8d48ef2018-06-01 09:38:21 -0600417 def SetPrefix(self, prefix):
418 """Set the name prefix for a node
419
420 Args:
421 prefix: Prefix to set, or '' to not use a prefix
422 """
423 if prefix:
424 self.name = prefix + self.name
425
Simon Glass5c890232018-07-06 10:27:19 -0600426 def SetContents(self, data):
427 """Set the contents of an entry
428
429 This sets both the data and content_size properties
430
431 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600432 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600433 """
434 self.data = data
435 self.contents_size = len(self.data)
436
437 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600438 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600439
Simon Glassa0dcaf22019-07-08 14:25:35 -0600440 This checks that the new data is the same size as the old. If the size
441 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600442
443 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600444 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600445
446 Raises:
447 ValueError if the new data size is not the same as the old
448 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600449 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600450 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600451 if state.AllowEntryExpansion() and new_size > self.contents_size:
452 # self.data will indicate the new size needed
453 size_ok = False
454 elif state.AllowEntryContraction() and new_size < self.contents_size:
455 size_ok = False
456
457 # If not allowed to change, try to deal with it or give up
458 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600459 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600460 self.Raise('Cannot update entry size from %d to %d' %
461 (self.contents_size, new_size))
462
463 # Don't let the data shrink. Pad it if necessary
464 if size_ok and new_size < self.contents_size:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700465 data += tools.get_bytes(0, self.contents_size - new_size)
Simon Glass61ec04f2019-07-20 12:23:58 -0600466
467 if not size_ok:
Simon Glassf3385a52022-01-29 14:14:15 -0700468 tout.debug("Entry '%s' size change from %s to %s" % (
Simon Glassc1aa66e2022-01-29 14:14:04 -0700469 self._node.path, to_hex(self.contents_size),
470 to_hex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600471 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600472 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600473
Simon Glass72e423c2022-03-05 20:19:05 -0700474 def ObtainContents(self, skip_entry=None, fake_size=0):
Simon Glassbf7fd502016-11-25 20:15:51 -0700475 """Figure out the contents of an entry.
476
Simon Glass20a317f2023-07-18 07:23:57 -0600477 For missing blobs (where allow-missing is enabled), the contents are set
478 to b'' and self.missing is set to True.
479
Simon Glass72e423c2022-03-05 20:19:05 -0700480 Args:
481 skip_entry (Entry): Entry to skip when obtaining section contents
482 fake_size (int): Size of fake file to create if needed
483
Simon Glassbf7fd502016-11-25 20:15:51 -0700484 Returns:
485 True if the contents were found, False if another call is needed
Simon Glass62ef2f72023-01-11 16:10:14 -0700486 after the other entries are processed, None if there is no contents
Simon Glassbf7fd502016-11-25 20:15:51 -0700487 """
488 # No contents by default: subclasses can implement this
489 return True
490
Simon Glassc52c9e72019-07-08 14:25:37 -0600491 def ResetForPack(self):
492 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600493 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
Simon Glassc1aa66e2022-01-29 14:14:04 -0700494 (to_hex(self.offset), to_hex(self.orig_offset),
495 to_hex(self.size), to_hex(self.orig_size)))
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600496 self.pre_reset_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600497 self.offset = self.orig_offset
498 self.size = self.orig_size
499
Simon Glass3ab95982018-08-01 15:22:37 -0600500 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600501 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700502
503 Most of the time the entries are not fully specified. There may be
504 an alignment but no size. In that case we take the size from the
505 contents of the entry.
506
Simon Glass3ab95982018-08-01 15:22:37 -0600507 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700508
Simon Glass3ab95982018-08-01 15:22:37 -0600509 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700510 entry will be know.
511
512 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600513 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700514
515 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600516 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700517 """
Simon Glass9f297b02019-07-20 12:23:36 -0600518 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
Simon Glassc1aa66e2022-01-29 14:14:04 -0700519 (to_hex(self.offset), to_hex(self.size),
Simon Glass9f297b02019-07-20 12:23:36 -0600520 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600521 if self.offset is None:
522 if self.offset_unset:
523 self.Raise('No offset set with offset-unset: should another '
524 'entry provide this correct offset?')
Simon Glass571bc4e2023-01-11 16:10:19 -0700525 elif self.offset_from_elf:
526 self.offset = self.lookup_offset()
527 else:
528 self.offset = tools.align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700529 needed = self.pad_before + self.contents_size + self.pad_after
Samuel Hollandb01ae032023-01-21 17:25:16 -0600530 needed = max(needed, self.min_size)
Simon Glassc1aa66e2022-01-29 14:14:04 -0700531 needed = tools.align(needed, self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700532 size = self.size
533 if not size:
534 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600535 new_offset = self.offset + size
Simon Glassc1aa66e2022-01-29 14:14:04 -0700536 aligned_offset = tools.align(new_offset, self.align_end)
Simon Glass3ab95982018-08-01 15:22:37 -0600537 if aligned_offset != new_offset:
538 size = aligned_offset - self.offset
539 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700540
541 if not self.size:
542 self.size = size
543
544 if self.size < needed:
545 self.Raise("Entry contents size is %#x (%d) but entry size is "
546 "%#x (%d)" % (needed, needed, self.size, self.size))
547 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600548 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700549 # conflict with the provided alignment values
Simon Glassc1aa66e2022-01-29 14:14:04 -0700550 if self.size != tools.align(self.size, self.align_size):
Simon Glassbf7fd502016-11-25 20:15:51 -0700551 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
552 (self.size, self.size, self.align_size, self.align_size))
Simon Glassc1aa66e2022-01-29 14:14:04 -0700553 if self.offset != tools.align(self.offset, self.align):
Simon Glass3ab95982018-08-01 15:22:37 -0600554 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
555 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600556 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
557 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700558
Simon Glass3ab95982018-08-01 15:22:37 -0600559 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700560
561 def Raise(self, msg):
562 """Convenience function to raise an error referencing a node"""
563 raise ValueError("Node '%s': %s" % (self._node.path, msg))
564
Simon Glass189f2912021-03-21 18:24:31 +1300565 def Info(self, msg):
566 """Convenience function to log info referencing a node"""
567 tag = "Info '%s'" % self._node.path
Simon Glassf3385a52022-01-29 14:14:15 -0700568 tout.detail('%30s: %s' % (tag, msg))
Simon Glass189f2912021-03-21 18:24:31 +1300569
Simon Glass9f297b02019-07-20 12:23:36 -0600570 def Detail(self, msg):
571 """Convenience function to log detail referencing a node"""
572 tag = "Node '%s'" % self._node.path
Simon Glassf3385a52022-01-29 14:14:15 -0700573 tout.detail('%30s: %s' % (tag, msg))
Simon Glass9f297b02019-07-20 12:23:36 -0600574
Simon Glass53af22a2018-07-17 13:25:32 -0600575 def GetEntryArgsOrProps(self, props, required=False):
576 """Return the values of a set of properties
577
578 Args:
579 props: List of EntryArg objects
580
581 Raises:
582 ValueError if a property is not found
583 """
584 values = []
585 missing = []
586 for prop in props:
587 python_prop = prop.name.replace('-', '_')
588 if hasattr(self, python_prop):
589 value = getattr(self, python_prop)
590 else:
591 value = None
592 if value is None:
593 value = self.GetArg(prop.name, prop.datatype)
594 if value is None and required:
595 missing.append(prop.name)
596 values.append(value)
597 if missing:
Simon Glass939d1062021-01-06 21:35:16 -0700598 self.GetImage().MissingArgs(self, missing)
Simon Glass53af22a2018-07-17 13:25:32 -0600599 return values
600
Simon Glassbf7fd502016-11-25 20:15:51 -0700601 def GetPath(self):
602 """Get the path of a node
603
604 Returns:
605 Full path of the node for this entry
606 """
607 return self._node.path
608
Simon Glass631f7522021-03-21 18:24:32 +1300609 def GetData(self, required=True):
Simon Glass63e7ba62020-10-26 17:40:16 -0600610 """Get the contents of an entry
611
Simon Glass631f7522021-03-21 18:24:32 +1300612 Args:
613 required: True if the data must be present, False if it is OK to
614 return None
615
Simon Glass63e7ba62020-10-26 17:40:16 -0600616 Returns:
617 bytes content of the entry, excluding any padding. If the entry is
Simon Glass4331d662023-01-11 16:10:13 -0700618 compressed, the compressed data is returned. If the entry data
Simon Glass62ef2f72023-01-11 16:10:14 -0700619 is not yet available, False can be returned. If the entry data
620 is null, then None is returned.
Simon Glass63e7ba62020-10-26 17:40:16 -0600621 """
Simon Glassc1aa66e2022-01-29 14:14:04 -0700622 self.Detail('GetData: size %s' % to_hex_size(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700623 return self.data
624
Simon Glass271a0832020-11-02 12:55:43 -0700625 def GetPaddedData(self, data=None):
626 """Get the data for an entry including any padding
627
628 Gets the entry data and uses its section's pad-byte value to add padding
629 before and after as defined by the pad-before and pad-after properties.
630
631 This does not consider alignment.
632
633 Returns:
634 Contents of the entry along with any pad bytes before and
635 after it (bytes)
636 """
637 if data is None:
638 data = self.GetData()
639 return self.section.GetPaddedDataForEntry(self, data)
640
Simon Glass3ab95982018-08-01 15:22:37 -0600641 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600642 """Get the offsets for siblings
643
644 Some entry types can contain information about the position or size of
645 other entries. An example of this is the Intel Flash Descriptor, which
646 knows where the Intel Management Engine section should go.
647
648 If this entry knows about the position of other entries, it can specify
649 this by returning values here
650
651 Returns:
652 Dict:
653 key: Entry type
654 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600655 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600656 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700657 return {}
658
Simon Glasscf549042019-07-08 13:18:39 -0600659 def SetOffsetSize(self, offset, size):
660 """Set the offset and/or size of an entry
661
662 Args:
663 offset: New offset, or None to leave alone
664 size: New size, or None to leave alone
665 """
666 if offset is not None:
667 self.offset = offset
668 if size is not None:
669 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700670
Simon Glassdbf6be92018-08-01 15:22:42 -0600671 def SetImagePos(self, image_pos):
672 """Set the position in the image
673
674 Args:
675 image_pos: Position of this entry in the image
676 """
677 self.image_pos = image_pos + self.offset
678
Simon Glassbf7fd502016-11-25 20:15:51 -0700679 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600680 """Do any post-packing updates of entry contents
681
682 This function should call ProcessContentsUpdate() to update the entry
683 contents, if necessary, returning its return value here.
684
685 Args:
686 data: Data to set to the contents (bytes)
687
688 Returns:
689 True if the new data size is OK, False if expansion is needed
690
691 Raises:
692 ValueError if the new data size is not the same as the old and
693 state.AllowEntryExpansion() is False
694 """
695 return True
Simon Glass19790632017-11-13 18:55:01 -0700696
Simon Glassf55382b2018-06-01 09:38:13 -0600697 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700698 """Write symbol values into binary files for access at run time
699
700 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600701 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700702 """
Simon Glass4649bea2023-07-18 07:23:54 -0600703 if self.auto_write_symbols and not self.no_write_symbols:
Simon Glassd2afb9e2022-10-20 18:22:47 -0600704 # Check if we are writing symbols into an ELF file
705 is_elf = self.GetDefaultFilename() == self.elf_fname
706 elf.LookupAndWriteSymbols(self.elf_fname, self, section.GetImage(),
Simon Glassc1157862023-01-11 16:10:17 -0700707 is_elf, self.elf_base_sym)
Simon Glass18546952018-06-01 09:38:16 -0600708
Simon Glass6ddd6112020-10-26 17:40:18 -0600709 def CheckEntries(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600710 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600711
Simon Glass3ab95982018-08-01 15:22:37 -0600712 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600713 than having to be fully inside their section). Sub-classes can implement
714 this function and raise if there is a problem.
715 """
716 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600717
Simon Glass8122f392018-07-17 13:25:28 -0600718 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600719 def GetStr(value):
720 if value is None:
721 return '<none> '
722 return '%08x' % value
723
724 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600725 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600726 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
727 Entry.GetStr(offset), Entry.GetStr(size),
728 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600729
Simon Glass3b0c3822018-06-01 09:38:20 -0600730 def WriteMap(self, fd, indent):
731 """Write a map of the entry to a .map file
732
733 Args:
734 fd: File to write the map to
735 indent: Curent indent level of map (0=none, 1=one level, etc.)
736 """
Simon Glass1be70d22018-07-17 13:25:49 -0600737 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
738 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600739
Simon Glassd626e822022-08-13 11:40:50 -0600740 # pylint: disable=assignment-from-none
Simon Glass11e36cc2018-07-17 13:25:38 -0600741 def GetEntries(self):
742 """Return a list of entries contained by this entry
743
744 Returns:
745 List of entries, or None if none. A normal entry has no entries
746 within it so will return None
747 """
748 return None
749
Simon Glassd626e822022-08-13 11:40:50 -0600750 def FindEntryByNode(self, find_node):
751 """Find a node in an entry, searching all subentries
752
753 This does a recursive search.
754
755 Args:
756 find_node (fdt.Node): Node to find
757
758 Returns:
759 Entry: entry, if found, else None
760 """
761 entries = self.GetEntries()
762 if entries:
763 for entry in entries.values():
764 if entry._node == find_node:
765 return entry
766 found = entry.FindEntryByNode(find_node)
767 if found:
768 return found
769
770 return None
771
Simon Glass53af22a2018-07-17 13:25:32 -0600772 def GetArg(self, name, datatype=str):
773 """Get the value of an entry argument or device-tree-node property
774
775 Some node properties can be provided as arguments to binman. First check
776 the entry arguments, and fall back to the device tree if not found
777
778 Args:
779 name: Argument name
780 datatype: Data type (str or int)
781
782 Returns:
783 Value of argument as a string or int, or None if no value
784
785 Raises:
786 ValueError if the argument cannot be converted to in
787 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600788 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600789 if value is not None:
790 if datatype == int:
791 try:
792 value = int(value)
793 except ValueError:
794 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
795 (name, value))
796 elif datatype == str:
797 pass
798 else:
799 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
800 datatype)
801 else:
802 value = fdt_util.GetDatatype(self._node, name, datatype)
803 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600804
805 @staticmethod
806 def WriteDocs(modules, test_missing=None):
807 """Write out documentation about the various entry types to stdout
808
809 Args:
810 modules: List of modules to include
811 test_missing: Used for testing. This is a module to report
812 as missing
813 """
814 print('''Binman Entry Documentation
815===========================
816
817This file describes the entry types supported by binman. These entry types can
818be placed in an image one by one to build up a final firmware image. It is
819fairly easy to create new entry types. Just add a new file to the 'etype'
820directory. You can use the existing entries as examples.
821
822Note that some entries are subclasses of others, using and extending their
823features to produce new behaviours.
824
825
826''')
827 modules = sorted(modules)
828
829 # Don't show the test entry
830 if '_testing' in modules:
831 modules.remove('_testing')
832 missing = []
833 for name in modules:
Simon Glassb35fb172021-03-18 20:25:04 +1300834 module = Entry.Lookup('WriteDocs', name, False)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600835 docs = getattr(module, '__doc__')
836 if test_missing == name:
837 docs = None
838 if docs:
839 lines = docs.splitlines()
840 first_line = lines[0]
841 rest = [line[4:] for line in lines[1:]]
842 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
Simon Glass228c9b82022-08-07 16:33:25 -0600843
844 # Create a reference for use by rST docs
845 ref_name = f'etype_{module.__name__[6:]}'.lower()
846 print('.. _%s:' % ref_name)
847 print()
Simon Glassfd8d1f72018-07-17 13:25:36 -0600848 print(hdr)
849 print('-' * len(hdr))
850 print('\n'.join(rest))
851 print()
852 print()
853 else:
854 missing.append(name)
855
856 if missing:
857 raise ValueError('Documentation is missing for modules: %s' %
858 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600859
860 def GetUniqueName(self):
861 """Get a unique name for a node
862
863 Returns:
864 String containing a unique name for a node, consisting of the name
865 of all ancestors (starting from within the 'binman' node) separated
866 by a dot ('.'). This can be useful for generating unique filesnames
867 in the output directory.
868 """
869 name = self.name
870 node = self._node
871 while node.parent:
872 node = node.parent
Alper Nebi Yasak67bf2c82022-03-27 18:31:44 +0300873 if node.name in ('binman', '/'):
Simon Glassa326b492018-09-14 04:57:11 -0600874 break
875 name = '%s.%s' % (node.name, name)
876 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600877
Simon Glass80a66ae2022-03-05 20:18:59 -0700878 def extend_to_limit(self, limit):
879 """Extend an entry so that it ends at the given offset limit"""
Simon Glassba64a0b2018-09-14 04:57:29 -0600880 if self.offset + self.size < limit:
881 self.size = limit - self.offset
882 # Request the contents again, since changing the size requires that
883 # the data grows. This should not fail, but check it to be sure.
884 if not self.ObtainContents():
885 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600886
887 def HasSibling(self, name):
888 """Check if there is a sibling of a given name
889
890 Returns:
891 True if there is an entry with this name in the the same section,
892 else False
893 """
894 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600895
896 def GetSiblingImagePos(self, name):
897 """Return the image position of the given sibling
898
899 Returns:
900 Image position of sibling, or None if the sibling has no position,
901 or False if there is no such sibling
902 """
903 if not self.HasSibling(name):
904 return False
905 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600906
907 @staticmethod
908 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
909 uncomp_size, offset, entry):
910 """Add a new entry to the entries list
911
912 Args:
913 entries: List (of EntryInfo objects) to add to
914 indent: Current indent level to add to list
915 name: Entry name (string)
916 etype: Entry type (string)
917 size: Entry size in bytes (int)
918 image_pos: Position within image in bytes (int)
919 uncomp_size: Uncompressed size if the entry uses compression, else
920 None
921 offset: Entry offset within parent in bytes (int)
922 entry: Entry object
923 """
924 entries.append(EntryInfo(indent, name, etype, size, image_pos,
925 uncomp_size, offset, entry))
926
927 def ListEntries(self, entries, indent):
928 """Add files in this entry to the list of entries
929
930 This can be overridden by subclasses which need different behaviour.
931
932 Args:
933 entries: List (of EntryInfo objects) to add to
934 indent: Current indent level to add to list
935 """
936 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
937 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600938
Simon Glass943bf782021-11-23 21:09:50 -0700939 def ReadData(self, decomp=True, alt_format=None):
Simon Glassf667e452019-07-08 14:25:50 -0600940 """Read the data for an entry from the image
941
942 This is used when the image has been read in and we want to extract the
943 data for a particular entry from that image.
944
945 Args:
946 decomp: True to decompress any compressed data before returning it;
947 False to return the raw, uncompressed data
948
949 Returns:
950 Entry data (bytes)
951 """
952 # Use True here so that we get an uncompressed section to work from,
953 # although compressed sections are currently not supported
Simon Glassf3385a52022-01-29 14:14:15 -0700954 tout.debug("ReadChildData section '%s', entry '%s'" %
Simon Glass2d553c02019-09-25 08:56:21 -0600955 (self.section.GetPath(), self.GetPath()))
Simon Glass943bf782021-11-23 21:09:50 -0700956 data = self.section.ReadChildData(self, decomp, alt_format)
Simon Glassa9cd39e2019-07-20 12:24:04 -0600957 return data
Simon Glassd5079332019-07-20 12:23:41 -0600958
Simon Glass943bf782021-11-23 21:09:50 -0700959 def ReadChildData(self, child, decomp=True, alt_format=None):
Simon Glass2d553c02019-09-25 08:56:21 -0600960 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600961
962 This reads data from the parent and extracts the piece that relates to
963 the given child.
964
965 Args:
Simon Glass943bf782021-11-23 21:09:50 -0700966 child (Entry): Child entry to read data for (must be valid)
967 decomp (bool): True to decompress any compressed data before
968 returning it; False to return the raw, uncompressed data
969 alt_format (str): Alternative format to read in, or None
Simon Glass4e185e82019-09-25 08:56:20 -0600970
971 Returns:
972 Data for the child (bytes)
973 """
974 pass
975
Simon Glassd5079332019-07-20 12:23:41 -0600976 def LoadData(self, decomp=True):
977 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600978 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600979 self.ProcessContentsUpdate(data)
980 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600981
Simon Glass943bf782021-11-23 21:09:50 -0700982 def GetAltFormat(self, data, alt_format):
983 """Read the data for an extry in an alternative format
984
985 Supported formats are list in the documentation for each entry. An
986 example is fdtmap which provides .
987
988 Args:
989 data (bytes): Data to convert (this should have been produced by the
990 entry)
991 alt_format (str): Format to use
992
993 """
994 pass
995
Simon Glassc5ad04b2019-07-20 12:23:46 -0600996 def GetImage(self):
997 """Get the image containing this entry
998
999 Returns:
1000 Image object containing this entry
1001 """
1002 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -06001003
1004 def WriteData(self, data, decomp=True):
1005 """Write the data to an entry in the image
1006
1007 This is used when the image has been read in and we want to replace the
1008 data for a particular entry in that image.
1009
1010 The image must be re-packed and written out afterwards.
1011
1012 Args:
1013 data: Data to replace it with
1014 decomp: True to compress the data if needed, False if data is
1015 already compressed so should be used as is
1016
1017 Returns:
1018 True if the data did not result in a resize of this entry, False if
1019 the entry must be resized
1020 """
Simon Glass9a5d3dc2019-10-31 07:43:02 -06001021 if self.size is not None:
1022 self.contents_size = self.size
1023 else:
1024 self.contents_size = self.pre_reset_size
Simon Glass10f9d002019-07-20 12:23:50 -06001025 ok = self.ProcessContentsUpdate(data)
Simon Glass7caa3722023-03-02 17:02:44 -07001026 self.build_done = False
Simon Glass10f9d002019-07-20 12:23:50 -06001027 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -06001028 section_ok = self.section.WriteChildData(self)
1029 return ok and section_ok
1030
1031 def WriteChildData(self, child):
1032 """Handle writing the data in a child entry
1033
1034 This should be called on the child's parent section after the child's
Simon Glass557693e2021-11-23 11:03:44 -07001035 data has been updated. It should update any data structures needed to
1036 validate that the update is successful.
Simon Glass7210c892019-07-20 12:24:05 -06001037
1038 This base-class implementation does nothing, since the base Entry object
1039 does not have any children.
1040
1041 Args:
1042 child: Child Entry that was written
1043
1044 Returns:
1045 True if the section could be updated successfully, False if the
Simon Glass557693e2021-11-23 11:03:44 -07001046 data is such that the section could not update
Simon Glass7210c892019-07-20 12:24:05 -06001047 """
Simon Glass7caa3722023-03-02 17:02:44 -07001048 self.build_done = False
1049 entry = self.section
1050
1051 # Now we must rebuild all sections above this one
1052 while entry and entry != entry.section:
1053 self.build_done = False
1054 entry = entry.section
1055
Simon Glass7210c892019-07-20 12:24:05 -06001056 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -06001057
1058 def GetSiblingOrder(self):
1059 """Get the relative order of an entry amoung its siblings
1060
1061 Returns:
1062 'start' if this entry is first among siblings, 'end' if last,
1063 otherwise None
1064 """
1065 entries = list(self.section.GetEntries().values())
1066 if entries:
1067 if self == entries[0]:
1068 return 'start'
1069 elif self == entries[-1]:
1070 return 'end'
1071 return 'middle'
Simon Glass4f9f1052020-07-09 18:39:38 -06001072
1073 def SetAllowMissing(self, allow_missing):
1074 """Set whether a section allows missing external blobs
1075
1076 Args:
1077 allow_missing: True if allowed, False if not allowed
1078 """
1079 # This is meaningless for anything other than sections
1080 pass
Simon Glassb1cca952020-07-09 18:39:40 -06001081
Heiko Thierya89c8f22022-01-06 11:49:41 +01001082 def SetAllowFakeBlob(self, allow_fake):
1083 """Set whether a section allows to create a fake blob
1084
1085 Args:
1086 allow_fake: True if allowed, False if not allowed
1087 """
Simon Glassf4590e02022-01-09 20:13:46 -07001088 self.allow_fake = allow_fake
Heiko Thierya89c8f22022-01-06 11:49:41 +01001089
Simon Glassb1cca952020-07-09 18:39:40 -06001090 def CheckMissing(self, missing_list):
Simon Glass67a05012023-01-07 14:07:15 -07001091 """Check if the entry has missing external blobs
Simon Glassb1cca952020-07-09 18:39:40 -06001092
Simon Glass67a05012023-01-07 14:07:15 -07001093 If there are missing (non-optional) blobs, the entries are added to the
1094 list
Simon Glassb1cca952020-07-09 18:39:40 -06001095
1096 Args:
1097 missing_list: List of Entry objects to be added to
1098 """
Simon Glass67a05012023-01-07 14:07:15 -07001099 if self.missing and not self.optional:
Simon Glassb1cca952020-07-09 18:39:40 -06001100 missing_list.append(self)
Simon Glass87958982020-09-01 05:13:57 -06001101
Simon Glass3817ad42022-03-05 20:19:04 -07001102 def check_fake_fname(self, fname, size=0):
Simon Glass790ba9f2022-01-12 13:10:36 -07001103 """If the file is missing and the entry allows fake blobs, fake it
1104
1105 Sets self.faked to True if faked
1106
1107 Args:
1108 fname (str): Filename to check
Simon Glass3817ad42022-03-05 20:19:04 -07001109 size (int): Size of fake file to create
Simon Glass790ba9f2022-01-12 13:10:36 -07001110
1111 Returns:
Simon Glass9a0a2e92022-03-05 20:19:03 -07001112 tuple:
1113 fname (str): Filename of faked file
1114 bool: True if the blob was faked, False if not
Simon Glass790ba9f2022-01-12 13:10:36 -07001115 """
1116 if self.allow_fake and not pathlib.Path(fname).is_file():
Simon Glass7960a0a2022-08-07 09:46:46 -06001117 if not self.fake_fname:
1118 outfname = os.path.join(self.fake_dir, os.path.basename(fname))
1119 with open(outfname, "wb") as out:
1120 out.truncate(size)
1121 tout.info(f"Entry '{self._node.path}': Faked blob '{outfname}'")
1122 self.fake_fname = outfname
Simon Glass790ba9f2022-01-12 13:10:36 -07001123 self.faked = True
Simon Glass7960a0a2022-08-07 09:46:46 -06001124 return self.fake_fname, True
Simon Glass9a0a2e92022-03-05 20:19:03 -07001125 return fname, False
Simon Glass790ba9f2022-01-12 13:10:36 -07001126
Heiko Thierya89c8f22022-01-06 11:49:41 +01001127 def CheckFakedBlobs(self, faked_blobs_list):
1128 """Check if any entries in this section have faked external blobs
1129
1130 If there are faked blobs, the entries are added to the list
1131
1132 Args:
Jonas Karlmane389d442023-02-19 22:02:04 +00001133 faked_blobs_list: List of Entry objects to be added to
Heiko Thierya89c8f22022-01-06 11:49:41 +01001134 """
1135 # This is meaningless for anything other than blobs
1136 pass
1137
Simon Glass67a05012023-01-07 14:07:15 -07001138 def CheckOptional(self, optional_list):
1139 """Check if the entry has missing but optional external blobs
1140
1141 If there are missing (optional) blobs, the entries are added to the list
1142
1143 Args:
1144 optional_list (list): List of Entry objects to be added to
1145 """
1146 if self.missing and self.optional:
1147 optional_list.append(self)
1148
Simon Glass87958982020-09-01 05:13:57 -06001149 def GetAllowMissing(self):
1150 """Get whether a section allows missing external blobs
1151
1152 Returns:
1153 True if allowed, False if not allowed
1154 """
1155 return self.allow_missing
Simon Glassb2381432020-09-06 10:39:09 -06001156
Simon Glass4f9ee832022-01-09 20:14:09 -07001157 def record_missing_bintool(self, bintool):
1158 """Record a missing bintool that was needed to produce this entry
1159
1160 Args:
1161 bintool (Bintool): Bintool that was missing
1162 """
Stefan Herbrechtsmeierfacc3782022-08-19 16:25:19 +02001163 if bintool not in self.missing_bintools:
1164 self.missing_bintools.append(bintool)
Simon Glass4f9ee832022-01-09 20:14:09 -07001165
1166 def check_missing_bintools(self, missing_list):
1167 """Check if any entries in this section have missing bintools
1168
1169 If there are missing bintools, these are added to the list
1170
1171 Args:
1172 missing_list: List of Bintool objects to be added to
1173 """
Stefan Herbrechtsmeierfacc3782022-08-19 16:25:19 +02001174 for bintool in self.missing_bintools:
1175 if bintool not in missing_list:
1176 missing_list.append(bintool)
1177
Simon Glass4f9ee832022-01-09 20:14:09 -07001178
Simon Glassb2381432020-09-06 10:39:09 -06001179 def GetHelpTags(self):
1180 """Get the tags use for missing-blob help
1181
1182 Returns:
1183 list of possible tags, most desirable first
1184 """
1185 return list(filter(None, [self.missing_msg, self.name, self.etype]))
Simon Glass87c96292020-10-26 17:40:06 -06001186
1187 def CompressData(self, indata):
1188 """Compress data according to the entry's compression method
1189
1190 Args:
1191 indata: Data to compress
1192
1193 Returns:
Stefan Herbrechtsmeier4f463e32022-08-19 16:25:27 +02001194 Compressed data
Simon Glass87c96292020-10-26 17:40:06 -06001195 """
Simon Glass97c3e9a2020-10-26 17:40:15 -06001196 self.uncomp_data = indata
Simon Glass87c96292020-10-26 17:40:06 -06001197 if self.compress != 'none':
1198 self.uncomp_size = len(indata)
Stefan Herbrechtsmeierc3665a82022-08-19 16:25:31 +02001199 if self.comp_bintool.is_present():
1200 data = self.comp_bintool.compress(indata)
1201 else:
1202 self.record_missing_bintool(self.comp_bintool)
1203 data = tools.get_bytes(0, 1024)
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001204 else:
1205 data = indata
Simon Glass87c96292020-10-26 17:40:06 -06001206 return data
Simon Glassb35fb172021-03-18 20:25:04 +13001207
Stefan Herbrechtsmeier204a27b2022-08-19 16:25:24 +02001208 def DecompressData(self, indata):
1209 """Decompress data according to the entry's compression method
1210
1211 Args:
1212 indata: Data to decompress
1213
1214 Returns:
1215 Decompressed data
1216 """
Stefan Herbrechtsmeier204a27b2022-08-19 16:25:24 +02001217 if self.compress != 'none':
Stefan Herbrechtsmeierc3665a82022-08-19 16:25:31 +02001218 if self.comp_bintool.is_present():
1219 data = self.comp_bintool.decompress(indata)
1220 self.uncomp_size = len(data)
1221 else:
1222 self.record_missing_bintool(self.comp_bintool)
1223 data = tools.get_bytes(0, 1024)
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001224 else:
1225 data = indata
Stefan Herbrechtsmeier204a27b2022-08-19 16:25:24 +02001226 self.uncomp_data = data
1227 return data
1228
Simon Glassb35fb172021-03-18 20:25:04 +13001229 @classmethod
1230 def UseExpanded(cls, node, etype, new_etype):
1231 """Check whether to use an expanded entry type
1232
1233 This is called by Entry.Create() when it finds an expanded version of
1234 an entry type (e.g. 'u-boot-expanded'). If this method returns True then
1235 it will be used (e.g. in place of 'u-boot'). If it returns False, it is
1236 ignored.
1237
1238 Args:
1239 node: Node object containing information about the entry to
1240 create
1241 etype: Original entry type being used
1242 new_etype: New entry type proposed
1243
1244 Returns:
1245 True to use this entry type, False to use the original one
1246 """
Simon Glassf3385a52022-01-29 14:14:15 -07001247 tout.info("Node '%s': etype '%s': %s selected" %
Simon Glassb35fb172021-03-18 20:25:04 +13001248 (node.path, etype, new_etype))
1249 return True
Simon Glass943bf782021-11-23 21:09:50 -07001250
1251 def CheckAltFormats(self, alt_formats):
1252 """Add any alternative formats supported by this entry type
1253
1254 Args:
1255 alt_formats (dict): Dict to add alt_formats to:
1256 key: Name of alt format
1257 value: Help text
1258 """
1259 pass
Simon Glass386c63c2022-01-09 20:13:50 -07001260
Simon Glassae9a4572022-03-05 20:19:02 -07001261 def AddBintools(self, btools):
Simon Glass386c63c2022-01-09 20:13:50 -07001262 """Add the bintools used by this entry type
1263
1264 Args:
Simon Glassae9a4572022-03-05 20:19:02 -07001265 btools (dict of Bintool):
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001266
1267 Raise:
1268 ValueError if compression algorithm is not supported
Simon Glass386c63c2022-01-09 20:13:50 -07001269 """
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001270 algo = self.compress
1271 if algo != 'none':
Stefan Herbrechtsmeiercd15b642022-08-19 16:25:38 +02001272 algos = ['bzip2', 'gzip', 'lz4', 'lzma', 'lzo', 'xz', 'zstd']
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001273 if algo not in algos:
1274 raise ValueError("Unknown algorithm '%s'" % algo)
Stefan Herbrechtsmeier7b26a462022-08-19 16:25:36 +02001275 names = {'lzma': 'lzma_alone', 'lzo': 'lzop'}
Stefan Herbrechtsmeierec7d27d2022-08-19 16:25:30 +02001276 name = names.get(self.compress, self.compress)
1277 self.comp_bintool = self.AddBintool(btools, name)
Simon Glass386c63c2022-01-09 20:13:50 -07001278
1279 @classmethod
1280 def AddBintool(self, tools, name):
1281 """Add a new bintool to the tools used by this etype
1282
1283 Args:
1284 name: Name of the tool
1285 """
1286 btool = bintool.Bintool.create(name)
1287 tools[name] = btool
1288 return btool
Alper Nebi Yasakee813c82022-02-09 22:02:35 +03001289
1290 def SetUpdateHash(self, update_hash):
1291 """Set whether this entry's "hash" subnode should be updated
1292
1293 Args:
1294 update_hash: True if hash should be updated, False if not
1295 """
1296 self.update_hash = update_hash
Simon Glass81b71c32022-02-08 11:50:00 -07001297
Simon Glass72e423c2022-03-05 20:19:05 -07001298 def collect_contents_to_file(self, entries, prefix, fake_size=0):
Simon Glass81b71c32022-02-08 11:50:00 -07001299 """Put the contents of a list of entries into a file
1300
1301 Args:
1302 entries (list of Entry): Entries to collect
1303 prefix (str): Filename prefix of file to write to
Simon Glass72e423c2022-03-05 20:19:05 -07001304 fake_size (int): Size of fake file to create if needed
Simon Glass81b71c32022-02-08 11:50:00 -07001305
1306 If any entry does not have contents yet, this function returns False
1307 for the data.
1308
1309 Returns:
1310 Tuple:
Simon Glass6d427c42022-03-05 20:18:58 -07001311 bytes: Concatenated data from all the entries (or None)
1312 str: Filename of file written (or None if no data)
1313 str: Unique portion of filename (or None if no data)
Simon Glass81b71c32022-02-08 11:50:00 -07001314 """
1315 data = b''
1316 for entry in entries:
Simon Glass81b71c32022-02-08 11:50:00 -07001317 data += entry.GetData()
1318 uniq = self.GetUniqueName()
1319 fname = tools.get_output_filename(f'{prefix}.{uniq}')
1320 tools.write_file(fname, data)
1321 return data, fname, uniq
Simon Glass7960a0a2022-08-07 09:46:46 -06001322
1323 @classmethod
1324 def create_fake_dir(cls):
1325 """Create the directory for fake files"""
1326 cls.fake_dir = tools.get_output_filename('binman-fake')
1327 if not os.path.exists(cls.fake_dir):
1328 os.mkdir(cls.fake_dir)
1329 tout.notice(f"Fake-blob dir is '{cls.fake_dir}'")
Simon Glasscdadada2022-08-13 11:40:44 -06001330
1331 def ensure_props(self):
1332 """Raise an exception if properties are missing
1333
1334 Args:
1335 prop_list (list of str): List of properties to check for
1336
1337 Raises:
1338 ValueError: Any property is missing
1339 """
1340 not_present = []
1341 for prop in self.required_props:
1342 if not prop in self._node.props:
1343 not_present.append(prop)
1344 if not_present:
1345 self.Raise(f"'{self.etype}' entry is missing properties: {' '.join(not_present)}")
Simon Glassc8c9f312023-01-07 14:07:12 -07001346
1347 def mark_absent(self, msg):
1348 tout.info("Entry '%s' marked absent: %s" % (self._node.path, msg))
1349 self.absent = True
Simon Glass2f80c5e2023-01-07 14:07:14 -07001350
1351 def read_elf_segments(self):
1352 """Read segments from an entry that can generate an ELF file
1353
1354 Returns:
1355 tuple:
1356 list of segments, each:
1357 int: Segment number (0 = first)
1358 int: Start address of segment in memory
1359 bytes: Contents of segment
1360 int: entry address of ELF file
1361 """
1362 return None
Simon Glass571bc4e2023-01-11 16:10:19 -07001363
1364 def lookup_offset(self):
1365 node, sym_name, offset = self.offset_from_elf
1366 entry = self.section.FindEntryByNode(node)
1367 if not entry:
1368 self.Raise("Cannot find entry for node '%s'" % node.name)
1369 if not entry.elf_fname:
1370 entry.Raise("Need elf-fname property '%s'" % node.name)
1371 val = elf.GetSymbolOffset(entry.elf_fname, sym_name,
1372 entry.elf_base_sym)
1373 return val + offset
Simon Glass7caa3722023-03-02 17:02:44 -07001374
1375 def mark_build_done(self):
1376 """Mark an entry as already built"""
1377 self.build_done = True
1378 entries = self.GetEntries()
1379 if entries:
1380 for entry in entries.values():
1381 entry.mark_build_done()
Ivan Mikhaylov5b34efe2023-03-08 01:13:40 +00001382
1383 def UpdateSignatures(self, privatekey_fname, algo, input_fname):
1384 self.Raise('Updating signatures is not supported with this entry type')