blob: 382afa44bce804054e38ff5d657341357d612f29 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001#
2# Copyright (c) 2013-2016 Intel Corporation.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05003#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005#
6# DESCRIPTION
7# This module provides the OpenEmbedded partition object definitions.
8#
9# AUTHORS
10# Tom Zanussi <tom.zanussi (at] linux.intel.com>
11# Ed Bartosh <ed.bartosh> (at] linux.intel.com>
12
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013import logging
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050014import os
Brad Bishop316dfdd2018-06-25 12:45:53 -040015import uuid
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017from wic import WicError
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018from wic.misc import exec_cmd, exec_native_cmd, get_bitbake_var
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019from wic.pluginbase import PluginMgr
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050020
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021logger = logging.getLogger('wic')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050022
Patrick Williamsc0f7c042017-02-23 20:41:17 -060023class Partition():
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050024
25 def __init__(self, args, lineno):
26 self.args = args
27 self.active = args.active
28 self.align = args.align
29 self.disk = args.disk
Brad Bishop6e60e8b2018-02-01 10:27:11 -050030 self.device = None
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050031 self.extra_space = args.extra_space
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032 self.exclude_path = args.exclude_path
Andrew Geissler82c905d2020-04-13 13:39:40 -050033 self.include_path = args.include_path
34 self.change_directory = args.change_directory
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050035 self.fsopts = args.fsopts
Andrew Geisslerd5838332022-05-27 11:33:10 -050036 self.fspassno = args.fspassno
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050037 self.fstype = args.fstype
38 self.label = args.label
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080039 self.use_label = args.use_label
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040 self.mkfs_extraopts = args.mkfs_extraopts
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050041 self.mountpoint = args.mountpoint
42 self.no_table = args.no_table
Brad Bishop6e60e8b2018-02-01 10:27:11 -050043 self.num = None
Andrew Geissler4ed12e12020-06-05 18:00:41 -050044 self.offset = args.offset
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050045 self.overhead_factor = args.overhead_factor
Brad Bishopd7bf8c12018-02-25 22:55:05 -050046 self.part_name = args.part_name
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050047 self.part_type = args.part_type
48 self.rootfs_dir = args.rootfs_dir
49 self.size = args.size
Brad Bishop6e60e8b2018-02-01 10:27:11 -050050 self.fixed_size = args.fixed_size
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050051 self.source = args.source
52 self.sourceparams = args.sourceparams
Patrick Williamsc0f7c042017-02-23 20:41:17 -060053 self.system_id = args.system_id
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050054 self.use_uuid = args.use_uuid
55 self.uuid = args.uuid
Brad Bishop316dfdd2018-06-25 12:45:53 -040056 self.fsuuid = args.fsuuid
Brad Bishop08902b02019-08-20 09:16:51 -040057 self.type = args.type
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050058 self.no_fstab_update = args.no_fstab_update
Andrew Geisslerd1e89492021-02-12 15:35:20 -060059 self.updated_fstab_path = None
60 self.has_fstab = False
61 self.update_fstab_in_rootfs = False
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050062
63 self.lineno = lineno
64 self.source_file = ""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050065
66 def get_extra_block_count(self, current_blocks):
67 """
68 The --size param is reflected in self.size (in kB), and we already
69 have current_blocks (1k) blocks, calculate and return the
70 number of (1k) blocks we need to add to get to --size, 0 if
71 we're already there or beyond.
72 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -050073 logger.debug("Requested partition size for %s: %d",
74 self.mountpoint, self.size)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050075
76 if not self.size:
77 return 0
78
79 requested_blocks = self.size
80
Brad Bishop6e60e8b2018-02-01 10:27:11 -050081 logger.debug("Requested blocks %d, current_blocks %d",
82 requested_blocks, current_blocks)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050083
84 if requested_blocks > current_blocks:
85 return requested_blocks - current_blocks
86 else:
87 return 0
88
Brad Bishop6e60e8b2018-02-01 10:27:11 -050089 def get_rootfs_size(self, actual_rootfs_size=0):
90 """
91 Calculate the required size of rootfs taking into consideration
92 --size/--fixed-size flags as well as overhead and extra space, as
93 specified in kickstart file. Raises an error if the
94 `actual_rootfs_size` is larger than fixed-size rootfs.
95
96 """
97 if self.fixed_size:
98 rootfs_size = self.fixed_size
99 if actual_rootfs_size > rootfs_size:
100 raise WicError("Actual rootfs size (%d kB) is larger than "
101 "allowed size %d kB" %
102 (actual_rootfs_size, rootfs_size))
103 else:
104 extra_blocks = self.get_extra_block_count(actual_rootfs_size)
105 if extra_blocks < self.extra_space:
106 extra_blocks = self.extra_space
107
108 rootfs_size = actual_rootfs_size + extra_blocks
Andrew Geissler5199d832021-09-24 16:47:35 -0500109 rootfs_size = int(rootfs_size * self.overhead_factor)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500110
111 logger.debug("Added %d extra blocks to %s to get to %d total blocks",
112 extra_blocks, self.mountpoint, rootfs_size)
113
114 return rootfs_size
115
116 @property
117 def disk_size(self):
118 """
119 Obtain on-disk size of partition taking into consideration
120 --size/--fixed-size options.
121
122 """
123 return self.fixed_size if self.fixed_size else self.size
124
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500125 def prepare(self, creator, cr_workdir, oe_builddir, rootfs_dir,
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600126 bootimg_dir, kernel_dir, native_sysroot, updated_fstab_path):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500127 """
128 Prepare content for individual partitions, depending on
129 partition command parameters.
130 """
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600131 self.updated_fstab_path = updated_fstab_path
132 if self.updated_fstab_path and not (self.fstype.startswith("ext") or self.fstype == "msdos"):
133 self.update_fstab_in_rootfs = True
134
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500135 if not self.source:
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600136 if self.fstype == "none":
137 return
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500138 if not self.size and not self.fixed_size:
139 raise WicError("The %s partition has a size of zero. Please "
140 "specify a non-zero --size/--fixed-size for that "
141 "partition." % self.mountpoint)
142
143 if self.fstype == "swap":
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500144 self.prepare_swap_partition(cr_workdir, oe_builddir,
145 native_sysroot)
146 self.source_file = "%s/fs.%s" % (cr_workdir, self.fstype)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500147 else:
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700148 if self.fstype in ('squashfs', 'erofs'):
149 raise WicError("It's not possible to create empty %s "
150 "partition '%s'" % (self.fstype, self.mountpoint))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500151
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500152 rootfs = "%s/fs_%s.%s.%s" % (cr_workdir, self.label,
153 self.lineno, self.fstype)
154 if os.path.isfile(rootfs):
155 os.remove(rootfs)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500156
157 prefix = "ext" if self.fstype.startswith("ext") else self.fstype
158 method = getattr(self, "prepare_empty_partition_" + prefix)
159 method(rootfs, oe_builddir, native_sysroot)
160 self.source_file = rootfs
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500161 return
162
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500163 plugins = PluginMgr.get_plugins('source')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500164
165 if self.source not in plugins:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500166 raise WicError("The '%s' --source specified for %s doesn't exist.\n\t"
167 "See 'wic list source-plugins' for a list of available"
168 " --sources.\n\tSee 'wic help source-plugins' for "
169 "details on adding a new source plugin." %
170 (self.source, self.mountpoint))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500171
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500172 srcparams_dict = {}
173 if self.sourceparams:
174 # Split sourceparams string of the form key1=val1[,key2=val2,...]
175 # into a dict. Also accepts valueless keys i.e. without =
176 splitted = self.sourceparams.split(',')
Andrew Geissler7e0e3c02022-02-25 20:34:39 +0000177 srcparams_dict = dict((par.split('=', 1) + [None])[:2] for par in splitted if par)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500178
179 plugin = PluginMgr.get_plugins('source')[self.source]
180 plugin.do_configure_partition(self, srcparams_dict, creator,
181 cr_workdir, oe_builddir, bootimg_dir,
182 kernel_dir, native_sysroot)
183 plugin.do_stage_partition(self, srcparams_dict, creator,
184 cr_workdir, oe_builddir, bootimg_dir,
185 kernel_dir, native_sysroot)
186 plugin.do_prepare_partition(self, srcparams_dict, creator,
187 cr_workdir, oe_builddir, bootimg_dir,
188 kernel_dir, rootfs_dir, native_sysroot)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400189 plugin.do_post_partition(self, srcparams_dict, creator,
190 cr_workdir, oe_builddir, bootimg_dir,
191 kernel_dir, rootfs_dir, native_sysroot)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500192
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500193 # further processing required Partition.size to be an integer, make
194 # sure that it is one
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500195 if not isinstance(self.size, int):
196 raise WicError("Partition %s internal size is not an integer. "
197 "This a bug in source plugin %s and needs to be fixed." %
198 (self.mountpoint, self.source))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500199
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500200 if self.fixed_size and self.size > self.fixed_size:
201 raise WicError("File system image of partition %s is "
202 "larger (%d kB) than its allowed size %d kB" %
203 (self.mountpoint, self.size, self.fixed_size))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500204
205 def prepare_rootfs(self, cr_workdir, oe_builddir, rootfs_dir,
Andrew Geissler82c905d2020-04-13 13:39:40 -0500206 native_sysroot, real_rootfs = True, pseudo_dir = None):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500207 """
208 Prepare content for a rootfs partition i.e. create a partition
209 and fill it from a /rootfs dir.
210
Brad Bishop316dfdd2018-06-25 12:45:53 -0400211 Currently handles ext2/3/4, btrfs, vfat and squashfs.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500212 """
Andrew Geisslerf0343792020-11-18 10:42:21 -0600213
214 rootfs = "%s/rootfs_%s.%s.%s" % (cr_workdir, self.label,
215 self.lineno, self.fstype)
216 if os.path.isfile(rootfs):
217 os.remove(rootfs)
218
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500219 p_prefix = os.environ.get("PSEUDO_PREFIX", "%s/usr" % native_sysroot)
Andrew Geissler82c905d2020-04-13 13:39:40 -0500220 if (pseudo_dir):
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600221 # Canonicalize the ignore paths. This corresponds to
222 # calling oe.path.canonicalize(), which is used in bitbake.conf.
223 ignore_paths = [rootfs] + (get_bitbake_var("PSEUDO_IGNORE_PATHS") or "").split(",")
224 canonical_paths = []
225 for path in ignore_paths:
226 if "$" not in path:
227 trailing_slash = path.endswith("/") and "/" or ""
228 canonical_paths.append(os.path.realpath(path) + trailing_slash)
229 ignore_paths = ",".join(canonical_paths)
230
Andrew Geissler82c905d2020-04-13 13:39:40 -0500231 pseudo = "export PSEUDO_PREFIX=%s;" % p_prefix
232 pseudo += "export PSEUDO_LOCALSTATEDIR=%s;" % pseudo_dir
233 pseudo += "export PSEUDO_PASSWD=%s;" % rootfs_dir
234 pseudo += "export PSEUDO_NOSYMLINKEXP=1;"
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600235 pseudo += "export PSEUDO_IGNORE_PATHS=%s;" % ignore_paths
Andrew Geissler82c905d2020-04-13 13:39:40 -0500236 pseudo += "%s " % get_bitbake_var("FAKEROOTCMD")
237 else:
238 pseudo = None
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500239
Brad Bishop316dfdd2018-06-25 12:45:53 -0400240 if not self.size and real_rootfs:
Brad Bishop00e122a2019-10-05 11:10:57 -0400241 # The rootfs size is not set in .ks file so try to get it
242 # from bitbake variable
243 rsize_bb = get_bitbake_var('ROOTFS_SIZE')
244 rdir = get_bitbake_var('IMAGE_ROOTFS')
245 if rsize_bb and rdir == rootfs_dir:
246 # Bitbake variable ROOTFS_SIZE is calculated in
247 # Image._get_rootfs_size method from meta/lib/oe/image.py
248 # using IMAGE_ROOTFS_SIZE, IMAGE_ROOTFS_ALIGNMENT,
249 # IMAGE_OVERHEAD_FACTOR and IMAGE_ROOTFS_EXTRA_SPACE
250 self.size = int(round(float(rsize_bb)))
251 else:
252 # Bitbake variable ROOTFS_SIZE is not defined so compute it
253 # from the rootfs_dir size using the same logic found in
254 # get_rootfs_size() from meta/classes/image.bbclass
255 du_cmd = "du -ks %s" % rootfs_dir
256 out = exec_cmd(du_cmd)
257 self.size = int(out.split()[0])
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500258
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500259 prefix = "ext" if self.fstype.startswith("ext") else self.fstype
260 method = getattr(self, "prepare_rootfs_" + prefix)
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600261 method(rootfs, cr_workdir, oe_builddir, rootfs_dir, native_sysroot, pseudo)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500262 self.source_file = rootfs
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500263
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500264 # get the rootfs size in the right units for kickstart (kB)
265 du_cmd = "du -Lbks %s" % rootfs
266 out = exec_cmd(du_cmd)
267 self.size = int(out.split()[0])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500268
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600269 def prepare_rootfs_ext(self, rootfs, cr_workdir, oe_builddir, rootfs_dir,
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500270 native_sysroot, pseudo):
271 """
272 Prepare content for an ext2/3/4 rootfs partition.
273 """
274 du_cmd = "du -ks %s" % rootfs_dir
275 out = exec_cmd(du_cmd)
276 actual_rootfs_size = int(out.split()[0])
277
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500278 rootfs_size = self.get_rootfs_size(actual_rootfs_size)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500279
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500280 with open(rootfs, 'w') as sparse:
281 os.ftruncate(sparse.fileno(), rootfs_size * 1024)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500282
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500283 extraopts = self.mkfs_extraopts or "-F -i 8192"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500284
285 label_str = ""
286 if self.label:
287 label_str = "-L %s" % self.label
288
Brad Bishop316dfdd2018-06-25 12:45:53 -0400289 mkfs_cmd = "mkfs.%s %s %s %s -U %s -d %s" % \
290 (self.fstype, extraopts, rootfs, label_str, self.fsuuid, rootfs_dir)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500291 exec_native_cmd(mkfs_cmd, native_sysroot, pseudo=pseudo)
292
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500293 if self.updated_fstab_path and self.has_fstab and not self.no_fstab_update:
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600294 debugfs_script_path = os.path.join(cr_workdir, "debugfs_script")
295 with open(debugfs_script_path, "w") as f:
296 f.write("cd etc\n")
297 f.write("rm fstab\n")
298 f.write("write %s fstab\n" % (self.updated_fstab_path))
299 debugfs_cmd = "debugfs -w -f %s %s" % (debugfs_script_path, rootfs)
300 exec_native_cmd(debugfs_cmd, native_sysroot)
301
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500302 mkfs_cmd = "fsck.%s -pvfD %s" % (self.fstype, rootfs)
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500303 exec_native_cmd(mkfs_cmd, native_sysroot, pseudo=pseudo)
304
Patrick Williams7784c422022-11-17 07:29:11 -0600305 if os.getenv('SOURCE_DATE_EPOCH'):
306 sde_time = hex(int(os.getenv('SOURCE_DATE_EPOCH')))
307 debugfs_script_path = os.path.join(cr_workdir, "debugfs_script")
308 files = []
309 for root, dirs, others in os.walk(rootfs_dir):
310 base = root.replace(rootfs_dir, "").rstrip(os.sep)
311 files += [ "/" if base == "" else base ]
312 files += [ base + "/" + n for n in dirs + others ]
313 with open(debugfs_script_path, "w") as f:
314 f.write("set_current_time %s\n" % (sde_time))
315 if self.updated_fstab_path and self.has_fstab and not self.no_fstab_update:
316 f.write("set_inode_field /etc/fstab mtime %s\n" % (sde_time))
317 f.write("set_inode_field /etc/fstab mtime_extra 0\n")
318 for file in set(files):
319 for time in ["atime", "ctime", "crtime"]:
320 f.write("set_inode_field \"%s\" %s %s\n" % (file, time, sde_time))
321 f.write("set_inode_field \"%s\" %s_extra 0\n" % (file, time))
322 for time in ["wtime", "mkfs_time", "lastcheck"]:
323 f.write("set_super_value %s %s\n" % (time, sde_time))
324 for time in ["mtime", "first_error_time", "last_error_time"]:
325 f.write("set_super_value %s 0\n" % (time))
326 debugfs_cmd = "debugfs -w -f %s %s" % (debugfs_script_path, rootfs)
327 exec_native_cmd(debugfs_cmd, native_sysroot)
328
Andrew Geissler90fd73c2021-03-05 15:25:55 -0600329 self.check_for_Y2038_problem(rootfs, native_sysroot)
330
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600331 def prepare_rootfs_btrfs(self, rootfs, cr_workdir, oe_builddir, rootfs_dir,
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500332 native_sysroot, pseudo):
333 """
334 Prepare content for a btrfs rootfs partition.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500335 """
336 du_cmd = "du -ks %s" % rootfs_dir
337 out = exec_cmd(du_cmd)
338 actual_rootfs_size = int(out.split()[0])
339
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500340 rootfs_size = self.get_rootfs_size(actual_rootfs_size)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500341
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500342 with open(rootfs, 'w') as sparse:
343 os.ftruncate(sparse.fileno(), rootfs_size * 1024)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500344
345 label_str = ""
346 if self.label:
347 label_str = "-L %s" % self.label
348
Brad Bishop316dfdd2018-06-25 12:45:53 -0400349 mkfs_cmd = "mkfs.%s -b %d -r %s %s %s -U %s %s" % \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500350 (self.fstype, rootfs_size * 1024, rootfs_dir, label_str,
Brad Bishop316dfdd2018-06-25 12:45:53 -0400351 self.mkfs_extraopts, self.fsuuid, rootfs)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500352 exec_native_cmd(mkfs_cmd, native_sysroot, pseudo=pseudo)
353
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600354 def prepare_rootfs_msdos(self, rootfs, cr_workdir, oe_builddir, rootfs_dir,
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500355 native_sysroot, pseudo):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500356 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500357 Prepare content for a msdos/vfat rootfs partition.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500358 """
359 du_cmd = "du -bks %s" % rootfs_dir
360 out = exec_cmd(du_cmd)
361 blocks = int(out.split()[0])
362
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500363 rootfs_size = self.get_rootfs_size(blocks)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500364
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500365 label_str = "-n boot"
366 if self.label:
367 label_str = "-n %s" % self.label
368
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500369 size_str = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500370
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500371 extraopts = self.mkfs_extraopts or '-S 512'
372
Brad Bishop316dfdd2018-06-25 12:45:53 -0400373 dosfs_cmd = "mkdosfs %s -i %s %s %s -C %s %d" % \
374 (label_str, self.fsuuid, size_str, extraopts, rootfs,
Brad Bishopc342db32019-05-15 21:57:59 -0400375 rootfs_size)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500376 exec_native_cmd(dosfs_cmd, native_sysroot)
377
378 mcopy_cmd = "mcopy -i %s -s %s/* ::/" % (rootfs, rootfs_dir)
379 exec_native_cmd(mcopy_cmd, native_sysroot)
380
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500381 if self.updated_fstab_path and self.has_fstab and not self.no_fstab_update:
Patrick Williams2390b1b2022-11-03 13:47:49 -0500382 mcopy_cmd = "mcopy -m -i %s %s ::/etc/fstab" % (rootfs, self.updated_fstab_path)
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600383 exec_native_cmd(mcopy_cmd, native_sysroot)
384
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500385 chmod_cmd = "chmod 644 %s" % rootfs
386 exec_cmd(chmod_cmd)
387
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500388 prepare_rootfs_vfat = prepare_rootfs_msdos
389
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600390 def prepare_rootfs_squashfs(self, rootfs, cr_workdir, oe_builddir, rootfs_dir,
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500391 native_sysroot, pseudo):
392 """
393 Prepare content for a squashfs rootfs partition.
394 """
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500395 extraopts = self.mkfs_extraopts or '-noappend'
396 squashfs_cmd = "mksquashfs %s %s %s" % \
397 (rootfs_dir, rootfs, extraopts)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500398 exec_native_cmd(squashfs_cmd, native_sysroot, pseudo=pseudo)
399
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700400 def prepare_rootfs_erofs(self, rootfs, cr_workdir, oe_builddir, rootfs_dir,
401 native_sysroot, pseudo):
402 """
403 Prepare content for a erofs rootfs partition.
404 """
405 extraopts = self.mkfs_extraopts or ''
406 erofs_cmd = "mkfs.erofs %s -U %s %s %s" % \
407 (extraopts, self.fsuuid, rootfs, rootfs_dir)
408 exec_native_cmd(erofs_cmd, native_sysroot, pseudo=pseudo)
409
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600410 def prepare_empty_partition_none(self, rootfs, oe_builddir, native_sysroot):
411 pass
412
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500413 def prepare_empty_partition_ext(self, rootfs, oe_builddir,
414 native_sysroot):
415 """
416 Prepare an empty ext2/3/4 partition.
417 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500418 size = self.disk_size
419 with open(rootfs, 'w') as sparse:
420 os.ftruncate(sparse.fileno(), size * 1024)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500421
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500422 extraopts = self.mkfs_extraopts or "-i 8192"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500423
424 label_str = ""
425 if self.label:
426 label_str = "-L %s" % self.label
427
Brad Bishop316dfdd2018-06-25 12:45:53 -0400428 mkfs_cmd = "mkfs.%s -F %s %s -U %s %s" % \
429 (self.fstype, extraopts, label_str, self.fsuuid, rootfs)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500430 exec_native_cmd(mkfs_cmd, native_sysroot)
431
Andrew Geissler90fd73c2021-03-05 15:25:55 -0600432 self.check_for_Y2038_problem(rootfs, native_sysroot)
433
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500434 def prepare_empty_partition_btrfs(self, rootfs, oe_builddir,
435 native_sysroot):
436 """
437 Prepare an empty btrfs partition.
438 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500439 size = self.disk_size
440 with open(rootfs, 'w') as sparse:
441 os.ftruncate(sparse.fileno(), size * 1024)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500442
443 label_str = ""
444 if self.label:
445 label_str = "-L %s" % self.label
446
Brad Bishop316dfdd2018-06-25 12:45:53 -0400447 mkfs_cmd = "mkfs.%s -b %d %s -U %s %s %s" % \
448 (self.fstype, self.size * 1024, label_str, self.fsuuid,
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500449 self.mkfs_extraopts, rootfs)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500450 exec_native_cmd(mkfs_cmd, native_sysroot)
451
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500452 def prepare_empty_partition_msdos(self, rootfs, oe_builddir,
453 native_sysroot):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500454 """
455 Prepare an empty vfat partition.
456 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500457 blocks = self.disk_size
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500458
459 label_str = "-n boot"
460 if self.label:
461 label_str = "-n %s" % self.label
462
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500463 size_str = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500464
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500465 extraopts = self.mkfs_extraopts or '-S 512'
466
Brad Bishop316dfdd2018-06-25 12:45:53 -0400467 dosfs_cmd = "mkdosfs %s -i %s %s %s -C %s %d" % \
468 (label_str, self.fsuuid, extraopts, size_str, rootfs,
469 blocks)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500470
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500471 exec_native_cmd(dosfs_cmd, native_sysroot)
472
473 chmod_cmd = "chmod 644 %s" % rootfs
474 exec_cmd(chmod_cmd)
475
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500476 prepare_empty_partition_vfat = prepare_empty_partition_msdos
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500477
478 def prepare_swap_partition(self, cr_workdir, oe_builddir, native_sysroot):
479 """
480 Prepare a swap partition.
481 """
482 path = "%s/fs.%s" % (cr_workdir, self.fstype)
483
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500484 with open(path, 'w') as sparse:
485 os.ftruncate(sparse.fileno(), self.size * 1024)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500486
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500487 label_str = ""
488 if self.label:
489 label_str = "-L %s" % self.label
Brad Bishop316dfdd2018-06-25 12:45:53 -0400490
491 mkswap_cmd = "mkswap %s -U %s %s" % (label_str, self.fsuuid, path)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500492 exec_native_cmd(mkswap_cmd, native_sysroot)
Andrew Geissler90fd73c2021-03-05 15:25:55 -0600493
494 def check_for_Y2038_problem(self, rootfs, native_sysroot):
495 """
496 Check if the filesystem is affected by the Y2038 problem
497 (Y2038 problem = 32 bit time_t overflow in January 2038)
498 """
499 def get_err_str(part):
500 err = "The {} filesystem {} has no Y2038 support."
501 if part.mountpoint:
502 args = [part.fstype, "mounted at %s" % part.mountpoint]
503 elif part.label:
504 args = [part.fstype, "labeled '%s'" % part.label]
505 elif part.part_name:
506 args = [part.fstype, "in partition '%s'" % part.part_name]
507 else:
508 args = [part.fstype, "in partition %s" % part.num]
509 return err.format(*args)
510
511 # ext2 and ext3 are always affected by the Y2038 problem
512 if self.fstype in ["ext2", "ext3"]:
513 logger.warn(get_err_str(self))
514 return
515
516 ret, out = exec_native_cmd("dumpe2fs %s" % rootfs, native_sysroot)
517
518 # if ext4 is affected by the Y2038 problem depends on the inode size
519 for line in out.splitlines():
520 if line.startswith("Inode size:"):
521 size = int(line.split(":")[1].strip())
522 if size < 256:
523 logger.warn("%s Inodes (of size %d) are too small." %
524 (get_err_str(self), size))
525 break
526