blob: 7ead997e0fdbd2907ec3109723e8722d86e4345b [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 Glass3b0c3822018-06-01 09:38:20 -06007from __future__ import print_function
8
Simon Glass53af22a2018-07-17 13:25:32 -06009from collections import namedtuple
10
Simon Glassbf7fd502016-11-25 20:15:51 -070011# importlib was introduced in Python 2.7 but there was a report of it not
12# working in 2.7.12, so we work around this:
13# http://lists.denx.de/pipermail/u-boot/2016-October/269729.html
14try:
15 import importlib
16 have_importlib = True
17except:
18 have_importlib = False
19
Simon Glassbadf0ec2018-06-01 09:38:15 -060020import os
21import sys
Simon Glassc55a50f2018-09-14 04:57:19 -060022
23import fdt_util
24import state
Simon Glassbf7fd502016-11-25 20:15:51 -070025import tools
26
27modules = {}
28
Simon Glassbadf0ec2018-06-01 09:38:15 -060029our_path = os.path.dirname(os.path.realpath(__file__))
30
Simon Glass53af22a2018-07-17 13:25:32 -060031
32# An argument which can be passed to entries on the command line, in lieu of
33# device-tree properties.
34EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
35
36
Simon Glassbf7fd502016-11-25 20:15:51 -070037class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060038 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070039
40 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060041 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070042 Entries can be placed either right next to each other, or with padding
43 between them. The type of the entry determines the data that is in it.
44
45 This class is not used by itself. All entry objects are subclasses of
46 Entry.
47
48 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060049 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070050 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060051 offset: Offset of entry within the section, None if not known yet (in
52 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070053 size: Entry size in bytes, None if not known
54 contents_size: Size of contents in bytes, 0 by default
Simon Glass3ab95982018-08-01 15:22:37 -060055 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070056 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060057 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070058 pad_before: Number of pad bytes before the contents, 0 if none
59 pad_after: Number of pad bytes after the contents, 0 if none
60 data: Contents of entry (string of bytes)
61 """
Simon Glassc8d48ef2018-06-01 09:38:21 -060062 def __init__(self, section, etype, node, read_node=True, name_prefix=''):
Simon Glass25ac0e62018-06-01 09:38:14 -060063 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070064 self.etype = etype
65 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060066 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060067 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070068 self.size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060069 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070070 self.contents_size = 0
71 self.align = None
72 self.align_size = None
73 self.align_end = None
74 self.pad_before = 0
75 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060076 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060077 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060078 self._expand_size = False
Simon Glassbf7fd502016-11-25 20:15:51 -070079 if read_node:
80 self.ReadNode()
81
82 @staticmethod
Simon Glassfd8d1f72018-07-17 13:25:36 -060083 def Lookup(section, node_path, etype):
84 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -070085
86 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -060087 section: Section object containing this node
88 node_node: Path name of Node object containing information about
89 the entry to create (used for errors)
90 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -070091
92 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -060093 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070094 """
Simon Glassdd57c132018-06-01 09:38:11 -060095 # Convert something like 'u-boot@0' to 'u_boot' since we are only
96 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -070097 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -060098 if '@' in module_name:
99 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700100 module = modules.get(module_name)
101
Simon Glassbadf0ec2018-06-01 09:38:15 -0600102 # Also allow entry-type modules to be brought in from the etype directory.
103
Simon Glassbf7fd502016-11-25 20:15:51 -0700104 # Import the module if we have not already done so.
105 if not module:
Simon Glassbadf0ec2018-06-01 09:38:15 -0600106 old_path = sys.path
107 sys.path.insert(0, os.path.join(our_path, 'etype'))
Simon Glassbf7fd502016-11-25 20:15:51 -0700108 try:
109 if have_importlib:
110 module = importlib.import_module(module_name)
111 else:
112 module = __import__(module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600113 except ImportError as e:
114 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
115 (etype, node_path, module_name, e))
Simon Glassbadf0ec2018-06-01 09:38:15 -0600116 finally:
117 sys.path = old_path
Simon Glassbf7fd502016-11-25 20:15:51 -0700118 modules[module_name] = module
119
Simon Glassfd8d1f72018-07-17 13:25:36 -0600120 # Look up the expected class name
121 return getattr(module, 'Entry_%s' % module_name)
122
123 @staticmethod
124 def Create(section, node, etype=None):
125 """Create a new entry for a node.
126
127 Args:
128 section: Section object containing this node
129 node: Node object containing information about the entry to
130 create
131 etype: Entry type to use, or None to work it out (used for tests)
132
133 Returns:
134 A new Entry object of the correct type (a subclass of Entry)
135 """
136 if not etype:
137 etype = fdt_util.GetString(node, 'type', node.name)
138 obj = Entry.Lookup(section, node.path, etype)
139
Simon Glassbf7fd502016-11-25 20:15:51 -0700140 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600141 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700142
143 def ReadNode(self):
144 """Read entry information from the node
145
146 This reads all the fields we recognise from the node, ready for use.
147 """
Simon Glass15a587c2018-07-17 13:25:51 -0600148 if 'pos' in self._node.props:
149 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass3ab95982018-08-01 15:22:37 -0600150 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700151 self.size = fdt_util.GetInt(self._node, 'size')
152 self.align = fdt_util.GetInt(self._node, 'align')
153 if tools.NotPowerOfTwo(self.align):
154 raise ValueError("Node '%s': Alignment %s must be a power of two" %
155 (self._node.path, self.align))
156 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
157 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
158 self.align_size = fdt_util.GetInt(self._node, 'align-size')
159 if tools.NotPowerOfTwo(self.align_size):
160 raise ValueError("Node '%s': Alignment size %s must be a power "
161 "of two" % (self._node.path, self.align_size))
162 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600163 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600164 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassbf7fd502016-11-25 20:15:51 -0700165
Simon Glass6c234bf2018-09-14 04:57:18 -0600166 def GetDefaultFilename(self):
167 return None
168
Simon Glass539aece2018-09-14 04:57:22 -0600169 def GetFdtSet(self):
170 """Get the set of device trees used by this entry
171
172 Returns:
173 Set containing the filename from this entry, if it is a .dtb, else
174 an empty set
175 """
176 fname = self.GetDefaultFilename()
177 # It would be better to use isinstance(self, Entry_blob_dtb) here but
178 # we cannot access Entry_blob_dtb
179 if fname and fname.endswith('.dtb'):
Simon Glassd141f6c2019-05-14 15:53:39 -0600180 return set([fname])
181 return set()
Simon Glass539aece2018-09-14 04:57:22 -0600182
Simon Glass0a98b282018-09-14 04:57:28 -0600183 def ExpandEntries(self):
184 pass
185
Simon Glass078ab1a2018-07-06 10:27:41 -0600186 def AddMissingProperties(self):
187 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600188 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600189 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600190 state.AddZeroProp(self._node, prop)
Simon Glasse0e5df92018-09-14 04:57:31 -0600191 err = state.CheckAddHashProp(self._node)
192 if err:
193 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600194
195 def SetCalculatedProperties(self):
196 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600197 state.SetInt(self._node, 'offset', self.offset)
198 state.SetInt(self._node, 'size', self.size)
Simon Glassf8f8df62018-09-14 04:57:34 -0600199 state.SetInt(self._node, 'image-pos',
200 self.image_pos - self.section.GetRootSkipAtStart())
Simon Glasse0e5df92018-09-14 04:57:31 -0600201 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600202
Simon Glassecab8972018-07-06 10:27:40 -0600203 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600204 """Allow entries to adjust the device tree
205
206 Some entries need to adjust the device tree for their purposes. This
207 may involve adding or deleting properties.
208
209 Returns:
210 True if processing is complete
211 False if processing could not be completed due to a dependency.
212 This will cause the entry to be retried after others have been
213 called
214 """
Simon Glassecab8972018-07-06 10:27:40 -0600215 return True
216
Simon Glassc8d48ef2018-06-01 09:38:21 -0600217 def SetPrefix(self, prefix):
218 """Set the name prefix for a node
219
220 Args:
221 prefix: Prefix to set, or '' to not use a prefix
222 """
223 if prefix:
224 self.name = prefix + self.name
225
Simon Glass5c890232018-07-06 10:27:19 -0600226 def SetContents(self, data):
227 """Set the contents of an entry
228
229 This sets both the data and content_size properties
230
231 Args:
232 data: Data to set to the contents (string)
233 """
234 self.data = data
235 self.contents_size = len(self.data)
236
237 def ProcessContentsUpdate(self, data):
238 """Update the contens of an entry, after the size is fixed
239
240 This checks that the new data is the same size as the old.
241
242 Args:
243 data: Data to set to the contents (string)
244
245 Raises:
246 ValueError if the new data size is not the same as the old
247 """
248 if len(data) != self.contents_size:
249 self.Raise('Cannot update entry size from %d to %d' %
250 (len(data), self.contents_size))
251 self.SetContents(data)
252
Simon Glassbf7fd502016-11-25 20:15:51 -0700253 def ObtainContents(self):
254 """Figure out the contents of an entry.
255
256 Returns:
257 True if the contents were found, False if another call is needed
258 after the other entries are processed.
259 """
260 # No contents by default: subclasses can implement this
261 return True
262
Simon Glass3ab95982018-08-01 15:22:37 -0600263 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600264 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700265
266 Most of the time the entries are not fully specified. There may be
267 an alignment but no size. In that case we take the size from the
268 contents of the entry.
269
Simon Glass3ab95982018-08-01 15:22:37 -0600270 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700271
Simon Glass3ab95982018-08-01 15:22:37 -0600272 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700273 entry will be know.
274
275 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600276 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700277
278 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600279 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700280 """
Simon Glass3ab95982018-08-01 15:22:37 -0600281 if self.offset is None:
282 if self.offset_unset:
283 self.Raise('No offset set with offset-unset: should another '
284 'entry provide this correct offset?')
285 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700286 needed = self.pad_before + self.contents_size + self.pad_after
287 needed = tools.Align(needed, self.align_size)
288 size = self.size
289 if not size:
290 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600291 new_offset = self.offset + size
292 aligned_offset = tools.Align(new_offset, self.align_end)
293 if aligned_offset != new_offset:
294 size = aligned_offset - self.offset
295 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700296
297 if not self.size:
298 self.size = size
299
300 if self.size < needed:
301 self.Raise("Entry contents size is %#x (%d) but entry size is "
302 "%#x (%d)" % (needed, needed, self.size, self.size))
303 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600304 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700305 # conflict with the provided alignment values
306 if self.size != tools.Align(self.size, self.align_size):
307 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
308 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600309 if self.offset != tools.Align(self.offset, self.align):
310 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
311 (self.offset, self.offset, self.align, self.align))
Simon Glassbf7fd502016-11-25 20:15:51 -0700312
Simon Glass3ab95982018-08-01 15:22:37 -0600313 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700314
315 def Raise(self, msg):
316 """Convenience function to raise an error referencing a node"""
317 raise ValueError("Node '%s': %s" % (self._node.path, msg))
318
Simon Glass53af22a2018-07-17 13:25:32 -0600319 def GetEntryArgsOrProps(self, props, required=False):
320 """Return the values of a set of properties
321
322 Args:
323 props: List of EntryArg objects
324
325 Raises:
326 ValueError if a property is not found
327 """
328 values = []
329 missing = []
330 for prop in props:
331 python_prop = prop.name.replace('-', '_')
332 if hasattr(self, python_prop):
333 value = getattr(self, python_prop)
334 else:
335 value = None
336 if value is None:
337 value = self.GetArg(prop.name, prop.datatype)
338 if value is None and required:
339 missing.append(prop.name)
340 values.append(value)
341 if missing:
342 self.Raise('Missing required properties/entry args: %s' %
343 (', '.join(missing)))
344 return values
345
Simon Glassbf7fd502016-11-25 20:15:51 -0700346 def GetPath(self):
347 """Get the path of a node
348
349 Returns:
350 Full path of the node for this entry
351 """
352 return self._node.path
353
354 def GetData(self):
355 return self.data
356
Simon Glass3ab95982018-08-01 15:22:37 -0600357 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600358 """Get the offsets for siblings
359
360 Some entry types can contain information about the position or size of
361 other entries. An example of this is the Intel Flash Descriptor, which
362 knows where the Intel Management Engine section should go.
363
364 If this entry knows about the position of other entries, it can specify
365 this by returning values here
366
367 Returns:
368 Dict:
369 key: Entry type
370 value: List containing position and size of the given entry
371 type.
372 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700373 return {}
374
Simon Glass3ab95982018-08-01 15:22:37 -0600375 def SetOffsetSize(self, pos, size):
376 self.offset = pos
Simon Glassbf7fd502016-11-25 20:15:51 -0700377 self.size = size
378
Simon Glassdbf6be92018-08-01 15:22:42 -0600379 def SetImagePos(self, image_pos):
380 """Set the position in the image
381
382 Args:
383 image_pos: Position of this entry in the image
384 """
385 self.image_pos = image_pos + self.offset
386
Simon Glassbf7fd502016-11-25 20:15:51 -0700387 def ProcessContents(self):
388 pass
Simon Glass19790632017-11-13 18:55:01 -0700389
Simon Glassf55382b2018-06-01 09:38:13 -0600390 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700391 """Write symbol values into binary files for access at run time
392
393 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600394 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700395 """
396 pass
Simon Glass18546952018-06-01 09:38:16 -0600397
Simon Glass3ab95982018-08-01 15:22:37 -0600398 def CheckOffset(self):
399 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600400
Simon Glass3ab95982018-08-01 15:22:37 -0600401 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600402 than having to be fully inside their section). Sub-classes can implement
403 this function and raise if there is a problem.
404 """
405 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600406
Simon Glass8122f392018-07-17 13:25:28 -0600407 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600408 def GetStr(value):
409 if value is None:
410 return '<none> '
411 return '%08x' % value
412
413 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600414 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600415 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
416 Entry.GetStr(offset), Entry.GetStr(size),
417 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600418
Simon Glass3b0c3822018-06-01 09:38:20 -0600419 def WriteMap(self, fd, indent):
420 """Write a map of the entry to a .map file
421
422 Args:
423 fd: File to write the map to
424 indent: Curent indent level of map (0=none, 1=one level, etc.)
425 """
Simon Glass1be70d22018-07-17 13:25:49 -0600426 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
427 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600428
Simon Glass11e36cc2018-07-17 13:25:38 -0600429 def GetEntries(self):
430 """Return a list of entries contained by this entry
431
432 Returns:
433 List of entries, or None if none. A normal entry has no entries
434 within it so will return None
435 """
436 return None
437
Simon Glass53af22a2018-07-17 13:25:32 -0600438 def GetArg(self, name, datatype=str):
439 """Get the value of an entry argument or device-tree-node property
440
441 Some node properties can be provided as arguments to binman. First check
442 the entry arguments, and fall back to the device tree if not found
443
444 Args:
445 name: Argument name
446 datatype: Data type (str or int)
447
448 Returns:
449 Value of argument as a string or int, or None if no value
450
451 Raises:
452 ValueError if the argument cannot be converted to in
453 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600454 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600455 if value is not None:
456 if datatype == int:
457 try:
458 value = int(value)
459 except ValueError:
460 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
461 (name, value))
462 elif datatype == str:
463 pass
464 else:
465 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
466 datatype)
467 else:
468 value = fdt_util.GetDatatype(self._node, name, datatype)
469 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600470
471 @staticmethod
472 def WriteDocs(modules, test_missing=None):
473 """Write out documentation about the various entry types to stdout
474
475 Args:
476 modules: List of modules to include
477 test_missing: Used for testing. This is a module to report
478 as missing
479 """
480 print('''Binman Entry Documentation
481===========================
482
483This file describes the entry types supported by binman. These entry types can
484be placed in an image one by one to build up a final firmware image. It is
485fairly easy to create new entry types. Just add a new file to the 'etype'
486directory. You can use the existing entries as examples.
487
488Note that some entries are subclasses of others, using and extending their
489features to produce new behaviours.
490
491
492''')
493 modules = sorted(modules)
494
495 # Don't show the test entry
496 if '_testing' in modules:
497 modules.remove('_testing')
498 missing = []
499 for name in modules:
500 module = Entry.Lookup(name, name, name)
501 docs = getattr(module, '__doc__')
502 if test_missing == name:
503 docs = None
504 if docs:
505 lines = docs.splitlines()
506 first_line = lines[0]
507 rest = [line[4:] for line in lines[1:]]
508 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
509 print(hdr)
510 print('-' * len(hdr))
511 print('\n'.join(rest))
512 print()
513 print()
514 else:
515 missing.append(name)
516
517 if missing:
518 raise ValueError('Documentation is missing for modules: %s' %
519 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600520
521 def GetUniqueName(self):
522 """Get a unique name for a node
523
524 Returns:
525 String containing a unique name for a node, consisting of the name
526 of all ancestors (starting from within the 'binman' node) separated
527 by a dot ('.'). This can be useful for generating unique filesnames
528 in the output directory.
529 """
530 name = self.name
531 node = self._node
532 while node.parent:
533 node = node.parent
534 if node.name == 'binman':
535 break
536 name = '%s.%s' % (node.name, name)
537 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600538
539 def ExpandToLimit(self, limit):
540 """Expand an entry so that it ends at the given offset limit"""
541 if self.offset + self.size < limit:
542 self.size = limit - self.offset
543 # Request the contents again, since changing the size requires that
544 # the data grows. This should not fail, but check it to be sure.
545 if not self.ObtainContents():
546 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600547
548 def HasSibling(self, name):
549 """Check if there is a sibling of a given name
550
551 Returns:
552 True if there is an entry with this name in the the same section,
553 else False
554 """
555 return name in self.section.GetEntries()