blob: ea72eff8c5d93f3109dca68605a2548f79059737 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass4f443042016-11-25 20:15:52 -07002# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glass4f443042016-11-25 20:15:52 -07005# To run a single test, change to this directory, and:
6#
7# python -m unittest func_test.TestFunctional.testHelp
8
Simon Glassfdc34362020-07-09 18:39:45 -06009import collections
Simon Glass16287932020-04-17 18:09:03 -060010import gzip
Simon Glasse0e5df92018-09-14 04:57:31 -060011import hashlib
Simon Glass4f443042016-11-25 20:15:52 -070012from optparse import OptionParser
13import os
Simon Glassfdc34362020-07-09 18:39:45 -060014import re
Simon Glass4f443042016-11-25 20:15:52 -070015import shutil
16import struct
17import sys
18import tempfile
19import unittest
20
Simon Glass16287932020-04-17 18:09:03 -060021from binman import cbfs_util
22from binman import cmdline
23from binman import control
24from binman import elf
25from binman import elf_test
26from binman import fmap_util
27from binman import main
28from binman import state
29from dtoc import fdt
30from dtoc import fdt_util
31from binman.etype import fdtmap
32from binman.etype import image_header
Simon Glassffded752019-07-08 14:25:46 -060033from image import Image
Simon Glassbf776672020-04-17 18:09:04 -060034from patman import command
35from patman import test_util
36from patman import tools
37from patman import tout
Simon Glass4f443042016-11-25 20:15:52 -070038
39# Contents of test files, corresponding to different entry types
Simon Glassc6c10e72019-05-17 22:00:46 -060040U_BOOT_DATA = b'1234'
41U_BOOT_IMG_DATA = b'img'
Simon Glasseb0086f2019-08-24 07:23:04 -060042U_BOOT_SPL_DATA = b'56780123456789abcdefghi'
43U_BOOT_TPL_DATA = b'tpl9876543210fedcbazyw'
Simon Glassc6c10e72019-05-17 22:00:46 -060044BLOB_DATA = b'89'
45ME_DATA = b'0abcd'
46VGA_DATA = b'vga'
47U_BOOT_DTB_DATA = b'udtb'
48U_BOOT_SPL_DTB_DATA = b'spldtb'
49U_BOOT_TPL_DTB_DATA = b'tpldtb'
50X86_START16_DATA = b'start16'
51X86_START16_SPL_DATA = b'start16spl'
52X86_START16_TPL_DATA = b'start16tpl'
Simon Glass2250ee62019-08-24 07:22:48 -060053X86_RESET16_DATA = b'reset16'
54X86_RESET16_SPL_DATA = b'reset16spl'
55X86_RESET16_TPL_DATA = b'reset16tpl'
Simon Glassc6c10e72019-05-17 22:00:46 -060056PPC_MPC85XX_BR_DATA = b'ppcmpc85xxbr'
57U_BOOT_NODTB_DATA = b'nodtb with microcode pointer somewhere in here'
58U_BOOT_SPL_NODTB_DATA = b'splnodtb with microcode pointer somewhere in here'
59U_BOOT_TPL_NODTB_DATA = b'tplnodtb with microcode pointer somewhere in here'
60FSP_DATA = b'fsp'
61CMC_DATA = b'cmc'
62VBT_DATA = b'vbt'
63MRC_DATA = b'mrc'
Simon Glassbb748372018-07-17 13:25:33 -060064TEXT_DATA = 'text'
65TEXT_DATA2 = 'text2'
66TEXT_DATA3 = 'text3'
Simon Glassc6c10e72019-05-17 22:00:46 -060067CROS_EC_RW_DATA = b'ecrw'
68GBB_DATA = b'gbbd'
69BMPBLK_DATA = b'bmp'
70VBLOCK_DATA = b'vblk'
71FILES_DATA = (b"sorry I'm late\nOh, don't bother apologising, I'm " +
72 b"sorry you're alive\n")
Simon Glassff5c7e32019-07-08 13:18:42 -060073COMPRESS_DATA = b'compress xxxxxxxxxxxxxxxxxxxxxx data'
Simon Glassc6c10e72019-05-17 22:00:46 -060074REFCODE_DATA = b'refcode'
Simon Glassea0fff92019-08-24 07:23:07 -060075FSP_M_DATA = b'fsp_m'
Simon Glassbc6a88f2019-10-20 21:31:35 -060076FSP_S_DATA = b'fsp_s'
Simon Glass998d1482019-10-20 21:31:36 -060077FSP_T_DATA = b'fsp_t'
Simon Glassec127af2018-07-17 13:25:39 -060078
Simon Glass6ccbfcd2019-07-20 12:23:47 -060079# The expected size for the device tree in some tests
Simon Glassf667e452019-07-08 14:25:50 -060080EXTRACT_DTB_SIZE = 0x3c9
81
Simon Glass6ccbfcd2019-07-20 12:23:47 -060082# Properties expected to be in the device tree when update_dtb is used
83BASE_DTB_PROPS = ['offset', 'size', 'image-pos']
84
Simon Glass12bb1a92019-07-20 12:23:51 -060085# Extra properties expected to be in the device tree when allow-repack is used
86REPACK_DTB_PROPS = ['orig-offset', 'orig-size']
87
Simon Glass4f443042016-11-25 20:15:52 -070088
89class TestFunctional(unittest.TestCase):
90 """Functional tests for binman
91
92 Most of these use a sample .dts file to build an image and then check
93 that it looks correct. The sample files are in the test/ subdirectory
94 and are numbered.
95
96 For each entry type a very small test file is created using fixed
97 string contents. This makes it easy to test that things look right, and
98 debug problems.
99
100 In some cases a 'real' file must be used - these are also supplied in
101 the test/ diurectory.
102 """
103 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600104 def setUpClass(cls):
Simon Glass4d5994f2017-11-12 21:52:20 -0700105 global entry
Simon Glass16287932020-04-17 18:09:03 -0600106 from binman import entry
Simon Glass4d5994f2017-11-12 21:52:20 -0700107
Simon Glass4f443042016-11-25 20:15:52 -0700108 # Handle the case where argv[0] is 'python'
Simon Glassb986b3b2019-08-24 07:22:43 -0600109 cls._binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
110 cls._binman_pathname = os.path.join(cls._binman_dir, 'binman')
Simon Glass4f443042016-11-25 20:15:52 -0700111
112 # Create a temporary directory for input files
Simon Glassb986b3b2019-08-24 07:22:43 -0600113 cls._indir = tempfile.mkdtemp(prefix='binmant.')
Simon Glass4f443042016-11-25 20:15:52 -0700114
115 # Create some test files
116 TestFunctional._MakeInputFile('u-boot.bin', U_BOOT_DATA)
117 TestFunctional._MakeInputFile('u-boot.img', U_BOOT_IMG_DATA)
118 TestFunctional._MakeInputFile('spl/u-boot-spl.bin', U_BOOT_SPL_DATA)
Simon Glassb8ef5b62018-07-17 13:25:48 -0600119 TestFunctional._MakeInputFile('tpl/u-boot-tpl.bin', U_BOOT_TPL_DATA)
Simon Glass4f443042016-11-25 20:15:52 -0700120 TestFunctional._MakeInputFile('blobfile', BLOB_DATA)
Simon Glasse0ff8552016-11-25 20:15:53 -0700121 TestFunctional._MakeInputFile('me.bin', ME_DATA)
122 TestFunctional._MakeInputFile('vga.bin', VGA_DATA)
Simon Glassb986b3b2019-08-24 07:22:43 -0600123 cls._ResetDtbs()
Simon Glass2250ee62019-08-24 07:22:48 -0600124
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530125 TestFunctional._MakeInputFile('u-boot-br.bin', PPC_MPC85XX_BR_DATA)
Simon Glass2250ee62019-08-24 07:22:48 -0600126
Simon Glass5e239182019-08-24 07:22:49 -0600127 TestFunctional._MakeInputFile('u-boot-x86-start16.bin', X86_START16_DATA)
128 TestFunctional._MakeInputFile('spl/u-boot-x86-start16-spl.bin',
Simon Glass87722132017-11-12 21:52:26 -0700129 X86_START16_SPL_DATA)
Simon Glass5e239182019-08-24 07:22:49 -0600130 TestFunctional._MakeInputFile('tpl/u-boot-x86-start16-tpl.bin',
Simon Glass35b384c2018-09-14 04:57:10 -0600131 X86_START16_TPL_DATA)
Simon Glass2250ee62019-08-24 07:22:48 -0600132
133 TestFunctional._MakeInputFile('u-boot-x86-reset16.bin',
134 X86_RESET16_DATA)
135 TestFunctional._MakeInputFile('spl/u-boot-x86-reset16-spl.bin',
136 X86_RESET16_SPL_DATA)
137 TestFunctional._MakeInputFile('tpl/u-boot-x86-reset16-tpl.bin',
138 X86_RESET16_TPL_DATA)
139
Simon Glass4f443042016-11-25 20:15:52 -0700140 TestFunctional._MakeInputFile('u-boot-nodtb.bin', U_BOOT_NODTB_DATA)
Simon Glass6b187df2017-11-12 21:52:27 -0700141 TestFunctional._MakeInputFile('spl/u-boot-spl-nodtb.bin',
142 U_BOOT_SPL_NODTB_DATA)
Simon Glassf0253632018-09-14 04:57:32 -0600143 TestFunctional._MakeInputFile('tpl/u-boot-tpl-nodtb.bin',
144 U_BOOT_TPL_NODTB_DATA)
Simon Glassda229092016-11-25 20:15:56 -0700145 TestFunctional._MakeInputFile('fsp.bin', FSP_DATA)
146 TestFunctional._MakeInputFile('cmc.bin', CMC_DATA)
Bin Meng59ea8c22017-08-15 22:41:54 -0700147 TestFunctional._MakeInputFile('vbt.bin', VBT_DATA)
Simon Glassca4f4ff2017-11-12 21:52:28 -0700148 TestFunctional._MakeInputFile('mrc.bin', MRC_DATA)
Simon Glassec127af2018-07-17 13:25:39 -0600149 TestFunctional._MakeInputFile('ecrw.bin', CROS_EC_RW_DATA)
Simon Glass0ef87aa2018-07-17 13:25:44 -0600150 TestFunctional._MakeInputDir('devkeys')
151 TestFunctional._MakeInputFile('bmpblk.bin', BMPBLK_DATA)
Simon Glass3ae192c2018-10-01 12:22:31 -0600152 TestFunctional._MakeInputFile('refcode.bin', REFCODE_DATA)
Simon Glassea0fff92019-08-24 07:23:07 -0600153 TestFunctional._MakeInputFile('fsp_m.bin', FSP_M_DATA)
Simon Glassbc6a88f2019-10-20 21:31:35 -0600154 TestFunctional._MakeInputFile('fsp_s.bin', FSP_S_DATA)
Simon Glass998d1482019-10-20 21:31:36 -0600155 TestFunctional._MakeInputFile('fsp_t.bin', FSP_T_DATA)
Simon Glass4f443042016-11-25 20:15:52 -0700156
Simon Glass53e22bf2019-08-24 07:22:53 -0600157 cls._elf_testdir = os.path.join(cls._indir, 'elftest')
158 elf_test.BuildElfTestFiles(cls._elf_testdir)
159
Simon Glasse0ff8552016-11-25 20:15:53 -0700160 # ELF file with a '_dt_ucode_base_size' symbol
Simon Glassf514d8f2019-08-24 07:22:54 -0600161 TestFunctional._MakeInputFile('u-boot',
162 tools.ReadFile(cls.ElfTestFile('u_boot_ucode_ptr')))
Simon Glasse0ff8552016-11-25 20:15:53 -0700163
164 # Intel flash descriptor file
Simon Glass0ba4b3d2020-07-09 18:39:41 -0600165 cls._SetupDescriptor()
Simon Glasse0ff8552016-11-25 20:15:53 -0700166
Simon Glassb986b3b2019-08-24 07:22:43 -0600167 shutil.copytree(cls.TestFile('files'),
168 os.path.join(cls._indir, 'files'))
Simon Glass0a98b282018-09-14 04:57:28 -0600169
Simon Glass83d73c22018-09-14 04:57:26 -0600170 TestFunctional._MakeInputFile('compress', COMPRESS_DATA)
171
Simon Glassac62fba2019-07-08 13:18:53 -0600172 # Travis-CI may have an old lz4
Simon Glassb986b3b2019-08-24 07:22:43 -0600173 cls.have_lz4 = True
Simon Glassac62fba2019-07-08 13:18:53 -0600174 try:
175 tools.Run('lz4', '--no-frame-crc', '-c',
Simon Glass3b3e3c02019-10-31 07:42:50 -0600176 os.path.join(cls._indir, 'u-boot.bin'), binary=True)
Simon Glassac62fba2019-07-08 13:18:53 -0600177 except:
Simon Glassb986b3b2019-08-24 07:22:43 -0600178 cls.have_lz4 = False
Simon Glassac62fba2019-07-08 13:18:53 -0600179
Simon Glass4f443042016-11-25 20:15:52 -0700180 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600181 def tearDownClass(cls):
Simon Glass4f443042016-11-25 20:15:52 -0700182 """Remove the temporary input directory and its contents"""
Simon Glassb986b3b2019-08-24 07:22:43 -0600183 if cls.preserve_indir:
184 print('Preserving input dir: %s' % cls._indir)
Simon Glassd5164a72019-07-08 13:18:49 -0600185 else:
Simon Glassb986b3b2019-08-24 07:22:43 -0600186 if cls._indir:
187 shutil.rmtree(cls._indir)
188 cls._indir = None
Simon Glass4f443042016-11-25 20:15:52 -0700189
Simon Glassd5164a72019-07-08 13:18:49 -0600190 @classmethod
Simon Glass8acce602019-07-08 13:18:50 -0600191 def setup_test_args(cls, preserve_indir=False, preserve_outdirs=False,
Simon Glass53cd5d92019-07-08 14:25:29 -0600192 toolpath=None, verbosity=None):
Simon Glassd5164a72019-07-08 13:18:49 -0600193 """Accept arguments controlling test execution
194
195 Args:
196 preserve_indir: Preserve the shared input directory used by all
197 tests in this class.
198 preserve_outdir: Preserve the output directories used by tests. Each
199 test has its own, so this is normally only useful when running a
200 single test.
Simon Glass8acce602019-07-08 13:18:50 -0600201 toolpath: ist of paths to use for tools
Simon Glassd5164a72019-07-08 13:18:49 -0600202 """
203 cls.preserve_indir = preserve_indir
204 cls.preserve_outdirs = preserve_outdirs
Simon Glass8acce602019-07-08 13:18:50 -0600205 cls.toolpath = toolpath
Simon Glass53cd5d92019-07-08 14:25:29 -0600206 cls.verbosity = verbosity
Simon Glassd5164a72019-07-08 13:18:49 -0600207
Simon Glassac62fba2019-07-08 13:18:53 -0600208 def _CheckLz4(self):
209 if not self.have_lz4:
210 self.skipTest('lz4 --no-frame-crc not available')
211
Simon Glassbf574f12019-07-20 12:24:09 -0600212 def _CleanupOutputDir(self):
213 """Remove the temporary output directory"""
214 if self.preserve_outdirs:
215 print('Preserving output dir: %s' % tools.outdir)
216 else:
217 tools._FinaliseForTest()
218
Simon Glass4f443042016-11-25 20:15:52 -0700219 def setUp(self):
220 # Enable this to turn on debugging output
221 # tout.Init(tout.DEBUG)
222 command.test_result = None
223
224 def tearDown(self):
225 """Remove the temporary output directory"""
Simon Glassbf574f12019-07-20 12:24:09 -0600226 self._CleanupOutputDir()
Simon Glass4f443042016-11-25 20:15:52 -0700227
Simon Glassf86a7362019-07-20 12:24:10 -0600228 def _SetupImageInTmpdir(self):
229 """Set up the output image in a new temporary directory
230
231 This is used when an image has been generated in the output directory,
232 but we want to run binman again. This will create a new output
233 directory and fail to delete the original one.
234
235 This creates a new temporary directory, copies the image to it (with a
236 new name) and removes the old output directory.
237
238 Returns:
239 Tuple:
240 Temporary directory to use
241 New image filename
242 """
243 image_fname = tools.GetOutputFilename('image.bin')
244 tmpdir = tempfile.mkdtemp(prefix='binman.')
245 updated_fname = os.path.join(tmpdir, 'image-updated.bin')
246 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
247 self._CleanupOutputDir()
248 return tmpdir, updated_fname
249
Simon Glassb8ef5b62018-07-17 13:25:48 -0600250 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600251 def _ResetDtbs(cls):
Simon Glassb8ef5b62018-07-17 13:25:48 -0600252 TestFunctional._MakeInputFile('u-boot.dtb', U_BOOT_DTB_DATA)
253 TestFunctional._MakeInputFile('spl/u-boot-spl.dtb', U_BOOT_SPL_DTB_DATA)
254 TestFunctional._MakeInputFile('tpl/u-boot-tpl.dtb', U_BOOT_TPL_DTB_DATA)
255
Simon Glass4f443042016-11-25 20:15:52 -0700256 def _RunBinman(self, *args, **kwargs):
257 """Run binman using the command line
258
259 Args:
260 Arguments to pass, as a list of strings
261 kwargs: Arguments to pass to Command.RunPipe()
262 """
263 result = command.RunPipe([[self._binman_pathname] + list(args)],
264 capture=True, capture_stderr=True, raise_on_error=False)
265 if result.return_code and kwargs.get('raise_on_error', True):
266 raise Exception("Error running '%s': %s" % (' '.join(args),
267 result.stdout + result.stderr))
268 return result
269
Simon Glass53cd5d92019-07-08 14:25:29 -0600270 def _DoBinman(self, *argv):
Simon Glass4f443042016-11-25 20:15:52 -0700271 """Run binman using directly (in the same process)
272
273 Args:
274 Arguments to pass, as a list of strings
275 Returns:
276 Return value (0 for success)
277 """
Simon Glass53cd5d92019-07-08 14:25:29 -0600278 argv = list(argv)
279 args = cmdline.ParseArgs(argv)
280 args.pager = 'binman-invalid-pager'
281 args.build_dir = self._indir
Simon Glass4f443042016-11-25 20:15:52 -0700282
283 # For testing, you can force an increase in verbosity here
Simon Glass53cd5d92019-07-08 14:25:29 -0600284 # args.verbosity = tout.DEBUG
285 return control.Binman(args)
Simon Glass4f443042016-11-25 20:15:52 -0700286
Simon Glass53af22a2018-07-17 13:25:32 -0600287 def _DoTestFile(self, fname, debug=False, map=False, update_dtb=False,
Simon Glasseb833d82019-04-25 21:58:34 -0600288 entry_args=None, images=None, use_real_dtb=False,
Simon Glass4f9f1052020-07-09 18:39:38 -0600289 verbosity=None, allow_missing=False):
Simon Glass4f443042016-11-25 20:15:52 -0700290 """Run binman with a given test file
291
292 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600293 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass7ae5f312018-06-01 09:38:19 -0600294 debug: True to enable debugging output
Simon Glass3b0c3822018-06-01 09:38:20 -0600295 map: True to output map files for the images
Simon Glass3ab95982018-08-01 15:22:37 -0600296 update_dtb: Update the offset and size of each entry in the device
Simon Glass16b8d6b2018-07-06 10:27:42 -0600297 tree before packing it into the image
Simon Glass0bfa7b02018-09-14 04:57:12 -0600298 entry_args: Dict of entry args to supply to binman
299 key: arg name
300 value: value of that arg
301 images: List of image names to build
Simon Glass4f443042016-11-25 20:15:52 -0700302 """
Simon Glass53cd5d92019-07-08 14:25:29 -0600303 args = []
Simon Glass7fe91732017-11-13 18:55:00 -0700304 if debug:
305 args.append('-D')
Simon Glass53cd5d92019-07-08 14:25:29 -0600306 if verbosity is not None:
307 args.append('-v%d' % verbosity)
308 elif self.verbosity:
309 args.append('-v%d' % self.verbosity)
310 if self.toolpath:
311 for path in self.toolpath:
312 args += ['--toolpath', path]
313 args += ['build', '-p', '-I', self._indir, '-d', self.TestFile(fname)]
Simon Glass3b0c3822018-06-01 09:38:20 -0600314 if map:
315 args.append('-m')
Simon Glass16b8d6b2018-07-06 10:27:42 -0600316 if update_dtb:
Simon Glass2569e102019-07-08 13:18:47 -0600317 args.append('-u')
Simon Glass93d17412018-09-14 04:57:23 -0600318 if not use_real_dtb:
319 args.append('--fake-dtb')
Simon Glass53af22a2018-07-17 13:25:32 -0600320 if entry_args:
Simon Glass50979152019-05-14 15:53:41 -0600321 for arg, value in entry_args.items():
Simon Glass53af22a2018-07-17 13:25:32 -0600322 args.append('-a%s=%s' % (arg, value))
Simon Glass4f9f1052020-07-09 18:39:38 -0600323 if allow_missing:
324 args.append('-M')
Simon Glass0bfa7b02018-09-14 04:57:12 -0600325 if images:
326 for image in images:
327 args += ['-i', image]
Simon Glass7fe91732017-11-13 18:55:00 -0700328 return self._DoBinman(*args)
Simon Glass4f443042016-11-25 20:15:52 -0700329
330 def _SetupDtb(self, fname, outfile='u-boot.dtb'):
Simon Glasse0ff8552016-11-25 20:15:53 -0700331 """Set up a new test device-tree file
332
333 The given file is compiled and set up as the device tree to be used
334 for ths test.
335
336 Args:
337 fname: Filename of .dts file to read
Simon Glass7ae5f312018-06-01 09:38:19 -0600338 outfile: Output filename for compiled device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700339
340 Returns:
Simon Glass7ae5f312018-06-01 09:38:19 -0600341 Contents of device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700342 """
Simon Glassa004f292019-07-20 12:23:49 -0600343 tmpdir = tempfile.mkdtemp(prefix='binmant.')
344 dtb = fdt_util.EnsureCompiled(self.TestFile(fname), tmpdir)
Simon Glass1d0ebf72019-05-14 15:53:42 -0600345 with open(dtb, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700346 data = fd.read()
347 TestFunctional._MakeInputFile(outfile, data)
Simon Glassa004f292019-07-20 12:23:49 -0600348 shutil.rmtree(tmpdir)
Simon Glasse0e62752018-10-01 21:12:41 -0600349 return data
Simon Glass4f443042016-11-25 20:15:52 -0700350
Simon Glass6ed45ba2018-09-14 04:57:24 -0600351 def _GetDtbContentsForSplTpl(self, dtb_data, name):
352 """Create a version of the main DTB for SPL or SPL
353
354 For testing we don't actually have different versions of the DTB. With
355 U-Boot we normally run fdtgrep to remove unwanted nodes, but for tests
356 we don't normally have any unwanted nodes.
357
358 We still want the DTBs for SPL and TPL to be different though, since
359 otherwise it is confusing to know which one we are looking at. So add
360 an 'spl' or 'tpl' property to the top-level node.
361 """
362 dtb = fdt.Fdt.FromData(dtb_data)
363 dtb.Scan()
364 dtb.GetNode('/binman').AddZeroProp(name)
365 dtb.Sync(auto_resize=True)
366 dtb.Pack()
367 return dtb.GetContents()
368
Simon Glass16b8d6b2018-07-06 10:27:42 -0600369 def _DoReadFileDtb(self, fname, use_real_dtb=False, map=False,
Simon Glass6ed45ba2018-09-14 04:57:24 -0600370 update_dtb=False, entry_args=None, reset_dtbs=True):
Simon Glass4f443042016-11-25 20:15:52 -0700371 """Run binman and return the resulting image
372
373 This runs binman with a given test file and then reads the resulting
374 output file. It is a shortcut function since most tests need to do
375 these steps.
376
377 Raises an assertion failure if binman returns a non-zero exit code.
378
379 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600380 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass4f443042016-11-25 20:15:52 -0700381 use_real_dtb: True to use the test file as the contents of
382 the u-boot-dtb entry. Normally this is not needed and the
383 test contents (the U_BOOT_DTB_DATA string) can be used.
384 But in some test we need the real contents.
Simon Glass3b0c3822018-06-01 09:38:20 -0600385 map: True to output map files for the images
Simon Glass3ab95982018-08-01 15:22:37 -0600386 update_dtb: Update the offset and size of each entry in the device
Simon Glass16b8d6b2018-07-06 10:27:42 -0600387 tree before packing it into the image
Simon Glasse0ff8552016-11-25 20:15:53 -0700388
389 Returns:
390 Tuple:
391 Resulting image contents
392 Device tree contents
Simon Glass3b0c3822018-06-01 09:38:20 -0600393 Map data showing contents of image (or None if none)
Simon Glassea6922e2018-07-17 13:25:27 -0600394 Output device tree binary filename ('u-boot.dtb' path)
Simon Glass4f443042016-11-25 20:15:52 -0700395 """
Simon Glasse0ff8552016-11-25 20:15:53 -0700396 dtb_data = None
Simon Glass4f443042016-11-25 20:15:52 -0700397 # Use the compiled test file as the u-boot-dtb input
398 if use_real_dtb:
Simon Glasse0ff8552016-11-25 20:15:53 -0700399 dtb_data = self._SetupDtb(fname)
Simon Glass6ed45ba2018-09-14 04:57:24 -0600400
401 # For testing purposes, make a copy of the DT for SPL and TPL. Add
402 # a node indicating which it is, so aid verification.
403 for name in ['spl', 'tpl']:
404 dtb_fname = '%s/u-boot-%s.dtb' % (name, name)
405 outfile = os.path.join(self._indir, dtb_fname)
406 TestFunctional._MakeInputFile(dtb_fname,
407 self._GetDtbContentsForSplTpl(dtb_data, name))
Simon Glass4f443042016-11-25 20:15:52 -0700408
409 try:
Simon Glass53af22a2018-07-17 13:25:32 -0600410 retcode = self._DoTestFile(fname, map=map, update_dtb=update_dtb,
Simon Glass6ed45ba2018-09-14 04:57:24 -0600411 entry_args=entry_args, use_real_dtb=use_real_dtb)
Simon Glass4f443042016-11-25 20:15:52 -0700412 self.assertEqual(0, retcode)
Simon Glass6ed45ba2018-09-14 04:57:24 -0600413 out_dtb_fname = tools.GetOutputFilename('u-boot.dtb.out')
Simon Glass4f443042016-11-25 20:15:52 -0700414
415 # Find the (only) image, read it and return its contents
416 image = control.images['image']
Simon Glass16b8d6b2018-07-06 10:27:42 -0600417 image_fname = tools.GetOutputFilename('image.bin')
418 self.assertTrue(os.path.exists(image_fname))
Simon Glass3b0c3822018-06-01 09:38:20 -0600419 if map:
420 map_fname = tools.GetOutputFilename('image.map')
421 with open(map_fname) as fd:
422 map_data = fd.read()
423 else:
424 map_data = None
Simon Glass1d0ebf72019-05-14 15:53:42 -0600425 with open(image_fname, 'rb') as fd:
Simon Glass16b8d6b2018-07-06 10:27:42 -0600426 return fd.read(), dtb_data, map_data, out_dtb_fname
Simon Glass4f443042016-11-25 20:15:52 -0700427 finally:
428 # Put the test file back
Simon Glass6ed45ba2018-09-14 04:57:24 -0600429 if reset_dtbs and use_real_dtb:
Simon Glassb8ef5b62018-07-17 13:25:48 -0600430 self._ResetDtbs()
Simon Glass4f443042016-11-25 20:15:52 -0700431
Simon Glass3c081312019-07-08 14:25:26 -0600432 def _DoReadFileRealDtb(self, fname):
433 """Run binman with a real .dtb file and return the resulting data
434
435 Args:
436 fname: DT source filename to use (e.g. 082_fdt_update_all.dts)
437
438 Returns:
439 Resulting image contents
440 """
441 return self._DoReadFileDtb(fname, use_real_dtb=True, update_dtb=True)[0]
442
Simon Glasse0ff8552016-11-25 20:15:53 -0700443 def _DoReadFile(self, fname, use_real_dtb=False):
Simon Glass7ae5f312018-06-01 09:38:19 -0600444 """Helper function which discards the device-tree binary
445
446 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600447 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass7ae5f312018-06-01 09:38:19 -0600448 use_real_dtb: True to use the test file as the contents of
449 the u-boot-dtb entry. Normally this is not needed and the
450 test contents (the U_BOOT_DTB_DATA string) can be used.
451 But in some test we need the real contents.
Simon Glassea6922e2018-07-17 13:25:27 -0600452
453 Returns:
454 Resulting image contents
Simon Glass7ae5f312018-06-01 09:38:19 -0600455 """
Simon Glasse0ff8552016-11-25 20:15:53 -0700456 return self._DoReadFileDtb(fname, use_real_dtb)[0]
457
Simon Glass4f443042016-11-25 20:15:52 -0700458 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600459 def _MakeInputFile(cls, fname, contents):
Simon Glass4f443042016-11-25 20:15:52 -0700460 """Create a new test input file, creating directories as needed
461
462 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600463 fname: Filename to create
Simon Glass4f443042016-11-25 20:15:52 -0700464 contents: File contents to write in to the file
465 Returns:
466 Full pathname of file created
467 """
Simon Glassb986b3b2019-08-24 07:22:43 -0600468 pathname = os.path.join(cls._indir, fname)
Simon Glass4f443042016-11-25 20:15:52 -0700469 dirname = os.path.dirname(pathname)
470 if dirname and not os.path.exists(dirname):
471 os.makedirs(dirname)
472 with open(pathname, 'wb') as fd:
473 fd.write(contents)
474 return pathname
475
476 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600477 def _MakeInputDir(cls, dirname):
Simon Glass0ef87aa2018-07-17 13:25:44 -0600478 """Create a new test input directory, creating directories as needed
479
480 Args:
481 dirname: Directory name to create
482
483 Returns:
484 Full pathname of directory created
485 """
Simon Glassb986b3b2019-08-24 07:22:43 -0600486 pathname = os.path.join(cls._indir, dirname)
Simon Glass0ef87aa2018-07-17 13:25:44 -0600487 if not os.path.exists(pathname):
488 os.makedirs(pathname)
489 return pathname
490
491 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600492 def _SetupSplElf(cls, src_fname='bss_data'):
Simon Glass11ae93e2018-10-01 21:12:47 -0600493 """Set up an ELF file with a '_dt_ucode_base_size' symbol
494
495 Args:
496 Filename of ELF file to use as SPL
497 """
Simon Glassc9a0b272019-08-24 07:22:59 -0600498 TestFunctional._MakeInputFile('spl/u-boot-spl',
499 tools.ReadFile(cls.ElfTestFile(src_fname)))
Simon Glass11ae93e2018-10-01 21:12:47 -0600500
501 @classmethod
Simon Glass2090f1e2019-08-24 07:23:00 -0600502 def _SetupTplElf(cls, src_fname='bss_data'):
503 """Set up an ELF file with a '_dt_ucode_base_size' symbol
504
505 Args:
506 Filename of ELF file to use as TPL
507 """
508 TestFunctional._MakeInputFile('tpl/u-boot-tpl',
509 tools.ReadFile(cls.ElfTestFile(src_fname)))
510
511 @classmethod
Simon Glass0ba4b3d2020-07-09 18:39:41 -0600512 def _SetupDescriptor(cls):
513 with open(cls.TestFile('descriptor.bin'), 'rb') as fd:
514 TestFunctional._MakeInputFile('descriptor.bin', fd.read())
515
516 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600517 def TestFile(cls, fname):
518 return os.path.join(cls._binman_dir, 'test', fname)
Simon Glass4f443042016-11-25 20:15:52 -0700519
Simon Glass53e22bf2019-08-24 07:22:53 -0600520 @classmethod
521 def ElfTestFile(cls, fname):
522 return os.path.join(cls._elf_testdir, fname)
523
Simon Glass4f443042016-11-25 20:15:52 -0700524 def AssertInList(self, grep_list, target):
525 """Assert that at least one of a list of things is in a target
526
527 Args:
528 grep_list: List of strings to check
529 target: Target string
530 """
531 for grep in grep_list:
532 if grep in target:
533 return
Simon Glass1fc62de2019-05-17 22:00:50 -0600534 self.fail("Error: '%s' not found in '%s'" % (grep_list, target))
Simon Glass4f443042016-11-25 20:15:52 -0700535
536 def CheckNoGaps(self, entries):
537 """Check that all entries fit together without gaps
538
539 Args:
540 entries: List of entries to check
541 """
Simon Glass3ab95982018-08-01 15:22:37 -0600542 offset = 0
Simon Glass4f443042016-11-25 20:15:52 -0700543 for entry in entries.values():
Simon Glass3ab95982018-08-01 15:22:37 -0600544 self.assertEqual(offset, entry.offset)
545 offset += entry.size
Simon Glass4f443042016-11-25 20:15:52 -0700546
Simon Glasse0ff8552016-11-25 20:15:53 -0700547 def GetFdtLen(self, dtb):
Simon Glass7ae5f312018-06-01 09:38:19 -0600548 """Get the totalsize field from a device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700549
550 Args:
Simon Glass7ae5f312018-06-01 09:38:19 -0600551 dtb: Device-tree binary contents
Simon Glasse0ff8552016-11-25 20:15:53 -0700552
553 Returns:
Simon Glass7ae5f312018-06-01 09:38:19 -0600554 Total size of device-tree binary, from the header
Simon Glasse0ff8552016-11-25 20:15:53 -0700555 """
556 return struct.unpack('>L', dtb[4:8])[0]
557
Simon Glass086cec92019-07-08 14:25:27 -0600558 def _GetPropTree(self, dtb, prop_names, prefix='/binman/'):
Simon Glass16b8d6b2018-07-06 10:27:42 -0600559 def AddNode(node, path):
560 if node.name != '/':
561 path += '/' + node.name
Simon Glass086cec92019-07-08 14:25:27 -0600562 for prop in node.props.values():
563 if prop.name in prop_names:
564 prop_path = path + ':' + prop.name
565 tree[prop_path[len(prefix):]] = fdt_util.fdt32_to_cpu(
566 prop.value)
Simon Glass16b8d6b2018-07-06 10:27:42 -0600567 for subnode in node.subnodes:
Simon Glass16b8d6b2018-07-06 10:27:42 -0600568 AddNode(subnode, path)
569
570 tree = {}
Simon Glass16b8d6b2018-07-06 10:27:42 -0600571 AddNode(dtb.GetRoot(), '')
572 return tree
573
Simon Glass4f443042016-11-25 20:15:52 -0700574 def testRun(self):
575 """Test a basic run with valid args"""
576 result = self._RunBinman('-h')
577
578 def testFullHelp(self):
579 """Test that the full help is displayed with -H"""
580 result = self._RunBinman('-H')
581 help_file = os.path.join(self._binman_dir, 'README')
Tom Rini3759df02018-01-16 15:29:50 -0500582 # Remove possible extraneous strings
583 extra = '::::::::::::::\n' + help_file + '\n::::::::::::::\n'
584 gothelp = result.stdout.replace(extra, '')
585 self.assertEqual(len(gothelp), os.path.getsize(help_file))
Simon Glass4f443042016-11-25 20:15:52 -0700586 self.assertEqual(0, len(result.stderr))
587 self.assertEqual(0, result.return_code)
588
589 def testFullHelpInternal(self):
590 """Test that the full help is displayed with -H"""
591 try:
592 command.test_result = command.CommandResult()
593 result = self._DoBinman('-H')
594 help_file = os.path.join(self._binman_dir, 'README')
595 finally:
596 command.test_result = None
597
598 def testHelp(self):
599 """Test that the basic help is displayed with -h"""
600 result = self._RunBinman('-h')
601 self.assertTrue(len(result.stdout) > 200)
602 self.assertEqual(0, len(result.stderr))
603 self.assertEqual(0, result.return_code)
604
Simon Glass4f443042016-11-25 20:15:52 -0700605 def testBoard(self):
606 """Test that we can run it with a specific board"""
Simon Glass741f2d62018-10-01 12:22:30 -0600607 self._SetupDtb('005_simple.dts', 'sandbox/u-boot.dtb')
Simon Glass4f443042016-11-25 20:15:52 -0700608 TestFunctional._MakeInputFile('sandbox/u-boot.bin', U_BOOT_DATA)
Simon Glass53cd5d92019-07-08 14:25:29 -0600609 result = self._DoBinman('build', '-b', 'sandbox')
Simon Glass4f443042016-11-25 20:15:52 -0700610 self.assertEqual(0, result)
611
612 def testNeedBoard(self):
613 """Test that we get an error when no board ius supplied"""
614 with self.assertRaises(ValueError) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600615 result = self._DoBinman('build')
Simon Glass4f443042016-11-25 20:15:52 -0700616 self.assertIn("Must provide a board to process (use -b <board>)",
617 str(e.exception))
618
619 def testMissingDt(self):
Simon Glass7ae5f312018-06-01 09:38:19 -0600620 """Test that an invalid device-tree file generates an error"""
Simon Glass4f443042016-11-25 20:15:52 -0700621 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600622 self._RunBinman('build', '-d', 'missing_file')
Simon Glass4f443042016-11-25 20:15:52 -0700623 # We get one error from libfdt, and a different one from fdtget.
624 self.AssertInList(["Couldn't open blob from 'missing_file'",
625 'No such file or directory'], str(e.exception))
626
627 def testBrokenDt(self):
Simon Glass7ae5f312018-06-01 09:38:19 -0600628 """Test that an invalid device-tree source file generates an error
Simon Glass4f443042016-11-25 20:15:52 -0700629
630 Since this is a source file it should be compiled and the error
631 will come from the device-tree compiler (dtc).
632 """
633 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600634 self._RunBinman('build', '-d', self.TestFile('001_invalid.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700635 self.assertIn("FATAL ERROR: Unable to parse input tree",
636 str(e.exception))
637
638 def testMissingNode(self):
639 """Test that a device tree without a 'binman' node generates an error"""
640 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600641 self._DoBinman('build', '-d', self.TestFile('002_missing_node.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700642 self.assertIn("does not have a 'binman' node", str(e.exception))
643
644 def testEmpty(self):
645 """Test that an empty binman node works OK (i.e. does nothing)"""
Simon Glass53cd5d92019-07-08 14:25:29 -0600646 result = self._RunBinman('build', '-d', self.TestFile('003_empty.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700647 self.assertEqual(0, len(result.stderr))
648 self.assertEqual(0, result.return_code)
649
650 def testInvalidEntry(self):
651 """Test that an invalid entry is flagged"""
652 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600653 result = self._RunBinman('build', '-d',
Simon Glass741f2d62018-10-01 12:22:30 -0600654 self.TestFile('004_invalid_entry.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700655 self.assertIn("Unknown entry type 'not-a-valid-type' in node "
656 "'/binman/not-a-valid-type'", str(e.exception))
657
658 def testSimple(self):
659 """Test a simple binman with a single file"""
Simon Glass741f2d62018-10-01 12:22:30 -0600660 data = self._DoReadFile('005_simple.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700661 self.assertEqual(U_BOOT_DATA, data)
662
Simon Glass7fe91732017-11-13 18:55:00 -0700663 def testSimpleDebug(self):
664 """Test a simple binman run with debugging enabled"""
Simon Glasse2705fa2019-07-08 14:25:53 -0600665 self._DoTestFile('005_simple.dts', debug=True)
Simon Glass7fe91732017-11-13 18:55:00 -0700666
Simon Glass4f443042016-11-25 20:15:52 -0700667 def testDual(self):
668 """Test that we can handle creating two images
669
670 This also tests image padding.
671 """
Simon Glass741f2d62018-10-01 12:22:30 -0600672 retcode = self._DoTestFile('006_dual_image.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700673 self.assertEqual(0, retcode)
674
675 image = control.images['image1']
Simon Glass8beb11e2019-07-08 14:25:47 -0600676 self.assertEqual(len(U_BOOT_DATA), image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700677 fname = tools.GetOutputFilename('image1.bin')
678 self.assertTrue(os.path.exists(fname))
Simon Glass1d0ebf72019-05-14 15:53:42 -0600679 with open(fname, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700680 data = fd.read()
681 self.assertEqual(U_BOOT_DATA, data)
682
683 image = control.images['image2']
Simon Glass8beb11e2019-07-08 14:25:47 -0600684 self.assertEqual(3 + len(U_BOOT_DATA) + 5, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700685 fname = tools.GetOutputFilename('image2.bin')
686 self.assertTrue(os.path.exists(fname))
Simon Glass1d0ebf72019-05-14 15:53:42 -0600687 with open(fname, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700688 data = fd.read()
689 self.assertEqual(U_BOOT_DATA, data[3:7])
Simon Glasse6d85ff2019-05-14 15:53:47 -0600690 self.assertEqual(tools.GetBytes(0, 3), data[:3])
691 self.assertEqual(tools.GetBytes(0, 5), data[7:])
Simon Glass4f443042016-11-25 20:15:52 -0700692
693 def testBadAlign(self):
694 """Test that an invalid alignment value is detected"""
695 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600696 self._DoTestFile('007_bad_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700697 self.assertIn("Node '/binman/u-boot': Alignment 23 must be a power "
698 "of two", str(e.exception))
699
700 def testPackSimple(self):
701 """Test that packing works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600702 retcode = self._DoTestFile('008_pack.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700703 self.assertEqual(0, retcode)
704 self.assertIn('image', control.images)
705 image = control.images['image']
Simon Glass8f1da502018-06-01 09:38:12 -0600706 entries = image.GetEntries()
Simon Glass4f443042016-11-25 20:15:52 -0700707 self.assertEqual(5, len(entries))
708
709 # First u-boot
710 self.assertIn('u-boot', entries)
711 entry = entries['u-boot']
Simon Glass3ab95982018-08-01 15:22:37 -0600712 self.assertEqual(0, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700713 self.assertEqual(len(U_BOOT_DATA), entry.size)
714
715 # Second u-boot, aligned to 16-byte boundary
716 self.assertIn('u-boot-align', entries)
717 entry = entries['u-boot-align']
Simon Glass3ab95982018-08-01 15:22:37 -0600718 self.assertEqual(16, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700719 self.assertEqual(len(U_BOOT_DATA), entry.size)
720
721 # Third u-boot, size 23 bytes
722 self.assertIn('u-boot-size', entries)
723 entry = entries['u-boot-size']
Simon Glass3ab95982018-08-01 15:22:37 -0600724 self.assertEqual(20, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700725 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
726 self.assertEqual(23, entry.size)
727
728 # Fourth u-boot, placed immediate after the above
729 self.assertIn('u-boot-next', entries)
730 entry = entries['u-boot-next']
Simon Glass3ab95982018-08-01 15:22:37 -0600731 self.assertEqual(43, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700732 self.assertEqual(len(U_BOOT_DATA), entry.size)
733
Simon Glass3ab95982018-08-01 15:22:37 -0600734 # Fifth u-boot, placed at a fixed offset
Simon Glass4f443042016-11-25 20:15:52 -0700735 self.assertIn('u-boot-fixed', entries)
736 entry = entries['u-boot-fixed']
Simon Glass3ab95982018-08-01 15:22:37 -0600737 self.assertEqual(61, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700738 self.assertEqual(len(U_BOOT_DATA), entry.size)
739
Simon Glass8beb11e2019-07-08 14:25:47 -0600740 self.assertEqual(65, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700741
742 def testPackExtra(self):
743 """Test that extra packing feature works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600744 retcode = self._DoTestFile('009_pack_extra.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700745
746 self.assertEqual(0, retcode)
747 self.assertIn('image', control.images)
748 image = control.images['image']
Simon Glass8f1da502018-06-01 09:38:12 -0600749 entries = image.GetEntries()
Simon Glass4f443042016-11-25 20:15:52 -0700750 self.assertEqual(5, len(entries))
751
752 # First u-boot with padding before and after
753 self.assertIn('u-boot', entries)
754 entry = entries['u-boot']
Simon Glass3ab95982018-08-01 15:22:37 -0600755 self.assertEqual(0, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700756 self.assertEqual(3, entry.pad_before)
757 self.assertEqual(3 + 5 + len(U_BOOT_DATA), entry.size)
758
759 # Second u-boot has an aligned size, but it has no effect
760 self.assertIn('u-boot-align-size-nop', entries)
761 entry = entries['u-boot-align-size-nop']
Simon Glass3ab95982018-08-01 15:22:37 -0600762 self.assertEqual(12, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700763 self.assertEqual(4, entry.size)
764
765 # Third u-boot has an aligned size too
766 self.assertIn('u-boot-align-size', entries)
767 entry = entries['u-boot-align-size']
Simon Glass3ab95982018-08-01 15:22:37 -0600768 self.assertEqual(16, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700769 self.assertEqual(32, entry.size)
770
771 # Fourth u-boot has an aligned end
772 self.assertIn('u-boot-align-end', entries)
773 entry = entries['u-boot-align-end']
Simon Glass3ab95982018-08-01 15:22:37 -0600774 self.assertEqual(48, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700775 self.assertEqual(16, entry.size)
776
777 # Fifth u-boot immediately afterwards
778 self.assertIn('u-boot-align-both', entries)
779 entry = entries['u-boot-align-both']
Simon Glass3ab95982018-08-01 15:22:37 -0600780 self.assertEqual(64, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700781 self.assertEqual(64, entry.size)
782
783 self.CheckNoGaps(entries)
Simon Glass8beb11e2019-07-08 14:25:47 -0600784 self.assertEqual(128, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700785
786 def testPackAlignPowerOf2(self):
787 """Test that invalid entry alignment is detected"""
788 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600789 self._DoTestFile('010_pack_align_power2.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700790 self.assertIn("Node '/binman/u-boot': Alignment 5 must be a power "
791 "of two", str(e.exception))
792
793 def testPackAlignSizePowerOf2(self):
794 """Test that invalid entry size alignment is detected"""
795 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600796 self._DoTestFile('011_pack_align_size_power2.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700797 self.assertIn("Node '/binman/u-boot': Alignment size 55 must be a "
798 "power of two", str(e.exception))
799
800 def testPackInvalidAlign(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600801 """Test detection of an offset that does not match its alignment"""
Simon Glass4f443042016-11-25 20:15:52 -0700802 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600803 self._DoTestFile('012_pack_inv_align.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600804 self.assertIn("Node '/binman/u-boot': Offset 0x5 (5) does not match "
Simon Glass4f443042016-11-25 20:15:52 -0700805 "align 0x4 (4)", str(e.exception))
806
807 def testPackInvalidSizeAlign(self):
808 """Test that invalid entry size alignment is detected"""
809 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600810 self._DoTestFile('013_pack_inv_size_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700811 self.assertIn("Node '/binman/u-boot': Size 0x5 (5) does not match "
812 "align-size 0x4 (4)", str(e.exception))
813
814 def testPackOverlap(self):
815 """Test that overlapping regions are detected"""
816 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600817 self._DoTestFile('014_pack_overlap.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600818 self.assertIn("Node '/binman/u-boot-align': Offset 0x3 (3) overlaps "
Simon Glass4f443042016-11-25 20:15:52 -0700819 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
820 str(e.exception))
821
822 def testPackEntryOverflow(self):
823 """Test that entries that overflow their size are detected"""
824 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600825 self._DoTestFile('015_pack_overflow.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700826 self.assertIn("Node '/binman/u-boot': Entry contents size is 0x4 (4) "
827 "but entry size is 0x3 (3)", str(e.exception))
828
829 def testPackImageOverflow(self):
830 """Test that entries which overflow the image size are detected"""
831 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600832 self._DoTestFile('016_pack_image_overflow.dts')
Simon Glass8f1da502018-06-01 09:38:12 -0600833 self.assertIn("Section '/binman': contents size 0x4 (4) exceeds section "
Simon Glass4f443042016-11-25 20:15:52 -0700834 "size 0x3 (3)", str(e.exception))
835
836 def testPackImageSize(self):
837 """Test that the image size can be set"""
Simon Glass741f2d62018-10-01 12:22:30 -0600838 retcode = self._DoTestFile('017_pack_image_size.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700839 self.assertEqual(0, retcode)
840 self.assertIn('image', control.images)
841 image = control.images['image']
Simon Glass8beb11e2019-07-08 14:25:47 -0600842 self.assertEqual(7, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700843
844 def testPackImageSizeAlign(self):
845 """Test that image size alignemnt works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600846 retcode = self._DoTestFile('018_pack_image_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700847 self.assertEqual(0, retcode)
848 self.assertIn('image', control.images)
849 image = control.images['image']
Simon Glass8beb11e2019-07-08 14:25:47 -0600850 self.assertEqual(16, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700851
852 def testPackInvalidImageAlign(self):
853 """Test that invalid image alignment is detected"""
854 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600855 self._DoTestFile('019_pack_inv_image_align.dts')
Simon Glass8f1da502018-06-01 09:38:12 -0600856 self.assertIn("Section '/binman': Size 0x7 (7) does not match "
Simon Glass4f443042016-11-25 20:15:52 -0700857 "align-size 0x8 (8)", str(e.exception))
858
859 def testPackAlignPowerOf2(self):
860 """Test that invalid image alignment is detected"""
861 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600862 self._DoTestFile('020_pack_inv_image_align_power2.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600863 self.assertIn("Image '/binman': Alignment size 131 must be a power of "
Simon Glass4f443042016-11-25 20:15:52 -0700864 "two", str(e.exception))
865
866 def testImagePadByte(self):
867 """Test that the image pad byte can be specified"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600868 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -0600869 data = self._DoReadFile('021_image_pad.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -0600870 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0xff, 1) +
871 U_BOOT_DATA, data)
Simon Glass4f443042016-11-25 20:15:52 -0700872
873 def testImageName(self):
874 """Test that image files can be named"""
Simon Glass741f2d62018-10-01 12:22:30 -0600875 retcode = self._DoTestFile('022_image_name.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700876 self.assertEqual(0, retcode)
877 image = control.images['image1']
878 fname = tools.GetOutputFilename('test-name')
879 self.assertTrue(os.path.exists(fname))
880
881 image = control.images['image2']
882 fname = tools.GetOutputFilename('test-name.xx')
883 self.assertTrue(os.path.exists(fname))
884
885 def testBlobFilename(self):
886 """Test that generic blobs can be provided by filename"""
Simon Glass741f2d62018-10-01 12:22:30 -0600887 data = self._DoReadFile('023_blob.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700888 self.assertEqual(BLOB_DATA, data)
889
890 def testPackSorted(self):
891 """Test that entries can be sorted"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600892 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -0600893 data = self._DoReadFile('024_sorted.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -0600894 self.assertEqual(tools.GetBytes(0, 1) + U_BOOT_SPL_DATA +
895 tools.GetBytes(0, 2) + U_BOOT_DATA, data)
Simon Glass4f443042016-11-25 20:15:52 -0700896
Simon Glass3ab95982018-08-01 15:22:37 -0600897 def testPackZeroOffset(self):
898 """Test that an entry at offset 0 is not given a new offset"""
Simon Glass4f443042016-11-25 20:15:52 -0700899 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600900 self._DoTestFile('025_pack_zero_size.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600901 self.assertIn("Node '/binman/u-boot-spl': Offset 0x0 (0) overlaps "
Simon Glass4f443042016-11-25 20:15:52 -0700902 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
903 str(e.exception))
904
905 def testPackUbootDtb(self):
906 """Test that a device tree can be added to U-Boot"""
Simon Glass741f2d62018-10-01 12:22:30 -0600907 data = self._DoReadFile('026_pack_u_boot_dtb.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700908 self.assertEqual(U_BOOT_NODTB_DATA + U_BOOT_DTB_DATA, data)
Simon Glasse0ff8552016-11-25 20:15:53 -0700909
910 def testPackX86RomNoSize(self):
911 """Test that the end-at-4gb property requires a size property"""
912 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600913 self._DoTestFile('027_pack_4gb_no_size.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600914 self.assertIn("Image '/binman': Section size must be provided when "
Simon Glasse0ff8552016-11-25 20:15:53 -0700915 "using end-at-4gb", str(e.exception))
916
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530917 def test4gbAndSkipAtStartTogether(self):
918 """Test that the end-at-4gb and skip-at-size property can't be used
919 together"""
920 with self.assertRaises(ValueError) as e:
Simon Glassdfdd2b62019-08-24 07:23:02 -0600921 self._DoTestFile('098_4gb_and_skip_at_start_together.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600922 self.assertIn("Image '/binman': Provide either 'end-at-4gb' or "
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530923 "'skip-at-start'", str(e.exception))
924
Simon Glasse0ff8552016-11-25 20:15:53 -0700925 def testPackX86RomOutside(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600926 """Test that the end-at-4gb property checks for offset boundaries"""
Simon Glasse0ff8552016-11-25 20:15:53 -0700927 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600928 self._DoTestFile('028_pack_4gb_outside.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600929 self.assertIn("Node '/binman/u-boot': Offset 0x0 (0) is outside "
Simon Glass8f1da502018-06-01 09:38:12 -0600930 "the section starting at 0xffffffe0 (4294967264)",
Simon Glasse0ff8552016-11-25 20:15:53 -0700931 str(e.exception))
932
933 def testPackX86Rom(self):
934 """Test that a basic x86 ROM can be created"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600935 self._SetupSplElf()
Simon Glass9255f3c2019-08-24 07:23:01 -0600936 data = self._DoReadFile('029_x86_rom.dts')
Simon Glasseb0086f2019-08-24 07:23:04 -0600937 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 3) + U_BOOT_SPL_DATA +
Simon Glasse6d85ff2019-05-14 15:53:47 -0600938 tools.GetBytes(0, 2), data)
Simon Glasse0ff8552016-11-25 20:15:53 -0700939
940 def testPackX86RomMeNoDesc(self):
941 """Test that an invalid Intel descriptor entry is detected"""
Simon Glass0ba4b3d2020-07-09 18:39:41 -0600942 try:
943 TestFunctional._MakeInputFile('descriptor.bin', b'')
944 with self.assertRaises(ValueError) as e:
945 self._DoTestFile('031_x86_rom_me.dts')
946 self.assertIn("Node '/binman/intel-descriptor': Cannot find Intel Flash Descriptor (FD) signature",
947 str(e.exception))
948 finally:
949 self._SetupDescriptor()
Simon Glasse0ff8552016-11-25 20:15:53 -0700950
951 def testPackX86RomBadDesc(self):
952 """Test that the Intel requires a descriptor entry"""
953 with self.assertRaises(ValueError) as e:
Simon Glass9255f3c2019-08-24 07:23:01 -0600954 self._DoTestFile('030_x86_rom_me_no_desc.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600955 self.assertIn("Node '/binman/intel-me': No offset set with "
956 "offset-unset: should another entry provide this correct "
957 "offset?", str(e.exception))
Simon Glasse0ff8552016-11-25 20:15:53 -0700958
959 def testPackX86RomMe(self):
960 """Test that an x86 ROM with an ME region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600961 data = self._DoReadFile('031_x86_rom_me.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -0600962 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
963 if data[:0x1000] != expected_desc:
964 self.fail('Expected descriptor binary at start of image')
Simon Glasse0ff8552016-11-25 20:15:53 -0700965 self.assertEqual(ME_DATA, data[0x1000:0x1000 + len(ME_DATA)])
966
967 def testPackVga(self):
968 """Test that an image with a VGA binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600969 data = self._DoReadFile('032_intel_vga.dts')
Simon Glasse0ff8552016-11-25 20:15:53 -0700970 self.assertEqual(VGA_DATA, data[:len(VGA_DATA)])
971
972 def testPackStart16(self):
973 """Test that an image with an x86 start16 region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600974 data = self._DoReadFile('033_x86_start16.dts')
Simon Glasse0ff8552016-11-25 20:15:53 -0700975 self.assertEqual(X86_START16_DATA, data[:len(X86_START16_DATA)])
976
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530977 def testPackPowerpcMpc85xxBootpgResetvec(self):
978 """Test that an image with powerpc-mpc85xx-bootpg-resetvec can be
979 created"""
Simon Glassdfdd2b62019-08-24 07:23:02 -0600980 data = self._DoReadFile('150_powerpc_mpc85xx_bootpg_resetvec.dts')
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530981 self.assertEqual(PPC_MPC85XX_BR_DATA, data[:len(PPC_MPC85XX_BR_DATA)])
982
Simon Glass736bb0a2018-07-06 10:27:17 -0600983 def _RunMicrocodeTest(self, dts_fname, nodtb_data, ucode_second=False):
Simon Glassadc57012018-07-06 10:27:16 -0600984 """Handle running a test for insertion of microcode
985
986 Args:
987 dts_fname: Name of test .dts file
988 nodtb_data: Data that we expect in the first section
Simon Glass736bb0a2018-07-06 10:27:17 -0600989 ucode_second: True if the microsecond entry is second instead of
990 third
Simon Glassadc57012018-07-06 10:27:16 -0600991
992 Returns:
993 Tuple:
994 Contents of first region (U-Boot or SPL)
Simon Glass3ab95982018-08-01 15:22:37 -0600995 Offset and size components of microcode pointer, as inserted
Simon Glassadc57012018-07-06 10:27:16 -0600996 in the above (two 4-byte words)
997 """
Simon Glass6b187df2017-11-12 21:52:27 -0700998 data = self._DoReadFile(dts_fname, True)
Simon Glasse0ff8552016-11-25 20:15:53 -0700999
1000 # Now check the device tree has no microcode
Simon Glass736bb0a2018-07-06 10:27:17 -06001001 if ucode_second:
1002 ucode_content = data[len(nodtb_data):]
1003 ucode_pos = len(nodtb_data)
1004 dtb_with_ucode = ucode_content[16:]
1005 fdt_len = self.GetFdtLen(dtb_with_ucode)
1006 else:
1007 dtb_with_ucode = data[len(nodtb_data):]
1008 fdt_len = self.GetFdtLen(dtb_with_ucode)
1009 ucode_content = dtb_with_ucode[fdt_len:]
1010 ucode_pos = len(nodtb_data) + fdt_len
Simon Glasse0ff8552016-11-25 20:15:53 -07001011 fname = tools.GetOutputFilename('test.dtb')
1012 with open(fname, 'wb') as fd:
Simon Glassadc57012018-07-06 10:27:16 -06001013 fd.write(dtb_with_ucode)
Simon Glassec3f3782017-05-27 07:38:29 -06001014 dtb = fdt.FdtScan(fname)
1015 ucode = dtb.GetNode('/microcode')
Simon Glasse0ff8552016-11-25 20:15:53 -07001016 self.assertTrue(ucode)
1017 for node in ucode.subnodes:
1018 self.assertFalse(node.props.get('data'))
1019
Simon Glasse0ff8552016-11-25 20:15:53 -07001020 # Check that the microcode appears immediately after the Fdt
1021 # This matches the concatenation of the data properties in
Simon Glass87722132017-11-12 21:52:26 -07001022 # the /microcode/update@xxx nodes in 34_x86_ucode.dts.
Simon Glasse0ff8552016-11-25 20:15:53 -07001023 ucode_data = struct.pack('>4L', 0x12345678, 0x12345679, 0xabcd0000,
1024 0x78235609)
Simon Glassadc57012018-07-06 10:27:16 -06001025 self.assertEqual(ucode_data, ucode_content[:len(ucode_data)])
Simon Glasse0ff8552016-11-25 20:15:53 -07001026
1027 # Check that the microcode pointer was inserted. It should match the
Simon Glass3ab95982018-08-01 15:22:37 -06001028 # expected offset and size
Simon Glasse0ff8552016-11-25 20:15:53 -07001029 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1030 len(ucode_data))
Simon Glass736bb0a2018-07-06 10:27:17 -06001031 u_boot = data[:len(nodtb_data)]
1032 return u_boot, pos_and_size
Simon Glass6b187df2017-11-12 21:52:27 -07001033
1034 def testPackUbootMicrocode(self):
1035 """Test that x86 microcode can be handled correctly
1036
1037 We expect to see the following in the image, in order:
1038 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1039 place
1040 u-boot.dtb with the microcode removed
1041 the microcode
1042 """
Simon Glass741f2d62018-10-01 12:22:30 -06001043 first, pos_and_size = self._RunMicrocodeTest('034_x86_ucode.dts',
Simon Glass6b187df2017-11-12 21:52:27 -07001044 U_BOOT_NODTB_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001045 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1046 b' somewhere in here', first)
Simon Glasse0ff8552016-11-25 20:15:53 -07001047
Simon Glass160a7662017-05-27 07:38:26 -06001048 def _RunPackUbootSingleMicrocode(self):
Simon Glasse0ff8552016-11-25 20:15:53 -07001049 """Test that x86 microcode can be handled correctly
1050
1051 We expect to see the following in the image, in order:
1052 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1053 place
1054 u-boot.dtb with the microcode
1055 an empty microcode region
1056 """
1057 # We need the libfdt library to run this test since only that allows
1058 # finding the offset of a property. This is required by
1059 # Entry_u_boot_dtb_with_ucode.ObtainContents().
Simon Glass741f2d62018-10-01 12:22:30 -06001060 data = self._DoReadFile('035_x86_single_ucode.dts', True)
Simon Glasse0ff8552016-11-25 20:15:53 -07001061
1062 second = data[len(U_BOOT_NODTB_DATA):]
1063
1064 fdt_len = self.GetFdtLen(second)
1065 third = second[fdt_len:]
1066 second = second[:fdt_len]
1067
Simon Glass160a7662017-05-27 07:38:26 -06001068 ucode_data = struct.pack('>2L', 0x12345678, 0x12345679)
1069 self.assertIn(ucode_data, second)
1070 ucode_pos = second.find(ucode_data) + len(U_BOOT_NODTB_DATA)
Simon Glasse0ff8552016-11-25 20:15:53 -07001071
Simon Glass160a7662017-05-27 07:38:26 -06001072 # Check that the microcode pointer was inserted. It should match the
Simon Glass3ab95982018-08-01 15:22:37 -06001073 # expected offset and size
Simon Glass160a7662017-05-27 07:38:26 -06001074 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1075 len(ucode_data))
1076 first = data[:len(U_BOOT_NODTB_DATA)]
Simon Glassc6c10e72019-05-17 22:00:46 -06001077 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1078 b' somewhere in here', first)
Simon Glassc49deb82016-11-25 20:15:54 -07001079
Simon Glass75db0862016-11-25 20:15:55 -07001080 def testPackUbootSingleMicrocode(self):
1081 """Test that x86 microcode can be handled correctly with fdt_normal.
1082 """
Simon Glass160a7662017-05-27 07:38:26 -06001083 self._RunPackUbootSingleMicrocode()
Simon Glass75db0862016-11-25 20:15:55 -07001084
Simon Glassc49deb82016-11-25 20:15:54 -07001085 def testUBootImg(self):
1086 """Test that u-boot.img can be put in a file"""
Simon Glass741f2d62018-10-01 12:22:30 -06001087 data = self._DoReadFile('036_u_boot_img.dts')
Simon Glassc49deb82016-11-25 20:15:54 -07001088 self.assertEqual(U_BOOT_IMG_DATA, data)
Simon Glass75db0862016-11-25 20:15:55 -07001089
1090 def testNoMicrocode(self):
1091 """Test that a missing microcode region is detected"""
1092 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001093 self._DoReadFile('037_x86_no_ucode.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001094 self.assertIn("Node '/binman/u-boot-dtb-with-ucode': No /microcode "
1095 "node found in ", str(e.exception))
1096
1097 def testMicrocodeWithoutNode(self):
1098 """Test that a missing u-boot-dtb-with-ucode node is detected"""
1099 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001100 self._DoReadFile('038_x86_ucode_missing_node.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001101 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1102 "microcode region u-boot-dtb-with-ucode", str(e.exception))
1103
1104 def testMicrocodeWithoutNode2(self):
1105 """Test that a missing u-boot-ucode node is detected"""
1106 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001107 self._DoReadFile('039_x86_ucode_missing_node2.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001108 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1109 "microcode region u-boot-ucode", str(e.exception))
1110
1111 def testMicrocodeWithoutPtrInElf(self):
1112 """Test that a U-Boot binary without the microcode symbol is detected"""
1113 # ELF file without a '_dt_ucode_base_size' symbol
Simon Glass75db0862016-11-25 20:15:55 -07001114 try:
Simon Glassbccd91d2019-08-24 07:22:55 -06001115 TestFunctional._MakeInputFile('u-boot',
1116 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glass75db0862016-11-25 20:15:55 -07001117
1118 with self.assertRaises(ValueError) as e:
Simon Glass160a7662017-05-27 07:38:26 -06001119 self._RunPackUbootSingleMicrocode()
Simon Glass75db0862016-11-25 20:15:55 -07001120 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot locate "
1121 "_dt_ucode_base_size symbol in u-boot", str(e.exception))
1122
1123 finally:
1124 # Put the original file back
Simon Glassf514d8f2019-08-24 07:22:54 -06001125 TestFunctional._MakeInputFile('u-boot',
1126 tools.ReadFile(self.ElfTestFile('u_boot_ucode_ptr')))
Simon Glass75db0862016-11-25 20:15:55 -07001127
1128 def testMicrocodeNotInImage(self):
1129 """Test that microcode must be placed within the image"""
1130 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001131 self._DoReadFile('040_x86_ucode_not_in_image.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001132 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Microcode "
1133 "pointer _dt_ucode_base_size at fffffe14 is outside the "
Simon Glass25ac0e62018-06-01 09:38:14 -06001134 "section ranging from 00000000 to 0000002e", str(e.exception))
Simon Glass75db0862016-11-25 20:15:55 -07001135
1136 def testWithoutMicrocode(self):
1137 """Test that we can cope with an image without microcode (e.g. qemu)"""
Simon Glassbccd91d2019-08-24 07:22:55 -06001138 TestFunctional._MakeInputFile('u-boot',
1139 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glass741f2d62018-10-01 12:22:30 -06001140 data, dtb, _, _ = self._DoReadFileDtb('044_x86_optional_ucode.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001141
1142 # Now check the device tree has no microcode
1143 self.assertEqual(U_BOOT_NODTB_DATA, data[:len(U_BOOT_NODTB_DATA)])
1144 second = data[len(U_BOOT_NODTB_DATA):]
1145
1146 fdt_len = self.GetFdtLen(second)
1147 self.assertEqual(dtb, second[:fdt_len])
1148
1149 used_len = len(U_BOOT_NODTB_DATA) + fdt_len
1150 third = data[used_len:]
Simon Glasse6d85ff2019-05-14 15:53:47 -06001151 self.assertEqual(tools.GetBytes(0, 0x200 - used_len), third)
Simon Glass75db0862016-11-25 20:15:55 -07001152
1153 def testUnknownPosSize(self):
1154 """Test that microcode must be placed within the image"""
1155 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001156 self._DoReadFile('041_unknown_pos_size.dts', True)
Simon Glass3ab95982018-08-01 15:22:37 -06001157 self.assertIn("Section '/binman': Unable to set offset/size for unknown "
Simon Glass75db0862016-11-25 20:15:55 -07001158 "entry 'invalid-entry'", str(e.exception))
Simon Glassda229092016-11-25 20:15:56 -07001159
1160 def testPackFsp(self):
1161 """Test that an image with a FSP binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001162 data = self._DoReadFile('042_intel_fsp.dts')
Simon Glassda229092016-11-25 20:15:56 -07001163 self.assertEqual(FSP_DATA, data[:len(FSP_DATA)])
1164
1165 def testPackCmc(self):
Bin Meng59ea8c22017-08-15 22:41:54 -07001166 """Test that an image with a CMC binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001167 data = self._DoReadFile('043_intel_cmc.dts')
Simon Glassda229092016-11-25 20:15:56 -07001168 self.assertEqual(CMC_DATA, data[:len(CMC_DATA)])
Bin Meng59ea8c22017-08-15 22:41:54 -07001169
1170 def testPackVbt(self):
1171 """Test that an image with a VBT binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001172 data = self._DoReadFile('046_intel_vbt.dts')
Bin Meng59ea8c22017-08-15 22:41:54 -07001173 self.assertEqual(VBT_DATA, data[:len(VBT_DATA)])
Simon Glass9fc60b42017-11-12 21:52:22 -07001174
Simon Glass56509842017-11-12 21:52:25 -07001175 def testSplBssPad(self):
1176 """Test that we can pad SPL's BSS with zeros"""
Simon Glass6b187df2017-11-12 21:52:27 -07001177 # ELF file with a '__bss_size' symbol
Simon Glass11ae93e2018-10-01 21:12:47 -06001178 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -06001179 data = self._DoReadFile('047_spl_bss_pad.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001180 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0, 10) + U_BOOT_DATA,
1181 data)
Simon Glass56509842017-11-12 21:52:25 -07001182
Simon Glass86af5112018-10-01 21:12:42 -06001183 def testSplBssPadMissing(self):
1184 """Test that a missing symbol is detected"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001185 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glassb50e5612017-11-13 18:54:54 -07001186 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001187 self._DoReadFile('047_spl_bss_pad.dts')
Simon Glassb50e5612017-11-13 18:54:54 -07001188 self.assertIn('Expected __bss_size symbol in spl/u-boot-spl',
1189 str(e.exception))
1190
Simon Glass87722132017-11-12 21:52:26 -07001191 def testPackStart16Spl(self):
Simon Glass35b384c2018-09-14 04:57:10 -06001192 """Test that an image with an x86 start16 SPL region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001193 data = self._DoReadFile('048_x86_start16_spl.dts')
Simon Glass87722132017-11-12 21:52:26 -07001194 self.assertEqual(X86_START16_SPL_DATA, data[:len(X86_START16_SPL_DATA)])
1195
Simon Glass736bb0a2018-07-06 10:27:17 -06001196 def _PackUbootSplMicrocode(self, dts, ucode_second=False):
1197 """Helper function for microcode tests
Simon Glass6b187df2017-11-12 21:52:27 -07001198
1199 We expect to see the following in the image, in order:
1200 u-boot-spl-nodtb.bin with a microcode pointer inserted at the
1201 correct place
1202 u-boot.dtb with the microcode removed
1203 the microcode
Simon Glass736bb0a2018-07-06 10:27:17 -06001204
1205 Args:
1206 dts: Device tree file to use for test
1207 ucode_second: True if the microsecond entry is second instead of
1208 third
Simon Glass6b187df2017-11-12 21:52:27 -07001209 """
Simon Glass11ae93e2018-10-01 21:12:47 -06001210 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glass736bb0a2018-07-06 10:27:17 -06001211 first, pos_and_size = self._RunMicrocodeTest(dts, U_BOOT_SPL_NODTB_DATA,
1212 ucode_second=ucode_second)
Simon Glassc6c10e72019-05-17 22:00:46 -06001213 self.assertEqual(b'splnodtb with microc' + pos_and_size +
1214 b'ter somewhere in here', first)
Simon Glass6b187df2017-11-12 21:52:27 -07001215
Simon Glass736bb0a2018-07-06 10:27:17 -06001216 def testPackUbootSplMicrocode(self):
1217 """Test that x86 microcode can be handled correctly in SPL"""
Simon Glass741f2d62018-10-01 12:22:30 -06001218 self._PackUbootSplMicrocode('049_x86_ucode_spl.dts')
Simon Glass736bb0a2018-07-06 10:27:17 -06001219
1220 def testPackUbootSplMicrocodeReorder(self):
1221 """Test that order doesn't matter for microcode entries
1222
1223 This is the same as testPackUbootSplMicrocode but when we process the
1224 u-boot-ucode entry we have not yet seen the u-boot-dtb-with-ucode
1225 entry, so we reply on binman to try later.
1226 """
Simon Glass741f2d62018-10-01 12:22:30 -06001227 self._PackUbootSplMicrocode('058_x86_ucode_spl_needs_retry.dts',
Simon Glass736bb0a2018-07-06 10:27:17 -06001228 ucode_second=True)
1229
Simon Glassca4f4ff2017-11-12 21:52:28 -07001230 def testPackMrc(self):
1231 """Test that an image with an MRC binary can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001232 data = self._DoReadFile('050_intel_mrc.dts')
Simon Glassca4f4ff2017-11-12 21:52:28 -07001233 self.assertEqual(MRC_DATA, data[:len(MRC_DATA)])
1234
Simon Glass47419ea2017-11-13 18:54:55 -07001235 def testSplDtb(self):
1236 """Test that an image with spl/u-boot-spl.dtb can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001237 data = self._DoReadFile('051_u_boot_spl_dtb.dts')
Simon Glass47419ea2017-11-13 18:54:55 -07001238 self.assertEqual(U_BOOT_SPL_DTB_DATA, data[:len(U_BOOT_SPL_DTB_DATA)])
1239
Simon Glass4e6fdbe2017-11-13 18:54:56 -07001240 def testSplNoDtb(self):
1241 """Test that an image with spl/u-boot-spl-nodtb.bin can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001242 data = self._DoReadFile('052_u_boot_spl_nodtb.dts')
Simon Glass4e6fdbe2017-11-13 18:54:56 -07001243 self.assertEqual(U_BOOT_SPL_NODTB_DATA, data[:len(U_BOOT_SPL_NODTB_DATA)])
1244
Simon Glass19790632017-11-13 18:55:01 -07001245 def testSymbols(self):
1246 """Test binman can assign symbols embedded in U-Boot"""
Simon Glass1542c8b2019-08-24 07:22:56 -06001247 elf_fname = self.ElfTestFile('u_boot_binman_syms')
Simon Glass19790632017-11-13 18:55:01 -07001248 syms = elf.GetSymbols(elf_fname, ['binman', 'image'])
1249 addr = elf.GetSymbolAddress(elf_fname, '__image_copy_start')
Simon Glass3ab95982018-08-01 15:22:37 -06001250 self.assertEqual(syms['_binman_u_boot_spl_prop_offset'].address, addr)
Simon Glass19790632017-11-13 18:55:01 -07001251
Simon Glass11ae93e2018-10-01 21:12:47 -06001252 self._SetupSplElf('u_boot_binman_syms')
Simon Glass741f2d62018-10-01 12:22:30 -06001253 data = self._DoReadFile('053_symbols.dts')
Simon Glass7c150132019-11-06 17:22:44 -07001254 sym_values = struct.pack('<LQLL', 0x00, 0x1c, 0x28, 0x04)
Simon Glassb87064c2019-08-24 07:23:05 -06001255 expected = (sym_values + U_BOOT_SPL_DATA[20:] +
Simon Glasse6d85ff2019-05-14 15:53:47 -06001256 tools.GetBytes(0xff, 1) + U_BOOT_DATA + sym_values +
Simon Glassb87064c2019-08-24 07:23:05 -06001257 U_BOOT_SPL_DATA[20:])
Simon Glass19790632017-11-13 18:55:01 -07001258 self.assertEqual(expected, data)
1259
Simon Glassdd57c132018-06-01 09:38:11 -06001260 def testPackUnitAddress(self):
1261 """Test that we support multiple binaries with the same name"""
Simon Glass741f2d62018-10-01 12:22:30 -06001262 data = self._DoReadFile('054_unit_address.dts')
Simon Glassdd57c132018-06-01 09:38:11 -06001263 self.assertEqual(U_BOOT_DATA + U_BOOT_DATA, data)
1264
Simon Glass18546952018-06-01 09:38:16 -06001265 def testSections(self):
1266 """Basic test of sections"""
Simon Glass741f2d62018-10-01 12:22:30 -06001267 data = self._DoReadFile('055_sections.dts')
Simon Glassc6c10e72019-05-17 22:00:46 -06001268 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1269 U_BOOT_DATA + tools.GetBytes(ord('a'), 12) +
1270 U_BOOT_DATA + tools.GetBytes(ord('&'), 4))
Simon Glass18546952018-06-01 09:38:16 -06001271 self.assertEqual(expected, data)
Simon Glass9fc60b42017-11-12 21:52:22 -07001272
Simon Glass3b0c3822018-06-01 09:38:20 -06001273 def testMap(self):
1274 """Tests outputting a map of the images"""
Simon Glass741f2d62018-10-01 12:22:30 -06001275 _, _, map_data, _ = self._DoReadFileDtb('055_sections.dts', map=True)
Simon Glass1be70d22018-07-17 13:25:49 -06001276 self.assertEqual('''ImagePos Offset Size Name
127700000000 00000000 00000028 main-section
127800000000 00000000 00000010 section@0
127900000000 00000000 00000004 u-boot
128000000010 00000010 00000010 section@1
128100000010 00000000 00000004 u-boot
128200000020 00000020 00000004 section@2
128300000020 00000000 00000004 u-boot
Simon Glass3b0c3822018-06-01 09:38:20 -06001284''', map_data)
1285
Simon Glassc8d48ef2018-06-01 09:38:21 -06001286 def testNamePrefix(self):
1287 """Tests that name prefixes are used"""
Simon Glass741f2d62018-10-01 12:22:30 -06001288 _, _, map_data, _ = self._DoReadFileDtb('056_name_prefix.dts', map=True)
Simon Glass1be70d22018-07-17 13:25:49 -06001289 self.assertEqual('''ImagePos Offset Size Name
129000000000 00000000 00000028 main-section
129100000000 00000000 00000010 section@0
129200000000 00000000 00000004 ro-u-boot
129300000010 00000010 00000010 section@1
129400000010 00000000 00000004 rw-u-boot
Simon Glassc8d48ef2018-06-01 09:38:21 -06001295''', map_data)
1296
Simon Glass736bb0a2018-07-06 10:27:17 -06001297 def testUnknownContents(self):
1298 """Test that obtaining the contents works as expected"""
1299 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001300 self._DoReadFile('057_unknown_contents.dts', True)
Simon Glass8beb11e2019-07-08 14:25:47 -06001301 self.assertIn("Image '/binman': Internal error: Could not complete "
Simon Glass16287932020-04-17 18:09:03 -06001302 "processing of contents: remaining ["
1303 "<binman.etype._testing.Entry__testing ", str(e.exception))
Simon Glass736bb0a2018-07-06 10:27:17 -06001304
Simon Glass5c890232018-07-06 10:27:19 -06001305 def testBadChangeSize(self):
1306 """Test that trying to change the size of an entry fails"""
Simon Glassc52c9e72019-07-08 14:25:37 -06001307 try:
1308 state.SetAllowEntryExpansion(False)
1309 with self.assertRaises(ValueError) as e:
1310 self._DoReadFile('059_change_size.dts', True)
Simon Glass79d3c582019-07-20 12:23:57 -06001311 self.assertIn("Node '/binman/_testing': Cannot update entry size from 2 to 3",
Simon Glassc52c9e72019-07-08 14:25:37 -06001312 str(e.exception))
1313 finally:
1314 state.SetAllowEntryExpansion(True)
Simon Glass5c890232018-07-06 10:27:19 -06001315
Simon Glass16b8d6b2018-07-06 10:27:42 -06001316 def testUpdateFdt(self):
Simon Glass3ab95982018-08-01 15:22:37 -06001317 """Test that we can update the device tree with offset/size info"""
Simon Glass741f2d62018-10-01 12:22:30 -06001318 _, _, _, out_dtb_fname = self._DoReadFileDtb('060_fdt_update.dts',
Simon Glass16b8d6b2018-07-06 10:27:42 -06001319 update_dtb=True)
Simon Glasscee02e62018-07-17 13:25:52 -06001320 dtb = fdt.Fdt(out_dtb_fname)
1321 dtb.Scan()
Simon Glass12bb1a92019-07-20 12:23:51 -06001322 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS)
Simon Glass16b8d6b2018-07-06 10:27:42 -06001323 self.assertEqual({
Simon Glassdbf6be92018-08-01 15:22:42 -06001324 'image-pos': 0,
Simon Glass8122f392018-07-17 13:25:28 -06001325 'offset': 0,
Simon Glass3ab95982018-08-01 15:22:37 -06001326 '_testing:offset': 32,
Simon Glass79d3c582019-07-20 12:23:57 -06001327 '_testing:size': 2,
Simon Glassdbf6be92018-08-01 15:22:42 -06001328 '_testing:image-pos': 32,
Simon Glass3ab95982018-08-01 15:22:37 -06001329 'section@0/u-boot:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001330 'section@0/u-boot:size': len(U_BOOT_DATA),
Simon Glassdbf6be92018-08-01 15:22:42 -06001331 'section@0/u-boot:image-pos': 0,
Simon Glass3ab95982018-08-01 15:22:37 -06001332 'section@0:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001333 'section@0:size': 16,
Simon Glassdbf6be92018-08-01 15:22:42 -06001334 'section@0:image-pos': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001335
Simon Glass3ab95982018-08-01 15:22:37 -06001336 'section@1/u-boot:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001337 'section@1/u-boot:size': len(U_BOOT_DATA),
Simon Glassdbf6be92018-08-01 15:22:42 -06001338 'section@1/u-boot:image-pos': 16,
Simon Glass3ab95982018-08-01 15:22:37 -06001339 'section@1:offset': 16,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001340 'section@1:size': 16,
Simon Glassdbf6be92018-08-01 15:22:42 -06001341 'section@1:image-pos': 16,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001342 'size': 40
1343 }, props)
1344
1345 def testUpdateFdtBad(self):
1346 """Test that we detect when ProcessFdt never completes"""
1347 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001348 self._DoReadFileDtb('061_fdt_update_bad.dts', update_dtb=True)
Simon Glass16b8d6b2018-07-06 10:27:42 -06001349 self.assertIn('Could not complete processing of Fdt: remaining '
Simon Glass16287932020-04-17 18:09:03 -06001350 '[<binman.etype._testing.Entry__testing',
1351 str(e.exception))
Simon Glass5c890232018-07-06 10:27:19 -06001352
Simon Glass53af22a2018-07-17 13:25:32 -06001353 def testEntryArgs(self):
1354 """Test passing arguments to entries from the command line"""
1355 entry_args = {
1356 'test-str-arg': 'test1',
1357 'test-int-arg': '456',
1358 }
Simon Glass741f2d62018-10-01 12:22:30 -06001359 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001360 self.assertIn('image', control.images)
1361 entry = control.images['image'].GetEntries()['_testing']
1362 self.assertEqual('test0', entry.test_str_fdt)
1363 self.assertEqual('test1', entry.test_str_arg)
1364 self.assertEqual(123, entry.test_int_fdt)
1365 self.assertEqual(456, entry.test_int_arg)
1366
1367 def testEntryArgsMissing(self):
1368 """Test missing arguments and properties"""
1369 entry_args = {
1370 'test-int-arg': '456',
1371 }
Simon Glass741f2d62018-10-01 12:22:30 -06001372 self._DoReadFileDtb('063_entry_args_missing.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001373 entry = control.images['image'].GetEntries()['_testing']
1374 self.assertEqual('test0', entry.test_str_fdt)
1375 self.assertEqual(None, entry.test_str_arg)
1376 self.assertEqual(None, entry.test_int_fdt)
1377 self.assertEqual(456, entry.test_int_arg)
1378
1379 def testEntryArgsRequired(self):
1380 """Test missing arguments and properties"""
1381 entry_args = {
1382 'test-int-arg': '456',
1383 }
1384 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001385 self._DoReadFileDtb('064_entry_args_required.dts')
Simon Glass53af22a2018-07-17 13:25:32 -06001386 self.assertIn("Node '/binman/_testing': Missing required "
1387 'properties/entry args: test-str-arg, test-int-fdt, test-int-arg',
1388 str(e.exception))
1389
1390 def testEntryArgsInvalidFormat(self):
1391 """Test that an invalid entry-argument format is detected"""
Simon Glass53cd5d92019-07-08 14:25:29 -06001392 args = ['build', '-d', self.TestFile('064_entry_args_required.dts'),
1393 '-ano-value']
Simon Glass53af22a2018-07-17 13:25:32 -06001394 with self.assertRaises(ValueError) as e:
1395 self._DoBinman(*args)
1396 self.assertIn("Invalid entry arguemnt 'no-value'", str(e.exception))
1397
1398 def testEntryArgsInvalidInteger(self):
1399 """Test that an invalid entry-argument integer is detected"""
1400 entry_args = {
1401 'test-int-arg': 'abc',
1402 }
1403 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001404 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001405 self.assertIn("Node '/binman/_testing': Cannot convert entry arg "
1406 "'test-int-arg' (value 'abc') to integer",
1407 str(e.exception))
1408
1409 def testEntryArgsInvalidDatatype(self):
1410 """Test that an invalid entry-argument datatype is detected
1411
1412 This test could be written in entry_test.py except that it needs
1413 access to control.entry_args, which seems more than that module should
1414 be able to see.
1415 """
1416 entry_args = {
1417 'test-bad-datatype-arg': '12',
1418 }
1419 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001420 self._DoReadFileDtb('065_entry_args_unknown_datatype.dts',
Simon Glass53af22a2018-07-17 13:25:32 -06001421 entry_args=entry_args)
1422 self.assertIn('GetArg() internal error: Unknown data type ',
1423 str(e.exception))
1424
Simon Glassbb748372018-07-17 13:25:33 -06001425 def testText(self):
1426 """Test for a text entry type"""
1427 entry_args = {
1428 'test-id': TEXT_DATA,
1429 'test-id2': TEXT_DATA2,
1430 'test-id3': TEXT_DATA3,
1431 }
Simon Glass741f2d62018-10-01 12:22:30 -06001432 data, _, _, _ = self._DoReadFileDtb('066_text.dts',
Simon Glassbb748372018-07-17 13:25:33 -06001433 entry_args=entry_args)
Simon Glassc6c10e72019-05-17 22:00:46 -06001434 expected = (tools.ToBytes(TEXT_DATA) +
1435 tools.GetBytes(0, 8 - len(TEXT_DATA)) +
1436 tools.ToBytes(TEXT_DATA2) + tools.ToBytes(TEXT_DATA3) +
Simon Glassaa88b502019-07-08 13:18:40 -06001437 b'some text' + b'more text')
Simon Glassbb748372018-07-17 13:25:33 -06001438 self.assertEqual(expected, data)
1439
Simon Glassfd8d1f72018-07-17 13:25:36 -06001440 def testEntryDocs(self):
1441 """Test for creation of entry documentation"""
1442 with test_util.capture_sys_output() as (stdout, stderr):
Simon Glassc07ab6e2020-04-17 18:08:58 -06001443 control.WriteEntryDocs(main.GetEntryModules())
Simon Glassfd8d1f72018-07-17 13:25:36 -06001444 self.assertTrue(len(stdout.getvalue()) > 0)
1445
1446 def testEntryDocsMissing(self):
1447 """Test handling of missing entry documentation"""
1448 with self.assertRaises(ValueError) as e:
1449 with test_util.capture_sys_output() as (stdout, stderr):
Simon Glassc07ab6e2020-04-17 18:08:58 -06001450 control.WriteEntryDocs(main.GetEntryModules(), 'u_boot')
Simon Glassfd8d1f72018-07-17 13:25:36 -06001451 self.assertIn('Documentation is missing for modules: u_boot',
1452 str(e.exception))
1453
Simon Glass11e36cc2018-07-17 13:25:38 -06001454 def testFmap(self):
1455 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001456 data = self._DoReadFile('067_fmap.dts')
Simon Glass11e36cc2018-07-17 13:25:38 -06001457 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glassc6c10e72019-05-17 22:00:46 -06001458 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1459 U_BOOT_DATA + tools.GetBytes(ord('a'), 12))
Simon Glass11e36cc2018-07-17 13:25:38 -06001460 self.assertEqual(expected, data[:32])
Simon Glassc6c10e72019-05-17 22:00:46 -06001461 self.assertEqual(b'__FMAP__', fhdr.signature)
Simon Glass11e36cc2018-07-17 13:25:38 -06001462 self.assertEqual(1, fhdr.ver_major)
1463 self.assertEqual(0, fhdr.ver_minor)
1464 self.assertEqual(0, fhdr.base)
1465 self.assertEqual(16 + 16 +
1466 fmap_util.FMAP_HEADER_LEN +
1467 fmap_util.FMAP_AREA_LEN * 3, fhdr.image_size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001468 self.assertEqual(b'FMAP', fhdr.name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001469 self.assertEqual(3, fhdr.nareas)
1470 for fentry in fentries:
1471 self.assertEqual(0, fentry.flags)
1472
1473 self.assertEqual(0, fentries[0].offset)
1474 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001475 self.assertEqual(b'RO_U_BOOT', fentries[0].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001476
1477 self.assertEqual(16, fentries[1].offset)
1478 self.assertEqual(4, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001479 self.assertEqual(b'RW_U_BOOT', fentries[1].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001480
1481 self.assertEqual(32, fentries[2].offset)
1482 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1483 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001484 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001485
Simon Glassec127af2018-07-17 13:25:39 -06001486 def testBlobNamedByArg(self):
1487 """Test we can add a blob with the filename coming from an entry arg"""
1488 entry_args = {
1489 'cros-ec-rw-path': 'ecrw.bin',
1490 }
Simon Glass741f2d62018-10-01 12:22:30 -06001491 data, _, _, _ = self._DoReadFileDtb('068_blob_named_by_arg.dts',
Simon Glassec127af2018-07-17 13:25:39 -06001492 entry_args=entry_args)
1493
Simon Glass3af8e492018-07-17 13:25:40 -06001494 def testFill(self):
1495 """Test for an fill entry type"""
Simon Glass741f2d62018-10-01 12:22:30 -06001496 data = self._DoReadFile('069_fill.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001497 expected = tools.GetBytes(0xff, 8) + tools.GetBytes(0, 8)
Simon Glass3af8e492018-07-17 13:25:40 -06001498 self.assertEqual(expected, data)
1499
1500 def testFillNoSize(self):
1501 """Test for an fill entry type with no size"""
1502 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001503 self._DoReadFile('070_fill_no_size.dts')
Simon Glass3af8e492018-07-17 13:25:40 -06001504 self.assertIn("'fill' entry must have a size property",
1505 str(e.exception))
1506
Simon Glass0ef87aa2018-07-17 13:25:44 -06001507 def _HandleGbbCommand(self, pipe_list):
1508 """Fake calls to the futility utility"""
1509 if pipe_list[0][0] == 'futility':
1510 fname = pipe_list[0][-1]
1511 # Append our GBB data to the file, which will happen every time the
1512 # futility command is called.
Simon Glass1d0ebf72019-05-14 15:53:42 -06001513 with open(fname, 'ab') as fd:
Simon Glass0ef87aa2018-07-17 13:25:44 -06001514 fd.write(GBB_DATA)
1515 return command.CommandResult()
1516
1517 def testGbb(self):
1518 """Test for the Chromium OS Google Binary Block"""
1519 command.test_result = self._HandleGbbCommand
1520 entry_args = {
1521 'keydir': 'devkeys',
1522 'bmpblk': 'bmpblk.bin',
1523 }
Simon Glass741f2d62018-10-01 12:22:30 -06001524 data, _, _, _ = self._DoReadFileDtb('071_gbb.dts', entry_args=entry_args)
Simon Glass0ef87aa2018-07-17 13:25:44 -06001525
1526 # Since futility
Simon Glasse6d85ff2019-05-14 15:53:47 -06001527 expected = (GBB_DATA + GBB_DATA + tools.GetBytes(0, 8) +
1528 tools.GetBytes(0, 0x2180 - 16))
Simon Glass0ef87aa2018-07-17 13:25:44 -06001529 self.assertEqual(expected, data)
1530
1531 def testGbbTooSmall(self):
1532 """Test for the Chromium OS Google Binary Block being large enough"""
1533 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001534 self._DoReadFileDtb('072_gbb_too_small.dts')
Simon Glass0ef87aa2018-07-17 13:25:44 -06001535 self.assertIn("Node '/binman/gbb': GBB is too small",
1536 str(e.exception))
1537
1538 def testGbbNoSize(self):
1539 """Test for the Chromium OS Google Binary Block having a size"""
1540 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001541 self._DoReadFileDtb('073_gbb_no_size.dts')
Simon Glass0ef87aa2018-07-17 13:25:44 -06001542 self.assertIn("Node '/binman/gbb': GBB must have a fixed size",
1543 str(e.exception))
1544
Simon Glass24d0d3c2018-07-17 13:25:47 -06001545 def _HandleVblockCommand(self, pipe_list):
1546 """Fake calls to the futility utility"""
1547 if pipe_list[0][0] == 'futility':
1548 fname = pipe_list[0][3]
Simon Glassa326b492018-09-14 04:57:11 -06001549 with open(fname, 'wb') as fd:
Simon Glass24d0d3c2018-07-17 13:25:47 -06001550 fd.write(VBLOCK_DATA)
1551 return command.CommandResult()
1552
1553 def testVblock(self):
1554 """Test for the Chromium OS Verified Boot Block"""
1555 command.test_result = self._HandleVblockCommand
1556 entry_args = {
1557 'keydir': 'devkeys',
1558 }
Simon Glass741f2d62018-10-01 12:22:30 -06001559 data, _, _, _ = self._DoReadFileDtb('074_vblock.dts',
Simon Glass24d0d3c2018-07-17 13:25:47 -06001560 entry_args=entry_args)
1561 expected = U_BOOT_DATA + VBLOCK_DATA + U_BOOT_DTB_DATA
1562 self.assertEqual(expected, data)
1563
1564 def testVblockNoContent(self):
1565 """Test we detect a vblock which has no content to sign"""
1566 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001567 self._DoReadFile('075_vblock_no_content.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001568 self.assertIn("Node '/binman/vblock': Vblock must have a 'content' "
1569 'property', str(e.exception))
1570
1571 def testVblockBadPhandle(self):
1572 """Test that we detect a vblock with an invalid phandle in contents"""
1573 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001574 self._DoReadFile('076_vblock_bad_phandle.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001575 self.assertIn("Node '/binman/vblock': Cannot find node for phandle "
1576 '1000', str(e.exception))
1577
1578 def testVblockBadEntry(self):
1579 """Test that we detect an entry that points to a non-entry"""
1580 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001581 self._DoReadFile('077_vblock_bad_entry.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001582 self.assertIn("Node '/binman/vblock': Cannot find entry for node "
1583 "'other'", str(e.exception))
1584
Simon Glassb8ef5b62018-07-17 13:25:48 -06001585 def testTpl(self):
Simon Glass2090f1e2019-08-24 07:23:00 -06001586 """Test that an image with TPL and its device tree can be created"""
Simon Glassb8ef5b62018-07-17 13:25:48 -06001587 # ELF file with a '__bss_size' symbol
Simon Glass2090f1e2019-08-24 07:23:00 -06001588 self._SetupTplElf()
Simon Glass741f2d62018-10-01 12:22:30 -06001589 data = self._DoReadFile('078_u_boot_tpl.dts')
Simon Glassb8ef5b62018-07-17 13:25:48 -06001590 self.assertEqual(U_BOOT_TPL_DATA + U_BOOT_TPL_DTB_DATA, data)
1591
Simon Glass15a587c2018-07-17 13:25:51 -06001592 def testUsesPos(self):
1593 """Test that the 'pos' property cannot be used anymore"""
1594 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001595 data = self._DoReadFile('079_uses_pos.dts')
Simon Glass15a587c2018-07-17 13:25:51 -06001596 self.assertIn("Node '/binman/u-boot': Please use 'offset' instead of "
1597 "'pos'", str(e.exception))
1598
Simon Glassd178eab2018-09-14 04:57:08 -06001599 def testFillZero(self):
1600 """Test for an fill entry type with a size of 0"""
Simon Glass741f2d62018-10-01 12:22:30 -06001601 data = self._DoReadFile('080_fill_empty.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001602 self.assertEqual(tools.GetBytes(0, 16), data)
Simon Glassd178eab2018-09-14 04:57:08 -06001603
Simon Glass0b489362018-09-14 04:57:09 -06001604 def testTextMissing(self):
1605 """Test for a text entry type where there is no text"""
1606 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001607 self._DoReadFileDtb('066_text.dts',)
Simon Glass0b489362018-09-14 04:57:09 -06001608 self.assertIn("Node '/binman/text': No value provided for text label "
1609 "'test-id'", str(e.exception))
1610
Simon Glass35b384c2018-09-14 04:57:10 -06001611 def testPackStart16Tpl(self):
1612 """Test that an image with an x86 start16 TPL region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001613 data = self._DoReadFile('081_x86_start16_tpl.dts')
Simon Glass35b384c2018-09-14 04:57:10 -06001614 self.assertEqual(X86_START16_TPL_DATA, data[:len(X86_START16_TPL_DATA)])
1615
Simon Glass0bfa7b02018-09-14 04:57:12 -06001616 def testSelectImage(self):
1617 """Test that we can select which images to build"""
Simon Glasseb833d82019-04-25 21:58:34 -06001618 expected = 'Skipping images: image1'
Simon Glass0bfa7b02018-09-14 04:57:12 -06001619
Simon Glasseb833d82019-04-25 21:58:34 -06001620 # We should only get the expected message in verbose mode
Simon Glassee0c9a72019-07-08 13:18:48 -06001621 for verbosity in (0, 2):
Simon Glasseb833d82019-04-25 21:58:34 -06001622 with test_util.capture_sys_output() as (stdout, stderr):
1623 retcode = self._DoTestFile('006_dual_image.dts',
1624 verbosity=verbosity,
1625 images=['image2'])
1626 self.assertEqual(0, retcode)
1627 if verbosity:
1628 self.assertIn(expected, stdout.getvalue())
1629 else:
1630 self.assertNotIn(expected, stdout.getvalue())
1631
1632 self.assertFalse(os.path.exists(tools.GetOutputFilename('image1.bin')))
1633 self.assertTrue(os.path.exists(tools.GetOutputFilename('image2.bin')))
Simon Glassf86a7362019-07-20 12:24:10 -06001634 self._CleanupOutputDir()
Simon Glass0bfa7b02018-09-14 04:57:12 -06001635
Simon Glass6ed45ba2018-09-14 04:57:24 -06001636 def testUpdateFdtAll(self):
1637 """Test that all device trees are updated with offset/size info"""
Simon Glass3c081312019-07-08 14:25:26 -06001638 data = self._DoReadFileRealDtb('082_fdt_update_all.dts')
Simon Glass6ed45ba2018-09-14 04:57:24 -06001639
1640 base_expected = {
1641 'section:image-pos': 0,
1642 'u-boot-tpl-dtb:size': 513,
1643 'u-boot-spl-dtb:size': 513,
1644 'u-boot-spl-dtb:offset': 493,
1645 'image-pos': 0,
1646 'section/u-boot-dtb:image-pos': 0,
1647 'u-boot-spl-dtb:image-pos': 493,
1648 'section/u-boot-dtb:size': 493,
1649 'u-boot-tpl-dtb:image-pos': 1006,
1650 'section/u-boot-dtb:offset': 0,
1651 'section:size': 493,
1652 'offset': 0,
1653 'section:offset': 0,
1654 'u-boot-tpl-dtb:offset': 1006,
1655 'size': 1519
1656 }
1657
1658 # We expect three device-tree files in the output, one after the other.
1659 # Read them in sequence. We look for an 'spl' property in the SPL tree,
1660 # and 'tpl' in the TPL tree, to make sure they are distinct from the
1661 # main U-Boot tree. All three should have the same postions and offset.
1662 start = 0
1663 for item in ['', 'spl', 'tpl']:
1664 dtb = fdt.Fdt.FromData(data[start:])
1665 dtb.Scan()
Simon Glass12bb1a92019-07-20 12:23:51 -06001666 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS +
1667 ['spl', 'tpl'])
Simon Glass6ed45ba2018-09-14 04:57:24 -06001668 expected = dict(base_expected)
1669 if item:
1670 expected[item] = 0
1671 self.assertEqual(expected, props)
1672 start += dtb._fdt_obj.totalsize()
1673
1674 def testUpdateFdtOutput(self):
1675 """Test that output DTB files are updated"""
1676 try:
Simon Glass741f2d62018-10-01 12:22:30 -06001677 data, dtb_data, _, _ = self._DoReadFileDtb('082_fdt_update_all.dts',
Simon Glass6ed45ba2018-09-14 04:57:24 -06001678 use_real_dtb=True, update_dtb=True, reset_dtbs=False)
1679
1680 # Unfortunately, compiling a source file always results in a file
1681 # called source.dtb (see fdt_util.EnsureCompiled()). The test
Simon Glass741f2d62018-10-01 12:22:30 -06001682 # source file (e.g. test/075_fdt_update_all.dts) thus does not enter
Simon Glass6ed45ba2018-09-14 04:57:24 -06001683 # binman as a file called u-boot.dtb. To fix this, copy the file
1684 # over to the expected place.
Simon Glass6ed45ba2018-09-14 04:57:24 -06001685 start = 0
1686 for fname in ['u-boot.dtb.out', 'spl/u-boot-spl.dtb.out',
1687 'tpl/u-boot-tpl.dtb.out']:
1688 dtb = fdt.Fdt.FromData(data[start:])
1689 size = dtb._fdt_obj.totalsize()
1690 pathname = tools.GetOutputFilename(os.path.split(fname)[1])
1691 outdata = tools.ReadFile(pathname)
1692 name = os.path.split(fname)[0]
1693
1694 if name:
1695 orig_indata = self._GetDtbContentsForSplTpl(dtb_data, name)
1696 else:
1697 orig_indata = dtb_data
1698 self.assertNotEqual(outdata, orig_indata,
1699 "Expected output file '%s' be updated" % pathname)
1700 self.assertEqual(outdata, data[start:start + size],
1701 "Expected output file '%s' to match output image" %
1702 pathname)
1703 start += size
1704 finally:
1705 self._ResetDtbs()
1706
Simon Glass83d73c22018-09-14 04:57:26 -06001707 def _decompress(self, data):
Simon Glassff5c7e32019-07-08 13:18:42 -06001708 return tools.Decompress(data, 'lz4')
Simon Glass83d73c22018-09-14 04:57:26 -06001709
1710 def testCompress(self):
1711 """Test compression of blobs"""
Simon Glassac62fba2019-07-08 13:18:53 -06001712 self._CheckLz4()
Simon Glass741f2d62018-10-01 12:22:30 -06001713 data, _, _, out_dtb_fname = self._DoReadFileDtb('083_compress.dts',
Simon Glass83d73c22018-09-14 04:57:26 -06001714 use_real_dtb=True, update_dtb=True)
1715 dtb = fdt.Fdt(out_dtb_fname)
1716 dtb.Scan()
1717 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
1718 orig = self._decompress(data)
1719 self.assertEquals(COMPRESS_DATA, orig)
1720 expected = {
1721 'blob:uncomp-size': len(COMPRESS_DATA),
1722 'blob:size': len(data),
1723 'size': len(data),
1724 }
1725 self.assertEqual(expected, props)
1726
Simon Glass0a98b282018-09-14 04:57:28 -06001727 def testFiles(self):
1728 """Test bringing in multiple files"""
Simon Glass741f2d62018-10-01 12:22:30 -06001729 data = self._DoReadFile('084_files.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001730 self.assertEqual(FILES_DATA, data)
1731
1732 def testFilesCompress(self):
1733 """Test bringing in multiple files and compressing them"""
Simon Glassac62fba2019-07-08 13:18:53 -06001734 self._CheckLz4()
Simon Glass741f2d62018-10-01 12:22:30 -06001735 data = self._DoReadFile('085_files_compress.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001736
1737 image = control.images['image']
1738 entries = image.GetEntries()
1739 files = entries['files']
Simon Glass8beb11e2019-07-08 14:25:47 -06001740 entries = files._entries
Simon Glass0a98b282018-09-14 04:57:28 -06001741
Simon Glassc6c10e72019-05-17 22:00:46 -06001742 orig = b''
Simon Glass0a98b282018-09-14 04:57:28 -06001743 for i in range(1, 3):
1744 key = '%d.dat' % i
1745 start = entries[key].image_pos
1746 len = entries[key].size
1747 chunk = data[start:start + len]
1748 orig += self._decompress(chunk)
1749
1750 self.assertEqual(FILES_DATA, orig)
1751
1752 def testFilesMissing(self):
1753 """Test missing files"""
1754 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001755 data = self._DoReadFile('086_files_none.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001756 self.assertIn("Node '/binman/files': Pattern \'files/*.none\' matched "
1757 'no files', str(e.exception))
1758
1759 def testFilesNoPattern(self):
1760 """Test missing files"""
1761 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001762 data = self._DoReadFile('087_files_no_pattern.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001763 self.assertIn("Node '/binman/files': Missing 'pattern' property",
1764 str(e.exception))
1765
Simon Glassba64a0b2018-09-14 04:57:29 -06001766 def testExpandSize(self):
1767 """Test an expanding entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001768 data, _, map_data, _ = self._DoReadFileDtb('088_expand_size.dts',
Simon Glassba64a0b2018-09-14 04:57:29 -06001769 map=True)
Simon Glassc6c10e72019-05-17 22:00:46 -06001770 expect = (tools.GetBytes(ord('a'), 8) + U_BOOT_DATA +
1771 MRC_DATA + tools.GetBytes(ord('b'), 1) + U_BOOT_DATA +
1772 tools.GetBytes(ord('c'), 8) + U_BOOT_DATA +
1773 tools.GetBytes(ord('d'), 8))
Simon Glassba64a0b2018-09-14 04:57:29 -06001774 self.assertEqual(expect, data)
1775 self.assertEqual('''ImagePos Offset Size Name
177600000000 00000000 00000028 main-section
177700000000 00000000 00000008 fill
177800000008 00000008 00000004 u-boot
17790000000c 0000000c 00000004 section
17800000000c 00000000 00000003 intel-mrc
178100000010 00000010 00000004 u-boot2
178200000014 00000014 0000000c section2
178300000014 00000000 00000008 fill
17840000001c 00000008 00000004 u-boot
178500000020 00000020 00000008 fill2
1786''', map_data)
1787
1788 def testExpandSizeBad(self):
1789 """Test an expanding entry which fails to provide contents"""
Simon Glass163ed6c2018-09-14 04:57:36 -06001790 with test_util.capture_sys_output() as (stdout, stderr):
1791 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001792 self._DoReadFileDtb('089_expand_size_bad.dts', map=True)
Simon Glassba64a0b2018-09-14 04:57:29 -06001793 self.assertIn("Node '/binman/_testing': Cannot obtain contents when "
1794 'expanding entry', str(e.exception))
1795
Simon Glasse0e5df92018-09-14 04:57:31 -06001796 def testHash(self):
1797 """Test hashing of the contents of an entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001798 _, _, _, out_dtb_fname = self._DoReadFileDtb('090_hash.dts',
Simon Glasse0e5df92018-09-14 04:57:31 -06001799 use_real_dtb=True, update_dtb=True)
1800 dtb = fdt.Fdt(out_dtb_fname)
1801 dtb.Scan()
1802 hash_node = dtb.GetNode('/binman/u-boot/hash').props['value']
1803 m = hashlib.sha256()
1804 m.update(U_BOOT_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001805 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glasse0e5df92018-09-14 04:57:31 -06001806
1807 def testHashNoAlgo(self):
1808 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001809 self._DoReadFileDtb('091_hash_no_algo.dts', update_dtb=True)
Simon Glasse0e5df92018-09-14 04:57:31 -06001810 self.assertIn("Node \'/binman/u-boot\': Missing \'algo\' property for "
1811 'hash node', str(e.exception))
1812
1813 def testHashBadAlgo(self):
1814 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001815 self._DoReadFileDtb('092_hash_bad_algo.dts', update_dtb=True)
Simon Glasse0e5df92018-09-14 04:57:31 -06001816 self.assertIn("Node '/binman/u-boot': Unknown hash algorithm",
1817 str(e.exception))
1818
1819 def testHashSection(self):
1820 """Test hashing of the contents of an entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001821 _, _, _, out_dtb_fname = self._DoReadFileDtb('099_hash_section.dts',
Simon Glasse0e5df92018-09-14 04:57:31 -06001822 use_real_dtb=True, update_dtb=True)
1823 dtb = fdt.Fdt(out_dtb_fname)
1824 dtb.Scan()
1825 hash_node = dtb.GetNode('/binman/section/hash').props['value']
1826 m = hashlib.sha256()
1827 m.update(U_BOOT_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001828 m.update(tools.GetBytes(ord('a'), 16))
1829 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glasse0e5df92018-09-14 04:57:31 -06001830
Simon Glassf0253632018-09-14 04:57:32 -06001831 def testPackUBootTplMicrocode(self):
1832 """Test that x86 microcode can be handled correctly in TPL
1833
1834 We expect to see the following in the image, in order:
1835 u-boot-tpl-nodtb.bin with a microcode pointer inserted at the correct
1836 place
1837 u-boot-tpl.dtb with the microcode removed
1838 the microcode
1839 """
Simon Glass2090f1e2019-08-24 07:23:00 -06001840 self._SetupTplElf('u_boot_ucode_ptr')
Simon Glass741f2d62018-10-01 12:22:30 -06001841 first, pos_and_size = self._RunMicrocodeTest('093_x86_tpl_ucode.dts',
Simon Glassf0253632018-09-14 04:57:32 -06001842 U_BOOT_TPL_NODTB_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001843 self.assertEqual(b'tplnodtb with microc' + pos_and_size +
1844 b'ter somewhere in here', first)
Simon Glassf0253632018-09-14 04:57:32 -06001845
Simon Glassf8f8df62018-09-14 04:57:34 -06001846 def testFmapX86(self):
1847 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001848 data = self._DoReadFile('094_fmap_x86.dts')
Simon Glassf8f8df62018-09-14 04:57:34 -06001849 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glassc6c10e72019-05-17 22:00:46 -06001850 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('a'), 32 - 7)
Simon Glassf8f8df62018-09-14 04:57:34 -06001851 self.assertEqual(expected, data[:32])
1852 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
1853
1854 self.assertEqual(0x100, fhdr.image_size)
1855
1856 self.assertEqual(0, fentries[0].offset)
1857 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001858 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001859
1860 self.assertEqual(4, fentries[1].offset)
1861 self.assertEqual(3, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001862 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001863
1864 self.assertEqual(32, fentries[2].offset)
1865 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1866 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001867 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001868
1869 def testFmapX86Section(self):
1870 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001871 data = self._DoReadFile('095_fmap_x86_section.dts')
Simon Glassc6c10e72019-05-17 22:00:46 -06001872 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('b'), 32 - 7)
Simon Glassf8f8df62018-09-14 04:57:34 -06001873 self.assertEqual(expected, data[:32])
1874 fhdr, fentries = fmap_util.DecodeFmap(data[36:])
1875
1876 self.assertEqual(0x100, fhdr.image_size)
1877
1878 self.assertEqual(0, fentries[0].offset)
1879 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001880 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001881
1882 self.assertEqual(4, fentries[1].offset)
1883 self.assertEqual(3, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001884 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001885
1886 self.assertEqual(36, fentries[2].offset)
1887 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1888 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001889 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001890
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001891 def testElf(self):
1892 """Basic test of ELF entries"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001893 self._SetupSplElf()
Simon Glass2090f1e2019-08-24 07:23:00 -06001894 self._SetupTplElf()
Simon Glass53e22bf2019-08-24 07:22:53 -06001895 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001896 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass741f2d62018-10-01 12:22:30 -06001897 data = self._DoReadFile('096_elf.dts')
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001898
Simon Glass093d1682019-07-08 13:18:25 -06001899 def testElfStrip(self):
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001900 """Basic test of ELF entries"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001901 self._SetupSplElf()
Simon Glass53e22bf2019-08-24 07:22:53 -06001902 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001903 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass741f2d62018-10-01 12:22:30 -06001904 data = self._DoReadFile('097_elf_strip.dts')
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001905
Simon Glass163ed6c2018-09-14 04:57:36 -06001906 def testPackOverlapMap(self):
1907 """Test that overlapping regions are detected"""
1908 with test_util.capture_sys_output() as (stdout, stderr):
1909 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001910 self._DoTestFile('014_pack_overlap.dts', map=True)
Simon Glass163ed6c2018-09-14 04:57:36 -06001911 map_fname = tools.GetOutputFilename('image.map')
1912 self.assertEqual("Wrote map file '%s' to show errors\n" % map_fname,
1913 stdout.getvalue())
1914
1915 # We should not get an inmage, but there should be a map file
1916 self.assertFalse(os.path.exists(tools.GetOutputFilename('image.bin')))
1917 self.assertTrue(os.path.exists(map_fname))
Simon Glasseb546ac2019-05-17 22:00:51 -06001918 map_data = tools.ReadFile(map_fname, binary=False)
Simon Glass163ed6c2018-09-14 04:57:36 -06001919 self.assertEqual('''ImagePos Offset Size Name
1920<none> 00000000 00000007 main-section
1921<none> 00000000 00000004 u-boot
1922<none> 00000003 00000004 u-boot-align
1923''', map_data)
1924
Simon Glass093d1682019-07-08 13:18:25 -06001925 def testPackRefCode(self):
Simon Glass3ae192c2018-10-01 12:22:31 -06001926 """Test that an image with an Intel Reference code binary works"""
1927 data = self._DoReadFile('100_intel_refcode.dts')
1928 self.assertEqual(REFCODE_DATA, data[:len(REFCODE_DATA)])
1929
Simon Glass9481c802019-04-25 21:58:39 -06001930 def testSectionOffset(self):
1931 """Tests use of a section with an offset"""
1932 data, _, map_data, _ = self._DoReadFileDtb('101_sections_offset.dts',
1933 map=True)
1934 self.assertEqual('''ImagePos Offset Size Name
193500000000 00000000 00000038 main-section
193600000004 00000004 00000010 section@0
193700000004 00000000 00000004 u-boot
193800000018 00000018 00000010 section@1
193900000018 00000000 00000004 u-boot
19400000002c 0000002c 00000004 section@2
19410000002c 00000000 00000004 u-boot
1942''', map_data)
1943 self.assertEqual(data,
Simon Glasse6d85ff2019-05-14 15:53:47 -06001944 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1945 tools.GetBytes(0x21, 12) +
1946 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1947 tools.GetBytes(0x61, 12) +
1948 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1949 tools.GetBytes(0x26, 8))
Simon Glass9481c802019-04-25 21:58:39 -06001950
Simon Glassac62fba2019-07-08 13:18:53 -06001951 def testCbfsRaw(self):
1952 """Test base handling of a Coreboot Filesystem (CBFS)
1953
1954 The exact contents of the CBFS is verified by similar tests in
1955 cbfs_util_test.py. The tests here merely check that the files added to
1956 the CBFS can be found in the final image.
1957 """
1958 data = self._DoReadFile('102_cbfs_raw.dts')
1959 size = 0xb0
1960
1961 cbfs = cbfs_util.CbfsReader(data)
1962 self.assertEqual(size, cbfs.rom_size)
1963
1964 self.assertIn('u-boot-dtb', cbfs.files)
1965 cfile = cbfs.files['u-boot-dtb']
1966 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
1967
1968 def testCbfsArch(self):
1969 """Test on non-x86 architecture"""
1970 data = self._DoReadFile('103_cbfs_raw_ppc.dts')
1971 size = 0x100
1972
1973 cbfs = cbfs_util.CbfsReader(data)
1974 self.assertEqual(size, cbfs.rom_size)
1975
1976 self.assertIn('u-boot-dtb', cbfs.files)
1977 cfile = cbfs.files['u-boot-dtb']
1978 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
1979
1980 def testCbfsStage(self):
1981 """Tests handling of a Coreboot Filesystem (CBFS)"""
1982 if not elf.ELF_TOOLS:
1983 self.skipTest('Python elftools not available')
1984 elf_fname = os.path.join(self._indir, 'cbfs-stage.elf')
1985 elf.MakeElf(elf_fname, U_BOOT_DATA, U_BOOT_DTB_DATA)
1986 size = 0xb0
1987
1988 data = self._DoReadFile('104_cbfs_stage.dts')
1989 cbfs = cbfs_util.CbfsReader(data)
1990 self.assertEqual(size, cbfs.rom_size)
1991
1992 self.assertIn('u-boot', cbfs.files)
1993 cfile = cbfs.files['u-boot']
1994 self.assertEqual(U_BOOT_DATA + U_BOOT_DTB_DATA, cfile.data)
1995
1996 def testCbfsRawCompress(self):
1997 """Test handling of compressing raw files"""
1998 self._CheckLz4()
1999 data = self._DoReadFile('105_cbfs_raw_compress.dts')
2000 size = 0x140
2001
2002 cbfs = cbfs_util.CbfsReader(data)
2003 self.assertIn('u-boot', cbfs.files)
2004 cfile = cbfs.files['u-boot']
2005 self.assertEqual(COMPRESS_DATA, cfile.data)
2006
2007 def testCbfsBadArch(self):
2008 """Test handling of a bad architecture"""
2009 with self.assertRaises(ValueError) as e:
2010 self._DoReadFile('106_cbfs_bad_arch.dts')
2011 self.assertIn("Invalid architecture 'bad-arch'", str(e.exception))
2012
2013 def testCbfsNoSize(self):
2014 """Test handling of a missing size property"""
2015 with self.assertRaises(ValueError) as e:
2016 self._DoReadFile('107_cbfs_no_size.dts')
2017 self.assertIn('entry must have a size property', str(e.exception))
2018
2019 def testCbfsNoCOntents(self):
2020 """Test handling of a CBFS entry which does not provide contentsy"""
2021 with self.assertRaises(ValueError) as e:
2022 self._DoReadFile('108_cbfs_no_contents.dts')
2023 self.assertIn('Could not complete processing of contents',
2024 str(e.exception))
2025
2026 def testCbfsBadCompress(self):
2027 """Test handling of a bad architecture"""
2028 with self.assertRaises(ValueError) as e:
2029 self._DoReadFile('109_cbfs_bad_compress.dts')
2030 self.assertIn("Invalid compression in 'u-boot': 'invalid-algo'",
2031 str(e.exception))
2032
2033 def testCbfsNamedEntries(self):
2034 """Test handling of named entries"""
2035 data = self._DoReadFile('110_cbfs_name.dts')
2036
2037 cbfs = cbfs_util.CbfsReader(data)
2038 self.assertIn('FRED', cbfs.files)
2039 cfile1 = cbfs.files['FRED']
2040 self.assertEqual(U_BOOT_DATA, cfile1.data)
2041
2042 self.assertIn('hello', cbfs.files)
2043 cfile2 = cbfs.files['hello']
2044 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2045
Simon Glassc5ac1382019-07-08 13:18:54 -06002046 def _SetupIfwi(self, fname):
2047 """Set up to run an IFWI test
2048
2049 Args:
2050 fname: Filename of input file to provide (fitimage.bin or ifwi.bin)
2051 """
2052 self._SetupSplElf()
Simon Glass2090f1e2019-08-24 07:23:00 -06002053 self._SetupTplElf()
Simon Glassc5ac1382019-07-08 13:18:54 -06002054
2055 # Intel Integrated Firmware Image (IFWI) file
2056 with gzip.open(self.TestFile('%s.gz' % fname), 'rb') as fd:
2057 data = fd.read()
2058 TestFunctional._MakeInputFile(fname,data)
2059
2060 def _CheckIfwi(self, data):
2061 """Check that an image with an IFWI contains the correct output
2062
2063 Args:
2064 data: Conents of output file
2065 """
2066 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
2067 if data[:0x1000] != expected_desc:
2068 self.fail('Expected descriptor binary at start of image')
2069
2070 # We expect to find the TPL wil in subpart IBBP entry IBBL
2071 image_fname = tools.GetOutputFilename('image.bin')
2072 tpl_fname = tools.GetOutputFilename('tpl.out')
2073 tools.RunIfwiTool(image_fname, tools.CMD_EXTRACT, fname=tpl_fname,
2074 subpart='IBBP', entry_name='IBBL')
2075
2076 tpl_data = tools.ReadFile(tpl_fname)
Simon Glasse95be632019-08-24 07:22:51 -06002077 self.assertEqual(U_BOOT_TPL_DATA, tpl_data[:len(U_BOOT_TPL_DATA)])
Simon Glassc5ac1382019-07-08 13:18:54 -06002078
2079 def testPackX86RomIfwi(self):
2080 """Test that an x86 ROM with Integrated Firmware Image can be created"""
2081 self._SetupIfwi('fitimage.bin')
Simon Glass9255f3c2019-08-24 07:23:01 -06002082 data = self._DoReadFile('111_x86_rom_ifwi.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002083 self._CheckIfwi(data)
2084
2085 def testPackX86RomIfwiNoDesc(self):
2086 """Test that an x86 ROM with IFWI can be created from an ifwi.bin file"""
2087 self._SetupIfwi('ifwi.bin')
Simon Glass9255f3c2019-08-24 07:23:01 -06002088 data = self._DoReadFile('112_x86_rom_ifwi_nodesc.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002089 self._CheckIfwi(data)
2090
2091 def testPackX86RomIfwiNoData(self):
2092 """Test that an x86 ROM with IFWI handles missing data"""
2093 self._SetupIfwi('ifwi.bin')
2094 with self.assertRaises(ValueError) as e:
Simon Glass9255f3c2019-08-24 07:23:01 -06002095 data = self._DoReadFile('113_x86_rom_ifwi_nodata.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002096 self.assertIn('Could not complete processing of contents',
2097 str(e.exception))
Simon Glass53af22a2018-07-17 13:25:32 -06002098
Simon Glasse073d4e2019-07-08 13:18:56 -06002099 def testCbfsOffset(self):
2100 """Test a CBFS with files at particular offsets
2101
2102 Like all CFBS tests, this is just checking the logic that calls
2103 cbfs_util. See cbfs_util_test for fully tests (e.g. test_cbfs_offset()).
2104 """
2105 data = self._DoReadFile('114_cbfs_offset.dts')
2106 size = 0x200
2107
2108 cbfs = cbfs_util.CbfsReader(data)
2109 self.assertEqual(size, cbfs.rom_size)
2110
2111 self.assertIn('u-boot', cbfs.files)
2112 cfile = cbfs.files['u-boot']
2113 self.assertEqual(U_BOOT_DATA, cfile.data)
2114 self.assertEqual(0x40, cfile.cbfs_offset)
2115
2116 self.assertIn('u-boot-dtb', cbfs.files)
2117 cfile2 = cbfs.files['u-boot-dtb']
2118 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2119 self.assertEqual(0x140, cfile2.cbfs_offset)
2120
Simon Glass086cec92019-07-08 14:25:27 -06002121 def testFdtmap(self):
2122 """Test an FDT map can be inserted in the image"""
2123 data = self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2124 fdtmap_data = data[len(U_BOOT_DATA):]
2125 magic = fdtmap_data[:8]
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002126 self.assertEqual(b'_FDTMAP_', magic)
Simon Glass086cec92019-07-08 14:25:27 -06002127 self.assertEqual(tools.GetBytes(0, 8), fdtmap_data[8:16])
2128
2129 fdt_data = fdtmap_data[16:]
2130 dtb = fdt.Fdt.FromData(fdt_data)
2131 dtb.Scan()
Simon Glass6ccbfcd2019-07-20 12:23:47 -06002132 props = self._GetPropTree(dtb, BASE_DTB_PROPS, prefix='/')
Simon Glass086cec92019-07-08 14:25:27 -06002133 self.assertEqual({
2134 'image-pos': 0,
2135 'offset': 0,
2136 'u-boot:offset': 0,
2137 'u-boot:size': len(U_BOOT_DATA),
2138 'u-boot:image-pos': 0,
2139 'fdtmap:image-pos': 4,
2140 'fdtmap:offset': 4,
2141 'fdtmap:size': len(fdtmap_data),
2142 'size': len(data),
2143 }, props)
2144
2145 def testFdtmapNoMatch(self):
2146 """Check handling of an FDT map when the section cannot be found"""
2147 self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2148
2149 # Mangle the section name, which should cause a mismatch between the
2150 # correct FDT path and the one expected by the section
2151 image = control.images['image']
Simon Glasscf228942019-07-08 14:25:28 -06002152 image._node.path += '-suffix'
Simon Glass086cec92019-07-08 14:25:27 -06002153 entries = image.GetEntries()
2154 fdtmap = entries['fdtmap']
2155 with self.assertRaises(ValueError) as e:
2156 fdtmap._GetFdtmap()
2157 self.assertIn("Cannot locate node for path '/binman-suffix'",
2158 str(e.exception))
2159
Simon Glasscf228942019-07-08 14:25:28 -06002160 def testFdtmapHeader(self):
2161 """Test an FDT map and image header can be inserted in the image"""
2162 data = self.data = self._DoReadFileRealDtb('116_fdtmap_hdr.dts')
2163 fdtmap_pos = len(U_BOOT_DATA)
2164 fdtmap_data = data[fdtmap_pos:]
2165 fdt_data = fdtmap_data[16:]
2166 dtb = fdt.Fdt.FromData(fdt_data)
2167 fdt_size = dtb.GetFdtObj().totalsize()
2168 hdr_data = data[-8:]
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002169 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscf228942019-07-08 14:25:28 -06002170 offset = struct.unpack('<I', hdr_data[4:])[0] & 0xffffffff
2171 self.assertEqual(fdtmap_pos - 0x400, offset - (1 << 32))
2172
2173 def testFdtmapHeaderStart(self):
2174 """Test an image header can be inserted at the image start"""
2175 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
2176 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2177 hdr_data = data[:8]
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002178 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscf228942019-07-08 14:25:28 -06002179 offset = struct.unpack('<I', hdr_data[4:])[0]
2180 self.assertEqual(fdtmap_pos, offset)
2181
2182 def testFdtmapHeaderPos(self):
2183 """Test an image header can be inserted at a chosen position"""
2184 data = self.data = self._DoReadFileRealDtb('118_fdtmap_hdr_pos.dts')
2185 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2186 hdr_data = data[0x80:0x88]
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002187 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscf228942019-07-08 14:25:28 -06002188 offset = struct.unpack('<I', hdr_data[4:])[0]
2189 self.assertEqual(fdtmap_pos, offset)
2190
2191 def testHeaderMissingFdtmap(self):
2192 """Test an image header requires an fdtmap"""
2193 with self.assertRaises(ValueError) as e:
2194 self.data = self._DoReadFileRealDtb('119_fdtmap_hdr_missing.dts')
2195 self.assertIn("'image_header' section must have an 'fdtmap' sibling",
2196 str(e.exception))
2197
2198 def testHeaderNoLocation(self):
2199 """Test an image header with a no specified location is detected"""
2200 with self.assertRaises(ValueError) as e:
2201 self.data = self._DoReadFileRealDtb('120_hdr_no_location.dts')
2202 self.assertIn("Invalid location 'None', expected 'start' or 'end'",
2203 str(e.exception))
2204
Simon Glassc52c9e72019-07-08 14:25:37 -06002205 def testEntryExpand(self):
2206 """Test expanding an entry after it is packed"""
2207 data = self._DoReadFile('121_entry_expand.dts')
Simon Glass79d3c582019-07-20 12:23:57 -06002208 self.assertEqual(b'aaa', data[:3])
2209 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2210 self.assertEqual(b'aaa', data[-3:])
Simon Glassc52c9e72019-07-08 14:25:37 -06002211
2212 def testEntryExpandBad(self):
2213 """Test expanding an entry after it is packed, twice"""
2214 with self.assertRaises(ValueError) as e:
2215 self._DoReadFile('122_entry_expand_twice.dts')
Simon Glass61ec04f2019-07-20 12:23:58 -06002216 self.assertIn("Image '/binman': Entries changed size after packing",
Simon Glassc52c9e72019-07-08 14:25:37 -06002217 str(e.exception))
2218
2219 def testEntryExpandSection(self):
2220 """Test expanding an entry within a section after it is packed"""
2221 data = self._DoReadFile('123_entry_expand_section.dts')
Simon Glass79d3c582019-07-20 12:23:57 -06002222 self.assertEqual(b'aaa', data[:3])
2223 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2224 self.assertEqual(b'aaa', data[-3:])
Simon Glassc52c9e72019-07-08 14:25:37 -06002225
Simon Glass6c223fd2019-07-08 14:25:38 -06002226 def testCompressDtb(self):
2227 """Test that compress of device-tree files is supported"""
2228 self._CheckLz4()
2229 data = self.data = self._DoReadFileRealDtb('124_compress_dtb.dts')
2230 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
2231 comp_data = data[len(U_BOOT_DATA):]
2232 orig = self._decompress(comp_data)
2233 dtb = fdt.Fdt.FromData(orig)
2234 dtb.Scan()
2235 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
2236 expected = {
2237 'u-boot:size': len(U_BOOT_DATA),
2238 'u-boot-dtb:uncomp-size': len(orig),
2239 'u-boot-dtb:size': len(comp_data),
2240 'size': len(data),
2241 }
2242 self.assertEqual(expected, props)
2243
Simon Glass69f7cb32019-07-08 14:25:41 -06002244 def testCbfsUpdateFdt(self):
2245 """Test that we can update the device tree with CBFS offset/size info"""
2246 self._CheckLz4()
2247 data, _, _, out_dtb_fname = self._DoReadFileDtb('125_cbfs_update.dts',
2248 update_dtb=True)
2249 dtb = fdt.Fdt(out_dtb_fname)
2250 dtb.Scan()
Simon Glass6ccbfcd2019-07-20 12:23:47 -06002251 props = self._GetPropTree(dtb, BASE_DTB_PROPS + ['uncomp-size'])
Simon Glass69f7cb32019-07-08 14:25:41 -06002252 del props['cbfs/u-boot:size']
2253 self.assertEqual({
2254 'offset': 0,
2255 'size': len(data),
2256 'image-pos': 0,
2257 'cbfs:offset': 0,
2258 'cbfs:size': len(data),
2259 'cbfs:image-pos': 0,
2260 'cbfs/u-boot:offset': 0x38,
2261 'cbfs/u-boot:uncomp-size': len(U_BOOT_DATA),
2262 'cbfs/u-boot:image-pos': 0x38,
2263 'cbfs/u-boot-dtb:offset': 0xb8,
2264 'cbfs/u-boot-dtb:size': len(U_BOOT_DATA),
2265 'cbfs/u-boot-dtb:image-pos': 0xb8,
2266 }, props)
2267
Simon Glass8a1ad062019-07-08 14:25:42 -06002268 def testCbfsBadType(self):
2269 """Test an image header with a no specified location is detected"""
2270 with self.assertRaises(ValueError) as e:
2271 self._DoReadFile('126_cbfs_bad_type.dts')
2272 self.assertIn("Unknown cbfs-type 'badtype'", str(e.exception))
2273
Simon Glass41b8ba02019-07-08 14:25:43 -06002274 def testList(self):
2275 """Test listing the files in an image"""
2276 self._CheckLz4()
2277 data = self._DoReadFile('127_list.dts')
2278 image = control.images['image']
2279 entries = image.BuildEntryList()
2280 self.assertEqual(7, len(entries))
2281
2282 ent = entries[0]
2283 self.assertEqual(0, ent.indent)
2284 self.assertEqual('main-section', ent.name)
2285 self.assertEqual('section', ent.etype)
2286 self.assertEqual(len(data), ent.size)
2287 self.assertEqual(0, ent.image_pos)
2288 self.assertEqual(None, ent.uncomp_size)
Simon Glass8beb11e2019-07-08 14:25:47 -06002289 self.assertEqual(0, ent.offset)
Simon Glass41b8ba02019-07-08 14:25:43 -06002290
2291 ent = entries[1]
2292 self.assertEqual(1, ent.indent)
2293 self.assertEqual('u-boot', ent.name)
2294 self.assertEqual('u-boot', ent.etype)
2295 self.assertEqual(len(U_BOOT_DATA), ent.size)
2296 self.assertEqual(0, ent.image_pos)
2297 self.assertEqual(None, ent.uncomp_size)
2298 self.assertEqual(0, ent.offset)
2299
2300 ent = entries[2]
2301 self.assertEqual(1, ent.indent)
2302 self.assertEqual('section', ent.name)
2303 self.assertEqual('section', ent.etype)
2304 section_size = ent.size
2305 self.assertEqual(0x100, ent.image_pos)
2306 self.assertEqual(None, ent.uncomp_size)
Simon Glass8beb11e2019-07-08 14:25:47 -06002307 self.assertEqual(0x100, ent.offset)
Simon Glass41b8ba02019-07-08 14:25:43 -06002308
2309 ent = entries[3]
2310 self.assertEqual(2, ent.indent)
2311 self.assertEqual('cbfs', ent.name)
2312 self.assertEqual('cbfs', ent.etype)
2313 self.assertEqual(0x400, ent.size)
2314 self.assertEqual(0x100, ent.image_pos)
2315 self.assertEqual(None, ent.uncomp_size)
2316 self.assertEqual(0, ent.offset)
2317
2318 ent = entries[4]
2319 self.assertEqual(3, ent.indent)
2320 self.assertEqual('u-boot', ent.name)
2321 self.assertEqual('u-boot', ent.etype)
2322 self.assertEqual(len(U_BOOT_DATA), ent.size)
2323 self.assertEqual(0x138, ent.image_pos)
2324 self.assertEqual(None, ent.uncomp_size)
2325 self.assertEqual(0x38, ent.offset)
2326
2327 ent = entries[5]
2328 self.assertEqual(3, ent.indent)
2329 self.assertEqual('u-boot-dtb', ent.name)
2330 self.assertEqual('text', ent.etype)
2331 self.assertGreater(len(COMPRESS_DATA), ent.size)
2332 self.assertEqual(0x178, ent.image_pos)
2333 self.assertEqual(len(COMPRESS_DATA), ent.uncomp_size)
2334 self.assertEqual(0x78, ent.offset)
2335
2336 ent = entries[6]
2337 self.assertEqual(2, ent.indent)
2338 self.assertEqual('u-boot-dtb', ent.name)
2339 self.assertEqual('u-boot-dtb', ent.etype)
2340 self.assertEqual(0x500, ent.image_pos)
2341 self.assertEqual(len(U_BOOT_DTB_DATA), ent.uncomp_size)
2342 dtb_size = ent.size
2343 # Compressing this data expands it since headers are added
2344 self.assertGreater(dtb_size, len(U_BOOT_DTB_DATA))
2345 self.assertEqual(0x400, ent.offset)
2346
2347 self.assertEqual(len(data), 0x100 + section_size)
2348 self.assertEqual(section_size, 0x400 + dtb_size)
2349
Simon Glasse1925fa2019-07-08 14:25:44 -06002350 def testFindFdtmap(self):
2351 """Test locating an FDT map in an image"""
2352 self._CheckLz4()
2353 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2354 image = control.images['image']
2355 entries = image.GetEntries()
2356 entry = entries['fdtmap']
2357 self.assertEqual(entry.image_pos, fdtmap.LocateFdtmap(data))
2358
2359 def testFindFdtmapMissing(self):
2360 """Test failing to locate an FDP map"""
2361 data = self._DoReadFile('005_simple.dts')
2362 self.assertEqual(None, fdtmap.LocateFdtmap(data))
2363
Simon Glass2d260032019-07-08 14:25:45 -06002364 def testFindImageHeader(self):
2365 """Test locating a image header"""
2366 self._CheckLz4()
Simon Glassffded752019-07-08 14:25:46 -06002367 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
Simon Glass2d260032019-07-08 14:25:45 -06002368 image = control.images['image']
2369 entries = image.GetEntries()
2370 entry = entries['fdtmap']
2371 # The header should point to the FDT map
2372 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2373
2374 def testFindImageHeaderStart(self):
2375 """Test locating a image header located at the start of an image"""
Simon Glassffded752019-07-08 14:25:46 -06002376 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
Simon Glass2d260032019-07-08 14:25:45 -06002377 image = control.images['image']
2378 entries = image.GetEntries()
2379 entry = entries['fdtmap']
2380 # The header should point to the FDT map
2381 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2382
2383 def testFindImageHeaderMissing(self):
2384 """Test failing to locate an image header"""
2385 data = self._DoReadFile('005_simple.dts')
2386 self.assertEqual(None, image_header.LocateHeaderOffset(data))
2387
Simon Glassffded752019-07-08 14:25:46 -06002388 def testReadImage(self):
2389 """Test reading an image and accessing its FDT map"""
2390 self._CheckLz4()
2391 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2392 image_fname = tools.GetOutputFilename('image.bin')
2393 orig_image = control.images['image']
2394 image = Image.FromFile(image_fname)
2395 self.assertEqual(orig_image.GetEntries().keys(),
2396 image.GetEntries().keys())
2397
2398 orig_entry = orig_image.GetEntries()['fdtmap']
2399 entry = image.GetEntries()['fdtmap']
2400 self.assertEquals(orig_entry.offset, entry.offset)
2401 self.assertEquals(orig_entry.size, entry.size)
2402 self.assertEquals(orig_entry.image_pos, entry.image_pos)
2403
2404 def testReadImageNoHeader(self):
2405 """Test accessing an image's FDT map without an image header"""
2406 self._CheckLz4()
2407 data = self._DoReadFileRealDtb('129_decode_image_nohdr.dts')
2408 image_fname = tools.GetOutputFilename('image.bin')
2409 image = Image.FromFile(image_fname)
2410 self.assertTrue(isinstance(image, Image))
Simon Glass10f9d002019-07-20 12:23:50 -06002411 self.assertEqual('image', image.image_name[-5:])
Simon Glassffded752019-07-08 14:25:46 -06002412
2413 def testReadImageFail(self):
2414 """Test failing to read an image image's FDT map"""
2415 self._DoReadFile('005_simple.dts')
2416 image_fname = tools.GetOutputFilename('image.bin')
2417 with self.assertRaises(ValueError) as e:
2418 image = Image.FromFile(image_fname)
2419 self.assertIn("Cannot find FDT map in image", str(e.exception))
Simon Glasse073d4e2019-07-08 13:18:56 -06002420
Simon Glass61f564d2019-07-08 14:25:48 -06002421 def testListCmd(self):
2422 """Test listing the files in an image using an Fdtmap"""
2423 self._CheckLz4()
2424 data = self._DoReadFileRealDtb('130_list_fdtmap.dts')
2425
2426 # lz4 compression size differs depending on the version
2427 image = control.images['image']
2428 entries = image.GetEntries()
2429 section_size = entries['section'].size
2430 fdt_size = entries['section'].GetEntries()['u-boot-dtb'].size
2431 fdtmap_offset = entries['fdtmap'].offset
2432
Simon Glassf86a7362019-07-20 12:24:10 -06002433 try:
2434 tmpdir, updated_fname = self._SetupImageInTmpdir()
2435 with test_util.capture_sys_output() as (stdout, stderr):
2436 self._DoBinman('ls', '-i', updated_fname)
2437 finally:
2438 shutil.rmtree(tmpdir)
Simon Glass61f564d2019-07-08 14:25:48 -06002439 lines = stdout.getvalue().splitlines()
2440 expected = [
2441'Name Image-pos Size Entry-type Offset Uncomp-size',
2442'----------------------------------------------------------------------',
2443'main-section 0 c00 section 0',
2444' u-boot 0 4 u-boot 0',
2445' section 100 %x section 100' % section_size,
2446' cbfs 100 400 cbfs 0',
2447' u-boot 138 4 u-boot 38',
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002448' u-boot-dtb 180 105 u-boot-dtb 80 3c9',
Simon Glass61f564d2019-07-08 14:25:48 -06002449' u-boot-dtb 500 %x u-boot-dtb 400 3c9' % fdt_size,
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002450' fdtmap %x 3bd fdtmap %x' %
Simon Glass61f564d2019-07-08 14:25:48 -06002451 (fdtmap_offset, fdtmap_offset),
2452' image-header bf8 8 image-header bf8',
2453 ]
2454 self.assertEqual(expected, lines)
2455
2456 def testListCmdFail(self):
2457 """Test failing to list an image"""
2458 self._DoReadFile('005_simple.dts')
Simon Glassf86a7362019-07-20 12:24:10 -06002459 try:
2460 tmpdir, updated_fname = self._SetupImageInTmpdir()
2461 with self.assertRaises(ValueError) as e:
2462 self._DoBinman('ls', '-i', updated_fname)
2463 finally:
2464 shutil.rmtree(tmpdir)
Simon Glass61f564d2019-07-08 14:25:48 -06002465 self.assertIn("Cannot find FDT map in image", str(e.exception))
2466
2467 def _RunListCmd(self, paths, expected):
2468 """List out entries and check the result
2469
2470 Args:
2471 paths: List of paths to pass to the list command
2472 expected: Expected list of filenames to be returned, in order
2473 """
2474 self._CheckLz4()
2475 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2476 image_fname = tools.GetOutputFilename('image.bin')
2477 image = Image.FromFile(image_fname)
2478 lines = image.GetListEntries(paths)[1]
2479 files = [line[0].strip() for line in lines[1:]]
2480 self.assertEqual(expected, files)
2481
2482 def testListCmdSection(self):
2483 """Test listing the files in a section"""
2484 self._RunListCmd(['section'],
2485 ['section', 'cbfs', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2486
2487 def testListCmdFile(self):
2488 """Test listing a particular file"""
2489 self._RunListCmd(['*u-boot-dtb'], ['u-boot-dtb', 'u-boot-dtb'])
2490
2491 def testListCmdWildcard(self):
2492 """Test listing a wildcarded file"""
2493 self._RunListCmd(['*boot*'],
2494 ['u-boot', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2495
2496 def testListCmdWildcardMulti(self):
2497 """Test listing a wildcarded file"""
2498 self._RunListCmd(['*cb*', '*head*'],
2499 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2500
2501 def testListCmdEmpty(self):
2502 """Test listing a wildcarded file"""
2503 self._RunListCmd(['nothing'], [])
2504
2505 def testListCmdPath(self):
2506 """Test listing the files in a sub-entry of a section"""
2507 self._RunListCmd(['section/cbfs'], ['cbfs', 'u-boot', 'u-boot-dtb'])
2508
Simon Glassf667e452019-07-08 14:25:50 -06002509 def _RunExtractCmd(self, entry_name, decomp=True):
2510 """Extract an entry from an image
2511
2512 Args:
2513 entry_name: Entry name to extract
2514 decomp: True to decompress the data if compressed, False to leave
2515 it in its raw uncompressed format
2516
2517 Returns:
2518 data from entry
2519 """
2520 self._CheckLz4()
2521 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2522 image_fname = tools.GetOutputFilename('image.bin')
2523 return control.ReadEntry(image_fname, entry_name, decomp)
2524
2525 def testExtractSimple(self):
2526 """Test extracting a single file"""
2527 data = self._RunExtractCmd('u-boot')
2528 self.assertEqual(U_BOOT_DATA, data)
2529
Simon Glass71ce0ba2019-07-08 14:25:52 -06002530 def testExtractSection(self):
2531 """Test extracting the files in a section"""
2532 data = self._RunExtractCmd('section')
2533 cbfs_data = data[:0x400]
2534 cbfs = cbfs_util.CbfsReader(cbfs_data)
Simon Glassb6ee0cf2019-10-31 07:43:03 -06002535 self.assertEqual(['u-boot', 'u-boot-dtb', ''], list(cbfs.files.keys()))
Simon Glass71ce0ba2019-07-08 14:25:52 -06002536 dtb_data = data[0x400:]
2537 dtb = self._decompress(dtb_data)
2538 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2539
2540 def testExtractCompressed(self):
2541 """Test extracting compressed data"""
2542 data = self._RunExtractCmd('section/u-boot-dtb')
2543 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2544
2545 def testExtractRaw(self):
2546 """Test extracting compressed data without decompressing it"""
2547 data = self._RunExtractCmd('section/u-boot-dtb', decomp=False)
2548 dtb = self._decompress(data)
2549 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2550
2551 def testExtractCbfs(self):
2552 """Test extracting CBFS data"""
2553 data = self._RunExtractCmd('section/cbfs/u-boot')
2554 self.assertEqual(U_BOOT_DATA, data)
2555
2556 def testExtractCbfsCompressed(self):
2557 """Test extracting CBFS compressed data"""
2558 data = self._RunExtractCmd('section/cbfs/u-boot-dtb')
2559 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2560
2561 def testExtractCbfsRaw(self):
2562 """Test extracting CBFS compressed data without decompressing it"""
2563 data = self._RunExtractCmd('section/cbfs/u-boot-dtb', decomp=False)
Simon Glasseb0f4a42019-07-20 12:24:06 -06002564 dtb = tools.Decompress(data, 'lzma', with_header=False)
Simon Glass71ce0ba2019-07-08 14:25:52 -06002565 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2566
Simon Glassf667e452019-07-08 14:25:50 -06002567 def testExtractBadEntry(self):
2568 """Test extracting a bad section path"""
2569 with self.assertRaises(ValueError) as e:
2570 self._RunExtractCmd('section/does-not-exist')
2571 self.assertIn("Entry 'does-not-exist' not found in '/section'",
2572 str(e.exception))
2573
2574 def testExtractMissingFile(self):
2575 """Test extracting file that does not exist"""
2576 with self.assertRaises(IOError) as e:
2577 control.ReadEntry('missing-file', 'name')
2578
2579 def testExtractBadFile(self):
2580 """Test extracting an invalid file"""
2581 fname = os.path.join(self._indir, 'badfile')
2582 tools.WriteFile(fname, b'')
2583 with self.assertRaises(ValueError) as e:
2584 control.ReadEntry(fname, 'name')
2585
Simon Glass71ce0ba2019-07-08 14:25:52 -06002586 def testExtractCmd(self):
2587 """Test extracting a file fron an image on the command line"""
2588 self._CheckLz4()
2589 self._DoReadFileRealDtb('130_list_fdtmap.dts')
Simon Glass71ce0ba2019-07-08 14:25:52 -06002590 fname = os.path.join(self._indir, 'output.extact')
Simon Glassf86a7362019-07-20 12:24:10 -06002591 try:
2592 tmpdir, updated_fname = self._SetupImageInTmpdir()
2593 with test_util.capture_sys_output() as (stdout, stderr):
2594 self._DoBinman('extract', '-i', updated_fname, 'u-boot',
2595 '-f', fname)
2596 finally:
2597 shutil.rmtree(tmpdir)
Simon Glass71ce0ba2019-07-08 14:25:52 -06002598 data = tools.ReadFile(fname)
2599 self.assertEqual(U_BOOT_DATA, data)
2600
2601 def testExtractOneEntry(self):
2602 """Test extracting a single entry fron an image """
2603 self._CheckLz4()
2604 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2605 image_fname = tools.GetOutputFilename('image.bin')
2606 fname = os.path.join(self._indir, 'output.extact')
2607 control.ExtractEntries(image_fname, fname, None, ['u-boot'])
2608 data = tools.ReadFile(fname)
2609 self.assertEqual(U_BOOT_DATA, data)
2610
2611 def _CheckExtractOutput(self, decomp):
2612 """Helper to test file output with and without decompression
2613
2614 Args:
2615 decomp: True to decompress entry data, False to output it raw
2616 """
2617 def _CheckPresent(entry_path, expect_data, expect_size=None):
2618 """Check and remove expected file
2619
2620 This checks the data/size of a file and removes the file both from
2621 the outfiles set and from the output directory. Once all files are
2622 processed, both the set and directory should be empty.
2623
2624 Args:
2625 entry_path: Entry path
2626 expect_data: Data to expect in file, or None to skip check
2627 expect_size: Size of data to expect in file, or None to skip
2628 """
2629 path = os.path.join(outdir, entry_path)
2630 data = tools.ReadFile(path)
2631 os.remove(path)
2632 if expect_data:
2633 self.assertEqual(expect_data, data)
2634 elif expect_size:
2635 self.assertEqual(expect_size, len(data))
2636 outfiles.remove(path)
2637
2638 def _CheckDirPresent(name):
2639 """Remove expected directory
2640
2641 This gives an error if the directory does not exist as expected
2642
2643 Args:
2644 name: Name of directory to remove
2645 """
2646 path = os.path.join(outdir, name)
2647 os.rmdir(path)
2648
2649 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2650 image_fname = tools.GetOutputFilename('image.bin')
2651 outdir = os.path.join(self._indir, 'extract')
2652 einfos = control.ExtractEntries(image_fname, None, outdir, [], decomp)
2653
2654 # Create a set of all file that were output (should be 9)
2655 outfiles = set()
2656 for root, dirs, files in os.walk(outdir):
2657 outfiles |= set([os.path.join(root, fname) for fname in files])
2658 self.assertEqual(9, len(outfiles))
2659 self.assertEqual(9, len(einfos))
2660
2661 image = control.images['image']
2662 entries = image.GetEntries()
2663
2664 # Check the 9 files in various ways
2665 section = entries['section']
2666 section_entries = section.GetEntries()
2667 cbfs_entries = section_entries['cbfs'].GetEntries()
2668 _CheckPresent('u-boot', U_BOOT_DATA)
2669 _CheckPresent('section/cbfs/u-boot', U_BOOT_DATA)
2670 dtb_len = EXTRACT_DTB_SIZE
2671 if not decomp:
2672 dtb_len = cbfs_entries['u-boot-dtb'].size
2673 _CheckPresent('section/cbfs/u-boot-dtb', None, dtb_len)
2674 if not decomp:
2675 dtb_len = section_entries['u-boot-dtb'].size
2676 _CheckPresent('section/u-boot-dtb', None, dtb_len)
2677
2678 fdtmap = entries['fdtmap']
2679 _CheckPresent('fdtmap', fdtmap.data)
2680 hdr = entries['image-header']
2681 _CheckPresent('image-header', hdr.data)
2682
2683 _CheckPresent('section/root', section.data)
2684 cbfs = section_entries['cbfs']
2685 _CheckPresent('section/cbfs/root', cbfs.data)
2686 data = tools.ReadFile(image_fname)
2687 _CheckPresent('root', data)
2688
2689 # There should be no files left. Remove all the directories to check.
2690 # If there are any files/dirs remaining, one of these checks will fail.
2691 self.assertEqual(0, len(outfiles))
2692 _CheckDirPresent('section/cbfs')
2693 _CheckDirPresent('section')
2694 _CheckDirPresent('')
2695 self.assertFalse(os.path.exists(outdir))
2696
2697 def testExtractAllEntries(self):
2698 """Test extracting all entries"""
2699 self._CheckLz4()
2700 self._CheckExtractOutput(decomp=True)
2701
2702 def testExtractAllEntriesRaw(self):
2703 """Test extracting all entries without decompressing them"""
2704 self._CheckLz4()
2705 self._CheckExtractOutput(decomp=False)
2706
2707 def testExtractSelectedEntries(self):
2708 """Test extracting some entries"""
2709 self._CheckLz4()
2710 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2711 image_fname = tools.GetOutputFilename('image.bin')
2712 outdir = os.path.join(self._indir, 'extract')
2713 einfos = control.ExtractEntries(image_fname, None, outdir,
2714 ['*cb*', '*head*'])
2715
2716 # File output is tested by testExtractAllEntries(), so just check that
2717 # the expected entries are selected
2718 names = [einfo.name for einfo in einfos]
2719 self.assertEqual(names,
2720 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2721
2722 def testExtractNoEntryPaths(self):
2723 """Test extracting some entries"""
2724 self._CheckLz4()
2725 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2726 image_fname = tools.GetOutputFilename('image.bin')
2727 with self.assertRaises(ValueError) as e:
2728 control.ExtractEntries(image_fname, 'fname', None, [])
Simon Glassbb5edc12019-07-20 12:24:14 -06002729 self.assertIn('Must specify an entry path to write with -f',
Simon Glass71ce0ba2019-07-08 14:25:52 -06002730 str(e.exception))
2731
2732 def testExtractTooManyEntryPaths(self):
2733 """Test extracting some entries"""
2734 self._CheckLz4()
2735 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2736 image_fname = tools.GetOutputFilename('image.bin')
2737 with self.assertRaises(ValueError) as e:
2738 control.ExtractEntries(image_fname, 'fname', None, ['a', 'b'])
Simon Glassbb5edc12019-07-20 12:24:14 -06002739 self.assertIn('Must specify exactly one entry path to write with -f',
Simon Glass71ce0ba2019-07-08 14:25:52 -06002740 str(e.exception))
2741
Simon Glasse2705fa2019-07-08 14:25:53 -06002742 def testPackAlignSection(self):
2743 """Test that sections can have alignment"""
2744 self._DoReadFile('131_pack_align_section.dts')
2745
2746 self.assertIn('image', control.images)
2747 image = control.images['image']
2748 entries = image.GetEntries()
2749 self.assertEqual(3, len(entries))
2750
2751 # First u-boot
2752 self.assertIn('u-boot', entries)
2753 entry = entries['u-boot']
2754 self.assertEqual(0, entry.offset)
2755 self.assertEqual(0, entry.image_pos)
2756 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2757 self.assertEqual(len(U_BOOT_DATA), entry.size)
2758
2759 # Section0
2760 self.assertIn('section0', entries)
2761 section0 = entries['section0']
2762 self.assertEqual(0x10, section0.offset)
2763 self.assertEqual(0x10, section0.image_pos)
2764 self.assertEqual(len(U_BOOT_DATA), section0.size)
2765
2766 # Second u-boot
2767 section_entries = section0.GetEntries()
2768 self.assertIn('u-boot', section_entries)
2769 entry = section_entries['u-boot']
2770 self.assertEqual(0, entry.offset)
2771 self.assertEqual(0x10, entry.image_pos)
2772 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2773 self.assertEqual(len(U_BOOT_DATA), entry.size)
2774
2775 # Section1
2776 self.assertIn('section1', entries)
2777 section1 = entries['section1']
2778 self.assertEqual(0x14, section1.offset)
2779 self.assertEqual(0x14, section1.image_pos)
2780 self.assertEqual(0x20, section1.size)
2781
2782 # Second u-boot
2783 section_entries = section1.GetEntries()
2784 self.assertIn('u-boot', section_entries)
2785 entry = section_entries['u-boot']
2786 self.assertEqual(0, entry.offset)
2787 self.assertEqual(0x14, entry.image_pos)
2788 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2789 self.assertEqual(len(U_BOOT_DATA), entry.size)
2790
2791 # Section2
2792 self.assertIn('section2', section_entries)
2793 section2 = section_entries['section2']
2794 self.assertEqual(0x4, section2.offset)
2795 self.assertEqual(0x18, section2.image_pos)
2796 self.assertEqual(4, section2.size)
2797
2798 # Third u-boot
2799 section_entries = section2.GetEntries()
2800 self.assertIn('u-boot', section_entries)
2801 entry = section_entries['u-boot']
2802 self.assertEqual(0, entry.offset)
2803 self.assertEqual(0x18, entry.image_pos)
2804 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2805 self.assertEqual(len(U_BOOT_DATA), entry.size)
2806
Simon Glass51014aa2019-07-20 12:23:56 -06002807 def _RunReplaceCmd(self, entry_name, data, decomp=True, allow_resize=True,
2808 dts='132_replace.dts'):
Simon Glass10f9d002019-07-20 12:23:50 -06002809 """Replace an entry in an image
2810
2811 This writes the entry data to update it, then opens the updated file and
2812 returns the value that it now finds there.
2813
2814 Args:
2815 entry_name: Entry name to replace
2816 data: Data to replace it with
2817 decomp: True to compress the data if needed, False if data is
2818 already compressed so should be used as is
Simon Glass51014aa2019-07-20 12:23:56 -06002819 allow_resize: True to allow entries to change size, False to raise
2820 an exception
Simon Glass10f9d002019-07-20 12:23:50 -06002821
2822 Returns:
2823 Tuple:
2824 data from entry
2825 data from fdtmap (excluding header)
Simon Glass51014aa2019-07-20 12:23:56 -06002826 Image object that was modified
Simon Glass10f9d002019-07-20 12:23:50 -06002827 """
Simon Glass51014aa2019-07-20 12:23:56 -06002828 dtb_data = self._DoReadFileDtb(dts, use_real_dtb=True,
Simon Glass10f9d002019-07-20 12:23:50 -06002829 update_dtb=True)[1]
2830
2831 self.assertIn('image', control.images)
2832 image = control.images['image']
2833 entries = image.GetEntries()
2834 orig_dtb_data = entries['u-boot-dtb'].data
2835 orig_fdtmap_data = entries['fdtmap'].data
2836
2837 image_fname = tools.GetOutputFilename('image.bin')
2838 updated_fname = tools.GetOutputFilename('image-updated.bin')
2839 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
Simon Glass51014aa2019-07-20 12:23:56 -06002840 image = control.WriteEntry(updated_fname, entry_name, data, decomp,
2841 allow_resize)
Simon Glass10f9d002019-07-20 12:23:50 -06002842 data = control.ReadEntry(updated_fname, entry_name, decomp)
2843
Simon Glass51014aa2019-07-20 12:23:56 -06002844 # The DT data should not change unless resized:
2845 if not allow_resize:
2846 new_dtb_data = entries['u-boot-dtb'].data
2847 self.assertEqual(new_dtb_data, orig_dtb_data)
2848 new_fdtmap_data = entries['fdtmap'].data
2849 self.assertEqual(new_fdtmap_data, orig_fdtmap_data)
Simon Glass10f9d002019-07-20 12:23:50 -06002850
Simon Glass51014aa2019-07-20 12:23:56 -06002851 return data, orig_fdtmap_data[fdtmap.FDTMAP_HDR_LEN:], image
Simon Glass10f9d002019-07-20 12:23:50 -06002852
2853 def testReplaceSimple(self):
2854 """Test replacing a single file"""
2855 expected = b'x' * len(U_BOOT_DATA)
Simon Glass51014aa2019-07-20 12:23:56 -06002856 data, expected_fdtmap, _ = self._RunReplaceCmd('u-boot', expected,
2857 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002858 self.assertEqual(expected, data)
2859
2860 # Test that the state looks right. There should be an FDT for the fdtmap
2861 # that we jsut read back in, and it should match what we find in the
2862 # 'control' tables. Checking for an FDT that does not exist should
2863 # return None.
2864 path, fdtmap = state.GetFdtContents('fdtmap')
Simon Glass51014aa2019-07-20 12:23:56 -06002865 self.assertIsNotNone(path)
Simon Glass10f9d002019-07-20 12:23:50 -06002866 self.assertEqual(expected_fdtmap, fdtmap)
2867
2868 dtb = state.GetFdtForEtype('fdtmap')
2869 self.assertEqual(dtb.GetContents(), fdtmap)
2870
2871 missing_path, missing_fdtmap = state.GetFdtContents('missing')
2872 self.assertIsNone(missing_path)
2873 self.assertIsNone(missing_fdtmap)
2874
2875 missing_dtb = state.GetFdtForEtype('missing')
2876 self.assertIsNone(missing_dtb)
2877
2878 self.assertEqual('/binman', state.fdt_path_prefix)
2879
2880 def testReplaceResizeFail(self):
2881 """Test replacing a file by something larger"""
2882 expected = U_BOOT_DATA + b'x'
2883 with self.assertRaises(ValueError) as e:
Simon Glass51014aa2019-07-20 12:23:56 -06002884 self._RunReplaceCmd('u-boot', expected, allow_resize=False,
2885 dts='139_replace_repack.dts')
Simon Glass10f9d002019-07-20 12:23:50 -06002886 self.assertIn("Node '/u-boot': Entry data size does not match, but resize is disabled",
2887 str(e.exception))
2888
2889 def testReplaceMulti(self):
2890 """Test replacing entry data where multiple images are generated"""
2891 data = self._DoReadFileDtb('133_replace_multi.dts', use_real_dtb=True,
2892 update_dtb=True)[0]
2893 expected = b'x' * len(U_BOOT_DATA)
2894 updated_fname = tools.GetOutputFilename('image-updated.bin')
2895 tools.WriteFile(updated_fname, data)
2896 entry_name = 'u-boot'
Simon Glass51014aa2019-07-20 12:23:56 -06002897 control.WriteEntry(updated_fname, entry_name, expected,
2898 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002899 data = control.ReadEntry(updated_fname, entry_name)
2900 self.assertEqual(expected, data)
2901
2902 # Check the state looks right.
2903 self.assertEqual('/binman/image', state.fdt_path_prefix)
2904
2905 # Now check we can write the first image
2906 image_fname = tools.GetOutputFilename('first-image.bin')
2907 updated_fname = tools.GetOutputFilename('first-updated.bin')
2908 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
2909 entry_name = 'u-boot'
Simon Glass51014aa2019-07-20 12:23:56 -06002910 control.WriteEntry(updated_fname, entry_name, expected,
2911 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002912 data = control.ReadEntry(updated_fname, entry_name)
2913 self.assertEqual(expected, data)
2914
2915 # Check the state looks right.
2916 self.assertEqual('/binman/first-image', state.fdt_path_prefix)
Simon Glass8beb11e2019-07-08 14:25:47 -06002917
Simon Glass12bb1a92019-07-20 12:23:51 -06002918 def testUpdateFdtAllRepack(self):
2919 """Test that all device trees are updated with offset/size info"""
2920 data = self._DoReadFileRealDtb('134_fdt_update_all_repack.dts')
2921 SECTION_SIZE = 0x300
2922 DTB_SIZE = 602
2923 FDTMAP_SIZE = 608
2924 base_expected = {
2925 'offset': 0,
2926 'size': SECTION_SIZE + DTB_SIZE * 2 + FDTMAP_SIZE,
2927 'image-pos': 0,
2928 'section:offset': 0,
2929 'section:size': SECTION_SIZE,
2930 'section:image-pos': 0,
2931 'section/u-boot-dtb:offset': 4,
2932 'section/u-boot-dtb:size': 636,
2933 'section/u-boot-dtb:image-pos': 4,
2934 'u-boot-spl-dtb:offset': SECTION_SIZE,
2935 'u-boot-spl-dtb:size': DTB_SIZE,
2936 'u-boot-spl-dtb:image-pos': SECTION_SIZE,
2937 'u-boot-tpl-dtb:offset': SECTION_SIZE + DTB_SIZE,
2938 'u-boot-tpl-dtb:image-pos': SECTION_SIZE + DTB_SIZE,
2939 'u-boot-tpl-dtb:size': DTB_SIZE,
2940 'fdtmap:offset': SECTION_SIZE + DTB_SIZE * 2,
2941 'fdtmap:size': FDTMAP_SIZE,
2942 'fdtmap:image-pos': SECTION_SIZE + DTB_SIZE * 2,
2943 }
2944 main_expected = {
2945 'section:orig-size': SECTION_SIZE,
2946 'section/u-boot-dtb:orig-offset': 4,
2947 }
2948
2949 # We expect three device-tree files in the output, with the first one
2950 # within a fixed-size section.
2951 # Read them in sequence. We look for an 'spl' property in the SPL tree,
2952 # and 'tpl' in the TPL tree, to make sure they are distinct from the
2953 # main U-Boot tree. All three should have the same positions and offset
2954 # except that the main tree should include the main_expected properties
2955 start = 4
2956 for item in ['', 'spl', 'tpl', None]:
2957 if item is None:
2958 start += 16 # Move past fdtmap header
2959 dtb = fdt.Fdt.FromData(data[start:])
2960 dtb.Scan()
2961 props = self._GetPropTree(dtb,
2962 BASE_DTB_PROPS + REPACK_DTB_PROPS + ['spl', 'tpl'],
2963 prefix='/' if item is None else '/binman/')
2964 expected = dict(base_expected)
2965 if item:
2966 expected[item] = 0
2967 else:
2968 # Main DTB and fdtdec should include the 'orig-' properties
2969 expected.update(main_expected)
2970 # Helpful for debugging:
2971 #for prop in sorted(props):
2972 #print('prop %s %s %s' % (prop, props[prop], expected[prop]))
2973 self.assertEqual(expected, props)
2974 if item == '':
2975 start = SECTION_SIZE
2976 else:
2977 start += dtb._fdt_obj.totalsize()
2978
Simon Glasseba1f0c2019-07-20 12:23:55 -06002979 def testFdtmapHeaderMiddle(self):
2980 """Test an FDT map in the middle of an image when it should be at end"""
2981 with self.assertRaises(ValueError) as e:
2982 self._DoReadFileRealDtb('135_fdtmap_hdr_middle.dts')
2983 self.assertIn("Invalid sibling order 'middle' for image-header: Must be at 'end' to match location",
2984 str(e.exception))
2985
2986 def testFdtmapHeaderStartBad(self):
2987 """Test an FDT map in middle of an image when it should be at start"""
2988 with self.assertRaises(ValueError) as e:
2989 self._DoReadFileRealDtb('136_fdtmap_hdr_startbad.dts')
2990 self.assertIn("Invalid sibling order 'end' for image-header: Must be at 'start' to match location",
2991 str(e.exception))
2992
2993 def testFdtmapHeaderEndBad(self):
2994 """Test an FDT map at the start of an image when it should be at end"""
2995 with self.assertRaises(ValueError) as e:
2996 self._DoReadFileRealDtb('137_fdtmap_hdr_endbad.dts')
2997 self.assertIn("Invalid sibling order 'start' for image-header: Must be at 'end' to match location",
2998 str(e.exception))
2999
3000 def testFdtmapHeaderNoSize(self):
3001 """Test an image header at the end of an image with undefined size"""
3002 self._DoReadFileRealDtb('138_fdtmap_hdr_nosize.dts')
3003
Simon Glass51014aa2019-07-20 12:23:56 -06003004 def testReplaceResize(self):
3005 """Test replacing a single file in an entry with a larger file"""
3006 expected = U_BOOT_DATA + b'x'
3007 data, _, image = self._RunReplaceCmd('u-boot', expected,
3008 dts='139_replace_repack.dts')
3009 self.assertEqual(expected, data)
3010
3011 entries = image.GetEntries()
3012 dtb_data = entries['u-boot-dtb'].data
3013 dtb = fdt.Fdt.FromData(dtb_data)
3014 dtb.Scan()
3015
3016 # The u-boot section should now be larger in the dtb
3017 node = dtb.GetNode('/binman/u-boot')
3018 self.assertEqual(len(expected), fdt_util.GetInt(node, 'size'))
3019
3020 # Same for the fdtmap
3021 fdata = entries['fdtmap'].data
3022 fdtb = fdt.Fdt.FromData(fdata[fdtmap.FDTMAP_HDR_LEN:])
3023 fdtb.Scan()
3024 fnode = fdtb.GetNode('/u-boot')
3025 self.assertEqual(len(expected), fdt_util.GetInt(fnode, 'size'))
3026
3027 def testReplaceResizeNoRepack(self):
3028 """Test replacing an entry with a larger file when not allowed"""
3029 expected = U_BOOT_DATA + b'x'
3030 with self.assertRaises(ValueError) as e:
3031 self._RunReplaceCmd('u-boot', expected)
3032 self.assertIn('Entry data size does not match, but allow-repack is not present for this image',
3033 str(e.exception))
3034
Simon Glass61ec04f2019-07-20 12:23:58 -06003035 def testEntryShrink(self):
3036 """Test contracting an entry after it is packed"""
3037 try:
3038 state.SetAllowEntryContraction(True)
3039 data = self._DoReadFileDtb('140_entry_shrink.dts',
3040 update_dtb=True)[0]
3041 finally:
3042 state.SetAllowEntryContraction(False)
3043 self.assertEqual(b'a', data[:1])
3044 self.assertEqual(U_BOOT_DATA, data[1:1 + len(U_BOOT_DATA)])
3045 self.assertEqual(b'a', data[-1:])
3046
3047 def testEntryShrinkFail(self):
3048 """Test not being allowed to contract an entry after it is packed"""
3049 data = self._DoReadFileDtb('140_entry_shrink.dts', update_dtb=True)[0]
3050
3051 # In this case there is a spare byte at the end of the data. The size of
3052 # the contents is only 1 byte but we still have the size before it
3053 # shrunk.
3054 self.assertEqual(b'a\0', data[:2])
3055 self.assertEqual(U_BOOT_DATA, data[2:2 + len(U_BOOT_DATA)])
3056 self.assertEqual(b'a\0', data[-2:])
3057
Simon Glass27145fd2019-07-20 12:24:01 -06003058 def testDescriptorOffset(self):
3059 """Test that the Intel descriptor is always placed at at the start"""
3060 data = self._DoReadFileDtb('141_descriptor_offset.dts')
3061 image = control.images['image']
3062 entries = image.GetEntries()
3063 desc = entries['intel-descriptor']
3064 self.assertEqual(0xff800000, desc.offset);
3065 self.assertEqual(0xff800000, desc.image_pos);
3066
Simon Glasseb0f4a42019-07-20 12:24:06 -06003067 def testReplaceCbfs(self):
3068 """Test replacing a single file in CBFS without changing the size"""
3069 self._CheckLz4()
3070 expected = b'x' * len(U_BOOT_DATA)
3071 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3072 updated_fname = tools.GetOutputFilename('image-updated.bin')
3073 tools.WriteFile(updated_fname, data)
3074 entry_name = 'section/cbfs/u-boot'
3075 control.WriteEntry(updated_fname, entry_name, expected,
3076 allow_resize=True)
3077 data = control.ReadEntry(updated_fname, entry_name)
3078 self.assertEqual(expected, data)
3079
3080 def testReplaceResizeCbfs(self):
3081 """Test replacing a single file in CBFS with one of a different size"""
3082 self._CheckLz4()
3083 expected = U_BOOT_DATA + b'x'
3084 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3085 updated_fname = tools.GetOutputFilename('image-updated.bin')
3086 tools.WriteFile(updated_fname, data)
3087 entry_name = 'section/cbfs/u-boot'
3088 control.WriteEntry(updated_fname, entry_name, expected,
3089 allow_resize=True)
3090 data = control.ReadEntry(updated_fname, entry_name)
3091 self.assertEqual(expected, data)
3092
Simon Glassa6cb9952019-07-20 12:24:15 -06003093 def _SetupForReplace(self):
3094 """Set up some files to use to replace entries
3095
3096 This generates an image, copies it to a new file, extracts all the files
3097 in it and updates some of them
3098
3099 Returns:
3100 List
3101 Image filename
3102 Output directory
3103 Expected values for updated entries, each a string
3104 """
3105 data = self._DoReadFileRealDtb('143_replace_all.dts')
3106
3107 updated_fname = tools.GetOutputFilename('image-updated.bin')
3108 tools.WriteFile(updated_fname, data)
3109
3110 outdir = os.path.join(self._indir, 'extract')
3111 einfos = control.ExtractEntries(updated_fname, None, outdir, [])
3112
3113 expected1 = b'x' + U_BOOT_DATA + b'y'
3114 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3115 tools.WriteFile(u_boot_fname1, expected1)
3116
3117 expected2 = b'a' + U_BOOT_DATA + b'b'
3118 u_boot_fname2 = os.path.join(outdir, 'u-boot2')
3119 tools.WriteFile(u_boot_fname2, expected2)
3120
3121 expected_text = b'not the same text'
3122 text_fname = os.path.join(outdir, 'text')
3123 tools.WriteFile(text_fname, expected_text)
3124
3125 dtb_fname = os.path.join(outdir, 'u-boot-dtb')
3126 dtb = fdt.FdtScan(dtb_fname)
3127 node = dtb.GetNode('/binman/text')
3128 node.AddString('my-property', 'the value')
3129 dtb.Sync(auto_resize=True)
3130 dtb.Flush()
3131
3132 return updated_fname, outdir, expected1, expected2, expected_text
3133
3134 def _CheckReplaceMultiple(self, entry_paths):
3135 """Handle replacing the contents of multiple entries
3136
3137 Args:
3138 entry_paths: List of entry paths to replace
3139
3140 Returns:
3141 List
3142 Dict of entries in the image:
3143 key: Entry name
3144 Value: Entry object
3145 Expected values for updated entries, each a string
3146 """
3147 updated_fname, outdir, expected1, expected2, expected_text = (
3148 self._SetupForReplace())
3149 control.ReplaceEntries(updated_fname, None, outdir, entry_paths)
3150
3151 image = Image.FromFile(updated_fname)
3152 image.LoadData()
3153 return image.GetEntries(), expected1, expected2, expected_text
3154
3155 def testReplaceAll(self):
3156 """Test replacing the contents of all entries"""
3157 entries, expected1, expected2, expected_text = (
3158 self._CheckReplaceMultiple([]))
3159 data = entries['u-boot'].data
3160 self.assertEqual(expected1, data)
3161
3162 data = entries['u-boot2'].data
3163 self.assertEqual(expected2, data)
3164
3165 data = entries['text'].data
3166 self.assertEqual(expected_text, data)
3167
3168 # Check that the device tree is updated
3169 data = entries['u-boot-dtb'].data
3170 dtb = fdt.Fdt.FromData(data)
3171 dtb.Scan()
3172 node = dtb.GetNode('/binman/text')
3173 self.assertEqual('the value', node.props['my-property'].value)
3174
3175 def testReplaceSome(self):
3176 """Test replacing the contents of a few entries"""
3177 entries, expected1, expected2, expected_text = (
3178 self._CheckReplaceMultiple(['u-boot2', 'text']))
3179
3180 # This one should not change
3181 data = entries['u-boot'].data
3182 self.assertEqual(U_BOOT_DATA, data)
3183
3184 data = entries['u-boot2'].data
3185 self.assertEqual(expected2, data)
3186
3187 data = entries['text'].data
3188 self.assertEqual(expected_text, data)
3189
3190 def testReplaceCmd(self):
3191 """Test replacing a file fron an image on the command line"""
3192 self._DoReadFileRealDtb('143_replace_all.dts')
3193
3194 try:
3195 tmpdir, updated_fname = self._SetupImageInTmpdir()
3196
3197 fname = os.path.join(tmpdir, 'update-u-boot.bin')
3198 expected = b'x' * len(U_BOOT_DATA)
3199 tools.WriteFile(fname, expected)
3200
3201 self._DoBinman('replace', '-i', updated_fname, 'u-boot', '-f', fname)
3202 data = tools.ReadFile(updated_fname)
3203 self.assertEqual(expected, data[:len(expected)])
3204 map_fname = os.path.join(tmpdir, 'image-updated.map')
3205 self.assertFalse(os.path.exists(map_fname))
3206 finally:
3207 shutil.rmtree(tmpdir)
3208
3209 def testReplaceCmdSome(self):
3210 """Test replacing some files fron an image on the command line"""
3211 updated_fname, outdir, expected1, expected2, expected_text = (
3212 self._SetupForReplace())
3213
3214 self._DoBinman('replace', '-i', updated_fname, '-I', outdir,
3215 'u-boot2', 'text')
3216
3217 tools.PrepareOutputDir(None)
3218 image = Image.FromFile(updated_fname)
3219 image.LoadData()
3220 entries = image.GetEntries()
3221
3222 # This one should not change
3223 data = entries['u-boot'].data
3224 self.assertEqual(U_BOOT_DATA, data)
3225
3226 data = entries['u-boot2'].data
3227 self.assertEqual(expected2, data)
3228
3229 data = entries['text'].data
3230 self.assertEqual(expected_text, data)
3231
3232 def testReplaceMissing(self):
3233 """Test replacing entries where the file is missing"""
3234 updated_fname, outdir, expected1, expected2, expected_text = (
3235 self._SetupForReplace())
3236
3237 # Remove one of the files, to generate a warning
3238 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3239 os.remove(u_boot_fname1)
3240
3241 with test_util.capture_sys_output() as (stdout, stderr):
3242 control.ReplaceEntries(updated_fname, None, outdir, [])
3243 self.assertIn("Skipping entry '/u-boot' from missing file",
Simon Glass38fdb4c2020-07-09 18:39:39 -06003244 stderr.getvalue())
Simon Glassa6cb9952019-07-20 12:24:15 -06003245
3246 def testReplaceCmdMap(self):
3247 """Test replacing a file fron an image on the command line"""
3248 self._DoReadFileRealDtb('143_replace_all.dts')
3249
3250 try:
3251 tmpdir, updated_fname = self._SetupImageInTmpdir()
3252
3253 fname = os.path.join(self._indir, 'update-u-boot.bin')
3254 expected = b'x' * len(U_BOOT_DATA)
3255 tools.WriteFile(fname, expected)
3256
3257 self._DoBinman('replace', '-i', updated_fname, 'u-boot',
3258 '-f', fname, '-m')
3259 map_fname = os.path.join(tmpdir, 'image-updated.map')
3260 self.assertTrue(os.path.exists(map_fname))
3261 finally:
3262 shutil.rmtree(tmpdir)
3263
3264 def testReplaceNoEntryPaths(self):
3265 """Test replacing an entry without an entry path"""
3266 self._DoReadFileRealDtb('143_replace_all.dts')
3267 image_fname = tools.GetOutputFilename('image.bin')
3268 with self.assertRaises(ValueError) as e:
3269 control.ReplaceEntries(image_fname, 'fname', None, [])
3270 self.assertIn('Must specify an entry path to read with -f',
3271 str(e.exception))
3272
3273 def testReplaceTooManyEntryPaths(self):
3274 """Test extracting some entries"""
3275 self._DoReadFileRealDtb('143_replace_all.dts')
3276 image_fname = tools.GetOutputFilename('image.bin')
3277 with self.assertRaises(ValueError) as e:
3278 control.ReplaceEntries(image_fname, 'fname', None, ['a', 'b'])
3279 self.assertIn('Must specify exactly one entry path to write with -f',
3280 str(e.exception))
3281
Simon Glass2250ee62019-08-24 07:22:48 -06003282 def testPackReset16(self):
3283 """Test that an image with an x86 reset16 region can be created"""
3284 data = self._DoReadFile('144_x86_reset16.dts')
3285 self.assertEqual(X86_RESET16_DATA, data[:len(X86_RESET16_DATA)])
3286
3287 def testPackReset16Spl(self):
3288 """Test that an image with an x86 reset16-spl region can be created"""
3289 data = self._DoReadFile('145_x86_reset16_spl.dts')
3290 self.assertEqual(X86_RESET16_SPL_DATA, data[:len(X86_RESET16_SPL_DATA)])
3291
3292 def testPackReset16Tpl(self):
3293 """Test that an image with an x86 reset16-tpl region can be created"""
3294 data = self._DoReadFile('146_x86_reset16_tpl.dts')
3295 self.assertEqual(X86_RESET16_TPL_DATA, data[:len(X86_RESET16_TPL_DATA)])
3296
Simon Glass5af12072019-08-24 07:22:50 -06003297 def testPackIntelFit(self):
3298 """Test that an image with an Intel FIT and pointer can be created"""
3299 data = self._DoReadFile('147_intel_fit.dts')
3300 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3301 fit = data[16:32];
3302 self.assertEqual(b'_FIT_ \x01\x00\x00\x00\x00\x01\x80}' , fit)
3303 ptr = struct.unpack('<i', data[0x40:0x44])[0]
3304
3305 image = control.images['image']
3306 entries = image.GetEntries()
3307 expected_ptr = entries['intel-fit'].image_pos - (1 << 32)
3308 self.assertEqual(expected_ptr, ptr)
3309
3310 def testPackIntelFitMissing(self):
3311 """Test detection of a FIT pointer with not FIT region"""
3312 with self.assertRaises(ValueError) as e:
3313 self._DoReadFile('148_intel_fit_missing.dts')
3314 self.assertIn("'intel-fit-ptr' section must have an 'intel-fit' sibling",
3315 str(e.exception))
3316
Simon Glass7c150132019-11-06 17:22:44 -07003317 def _CheckSymbolsTplSection(self, dts, expected_vals):
3318 data = self._DoReadFile(dts)
3319 sym_values = struct.pack('<LQLL', *expected_vals)
Simon Glass2090f1e2019-08-24 07:23:00 -06003320 upto1 = 4 + len(U_BOOT_SPL_DATA)
Simon Glassb87064c2019-08-24 07:23:05 -06003321 expected1 = tools.GetBytes(0xff, 4) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass2090f1e2019-08-24 07:23:00 -06003322 self.assertEqual(expected1, data[:upto1])
3323
3324 upto2 = upto1 + 1 + len(U_BOOT_SPL_DATA)
Simon Glassb87064c2019-08-24 07:23:05 -06003325 expected2 = tools.GetBytes(0xff, 1) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass2090f1e2019-08-24 07:23:00 -06003326 self.assertEqual(expected2, data[upto1:upto2])
3327
Simon Glasseb0086f2019-08-24 07:23:04 -06003328 upto3 = 0x34 + len(U_BOOT_DATA)
3329 expected3 = tools.GetBytes(0xff, 1) + U_BOOT_DATA
Simon Glass2090f1e2019-08-24 07:23:00 -06003330 self.assertEqual(expected3, data[upto2:upto3])
3331
Simon Glassb87064c2019-08-24 07:23:05 -06003332 expected4 = sym_values + U_BOOT_TPL_DATA[20:]
Simon Glass7c150132019-11-06 17:22:44 -07003333 self.assertEqual(expected4, data[upto3:upto3 + len(U_BOOT_TPL_DATA)])
3334
3335 def testSymbolsTplSection(self):
3336 """Test binman can assign symbols embedded in U-Boot TPL in a section"""
3337 self._SetupSplElf('u_boot_binman_syms')
3338 self._SetupTplElf('u_boot_binman_syms')
3339 self._CheckSymbolsTplSection('149_symbols_tpl.dts',
3340 [0x04, 0x1c, 0x10 + 0x34, 0x04])
3341
3342 def testSymbolsTplSectionX86(self):
3343 """Test binman can assign symbols in a section with end-at-4gb"""
3344 self._SetupSplElf('u_boot_binman_syms_x86')
3345 self._SetupTplElf('u_boot_binman_syms_x86')
3346 self._CheckSymbolsTplSection('155_symbols_tpl_x86.dts',
3347 [0xffffff04, 0xffffff1c, 0xffffff34,
3348 0x04])
Simon Glass2090f1e2019-08-24 07:23:00 -06003349
Simon Glassbf4d0e22019-08-24 07:23:03 -06003350 def testPackX86RomIfwiSectiom(self):
3351 """Test that a section can be placed in an IFWI region"""
3352 self._SetupIfwi('fitimage.bin')
3353 data = self._DoReadFile('151_x86_rom_ifwi_section.dts')
3354 self._CheckIfwi(data)
3355
Simon Glassea0fff92019-08-24 07:23:07 -06003356 def testPackFspM(self):
3357 """Test that an image with a FSP memory-init binary can be created"""
3358 data = self._DoReadFile('152_intel_fsp_m.dts')
3359 self.assertEqual(FSP_M_DATA, data[:len(FSP_M_DATA)])
3360
Simon Glassbc6a88f2019-10-20 21:31:35 -06003361 def testPackFspS(self):
3362 """Test that an image with a FSP silicon-init binary can be created"""
3363 data = self._DoReadFile('153_intel_fsp_s.dts')
3364 self.assertEqual(FSP_S_DATA, data[:len(FSP_S_DATA)])
Simon Glassea0fff92019-08-24 07:23:07 -06003365
Simon Glass998d1482019-10-20 21:31:36 -06003366 def testPackFspT(self):
3367 """Test that an image with a FSP temp-ram-init binary can be created"""
3368 data = self._DoReadFile('154_intel_fsp_t.dts')
3369 self.assertEqual(FSP_T_DATA, data[:len(FSP_T_DATA)])
3370
Simon Glass0dc706f2020-07-09 18:39:31 -06003371 def testMkimage(self):
3372 """Test using mkimage to build an image"""
3373 data = self._DoReadFile('156_mkimage.dts')
3374
3375 # Just check that the data appears in the file somewhere
3376 self.assertIn(U_BOOT_SPL_DATA, data)
3377
Simon Glassce867ad2020-07-09 18:39:36 -06003378 def testExtblob(self):
3379 """Test an image with an external blob"""
3380 data = self._DoReadFile('157_blob_ext.dts')
3381 self.assertEqual(REFCODE_DATA, data)
3382
3383 def testExtblobMissing(self):
3384 """Test an image with a missing external blob"""
3385 with self.assertRaises(ValueError) as e:
3386 self._DoReadFile('158_blob_ext_missing.dts')
3387 self.assertIn("Filename 'missing-file' not found in input path",
3388 str(e.exception))
3389
Simon Glass4f9f1052020-07-09 18:39:38 -06003390 def testExtblobMissingOk(self):
3391 """Test an image with an missing external blob that is allowed"""
Simon Glassb1cca952020-07-09 18:39:40 -06003392 with test_util.capture_sys_output() as (stdout, stderr):
3393 self._DoTestFile('158_blob_ext_missing.dts', allow_missing=True)
3394 err = stderr.getvalue()
3395 self.assertRegex(err, "Image 'main-section'.*missing.*: blob-ext")
3396
3397 def testExtblobMissingOkSect(self):
3398 """Test an image with an missing external blob that is allowed"""
3399 with test_util.capture_sys_output() as (stdout, stderr):
3400 self._DoTestFile('159_blob_ext_missing_sect.dts',
3401 allow_missing=True)
3402 err = stderr.getvalue()
3403 self.assertRegex(err, "Image 'main-section'.*missing.*: "
3404 "blob-ext blob-ext2")
Simon Glass4f9f1052020-07-09 18:39:38 -06003405
Simon Glass0ba4b3d2020-07-09 18:39:41 -06003406 def testPackX86RomMeMissingDesc(self):
3407 """Test that an missing Intel descriptor entry is allowed"""
3408 pathname = os.path.join(self._indir, 'descriptor.bin')
3409 os.remove(pathname)
3410 with test_util.capture_sys_output() as (stdout, stderr):
3411 self._DoTestFile('031_x86_rom_me.dts', allow_missing=True)
3412 err = stderr.getvalue()
3413 self.assertRegex(err,
3414 "Image 'main-section'.*missing.*: intel-descriptor")
3415
3416 def testPackX86RomMissingIfwi(self):
3417 """Test that an x86 ROM with Integrated Firmware Image can be created"""
3418 self._SetupIfwi('fitimage.bin')
3419 pathname = os.path.join(self._indir, 'fitimage.bin')
3420 os.remove(pathname)
3421 with test_util.capture_sys_output() as (stdout, stderr):
3422 self._DoTestFile('111_x86_rom_ifwi.dts', allow_missing=True)
3423 err = stderr.getvalue()
3424 self.assertRegex(err, "Image 'main-section'.*missing.*: intel-ifwi")
3425
Simon Glassb3295fd2020-07-09 18:39:42 -06003426 def testPackOverlap(self):
3427 """Test that zero-size overlapping regions are ignored"""
3428 self._DoTestFile('160_pack_overlap_zero.dts')
3429
Simon Glassfdc34362020-07-09 18:39:45 -06003430 def testSimpleFit(self):
3431 """Test an image with a FIT inside"""
3432 data = self._DoReadFile('161_fit.dts')
3433 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3434 self.assertEqual(U_BOOT_NODTB_DATA, data[-len(U_BOOT_NODTB_DATA):])
3435 fit_data = data[len(U_BOOT_DATA):-len(U_BOOT_NODTB_DATA)]
3436
3437 # The data should be inside the FIT
3438 dtb = fdt.Fdt.FromData(fit_data)
3439 dtb.Scan()
3440 fnode = dtb.GetNode('/images/kernel')
3441 self.assertIn('data', fnode.props)
3442
3443 fname = os.path.join(self._indir, 'fit_data.fit')
3444 tools.WriteFile(fname, fit_data)
3445 out = tools.Run('dumpimage', '-l', fname)
3446
3447 # Check a few features to make sure the plumbing works. We don't need
3448 # to test the operation of mkimage or dumpimage here. First convert the
3449 # output into a dict where the keys are the fields printed by dumpimage
3450 # and the values are a list of values for each field
3451 lines = out.splitlines()
3452
3453 # Converts "Compression: gzip compressed" into two groups:
3454 # 'Compression' and 'gzip compressed'
3455 re_line = re.compile(r'^ *([^:]*)(?:: *(.*))?$')
3456 vals = collections.defaultdict(list)
3457 for line in lines:
3458 mat = re_line.match(line)
3459 vals[mat.group(1)].append(mat.group(2))
3460
3461 self.assertEquals('FIT description: test-desc', lines[0])
3462 self.assertIn('Created:', lines[1])
3463 self.assertIn('Image 0 (kernel)', vals)
3464 self.assertIn('Hash value', vals)
3465 data_sizes = vals.get('Data Size')
3466 self.assertIsNotNone(data_sizes)
3467 self.assertEqual(2, len(data_sizes))
3468 # Format is "4 Bytes = 0.00 KiB = 0.00 MiB" so take the first word
3469 self.assertEqual(len(U_BOOT_DATA), int(data_sizes[0].split()[0]))
3470 self.assertEqual(len(U_BOOT_SPL_DTB_DATA), int(data_sizes[1].split()[0]))
3471
3472 def testFitExternal(self):
3473 """Test an image with an FIT"""
3474 data = self._DoReadFile('162_fit_external.dts')
3475 fit_data = data[len(U_BOOT_DATA):-2] # _testing is 2 bytes
3476
3477 # The data should be outside the FIT
3478 dtb = fdt.Fdt.FromData(fit_data)
3479 dtb.Scan()
3480 fnode = dtb.GetNode('/images/kernel')
3481 self.assertNotIn('data', fnode.props)
Simon Glass12bb1a92019-07-20 12:23:51 -06003482
Simon Glass9fc60b42017-11-12 21:52:22 -07003483if __name__ == "__main__":
3484 unittest.main()