summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/plugins/source/rootfs.py
diff options
context:
space:
mode:
authorPaul Barker <pbarker@konsulko.com>2021-01-19 16:26:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-20 22:46:18 +0000
commit36575a949399953f98fc1cfda4a3dcb5a295b02c (patch)
tree54377cbf928c456b68554e7f0351595caaf262a3 /scripts/lib/wic/plugins/source/rootfs.py
parentf85a4a1462bc2105f7c62f2b09c1d092c7677ada (diff)
downloadpoky-36575a949399953f98fc1cfda4a3dcb5a295b02c.tar.gz
wic: Copy rootfs dir if fstab needs updating
By default, wic updates the /etc/fstab in the rootfs to include details of additional partitions described in the selected wks file. If this modification is performed in place, other tasks which create an image file from the rootfs directory (e.g. do_image_tar and do_image_ext4) will pick up the modified fstab file which would not be appropriate for those images as they do not include the additional partitions described in the wks file. wic does undo modifications to the fstab file once it has finished creating the filesystem image, however this leaves open a race condition if one of the other tasks reads the contents of the fstab file from the rootfs directory between the point where wic modifies the fstab file and the point where wic restores the files original content. This could be solved by adding a lockfile for tasks which use the rootfs directory to ensure that no other such task is reading the rootfs directory while do_image_wic is running. This would serialize several do_image_* tasks and result in slower builds, especially for large images. Another drawback of this solution is that it is hard to selectively optimise - adding lockfiles to do_image_* tasks would result in these tasks always being serialized even if no fstab modification will take place. An alternative solution is to copy the rootfs directory when fstab needs to be modified. The code to do this in wic already exists as it is needed when including or excluding content in the rootfs. This still results in an impact on build times but the copy uses hardlinks if possible (so little data is actually copied) and we can make selective optimisations to improve things. The rootfs copy will only take place if fstab modification is required (or if it was already needed to include or exclude rootfs content). We can also follow up with further optimisations after this commit. So this second solution is chosen. Fixes [Yocto #13994] (From OE-Core rev: ce682a73b7447652f898ce1d1d0416a456df5416) Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/plugins/source/rootfs.py')
-rw-r--r--scripts/lib/wic/plugins/source/rootfs.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/scripts/lib/wic/plugins/source/rootfs.py b/scripts/lib/wic/plugins/source/rootfs.py
index afb1eb9202..6fd415af5b 100644
--- a/scripts/lib/wic/plugins/source/rootfs.py
+++ b/scripts/lib/wic/plugins/source/rootfs.py
@@ -103,9 +103,9 @@ class RootfsPlugin(SourcePlugin):
103 new_rootfs = None 103 new_rootfs = None
104 new_pseudo = None 104 new_pseudo = None
105 # Handle excluded paths. 105 # Handle excluded paths.
106 if part.exclude_path or part.include_path or part.change_directory: 106 if part.exclude_path or part.include_path or part.change_directory or part.updated_fstab_path:
107 # We need a new rootfs directory we can delete files from. Copy to 107 # We need a new rootfs directory we can safely modify without
108 # workdir. 108 # interfering with other tasks. Copy to workdir.
109 new_rootfs = os.path.realpath(os.path.join(cr_workdir, "rootfs%d" % part.lineno)) 109 new_rootfs = os.path.realpath(os.path.join(cr_workdir, "rootfs%d" % part.lineno))
110 110
111 if os.path.lexists(new_rootfs): 111 if os.path.lexists(new_rootfs):
@@ -214,6 +214,17 @@ class RootfsPlugin(SourcePlugin):
214 rm_cmd = "rm -rf %s" % (full_path) 214 rm_cmd = "rm -rf %s" % (full_path)
215 exec_native_cmd(rm_cmd, native_sysroot, pseudo) 215 exec_native_cmd(rm_cmd, native_sysroot, pseudo)
216 216
217 has_fstab = os.path.exists(os.path.join(new_rootfs, "etc/fstab"))
218 if part.updated_fstab_path and has_fstab:
219 fstab_path = os.path.join(new_rootfs, "etc/fstab")
220 # Assume that fstab should always be owned by root with fixed permissions
221 install_cmd = "install -m 0644 %s %s" % (part.updated_fstab_path, fstab_path)
222 if new_pseudo:
223 pseudo = cls.__get_pseudo(native_sysroot, new_rootfs, new_pseudo)
224 else:
225 pseudo = None
226 exec_native_cmd(install_cmd, native_sysroot, pseudo)
227
217 part.prepare_rootfs(cr_workdir, oe_builddir, 228 part.prepare_rootfs(cr_workdir, oe_builddir,
218 new_rootfs or part.rootfs_dir, native_sysroot, 229 new_rootfs or part.rootfs_dir, native_sysroot,
219 pseudo_dir = new_pseudo or pseudo_dir) 230 pseudo_dir = new_pseudo or pseudo_dir)