binman: Don't reset offset/size if image doesn't allow repacking

When an image has the 'allow-repack' property, binman includes the
original offset and size properties from the image description in the
fdtmap. These are later used as the packing constraints when replacing
entries in an image, so other unconstrained entries can be freely
positioned.

Replacing an entry in an image without 'allow-repack' (and therefore the
original offsets) follows the same logic and results in entries being
merely concatenated. Instead, skip resetting the calculated offsets and
sizes to the missing originals for these images so that every entry is
constrained to its existing offset/size.

Add tests that replace an entry with smaller or equal-sized data, in an
image that doesn't allow repacking. Attempting to do so with bigger-size
data is already an error that is already being tested.

Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Alper Nebi Yasak 2022-03-27 18:31:46 +03:00 committed by Tom Rini
parent 8ee4ec9bf5
commit e2ce4fb986
2 changed files with 22 additions and 1 deletions

View file

@ -303,7 +303,7 @@ def BeforeReplace(image, allow_resize):
# If repacking, drop the old offset/size values except for the original
# ones, so we are only left with the constraints.
if allow_resize:
if image.allow_repack and allow_resize:
image.ResetForPack()

View file

@ -5592,6 +5592,27 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
finally:
shutil.rmtree(tmpdir)
def testReplaceResizeNoRepackSameSize(self):
"""Test replacing entries with same-size data without repacking"""
expected = b'x' * len(U_BOOT_DATA)
data, expected_fdtmap, _ = self._RunReplaceCmd('u-boot', expected)
self.assertEqual(expected, data)
path, fdtmap = state.GetFdtContents('fdtmap')
self.assertIsNotNone(path)
self.assertEqual(expected_fdtmap, fdtmap)
def testReplaceResizeNoRepackSmallerSize(self):
"""Test replacing entries with smaller-size data without repacking"""
new_data = b'x'
data, expected_fdtmap, _ = self._RunReplaceCmd('u-boot', new_data)
expected = new_data.ljust(len(U_BOOT_DATA), b'\0')
self.assertEqual(expected, data)
path, fdtmap = state.GetFdtContents('fdtmap')
self.assertIsNotNone(path)
self.assertEqual(expected_fdtmap, fdtmap)
if __name__ == "__main__":
unittest.main()