Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # ex:ts=4:sw=4:sts=4:et |
| 2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- |
| 3 | # |
| 4 | # Copyright (c) 2013, Intel Corporation. |
| 5 | # All rights reserved. |
| 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License version 2 as |
| 9 | # published by the Free Software Foundation. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License along |
| 17 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 19 | # |
| 20 | # DESCRIPTION |
| 21 | |
| 22 | # This module implements the image creation engine used by 'wic' to |
| 23 | # create images. The engine parses through the OpenEmbedded kickstart |
| 24 | # (wks) file specified and generates images that can then be directly |
| 25 | # written onto media. |
| 26 | # |
| 27 | # AUTHORS |
| 28 | # Tom Zanussi <tom.zanussi (at] linux.intel.com> |
| 29 | # |
| 30 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 31 | import logging |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | import os |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 33 | import tempfile |
| 34 | import json |
| 35 | import subprocess |
| 36 | |
| 37 | from collections import namedtuple, OrderedDict |
| 38 | from distutils.spawn import find_executable |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 39 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 40 | from wic import WicError |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 41 | from wic.filemap import sparse_copy |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 42 | from wic.pluginbase import PluginMgr |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 43 | from wic.misc import get_bitbake_var, exec_cmd |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 44 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 45 | logger = logging.getLogger('wic') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 46 | |
| 47 | def verify_build_env(): |
| 48 | """ |
| 49 | Verify that the build environment is sane. |
| 50 | |
| 51 | Returns True if it is, false otherwise |
| 52 | """ |
| 53 | if not os.environ.get("BUILDDIR"): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 54 | raise WicError("BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?)") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 55 | |
| 56 | return True |
| 57 | |
| 58 | |
| 59 | CANNED_IMAGE_DIR = "lib/wic/canned-wks" # relative to scripts |
| 60 | SCRIPTS_CANNED_IMAGE_DIR = "scripts/" + CANNED_IMAGE_DIR |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 61 | WIC_DIR = "wic" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 62 | |
| 63 | def build_canned_image_list(path): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 64 | layers_path = get_bitbake_var("BBLAYERS") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 65 | canned_wks_layer_dirs = [] |
| 66 | |
| 67 | if layers_path is not None: |
| 68 | for layer_path in layers_path.split(): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 69 | for wks_path in (WIC_DIR, SCRIPTS_CANNED_IMAGE_DIR): |
| 70 | cpath = os.path.join(layer_path, wks_path) |
| 71 | if os.path.isdir(cpath): |
| 72 | canned_wks_layer_dirs.append(cpath) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 73 | |
| 74 | cpath = os.path.join(path, CANNED_IMAGE_DIR) |
| 75 | canned_wks_layer_dirs.append(cpath) |
| 76 | |
| 77 | return canned_wks_layer_dirs |
| 78 | |
| 79 | def find_canned_image(scripts_path, wks_file): |
| 80 | """ |
| 81 | Find a .wks file with the given name in the canned files dir. |
| 82 | |
| 83 | Return False if not found |
| 84 | """ |
| 85 | layers_canned_wks_dir = build_canned_image_list(scripts_path) |
| 86 | |
| 87 | for canned_wks_dir in layers_canned_wks_dir: |
| 88 | for root, dirs, files in os.walk(canned_wks_dir): |
| 89 | for fname in files: |
| 90 | if fname.endswith("~") or fname.endswith("#"): |
| 91 | continue |
| 92 | if fname.endswith(".wks") and wks_file + ".wks" == fname: |
| 93 | fullpath = os.path.join(canned_wks_dir, fname) |
| 94 | return fullpath |
| 95 | return None |
| 96 | |
| 97 | |
| 98 | def list_canned_images(scripts_path): |
| 99 | """ |
| 100 | List the .wks files in the canned image dir, minus the extension. |
| 101 | """ |
| 102 | layers_canned_wks_dir = build_canned_image_list(scripts_path) |
| 103 | |
| 104 | for canned_wks_dir in layers_canned_wks_dir: |
| 105 | for root, dirs, files in os.walk(canned_wks_dir): |
| 106 | for fname in files: |
| 107 | if fname.endswith("~") or fname.endswith("#"): |
| 108 | continue |
| 109 | if fname.endswith(".wks"): |
| 110 | fullpath = os.path.join(canned_wks_dir, fname) |
| 111 | with open(fullpath) as wks: |
| 112 | for line in wks: |
| 113 | desc = "" |
| 114 | idx = line.find("short-description:") |
| 115 | if idx != -1: |
| 116 | desc = line[idx + len("short-description:"):].strip() |
| 117 | break |
| 118 | basename = os.path.splitext(fname)[0] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 119 | print(" %s\t\t%s" % (basename.ljust(30), desc)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 120 | |
| 121 | |
| 122 | def list_canned_image_help(scripts_path, fullpath): |
| 123 | """ |
| 124 | List the help and params in the specified canned image. |
| 125 | """ |
| 126 | found = False |
| 127 | with open(fullpath) as wks: |
| 128 | for line in wks: |
| 129 | if not found: |
| 130 | idx = line.find("long-description:") |
| 131 | if idx != -1: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 132 | print() |
| 133 | print(line[idx + len("long-description:"):].strip()) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 134 | found = True |
| 135 | continue |
| 136 | if not line.strip(): |
| 137 | break |
| 138 | idx = line.find("#") |
| 139 | if idx != -1: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 140 | print(line[idx + len("#:"):].rstrip()) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 141 | else: |
| 142 | break |
| 143 | |
| 144 | |
| 145 | def list_source_plugins(): |
| 146 | """ |
| 147 | List the available source plugins i.e. plugins available for --source. |
| 148 | """ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 149 | plugins = PluginMgr.get_plugins('source') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 150 | |
| 151 | for plugin in plugins: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 152 | print(" %s" % plugin) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 153 | |
| 154 | |
| 155 | def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 156 | native_sysroot, options): |
| 157 | """ |
| 158 | Create image |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 159 | |
| 160 | wks_file - user-defined OE kickstart file |
| 161 | rootfs_dir - absolute path to the build's /rootfs dir |
| 162 | bootimg_dir - absolute path to the build's boot artifacts directory |
| 163 | kernel_dir - absolute path to the build's kernel directory |
| 164 | native_sysroot - absolute path to the build's native sysroots dir |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 165 | image_output_dir - dirname to create for image |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 166 | options - wic command line options (debug, bmap, etc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 167 | |
| 168 | Normally, the values for the build artifacts values are determined |
| 169 | by 'wic -e' from the output of the 'bitbake -e' command given an |
| 170 | image name e.g. 'core-image-minimal' and a given machine set in |
| 171 | local.conf. If that's the case, the variables get the following |
| 172 | values from the output of 'bitbake -e': |
| 173 | |
| 174 | rootfs_dir: IMAGE_ROOTFS |
| 175 | kernel_dir: DEPLOY_DIR_IMAGE |
| 176 | native_sysroot: STAGING_DIR_NATIVE |
| 177 | |
| 178 | In the above case, bootimg_dir remains unset and the |
| 179 | plugin-specific image creation code is responsible for finding the |
| 180 | bootimg artifacts. |
| 181 | |
| 182 | In the case where the values are passed in explicitly i.e 'wic -e' |
| 183 | is not used but rather the individual 'wic' options are used to |
| 184 | explicitly specify these values. |
| 185 | """ |
| 186 | try: |
| 187 | oe_builddir = os.environ["BUILDDIR"] |
| 188 | except KeyError: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 189 | raise WicError("BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?)") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 190 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 191 | if not os.path.exists(options.outdir): |
| 192 | os.makedirs(options.outdir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 193 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 194 | pname = 'direct' |
| 195 | plugin_class = PluginMgr.get_plugins('imager').get(pname) |
| 196 | if not plugin_class: |
| 197 | raise WicError('Unknown plugin: %s' % pname) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 198 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 199 | plugin = plugin_class(wks_file, rootfs_dir, bootimg_dir, kernel_dir, |
| 200 | native_sysroot, oe_builddir, options) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 201 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 202 | plugin.do_create() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 203 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 204 | logger.info("The image(s) were created using OE kickstart file:\n %s", wks_file) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 205 | |
| 206 | |
| 207 | def wic_list(args, scripts_path): |
| 208 | """ |
| 209 | Print the list of images or source plugins. |
| 210 | """ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 211 | if args.list_type is None: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 212 | return False |
| 213 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 214 | if args.list_type == "images": |
| 215 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 216 | list_canned_images(scripts_path) |
| 217 | return True |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 218 | elif args.list_type == "source-plugins": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | list_source_plugins() |
| 220 | return True |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 221 | elif len(args.help_for) == 1 and args.help_for[0] == 'help': |
| 222 | wks_file = args.list_type |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 223 | fullpath = find_canned_image(scripts_path, wks_file) |
| 224 | if not fullpath: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 225 | raise WicError("No image named %s found, exiting. " |
| 226 | "(Use 'wic list images' to list available images, " |
| 227 | "or specify a fully-qualified OE kickstart (.wks) " |
| 228 | "filename)" % wks_file) |
| 229 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 230 | list_canned_image_help(scripts_path, fullpath) |
| 231 | return True |
| 232 | |
| 233 | return False |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 234 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 235 | |
| 236 | class Disk: |
| 237 | def __init__(self, imagepath, native_sysroot, fstypes=('fat', 'ext')): |
| 238 | self.imagepath = imagepath |
| 239 | self.native_sysroot = native_sysroot |
| 240 | self.fstypes = fstypes |
| 241 | self._partitions = None |
| 242 | self._partimages = {} |
| 243 | self._lsector_size = None |
| 244 | self._psector_size = None |
| 245 | self._ptable_format = None |
| 246 | |
| 247 | # find parted |
| 248 | self.paths = "/bin:/usr/bin:/usr/sbin:/sbin/" |
| 249 | if native_sysroot: |
| 250 | for path in self.paths.split(':'): |
| 251 | self.paths = "%s%s:%s" % (native_sysroot, path, self.paths) |
| 252 | |
| 253 | self.parted = find_executable("parted", self.paths) |
| 254 | if not self.parted: |
| 255 | raise WicError("Can't find executable parted") |
| 256 | |
| 257 | self.partitions = self.get_partitions() |
| 258 | |
| 259 | def __del__(self): |
| 260 | for path in self._partimages.values(): |
| 261 | os.unlink(path) |
| 262 | |
| 263 | def get_partitions(self): |
| 264 | if self._partitions is None: |
| 265 | self._partitions = OrderedDict() |
| 266 | out = exec_cmd("%s -sm %s unit B print" % (self.parted, self.imagepath)) |
| 267 | parttype = namedtuple("Part", "pnum start end size fstype") |
| 268 | splitted = out.splitlines() |
| 269 | lsector_size, psector_size, self._ptable_format = splitted[1].split(":")[3:6] |
| 270 | self._lsector_size = int(lsector_size) |
| 271 | self._psector_size = int(psector_size) |
| 272 | for line in splitted[2:]: |
| 273 | pnum, start, end, size, fstype = line.split(':')[:5] |
| 274 | partition = parttype(int(pnum), int(start[:-1]), int(end[:-1]), |
| 275 | int(size[:-1]), fstype) |
| 276 | self._partitions[pnum] = partition |
| 277 | |
| 278 | return self._partitions |
| 279 | |
| 280 | def __getattr__(self, name): |
| 281 | """Get path to the executable in a lazy way.""" |
| 282 | if name in ("mdir", "mcopy", "mdel", "mdeltree", "sfdisk", "e2fsck", |
| 283 | "resize2fs", "mkswap", "mkdosfs", "debugfs"): |
| 284 | aname = "_%s" % name |
| 285 | if aname not in self.__dict__: |
| 286 | setattr(self, aname, find_executable(name, self.paths)) |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 287 | if aname not in self.__dict__ or self.__dict__[aname] is None: |
| 288 | raise WicError("Can't find executable '{}'".format(name)) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 289 | return self.__dict__[aname] |
| 290 | return self.__dict__[name] |
| 291 | |
| 292 | def _get_part_image(self, pnum): |
| 293 | if pnum not in self.partitions: |
| 294 | raise WicError("Partition %s is not in the image") |
| 295 | part = self.partitions[pnum] |
| 296 | # check if fstype is supported |
| 297 | for fstype in self.fstypes: |
| 298 | if part.fstype.startswith(fstype): |
| 299 | break |
| 300 | else: |
| 301 | raise WicError("Not supported fstype: {}".format(part.fstype)) |
| 302 | if pnum not in self._partimages: |
| 303 | tmpf = tempfile.NamedTemporaryFile(prefix="wic-part") |
| 304 | dst_fname = tmpf.name |
| 305 | tmpf.close() |
| 306 | sparse_copy(self.imagepath, dst_fname, skip=part.start, length=part.size) |
| 307 | self._partimages[pnum] = dst_fname |
| 308 | |
| 309 | return self._partimages[pnum] |
| 310 | |
| 311 | def _put_part_image(self, pnum): |
| 312 | """Put partition image into partitioned image.""" |
| 313 | sparse_copy(self._partimages[pnum], self.imagepath, |
| 314 | seek=self.partitions[pnum].start) |
| 315 | |
| 316 | def dir(self, pnum, path): |
| 317 | if self.partitions[pnum].fstype.startswith('ext'): |
| 318 | return exec_cmd("{} {} -R 'ls -l {}'".format(self.debugfs, |
| 319 | self._get_part_image(pnum), |
| 320 | path), as_shell=True) |
| 321 | else: # fat |
| 322 | return exec_cmd("{} -i {} ::{}".format(self.mdir, |
| 323 | self._get_part_image(pnum), |
| 324 | path)) |
| 325 | |
| 326 | def copy(self, src, pnum, path): |
| 327 | """Copy partition image into wic image.""" |
| 328 | if self.partitions[pnum].fstype.startswith('ext'): |
| 329 | cmd = "echo -e 'cd {}\nwrite {} {}' | {} -w {}".\ |
| 330 | format(path, src, os.path.basename(src), |
| 331 | self.debugfs, self._get_part_image(pnum)) |
| 332 | else: # fat |
| 333 | cmd = "{} -i {} -snop {} ::{}".format(self.mcopy, |
| 334 | self._get_part_image(pnum), |
| 335 | src, path) |
| 336 | exec_cmd(cmd, as_shell=True) |
| 337 | self._put_part_image(pnum) |
| 338 | |
| 339 | def remove(self, pnum, path): |
| 340 | """Remove files/dirs from the partition.""" |
| 341 | partimg = self._get_part_image(pnum) |
| 342 | if self.partitions[pnum].fstype.startswith('ext'): |
| 343 | exec_cmd("{} {} -wR 'rm {}'".format(self.debugfs, |
| 344 | self._get_part_image(pnum), |
| 345 | path), as_shell=True) |
| 346 | else: # fat |
| 347 | cmd = "{} -i {} ::{}".format(self.mdel, partimg, path) |
| 348 | try: |
| 349 | exec_cmd(cmd) |
| 350 | except WicError as err: |
| 351 | if "not found" in str(err) or "non empty" in str(err): |
| 352 | # mdel outputs 'File ... not found' or 'directory .. non empty" |
| 353 | # try to use mdeltree as path could be a directory |
| 354 | cmd = "{} -i {} ::{}".format(self.mdeltree, |
| 355 | partimg, path) |
| 356 | exec_cmd(cmd) |
| 357 | else: |
| 358 | raise err |
| 359 | self._put_part_image(pnum) |
| 360 | |
| 361 | def write(self, target, expand): |
| 362 | """Write disk image to the media or file.""" |
| 363 | def write_sfdisk_script(outf, parts): |
| 364 | for key, val in parts['partitiontable'].items(): |
| 365 | if key in ("partitions", "device", "firstlba", "lastlba"): |
| 366 | continue |
| 367 | if key == "id": |
| 368 | key = "label-id" |
| 369 | outf.write("{}: {}\n".format(key, val)) |
| 370 | outf.write("\n") |
| 371 | for part in parts['partitiontable']['partitions']: |
| 372 | line = '' |
| 373 | for name in ('attrs', 'name', 'size', 'type', 'uuid'): |
| 374 | if name == 'size' and part['type'] == 'f': |
| 375 | # don't write size for extended partition |
| 376 | continue |
| 377 | val = part.get(name) |
| 378 | if val: |
| 379 | line += '{}={}, '.format(name, val) |
| 380 | if line: |
| 381 | line = line[:-2] # strip ', ' |
| 382 | if part.get('bootable'): |
| 383 | line += ' ,bootable' |
| 384 | outf.write("{}\n".format(line)) |
| 385 | outf.flush() |
| 386 | |
| 387 | def read_ptable(path): |
| 388 | out = exec_cmd("{} -dJ {}".format(self.sfdisk, path)) |
| 389 | return json.loads(out) |
| 390 | |
| 391 | def write_ptable(parts, target): |
| 392 | with tempfile.NamedTemporaryFile(prefix="wic-sfdisk-", mode='w') as outf: |
| 393 | write_sfdisk_script(outf, parts) |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 394 | cmd = "{} --no-reread {} < {} ".format(self.sfdisk, target, outf.name) |
| 395 | exec_cmd(cmd, as_shell=True) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 396 | |
| 397 | if expand is None: |
| 398 | sparse_copy(self.imagepath, target) |
| 399 | else: |
| 400 | # copy first sectors that may contain bootloader |
| 401 | sparse_copy(self.imagepath, target, length=2048 * self._lsector_size) |
| 402 | |
| 403 | # copy source partition table to the target |
| 404 | parts = read_ptable(self.imagepath) |
| 405 | write_ptable(parts, target) |
| 406 | |
| 407 | # get size of unpartitioned space |
| 408 | free = None |
| 409 | for line in exec_cmd("{} -F {}".format(self.sfdisk, target)).splitlines(): |
| 410 | if line.startswith("Unpartitioned space ") and line.endswith("sectors"): |
| 411 | free = int(line.split()[-2]) |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 412 | # Align free space to a 2048 sector boundary. YOCTO #12840. |
| 413 | free = free - (free % 2048) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 414 | if free is None: |
| 415 | raise WicError("Can't get size of unpartitioned space") |
| 416 | |
| 417 | # calculate expanded partitions sizes |
| 418 | sizes = {} |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 419 | num_auto_resize = 0 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 420 | for num, part in enumerate(parts['partitiontable']['partitions'], 1): |
| 421 | if num in expand: |
| 422 | if expand[num] != 0: # don't resize partition if size is set to 0 |
| 423 | sectors = expand[num] // self._lsector_size |
| 424 | free -= sectors - part['size'] |
| 425 | part['size'] = sectors |
| 426 | sizes[num] = sectors |
| 427 | elif part['type'] != 'f': |
| 428 | sizes[num] = -1 |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 429 | num_auto_resize += 1 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 430 | |
| 431 | for num, part in enumerate(parts['partitiontable']['partitions'], 1): |
| 432 | if sizes.get(num) == -1: |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 433 | part['size'] += free // num_auto_resize |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 434 | |
| 435 | # write resized partition table to the target |
| 436 | write_ptable(parts, target) |
| 437 | |
| 438 | # read resized partition table |
| 439 | parts = read_ptable(target) |
| 440 | |
| 441 | # copy partitions content |
| 442 | for num, part in enumerate(parts['partitiontable']['partitions'], 1): |
| 443 | pnum = str(num) |
| 444 | fstype = self.partitions[pnum].fstype |
| 445 | |
| 446 | # copy unchanged partition |
| 447 | if part['size'] == self.partitions[pnum].size // self._lsector_size: |
| 448 | logger.info("copying unchanged partition {}".format(pnum)) |
| 449 | sparse_copy(self._get_part_image(pnum), target, seek=part['start'] * self._lsector_size) |
| 450 | continue |
| 451 | |
| 452 | # resize or re-create partitions |
| 453 | if fstype.startswith('ext') or fstype.startswith('fat') or \ |
| 454 | fstype.startswith('linux-swap'): |
| 455 | |
| 456 | partfname = None |
| 457 | with tempfile.NamedTemporaryFile(prefix="wic-part{}-".format(pnum)) as partf: |
| 458 | partfname = partf.name |
| 459 | |
| 460 | if fstype.startswith('ext'): |
| 461 | logger.info("resizing ext partition {}".format(pnum)) |
| 462 | partimg = self._get_part_image(pnum) |
| 463 | sparse_copy(partimg, partfname) |
| 464 | exec_cmd("{} -pf {}".format(self.e2fsck, partfname)) |
| 465 | exec_cmd("{} {} {}s".format(\ |
| 466 | self.resize2fs, partfname, part['size'])) |
| 467 | elif fstype.startswith('fat'): |
| 468 | logger.info("copying content of the fat partition {}".format(pnum)) |
| 469 | with tempfile.TemporaryDirectory(prefix='wic-fatdir-') as tmpdir: |
| 470 | # copy content to the temporary directory |
| 471 | cmd = "{} -snompi {} :: {}".format(self.mcopy, |
| 472 | self._get_part_image(pnum), |
| 473 | tmpdir) |
| 474 | exec_cmd(cmd) |
| 475 | # create new msdos partition |
| 476 | label = part.get("name") |
| 477 | label_str = "-n {}".format(label) if label else '' |
| 478 | |
| 479 | cmd = "{} {} -C {} {}".format(self.mkdosfs, label_str, partfname, |
| 480 | part['size']) |
| 481 | exec_cmd(cmd) |
| 482 | # copy content from the temporary directory to the new partition |
| 483 | cmd = "{} -snompi {} {}/* ::".format(self.mcopy, partfname, tmpdir) |
| 484 | exec_cmd(cmd, as_shell=True) |
| 485 | elif fstype.startswith('linux-swap'): |
| 486 | logger.info("creating swap partition {}".format(pnum)) |
| 487 | label = part.get("name") |
| 488 | label_str = "-L {}".format(label) if label else '' |
| 489 | uuid = part.get("uuid") |
| 490 | uuid_str = "-U {}".format(uuid) if uuid else '' |
| 491 | with open(partfname, 'w') as sparse: |
| 492 | os.ftruncate(sparse.fileno(), part['size'] * self._lsector_size) |
| 493 | exec_cmd("{} {} {} {}".format(self.mkswap, label_str, uuid_str, partfname)) |
| 494 | sparse_copy(partfname, target, seek=part['start'] * self._lsector_size) |
| 495 | os.unlink(partfname) |
| 496 | elif part['type'] != 'f': |
| 497 | logger.warn("skipping partition {}: unsupported fstype {}".format(pnum, fstype)) |
| 498 | |
| 499 | def wic_ls(args, native_sysroot): |
| 500 | """List contents of partitioned image or vfat partition.""" |
| 501 | disk = Disk(args.path.image, native_sysroot) |
| 502 | if not args.path.part: |
| 503 | if disk.partitions: |
| 504 | print('Num Start End Size Fstype') |
| 505 | for part in disk.partitions.values(): |
| 506 | print("{:2d} {:12d} {:12d} {:12d} {}".format(\ |
| 507 | part.pnum, part.start, part.end, |
| 508 | part.size, part.fstype)) |
| 509 | else: |
| 510 | path = args.path.path or '/' |
| 511 | print(disk.dir(args.path.part, path)) |
| 512 | |
| 513 | def wic_cp(args, native_sysroot): |
| 514 | """ |
| 515 | Copy local file or directory to the vfat partition of |
| 516 | partitioned image. |
| 517 | """ |
| 518 | disk = Disk(args.dest.image, native_sysroot) |
| 519 | disk.copy(args.src, args.dest.part, args.dest.path) |
| 520 | |
| 521 | def wic_rm(args, native_sysroot): |
| 522 | """ |
| 523 | Remove files or directories from the vfat partition of |
| 524 | partitioned image. |
| 525 | """ |
| 526 | disk = Disk(args.path.image, native_sysroot) |
| 527 | disk.remove(args.path.part, args.path.path) |
| 528 | |
| 529 | def wic_write(args, native_sysroot): |
| 530 | """ |
| 531 | Write image to a target device. |
| 532 | """ |
| 533 | disk = Disk(args.image, native_sysroot, ('fat', 'ext', 'swap')) |
| 534 | disk.write(args.target, args.expand) |
| 535 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 536 | def find_canned(scripts_path, file_name): |
| 537 | """ |
| 538 | Find a file either by its path or by name in the canned files dir. |
| 539 | |
| 540 | Return None if not found |
| 541 | """ |
| 542 | if os.path.exists(file_name): |
| 543 | return file_name |
| 544 | |
| 545 | layers_canned_wks_dir = build_canned_image_list(scripts_path) |
| 546 | for canned_wks_dir in layers_canned_wks_dir: |
| 547 | for root, dirs, files in os.walk(canned_wks_dir): |
| 548 | for fname in files: |
| 549 | if fname == file_name: |
| 550 | fullpath = os.path.join(canned_wks_dir, fname) |
| 551 | return fullpath |
| 552 | |
| 553 | def get_custom_config(boot_file): |
| 554 | """ |
| 555 | Get the custom configuration to be used for the bootloader. |
| 556 | |
| 557 | Return None if the file can't be found. |
| 558 | """ |
| 559 | # Get the scripts path of poky |
| 560 | scripts_path = os.path.abspath("%s/../.." % os.path.dirname(__file__)) |
| 561 | |
| 562 | cfg_file = find_canned(scripts_path, boot_file) |
| 563 | if cfg_file: |
| 564 | with open(cfg_file, "r") as f: |
| 565 | config = f.read() |
| 566 | return config |