]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/mount-util.c
man/systemd.mount: tmpfs automatically gains After=swap.target dep
[thirdparty/systemd.git] / src / shared / mount-util.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <stdlib.h>
5 #include <sys/mount.h>
6 #include <sys/stat.h>
7 #include <sys/statvfs.h>
8 #include <unistd.h>
9 #include <linux/loop.h>
10 #if WANT_LINUX_FS_H
11 #include <linux/fs.h>
12 #endif
13
14 #include "alloc-util.h"
15 #include "chase.h"
16 #include "dissect-image.h"
17 #include "exec-util.h"
18 #include "extract-word.h"
19 #include "fd-util.h"
20 #include "fileio.h"
21 #include "fs-util.h"
22 #include "glyph-util.h"
23 #include "hashmap.h"
24 #include "initrd-util.h"
25 #include "label-util.h"
26 #include "libmount-util.h"
27 #include "missing_mount.h"
28 #include "missing_syscall.h"
29 #include "mkdir-label.h"
30 #include "mount-util.h"
31 #include "mountpoint-util.h"
32 #include "namespace-util.h"
33 #include "parse-util.h"
34 #include "path-util.h"
35 #include "process-util.h"
36 #include "set.h"
37 #include "sort-util.h"
38 #include "stat-util.h"
39 #include "stdio-util.h"
40 #include "string-table.h"
41 #include "string-util.h"
42 #include "strv.h"
43 #include "tmpfile-util.h"
44 #include "user-util.h"
45
46 int umount_recursive_full(const char *prefix, int flags, char **keep) {
47 _cleanup_fclose_ FILE *f = NULL;
48 int n = 0, r;
49
50 /* Try to umount everything recursively below a directory. Also, take care of stacked mounts, and
51 * keep unmounting them until they are gone. */
52
53 f = fopen("/proc/self/mountinfo", "re"); /* Pin the file, in case we unmount /proc/ as part of the logic here */
54 if (!f)
55 return log_debug_errno(errno, "Failed to open /proc/self/mountinfo: %m");
56
57 for (;;) {
58 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
59 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
60 bool again = false;
61
62 r = libmount_parse("/proc/self/mountinfo", f, &table, &iter);
63 if (r < 0)
64 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
65
66 for (;;) {
67 bool shall_keep = false;
68 struct libmnt_fs *fs;
69 const char *path;
70
71 r = mnt_table_next_fs(table, iter, &fs);
72 if (r == 1)
73 break;
74 if (r < 0)
75 return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
76
77 path = mnt_fs_get_target(fs);
78 if (!path)
79 continue;
80
81 if (prefix && !path_startswith(path, prefix)) {
82 log_trace("Not unmounting %s, outside of prefix: %s", path, prefix);
83 continue;
84 }
85
86 STRV_FOREACH(k, keep)
87 /* Match against anything in the path to the dirs to keep, or below the dirs to keep */
88 if (path_startswith(path, *k) || path_startswith(*k, path)) {
89 shall_keep = true;
90 break;
91 }
92 if (shall_keep) {
93 log_debug("Not unmounting %s, referenced by keep list.", path);
94 continue;
95 }
96
97 if (umount2(path, flags | UMOUNT_NOFOLLOW) < 0) {
98 log_debug_errno(errno, "Failed to umount %s, ignoring: %m", path);
99 continue;
100 }
101
102 log_trace("Successfully unmounted %s", path);
103
104 again = true;
105 n++;
106
107 break;
108 }
109
110 if (!again)
111 break;
112
113 rewind(f);
114 }
115
116 return n;
117 }
118
119 #define MS_CONVERTIBLE_FLAGS (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_NOSYMFOLLOW)
120
121 static uint64_t ms_flags_to_mount_attr(unsigned long a) {
122 uint64_t f = 0;
123
124 if (FLAGS_SET(a, MS_RDONLY))
125 f |= MOUNT_ATTR_RDONLY;
126
127 if (FLAGS_SET(a, MS_NOSUID))
128 f |= MOUNT_ATTR_NOSUID;
129
130 if (FLAGS_SET(a, MS_NODEV))
131 f |= MOUNT_ATTR_NODEV;
132
133 if (FLAGS_SET(a, MS_NOEXEC))
134 f |= MOUNT_ATTR_NOEXEC;
135
136 if (FLAGS_SET(a, MS_NOSYMFOLLOW))
137 f |= MOUNT_ATTR_NOSYMFOLLOW;
138
139 return f;
140 }
141
142 static bool skip_mount_set_attr = false;
143
144 /* Use this function only if you do not have direct access to /proc/self/mountinfo but the caller can open it
145 * for you. This is the case when /proc is masked or not mounted. Otherwise, use bind_remount_recursive. */
146 int bind_remount_recursive_with_mountinfo(
147 const char *prefix,
148 unsigned long new_flags,
149 unsigned long flags_mask,
150 char **deny_list,
151 FILE *proc_self_mountinfo) {
152
153 _cleanup_fclose_ FILE *proc_self_mountinfo_opened = NULL;
154 _cleanup_set_free_ Set *done = NULL;
155 unsigned n_tries = 0;
156 int r;
157
158 assert(prefix);
159
160 if ((flags_mask & ~MS_CONVERTIBLE_FLAGS) == 0 && strv_isempty(deny_list) && !skip_mount_set_attr) {
161 /* Let's take a shortcut for all the flags we know how to convert into mount_setattr() flags */
162
163 if (mount_setattr(AT_FDCWD, prefix, AT_SYMLINK_NOFOLLOW|AT_RECURSIVE,
164 &(struct mount_attr) {
165 .attr_set = ms_flags_to_mount_attr(new_flags & flags_mask),
166 .attr_clr = ms_flags_to_mount_attr(~new_flags & flags_mask),
167 }, MOUNT_ATTR_SIZE_VER0) < 0) {
168
169 log_debug_errno(errno, "mount_setattr() failed, falling back to classic remounting: %m");
170
171 /* We fall through to classic behaviour if not supported (i.e. kernel < 5.12). We
172 * also do this for all other kinds of errors since they are so many different, and
173 * mount_setattr() has no graceful mode where it continues despite seeing errors one
174 * some mounts, but we want that. Moreover mount_setattr() only works on the mount
175 * point inode itself, not a non-mount point inode, and we want to support arbitrary
176 * prefixes here. */
177
178 if (ERRNO_IS_NOT_SUPPORTED(errno)) /* if not supported, then don't bother at all anymore */
179 skip_mount_set_attr = true;
180 } else
181 return 0; /* Nice, this worked! */
182 }
183
184 if (!proc_self_mountinfo) {
185 r = fopen_unlocked("/proc/self/mountinfo", "re", &proc_self_mountinfo_opened);
186 if (r < 0)
187 return r;
188
189 proc_self_mountinfo = proc_self_mountinfo_opened;
190 }
191
192 /* Recursively remount a directory (and all its submounts) with desired flags (MS_READONLY,
193 * MS_NOSUID, MS_NOEXEC). If the directory is already mounted, we reuse the mount and simply mark it
194 * MS_BIND|MS_RDONLY (or remove the MS_RDONLY for read-write operation), ditto for other flags. If it
195 * isn't we first make it one. Afterwards we apply (or remove) the flags to all submounts we can
196 * access, too. When mounts are stacked on the same mount point we only care for each individual
197 * "top-level" mount on each point, as we cannot influence/access the underlying mounts anyway. We do
198 * not have any effect on future submounts that might get propagated, they might be writable
199 * etc. This includes future submounts that have been triggered via autofs. Also note that we can't
200 * operate atomically here. Mounts established while we process the tree might or might not get
201 * noticed and thus might or might not be covered.
202 *
203 * If the "deny_list" parameter is specified it may contain a list of subtrees to exclude from the
204 * remount operation. Note that we'll ignore the deny list for the top-level path. */
205
206 for (;;) {
207 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
208 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
209 _cleanup_hashmap_free_ Hashmap *todo = NULL;
210 bool top_autofs = false;
211
212 if (n_tries++ >= 32) /* Let's not retry this loop forever */
213 return -EBUSY;
214
215 rewind(proc_self_mountinfo);
216
217 r = libmount_parse("/proc/self/mountinfo", proc_self_mountinfo, &table, &iter);
218 if (r < 0)
219 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
220
221 for (;;) {
222 _cleanup_free_ char *d = NULL;
223 const char *path, *type, *opts;
224 unsigned long flags = 0;
225 struct libmnt_fs *fs;
226
227 r = mnt_table_next_fs(table, iter, &fs);
228 if (r == 1) /* EOF */
229 break;
230 if (r < 0)
231 return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
232
233 path = mnt_fs_get_target(fs);
234 if (!path)
235 continue;
236
237 if (!path_startswith(path, prefix))
238 continue;
239
240 type = mnt_fs_get_fstype(fs);
241 if (!type)
242 continue;
243
244 /* Let's ignore autofs mounts. If they aren't triggered yet, we want to avoid
245 * triggering them, as we don't make any guarantees for future submounts anyway. If
246 * they are already triggered, then we will find another entry for this. */
247 if (streq(type, "autofs")) {
248 top_autofs = top_autofs || path_equal(path, prefix);
249 continue;
250 }
251
252 if (set_contains(done, path))
253 continue;
254
255 /* Ignore this mount if it is deny-listed, but only if it isn't the top-level mount
256 * we shall operate on. */
257 if (!path_equal(path, prefix)) {
258 bool deny_listed = false;
259
260 STRV_FOREACH(i, deny_list) {
261 if (path_equal(*i, prefix))
262 continue;
263
264 if (!path_startswith(*i, prefix))
265 continue;
266
267 if (path_startswith(path, *i)) {
268 deny_listed = true;
269 log_trace("Not remounting %s deny-listed by %s, called for %s", path, *i, prefix);
270 break;
271 }
272 }
273
274 if (deny_listed)
275 continue;
276 }
277
278 opts = mnt_fs_get_vfs_options(fs);
279 if (opts) {
280 r = mnt_optstr_get_flags(opts, &flags, mnt_get_builtin_optmap(MNT_LINUX_MAP));
281 if (r < 0)
282 log_debug_errno(r, "Could not get flags for '%s', ignoring: %m", path);
283 }
284
285 d = strdup(path);
286 if (!d)
287 return -ENOMEM;
288
289 r = hashmap_ensure_put(&todo, &path_hash_ops_free, d, ULONG_TO_PTR(flags));
290 if (r == -EEXIST)
291 /* If the same path was recorded, but with different mount flags, update it:
292 * it means a mount point is overmounted, and libmount returns the "bottom" (or
293 * older one) first, but we want to reapply the flags from the "top" (or newer
294 * one). See: https://github.com/systemd/systemd/issues/20032
295 * Note that this shouldn't really fail, as we were just told that the key
296 * exists, and it's an update so we want 'd' to be freed immediately. */
297 r = hashmap_update(todo, d, ULONG_TO_PTR(flags));
298 if (r < 0)
299 return r;
300 if (r > 0)
301 TAKE_PTR(d);
302 }
303
304 /* Check if the top-level directory was among what we have seen so far. For that check both
305 * 'done' and 'todo'. Also check 'top_autofs' because if the top-level dir is an autofs we'll
306 * not include it in either set but will set this bool. */
307 if (!set_contains(done, prefix) &&
308 !(top_autofs || hashmap_contains(todo, prefix))) {
309
310 /* The prefix directory itself is not yet a mount, make it one. */
311 r = mount_nofollow(prefix, prefix, NULL, MS_BIND|MS_REC, NULL);
312 if (r < 0)
313 return r;
314
315 /* Immediately rescan, so that we pick up the new mount's flags */
316 continue;
317 }
318
319 /* If we have no submounts to process anymore, we are done */
320 if (hashmap_isempty(todo))
321 return 0;
322
323 for (;;) {
324 unsigned long flags;
325 char *x = NULL;
326
327 /* Take the first mount from our list of mounts to still process */
328 flags = PTR_TO_ULONG(hashmap_steal_first_key_and_value(todo, (void**) &x));
329 if (!x)
330 break;
331
332 r = set_ensure_consume(&done, &path_hash_ops_free, x);
333 if (IN_SET(r, 0, -EEXIST))
334 continue; /* Already done */
335 if (r < 0)
336 return r;
337
338 /* Now, remount this with the new flags set, but exclude MS_RELATIME from it. (It's
339 * the default anyway, thus redundant, and in userns we'll get an error if we try to
340 * explicitly enable it) */
341 r = mount_nofollow(NULL, x, NULL, ((flags & ~flags_mask)|MS_BIND|MS_REMOUNT|new_flags) & ~MS_RELATIME, NULL);
342 if (r < 0) {
343 int q;
344
345 /* OK, so the remount of this entry failed. We'll ultimately ignore this in
346 * almost all cases (there are simply so many reasons why this can fail,
347 * think autofs, NFS, FUSE, …), but let's generate useful debug messages at
348 * the very least. */
349
350 q = path_is_mount_point(x, NULL, 0);
351 if (IN_SET(q, 0, -ENOENT)) {
352 /* Hmm, whaaaa? The mount point is not actually a mount point? Then
353 * it is either obstructed by a later mount or somebody has been
354 * racing against us and removed it. Either way the mount point
355 * doesn't matter to us, let's ignore it hence. */
356 log_debug_errno(r, "Mount point '%s' to remount is not a mount point anymore, ignoring remount failure: %m", x);
357 continue;
358 }
359 if (q < 0) /* Any other error on this? Just log and continue */
360 log_debug_errno(q, "Failed to determine whether '%s' is a mount point or not, ignoring: %m", x);
361
362 if (((flags ^ new_flags) & flags_mask & ~MS_RELATIME) == 0) { /* ignore MS_RELATIME while comparing */
363 log_debug_errno(r, "Couldn't remount '%s', but the flags already match what we want, hence ignoring: %m", x);
364 continue;
365 }
366
367 /* Make this fatal if this is the top-level mount */
368 if (path_equal(x, prefix))
369 return r;
370
371 /* If this is not the top-level mount, then handle this gracefully: log but
372 * otherwise ignore. With NFS, FUSE, autofs there are just too many reasons
373 * this might fail without a chance for us to do anything about it, let's
374 * hence be strict on the top-level mount and lenient on the inner ones. */
375 log_debug_errno(r, "Couldn't remount submount '%s' for unexpected reason, ignoring: %m", x);
376 continue;
377 }
378
379 log_trace("Remounted %s.", x);
380 }
381 }
382 }
383
384 int bind_remount_one_with_mountinfo(
385 const char *path,
386 unsigned long new_flags,
387 unsigned long flags_mask,
388 FILE *proc_self_mountinfo) {
389
390 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
391 unsigned long flags = 0;
392 struct libmnt_fs *fs;
393 const char *opts;
394 int r;
395
396 assert(path);
397 assert(proc_self_mountinfo);
398
399 if ((flags_mask & ~MS_CONVERTIBLE_FLAGS) == 0 && !skip_mount_set_attr) {
400 /* Let's take a shortcut for all the flags we know how to convert into mount_setattr() flags */
401
402 if (mount_setattr(AT_FDCWD, path, AT_SYMLINK_NOFOLLOW,
403 &(struct mount_attr) {
404 .attr_set = ms_flags_to_mount_attr(new_flags & flags_mask),
405 .attr_clr = ms_flags_to_mount_attr(~new_flags & flags_mask),
406 }, MOUNT_ATTR_SIZE_VER0) < 0) {
407
408 log_debug_errno(errno, "mount_setattr() didn't work, falling back to classic remounting: %m");
409
410 if (ERRNO_IS_NOT_SUPPORTED(errno)) /* if not supported, then don't bother at all anymore */
411 skip_mount_set_attr = true;
412 } else
413 return 0; /* Nice, this worked! */
414 }
415
416 rewind(proc_self_mountinfo);
417
418 table = mnt_new_table();
419 if (!table)
420 return -ENOMEM;
421
422 r = mnt_table_parse_stream(table, proc_self_mountinfo, "/proc/self/mountinfo");
423 if (r < 0)
424 return r;
425
426 fs = mnt_table_find_target(table, path, MNT_ITER_FORWARD);
427 if (!fs) {
428 if (laccess(path, F_OK) < 0) /* Hmm, it's not in the mount table, but does it exist at all? */
429 return -errno;
430
431 return -EINVAL; /* Not a mount point we recognize */
432 }
433
434 opts = mnt_fs_get_vfs_options(fs);
435 if (opts) {
436 r = mnt_optstr_get_flags(opts, &flags, mnt_get_builtin_optmap(MNT_LINUX_MAP));
437 if (r < 0)
438 log_debug_errno(r, "Could not get flags for '%s', ignoring: %m", path);
439 }
440
441 r = mount_nofollow(NULL, path, NULL, ((flags & ~flags_mask)|MS_BIND|MS_REMOUNT|new_flags) & ~MS_RELATIME, NULL);
442 if (r < 0) {
443 if (((flags ^ new_flags) & flags_mask & ~MS_RELATIME) != 0) /* Ignore MS_RELATIME again,
444 * since kernel adds it in
445 * everywhere, because it's the
446 * default. */
447 return r;
448
449 /* Let's handle redundant remounts gracefully */
450 log_debug_errno(r, "Failed to remount '%s' but flags already match what we want, ignoring: %m", path);
451 }
452
453 return 0;
454 }
455
456 static int mount_switch_root_pivot(int fd_newroot, const char *path) {
457 assert(fd_newroot >= 0);
458 assert(path);
459
460 /* Change into the new rootfs. */
461 if (fchdir(fd_newroot) < 0)
462 return log_debug_errno(errno, "Failed to chdir into new rootfs '%s': %m", path);
463
464 /* Let the kernel tuck the new root under the old one. */
465 if (pivot_root(".", ".") < 0)
466 return log_debug_errno(errno, "Failed to pivot root to new rootfs '%s': %m", path);
467
468 /* Get rid of the old root and reveal our brand new root. (This will always operate on the top-most
469 * mount on our cwd, regardless what our current directory actually points to.) */
470 if (umount2(".", MNT_DETACH) < 0)
471 return log_debug_errno(errno, "Failed to unmount old rootfs: %m");
472
473 return 0;
474 }
475
476 static int mount_switch_root_move(int fd_newroot, const char *path) {
477 assert(fd_newroot >= 0);
478 assert(path);
479
480 /* Change into the new rootfs. */
481 if (fchdir(fd_newroot) < 0)
482 return log_debug_errno(errno, "Failed to chdir into new rootfs '%s': %m", path);
483
484 /* Move the new root fs */
485 if (mount(".", "/", NULL, MS_MOVE, NULL) < 0)
486 return log_debug_errno(errno, "Failed to move new rootfs '%s': %m", path);
487
488 /* Also change root dir */
489 if (chroot(".") < 0)
490 return log_debug_errno(errno, "Failed to chroot to new rootfs '%s': %m", path);
491
492 return 0;
493 }
494
495 int mount_switch_root_full(const char *path, unsigned long mount_propagation_flag, bool force_ms_move) {
496 _cleanup_close_ int fd_newroot = -EBADF;
497 int r;
498
499 assert(path);
500 assert(mount_propagation_flag_is_valid(mount_propagation_flag));
501
502 fd_newroot = open(path, O_PATH|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW);
503 if (fd_newroot < 0)
504 return log_debug_errno(errno, "Failed to open new rootfs '%s': %m", path);
505
506 if (!force_ms_move) {
507 r = mount_switch_root_pivot(fd_newroot, path);
508 if (r < 0) {
509 log_debug_errno(r, "Failed to pivot into new rootfs '%s', will try to use MS_MOVE instead: %m", path);
510 force_ms_move = true;
511 }
512 }
513 if (force_ms_move) {
514 /* Failed to pivot_root() fallback to MS_MOVE. For example, this may happen if the rootfs is
515 * an initramfs in which case pivot_root() isn't supported. */
516 r = mount_switch_root_move(fd_newroot, path);
517 if (r < 0)
518 return log_debug_errno(r, "Failed to switch to new rootfs '%s' with MS_MOVE: %m", path);
519 }
520
521 /* Finally, let's establish the requested propagation flags. */
522 if (mount_propagation_flag == 0)
523 return 0;
524
525 if (mount(NULL, ".", NULL, mount_propagation_flag | MS_REC, 0) < 0)
526 return log_debug_errno(errno, "Failed to turn new rootfs '%s' into %s mount: %m",
527 mount_propagation_flag_to_string(mount_propagation_flag), path);
528
529 return 0;
530 }
531
532 int repeat_unmount(const char *path, int flags) {
533 bool done = false;
534
535 assert(path);
536
537 /* If there are multiple mounts on a mount point, this
538 * removes them all */
539
540 for (;;) {
541 if (umount2(path, flags) < 0) {
542
543 if (errno == EINVAL)
544 return done;
545
546 return -errno;
547 }
548
549 done = true;
550 }
551 }
552
553 int mode_to_inaccessible_node(
554 const char *runtime_dir,
555 mode_t mode,
556 char **ret) {
557
558 /* This function maps a node type to a corresponding inaccessible file node. These nodes are created
559 * during early boot by PID 1. In some cases we lacked the privs to create the character and block
560 * devices (maybe because we run in an userns environment, or miss CAP_SYS_MKNOD, or run with a
561 * devices policy that excludes device nodes with major and minor of 0), but that's fine, in that
562 * case we use an AF_UNIX file node instead, which is not the same, but close enough for most
563 * uses. And most importantly, the kernel allows bind mounts from socket nodes to any non-directory
564 * file nodes, and that's the most important thing that matters.
565 *
566 * Note that the runtime directory argument shall be the top-level runtime directory, i.e. /run/ if
567 * we operate in system context and $XDG_RUNTIME_DIR if we operate in user context. */
568
569 _cleanup_free_ char *d = NULL;
570 const char *node;
571
572 assert(ret);
573
574 if (!runtime_dir)
575 runtime_dir = "/run";
576
577 if (S_ISLNK(mode))
578 return -EINVAL;
579
580 node = inode_type_to_string(mode);
581 if (!node)
582 return -EINVAL;
583
584 d = path_join(runtime_dir, "systemd/inaccessible", node);
585 if (!d)
586 return -ENOMEM;
587
588 /* On new kernels unprivileged users are permitted to create 0:0 char device nodes (because they also
589 * act as whiteout inode for overlayfs), but no other char or block device nodes. On old kernels no
590 * device node whatsoever may be created by unprivileged processes. Hence, if the caller asks for the
591 * inaccessible block device node let's see if the block device node actually exists, and if not,
592 * fall back to the character device node. From there fall back to the socket device node. This means
593 * in the best case we'll get the right device node type — but if not we'll hopefully at least get a
594 * device node at all. */
595
596 if (S_ISBLK(mode) &&
597 access(d, F_OK) < 0 && errno == ENOENT) {
598 free(d);
599 d = path_join(runtime_dir, "/systemd/inaccessible/chr");
600 if (!d)
601 return -ENOMEM;
602 }
603
604 if (IN_SET(mode & S_IFMT, S_IFBLK, S_IFCHR) &&
605 access(d, F_OK) < 0 && errno == ENOENT) {
606 free(d);
607 d = path_join(runtime_dir, "/systemd/inaccessible/sock");
608 if (!d)
609 return -ENOMEM;
610 }
611
612 *ret = TAKE_PTR(d);
613 return 0;
614 }
615
616 int mount_flags_to_string(unsigned long flags, char **ret) {
617 static const struct {
618 unsigned long flag;
619 const char *name;
620 } map[] = {
621 { .flag = MS_RDONLY, .name = "MS_RDONLY", },
622 { .flag = MS_NOSUID, .name = "MS_NOSUID", },
623 { .flag = MS_NODEV, .name = "MS_NODEV", },
624 { .flag = MS_NOEXEC, .name = "MS_NOEXEC", },
625 { .flag = MS_SYNCHRONOUS, .name = "MS_SYNCHRONOUS", },
626 { .flag = MS_REMOUNT, .name = "MS_REMOUNT", },
627 { .flag = MS_MANDLOCK, .name = "MS_MANDLOCK", },
628 { .flag = MS_DIRSYNC, .name = "MS_DIRSYNC", },
629 { .flag = MS_NOSYMFOLLOW, .name = "MS_NOSYMFOLLOW", },
630 { .flag = MS_NOATIME, .name = "MS_NOATIME", },
631 { .flag = MS_NODIRATIME, .name = "MS_NODIRATIME", },
632 { .flag = MS_BIND, .name = "MS_BIND", },
633 { .flag = MS_MOVE, .name = "MS_MOVE", },
634 { .flag = MS_REC, .name = "MS_REC", },
635 { .flag = MS_SILENT, .name = "MS_SILENT", },
636 { .flag = MS_POSIXACL, .name = "MS_POSIXACL", },
637 { .flag = MS_UNBINDABLE, .name = "MS_UNBINDABLE", },
638 { .flag = MS_PRIVATE, .name = "MS_PRIVATE", },
639 { .flag = MS_SLAVE, .name = "MS_SLAVE", },
640 { .flag = MS_SHARED, .name = "MS_SHARED", },
641 { .flag = MS_RELATIME, .name = "MS_RELATIME", },
642 { .flag = MS_KERNMOUNT, .name = "MS_KERNMOUNT", },
643 { .flag = MS_I_VERSION, .name = "MS_I_VERSION", },
644 { .flag = MS_STRICTATIME, .name = "MS_STRICTATIME", },
645 { .flag = MS_LAZYTIME, .name = "MS_LAZYTIME", },
646 };
647 _cleanup_free_ char *str = NULL;
648
649 assert(ret);
650
651 for (size_t i = 0; i < ELEMENTSOF(map); i++)
652 if (flags & map[i].flag) {
653 if (!strextend_with_separator(&str, "|", map[i].name))
654 return -ENOMEM;
655 flags &= ~map[i].flag;
656 }
657
658 if (!str || flags != 0)
659 if (strextendf_with_separator(&str, "|", "%lx", flags) < 0)
660 return -ENOMEM;
661
662 *ret = TAKE_PTR(str);
663 return 0;
664 }
665
666 int mount_verbose_full(
667 int error_log_level,
668 const char *what,
669 const char *where,
670 const char *type,
671 unsigned long flags,
672 const char *options,
673 bool follow_symlink) {
674
675 _cleanup_free_ char *fl = NULL, *o = NULL;
676 unsigned long f;
677 int r;
678
679 r = mount_option_mangle(options, flags, &f, &o);
680 if (r < 0)
681 return log_full_errno(error_log_level, r,
682 "Failed to mangle mount options %s: %m",
683 strempty(options));
684
685 (void) mount_flags_to_string(f, &fl);
686
687 if (FLAGS_SET(f, MS_REMOUNT|MS_BIND))
688 log_debug("Changing mount flags %s (%s \"%s\")...",
689 where, strnull(fl), strempty(o));
690 else if (f & MS_REMOUNT)
691 log_debug("Remounting superblock %s (%s \"%s\")...",
692 where, strnull(fl), strempty(o));
693 else if (f & (MS_SHARED|MS_PRIVATE|MS_SLAVE|MS_UNBINDABLE))
694 log_debug("Changing mount propagation %s (%s \"%s\")",
695 where, strnull(fl), strempty(o));
696 else if (f & MS_BIND)
697 log_debug("Bind-mounting %s on %s (%s \"%s\")...",
698 what, where, strnull(fl), strempty(o));
699 else if (f & MS_MOVE)
700 log_debug("Moving mount %s %s %s (%s \"%s\")...",
701 what, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), where, strnull(fl), strempty(o));
702 else
703 log_debug("Mounting %s (%s) on %s (%s \"%s\")...",
704 strna(what), strna(type), where, strnull(fl), strempty(o));
705
706 if (follow_symlink)
707 r = RET_NERRNO(mount(what, where, type, f, o));
708 else
709 r = mount_nofollow(what, where, type, f, o);
710 if (r < 0)
711 return log_full_errno(error_log_level, r,
712 "Failed to mount %s (type %s) on %s (%s \"%s\"): %m",
713 strna(what), strna(type), where, strnull(fl), strempty(o));
714 return 0;
715 }
716
717 int umount_verbose(
718 int error_log_level,
719 const char *what,
720 int flags) {
721
722 assert(what);
723
724 log_debug("Umounting %s...", what);
725
726 if (umount2(what, flags) < 0)
727 return log_full_errno(error_log_level, errno,
728 "Failed to unmount %s: %m", what);
729
730 return 0;
731 }
732
733 int mount_exchange_graceful(int fsmount_fd, const char *dest, bool mount_beneath) {
734 int r;
735
736 assert(fsmount_fd >= 0);
737 assert(dest);
738
739 /* First, try to mount beneath an existing mount point, and if that works, umount the old mount,
740 * which is now at the top. This will ensure we can atomically replace a mount. Note that this works
741 * also in the case where there are submounts down the tree. Mount propagation is allowed but
742 * restricted to layouts that don't end up propagation the new mount on top of the mount stack. If
743 * this is not supported (minimum kernel v6.5), or if there is no mount on the mountpoint, we get
744 * -EINVAL and then we fallback to normal mounting. */
745
746 r = RET_NERRNO(move_mount(
747 fsmount_fd,
748 /* from_path= */ "",
749 /* to_fd= */ -EBADF,
750 dest,
751 MOVE_MOUNT_F_EMPTY_PATH | (mount_beneath ? MOVE_MOUNT_BENEATH : 0)));
752 if (mount_beneath) {
753 if (r == -EINVAL) { /* Fallback if mount_beneath is not supported */
754 log_debug_errno(r,
755 "Failed to mount beneath '%s', falling back to overmount",
756 dest);
757 return RET_NERRNO(move_mount(
758 fsmount_fd,
759 /* from_path= */ "",
760 /* to_fd= */ -EBADF,
761 dest,
762 MOVE_MOUNT_F_EMPTY_PATH));
763 }
764
765 if (r >= 0) /* If it is, now remove the old mount */
766 return umount_verbose(LOG_DEBUG, dest, UMOUNT_NOFOLLOW|MNT_DETACH);
767 }
768
769 return r;
770 }
771
772 int mount_option_mangle(
773 const char *options,
774 unsigned long mount_flags,
775 unsigned long *ret_mount_flags,
776 char **ret_remaining_options) {
777
778 const struct libmnt_optmap *map;
779 _cleanup_free_ char *ret = NULL;
780 int r;
781
782 /* This extracts mount flags from the mount options, and stores
783 * non-mount-flag options to '*ret_remaining_options'.
784 * E.g.,
785 * "rw,nosuid,nodev,relatime,size=1630748k,mode=0700,uid=1000,gid=1000"
786 * is split to MS_NOSUID|MS_NODEV|MS_RELATIME and
787 * "size=1630748k,mode=0700,uid=1000,gid=1000".
788 * See more examples in test-mount-util.c.
789 *
790 * If 'options' does not contain any non-mount-flag options,
791 * then '*ret_remaining_options' is set to NULL instead of empty string.
792 * The validity of options stored in '*ret_remaining_options' is not checked.
793 * If 'options' is NULL, this just copies 'mount_flags' to *ret_mount_flags. */
794
795 assert(ret_mount_flags);
796 assert(ret_remaining_options);
797
798 map = mnt_get_builtin_optmap(MNT_LINUX_MAP);
799 if (!map)
800 return -EINVAL;
801
802 for (const char *p = options;;) {
803 _cleanup_free_ char *word = NULL;
804 const struct libmnt_optmap *ent;
805
806 r = extract_first_word(&p, &word, ",", EXTRACT_KEEP_QUOTE);
807 if (r < 0)
808 return r;
809 if (r == 0)
810 break;
811
812 for (ent = map; ent->name; ent++) {
813 /* All entries in MNT_LINUX_MAP do not take any argument.
814 * Thus, ent->name does not contain "=" or "[=]". */
815 if (!streq(word, ent->name))
816 continue;
817
818 if (!(ent->mask & MNT_INVERT))
819 mount_flags |= ent->id;
820 else if (mount_flags & ent->id)
821 mount_flags ^= ent->id;
822
823 break;
824 }
825
826 /* If 'word' is not a mount flag, then store it in '*ret_remaining_options'. */
827 if (!ent->name &&
828 !startswith_no_case(word, "x-") &&
829 !strextend_with_separator(&ret, ",", word))
830 return -ENOMEM;
831 }
832
833 *ret_mount_flags = mount_flags;
834 *ret_remaining_options = TAKE_PTR(ret);
835
836 return 0;
837 }
838
839 static int mount_in_namespace_legacy(
840 const char *chased_src_path,
841 int chased_src_fd,
842 struct stat *chased_src_st,
843 const char *propagate_path,
844 const char *incoming_path,
845 const char *dest,
846 int pidns_fd,
847 int mntns_fd,
848 int root_fd,
849 bool read_only,
850 bool make_file_or_directory,
851 const MountOptions *options,
852 const ImagePolicy *image_policy,
853 bool is_image) {
854
855 _cleanup_close_pair_ int errno_pipe_fd[2] = EBADF_PAIR;
856 char mount_slave[] = "/tmp/propagate.XXXXXX", *mount_tmp, *mount_outside, *p;
857 bool mount_slave_created = false, mount_slave_mounted = false,
858 mount_tmp_created = false, mount_tmp_mounted = false,
859 mount_outside_created = false, mount_outside_mounted = false;
860 pid_t child;
861 int r;
862
863 assert(chased_src_path);
864 assert(chased_src_fd >= 0);
865 assert(chased_src_st);
866 assert(propagate_path);
867 assert(incoming_path);
868 assert(dest);
869 assert(pidns_fd >= 0);
870 assert(mntns_fd >= 0);
871 assert(root_fd >= 0);
872 assert(!options || is_image);
873
874 p = strjoina(propagate_path, "/");
875 r = laccess(p, F_OK);
876 if (r < 0)
877 return log_debug_errno(r == -ENOENT ? SYNTHETIC_ERRNO(EOPNOTSUPP) : r, "Target does not allow propagation of mount points");
878
879 /* Our goal is to install a new bind mount into the container,
880 possibly read-only. This is irritatingly complex
881 unfortunately, currently.
882
883 First, we start by creating a private playground in /tmp,
884 that we can mount MS_SLAVE. (Which is necessary, since
885 MS_MOVE cannot be applied to mounts with MS_SHARED parent
886 mounts.) */
887
888 if (!mkdtemp(mount_slave))
889 return log_debug_errno(errno, "Failed to create playground %s: %m", mount_slave);
890
891 mount_slave_created = true;
892
893 r = mount_nofollow_verbose(LOG_DEBUG, mount_slave, mount_slave, NULL, MS_BIND, NULL);
894 if (r < 0)
895 goto finish;
896
897 mount_slave_mounted = true;
898
899 r = mount_nofollow_verbose(LOG_DEBUG, NULL, mount_slave, NULL, MS_SLAVE, NULL);
900 if (r < 0)
901 goto finish;
902
903 /* Second, we mount the source file or directory to a directory inside of our MS_SLAVE playground. */
904 mount_tmp = strjoina(mount_slave, "/mount");
905 if (is_image)
906 r = mkdir_p(mount_tmp, 0700);
907 else
908 r = make_mount_point_inode_from_stat(chased_src_st, mount_tmp, 0700);
909 if (r < 0) {
910 log_debug_errno(r, "Failed to create temporary mount point %s: %m", mount_tmp);
911 goto finish;
912 }
913
914 mount_tmp_created = true;
915
916 if (is_image)
917 r = verity_dissect_and_mount(
918 chased_src_fd,
919 chased_src_path,
920 mount_tmp,
921 options,
922 image_policy,
923 /* required_host_os_release_id= */ NULL,
924 /* required_host_os_release_version_id= */ NULL,
925 /* required_host_os_release_sysext_level= */ NULL,
926 /* required_host_os_release_confext_level= */ NULL,
927 /* required_sysext_scope= */ NULL,
928 /* ret_image= */ NULL);
929 else
930 r = mount_follow_verbose(LOG_DEBUG, FORMAT_PROC_FD_PATH(chased_src_fd), mount_tmp, NULL, MS_BIND, NULL);
931 if (r < 0)
932 goto finish;
933
934 mount_tmp_mounted = true;
935
936 /* Third, we remount the new bind mount read-only if requested. */
937 if (read_only) {
938 r = mount_nofollow_verbose(LOG_DEBUG, NULL, mount_tmp, NULL, MS_BIND|MS_REMOUNT|MS_RDONLY, NULL);
939 if (r < 0)
940 goto finish;
941 }
942
943 /* Fourth, we move the new bind mount into the propagation directory. This way it will appear there read-only
944 * right-away. */
945
946 mount_outside = strjoina(propagate_path, "/XXXXXX");
947 if (is_image || S_ISDIR(chased_src_st->st_mode))
948 r = mkdtemp(mount_outside) ? 0 : -errno;
949 else {
950 r = mkostemp_safe(mount_outside);
951 safe_close(r);
952 }
953 if (r < 0) {
954 log_debug_errno(r, "Cannot create propagation file or directory %s: %m", mount_outside);
955 goto finish;
956 }
957
958 mount_outside_created = true;
959
960 r = mount_nofollow_verbose(LOG_DEBUG, mount_tmp, mount_outside, NULL, MS_MOVE, NULL);
961 if (r < 0)
962 goto finish;
963
964 mount_outside_mounted = true;
965 mount_tmp_mounted = false;
966
967 if (is_image || S_ISDIR(chased_src_st->st_mode))
968 (void) rmdir(mount_tmp);
969 else
970 (void) unlink(mount_tmp);
971 mount_tmp_created = false;
972
973 (void) umount_verbose(LOG_DEBUG, mount_slave, UMOUNT_NOFOLLOW);
974 mount_slave_mounted = false;
975
976 (void) rmdir(mount_slave);
977 mount_slave_created = false;
978
979 if (pipe2(errno_pipe_fd, O_CLOEXEC|O_NONBLOCK) < 0) {
980 log_debug_errno(errno, "Failed to create pipe: %m");
981 goto finish;
982 }
983
984 r = namespace_fork("(sd-bindmnt)", "(sd-bindmnt-inner)", NULL, 0, FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGTERM,
985 pidns_fd, mntns_fd, -1, -1, root_fd, &child);
986 if (r < 0)
987 goto finish;
988 if (r == 0) {
989 _cleanup_free_ char *mount_outside_fn = NULL, *mount_inside = NULL;
990
991 errno_pipe_fd[0] = safe_close(errno_pipe_fd[0]);
992
993 if (make_file_or_directory) {
994 if (!is_image) {
995 (void) mkdir_parents(dest, 0755);
996 (void) make_mount_point_inode_from_stat(chased_src_st, dest, 0700);
997 } else
998 (void) mkdir_p(dest, 0755);
999 }
1000
1001 /* Fifth, move the mount to the right place inside */
1002 r = path_extract_filename(mount_outside, &mount_outside_fn);
1003 if (r < 0) {
1004 log_debug_errno(r, "Failed to extract filename from propagation file or directory '%s': %m", mount_outside);
1005 goto child_fail;
1006 }
1007
1008 mount_inside = path_join(incoming_path, mount_outside_fn);
1009 if (!mount_inside) {
1010 r = log_oom_debug();
1011 goto child_fail;
1012 }
1013
1014 r = mount_nofollow_verbose(LOG_DEBUG, mount_inside, dest, NULL, MS_MOVE, NULL);
1015 if (r < 0)
1016 goto child_fail;
1017
1018 _exit(EXIT_SUCCESS);
1019
1020 child_fail:
1021 (void) write(errno_pipe_fd[1], &r, sizeof(r));
1022 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1023
1024 _exit(EXIT_FAILURE);
1025 }
1026
1027 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1028
1029 r = wait_for_terminate_and_check("(sd-bindmnt)", child, 0);
1030 if (r < 0) {
1031 log_debug_errno(r, "Failed to wait for child: %m");
1032 goto finish;
1033 }
1034 if (r != EXIT_SUCCESS) {
1035 if (read(errno_pipe_fd[0], &r, sizeof(r)) == sizeof(r))
1036 log_debug_errno(r, "Failed to mount: %m");
1037 else
1038 log_debug("Child failed.");
1039 goto finish;
1040 }
1041
1042 finish:
1043 if (mount_outside_mounted)
1044 (void) umount_verbose(LOG_DEBUG, mount_outside, UMOUNT_NOFOLLOW);
1045 if (mount_outside_created) {
1046 if (is_image || S_ISDIR(chased_src_st->st_mode))
1047 (void) rmdir(mount_outside);
1048 else
1049 (void) unlink(mount_outside);
1050 }
1051
1052 if (mount_tmp_mounted)
1053 (void) umount_verbose(LOG_DEBUG, mount_tmp, UMOUNT_NOFOLLOW);
1054 if (mount_tmp_created) {
1055 if (is_image || S_ISDIR(chased_src_st->st_mode))
1056 (void) rmdir(mount_tmp);
1057 else
1058 (void) unlink(mount_tmp);
1059 }
1060
1061 if (mount_slave_mounted)
1062 (void) umount_verbose(LOG_DEBUG, mount_slave, UMOUNT_NOFOLLOW);
1063 if (mount_slave_created)
1064 (void) rmdir(mount_slave);
1065
1066 return r;
1067 }
1068
1069 static int mount_in_namespace(
1070 const PidRef *target,
1071 const char *propagate_path,
1072 const char *incoming_path,
1073 const char *src,
1074 const char *dest,
1075 bool read_only,
1076 bool make_file_or_directory,
1077 const MountOptions *options,
1078 const ImagePolicy *image_policy,
1079 bool is_image) {
1080
1081 _cleanup_(dissected_image_unrefp) DissectedImage *img = NULL;
1082 _cleanup_close_pair_ int errno_pipe_fd[2] = EBADF_PAIR;
1083 _cleanup_close_ int mntns_fd = -EBADF, root_fd = -EBADF, pidns_fd = -EBADF, chased_src_fd = -EBADF,
1084 new_mount_fd = -EBADF;
1085 _cleanup_free_ char *chased_src_path = NULL;
1086 struct stat st;
1087 pid_t child;
1088 int r;
1089
1090 assert(propagate_path);
1091 assert(incoming_path);
1092 assert(src);
1093 assert(dest);
1094 assert(!options || is_image);
1095
1096 if (!pidref_is_set(target))
1097 return -ESRCH;
1098
1099 r = namespace_open(target->pid, &pidns_fd, &mntns_fd, NULL, NULL, &root_fd);
1100 if (r < 0)
1101 return log_debug_errno(r, "Failed to retrieve FDs of the target process' namespace: %m");
1102
1103 r = in_same_namespace(target->pid, 0, NAMESPACE_MOUNT);
1104 if (r < 0)
1105 return log_debug_errno(r, "Failed to determine if mount namespaces are equal: %m");
1106 /* We can't add new mounts at runtime if the process wasn't started in a namespace */
1107 if (r > 0)
1108 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to activate bind mount in target, not running in a mount namespace");
1109
1110 r = pidref_verify(target);
1111 if (r < 0)
1112 return log_debug_errno(r, "Failed to verify target process '" PID_FMT "': %m", target->pid);
1113
1114 r = chase(src, NULL, 0, &chased_src_path, &chased_src_fd);
1115 if (r < 0)
1116 return log_debug_errno(r, "Failed to resolve source path of %s: %m", src);
1117 log_debug("Chased source path of %s to %s", src, chased_src_path);
1118
1119 if (fstat(chased_src_fd, &st) < 0)
1120 return log_debug_errno(errno, "Failed to stat() resolved source path %s: %m", src);
1121 if (S_ISLNK(st.st_mode)) /* This shouldn't really happen, given that we just chased the symlinks above, but let's better be safe… */
1122 return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "Source directory %s can't be a symbolic link", src);
1123
1124 if (!mount_new_api_supported()) /* Fallback if we can't use the new mount API */
1125 return mount_in_namespace_legacy(
1126 chased_src_path,
1127 chased_src_fd,
1128 &st,
1129 propagate_path,
1130 incoming_path,
1131 dest,
1132 pidns_fd,
1133 mntns_fd,
1134 root_fd,
1135 read_only,
1136 make_file_or_directory,
1137 options,
1138 image_policy,
1139 is_image);
1140
1141 if (is_image) {
1142 r = verity_dissect_and_mount(
1143 chased_src_fd,
1144 chased_src_path,
1145 /* dest= */ NULL,
1146 options,
1147 image_policy,
1148 /* required_host_os_release_id= */ NULL,
1149 /* required_host_os_release_version_id= */ NULL,
1150 /* required_host_os_release_sysext_level= */ NULL,
1151 /* required_host_os_release_confext_level= */ NULL,
1152 /* required_sysext_scope= */ NULL,
1153 &img);
1154 if (r < 0)
1155 return log_debug_errno(
1156 r,
1157 "Failed to dissect and mount image %s: %m",
1158 chased_src_path);
1159 } else {
1160 new_mount_fd = open_tree(
1161 chased_src_fd,
1162 "",
1163 OPEN_TREE_CLONE|OPEN_TREE_CLOEXEC|AT_SYMLINK_NOFOLLOW|AT_EMPTY_PATH);
1164 if (new_mount_fd < 0)
1165 return log_debug_errno(
1166 errno,
1167 "Failed to open mount point \"%s\": %m",
1168 chased_src_path);
1169
1170 if (read_only && mount_setattr(new_mount_fd, "", AT_EMPTY_PATH,
1171 &(struct mount_attr) {
1172 .attr_set = MOUNT_ATTR_RDONLY,
1173 }, MOUNT_ATTR_SIZE_VER0) < 0)
1174 return log_debug_errno(
1175 errno,
1176 "Failed to set mount flags for \"%s\": %m",
1177 chased_src_path);
1178 }
1179
1180 if (pipe2(errno_pipe_fd, O_CLOEXEC|O_NONBLOCK) < 0)
1181 return log_debug_errno(errno, "Failed to create pipe: %m");
1182
1183 r = namespace_fork("(sd-bindmnt)",
1184 "(sd-bindmnt-inner)",
1185 /* except_fds= */ NULL,
1186 /* n_except_fds= */ 0,
1187 FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGTERM,
1188 pidns_fd,
1189 mntns_fd,
1190 /* netns_fd= */ -1,
1191 /* userns_fd= */ -1,
1192 root_fd,
1193 &child);
1194 if (r < 0)
1195 return log_debug_errno(r, "Failed to fork off: %m");
1196 if (r == 0) {
1197 errno_pipe_fd[0] = safe_close(errno_pipe_fd[0]);
1198
1199 if (make_file_or_directory)
1200 (void) mkdir_parents(dest, 0755);
1201
1202 if (img) {
1203 DissectImageFlags f = DISSECT_IMAGE_TRY_ATOMIC_MOUNT_EXCHANGE;
1204
1205 if (make_file_or_directory)
1206 f |= DISSECT_IMAGE_MKDIR;
1207
1208 if (read_only)
1209 f |= DISSECT_IMAGE_READ_ONLY;
1210
1211 r = dissected_image_mount(
1212 img,
1213 dest,
1214 /* uid_shift= */ UID_INVALID,
1215 /* uid_range= */ UID_INVALID,
1216 /* userns_fd= */ -EBADF,
1217 f);
1218 } else {
1219 if (make_file_or_directory)
1220 (void) make_mount_point_inode_from_stat(&st, dest, 0700);
1221
1222 r = mount_exchange_graceful(new_mount_fd, dest, /* mount_beneath= */ true);
1223 }
1224 if (r < 0) {
1225 (void) write(errno_pipe_fd[1], &r, sizeof(r));
1226 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1227
1228 _exit(EXIT_FAILURE);
1229 }
1230
1231 _exit(EXIT_SUCCESS);
1232 }
1233
1234 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1235
1236 r = wait_for_terminate_and_check("(sd-bindmnt)", child, 0);
1237 if (r < 0)
1238 return log_debug_errno(r, "Failed to wait for child: %m");
1239 if (r != EXIT_SUCCESS) {
1240 if (read(errno_pipe_fd[0], &r, sizeof(r)) == sizeof(r))
1241 return log_debug_errno(r, "Failed to mount: %m");
1242
1243 return log_debug_errno(SYNTHETIC_ERRNO(EPROTO), "Child failed.");
1244 }
1245
1246 return 0;
1247 }
1248
1249 int bind_mount_in_namespace(
1250 PidRef * target,
1251 const char *propagate_path,
1252 const char *incoming_path,
1253 const char *src,
1254 const char *dest,
1255 bool read_only,
1256 bool make_file_or_directory) {
1257
1258 return mount_in_namespace(target, propagate_path, incoming_path, src, dest, read_only, make_file_or_directory, /* options= */ NULL, /* image_policy= */ NULL, /* is_image= */ false);
1259 }
1260
1261 int mount_image_in_namespace(
1262 PidRef * target,
1263 const char *propagate_path,
1264 const char *incoming_path,
1265 const char *src,
1266 const char *dest,
1267 bool read_only,
1268 bool make_file_or_directory,
1269 const MountOptions *options,
1270 const ImagePolicy *image_policy) {
1271
1272 return mount_in_namespace(target, propagate_path, incoming_path, src, dest, read_only, make_file_or_directory, options, image_policy, /* is_image=*/ true);
1273 }
1274
1275 int make_mount_point(const char *path) {
1276 int r;
1277
1278 assert(path);
1279
1280 /* If 'path' is already a mount point, does nothing and returns 0. If it is not it makes it one, and returns 1. */
1281
1282 r = path_is_mount_point(path, NULL, 0);
1283 if (r < 0)
1284 return log_debug_errno(r, "Failed to determine whether '%s' is a mount point: %m", path);
1285 if (r > 0)
1286 return 0;
1287
1288 r = mount_nofollow_verbose(LOG_DEBUG, path, path, NULL, MS_BIND|MS_REC, NULL);
1289 if (r < 0)
1290 return r;
1291
1292 return 1;
1293 }
1294
1295 int fd_make_mount_point(int fd) {
1296 int r;
1297
1298 assert(fd >= 0);
1299
1300 r = fd_is_mount_point(fd, NULL, 0);
1301 if (r < 0)
1302 return log_debug_errno(r, "Failed to determine whether file descriptor is a mount point: %m");
1303 if (r > 0)
1304 return 0;
1305
1306 r = mount_follow_verbose(LOG_DEBUG, FORMAT_PROC_FD_PATH(fd), FORMAT_PROC_FD_PATH(fd), NULL, MS_BIND|MS_REC, NULL);
1307 if (r < 0)
1308 return r;
1309
1310 return 1;
1311 }
1312
1313 int make_userns(uid_t uid_shift, uid_t uid_range, uid_t owner, RemountIdmapping idmapping) {
1314 _cleanup_close_ int userns_fd = -EBADF;
1315 _cleanup_free_ char *line = NULL;
1316
1317 /* Allocates a userns file descriptor with the mapping we need. For this we'll fork off a child
1318 * process whose only purpose is to give us a new user namespace. It's killed when we got it. */
1319
1320 if (!userns_shift_range_valid(uid_shift, uid_range))
1321 return -EINVAL;
1322
1323 if (IN_SET(idmapping, REMOUNT_IDMAPPING_NONE, REMOUNT_IDMAPPING_HOST_ROOT)) {
1324 if (asprintf(&line, UID_FMT " " UID_FMT " " UID_FMT "\n", 0u, uid_shift, uid_range) < 0)
1325 return log_oom_debug();
1326
1327 /* If requested we'll include an entry in the mapping so that the host root user can make
1328 * changes to the uidmapped mount like it normally would. Specifically, we'll map the user
1329 * with UID_MAPPED_ROOT on the backing fs to UID 0. This is useful, since nspawn code wants
1330 * to create various missing inodes in the OS tree before booting into it, and this becomes
1331 * very easy and straightforward to do if it can just do it under its own regular UID. Note
1332 * that in that case the container's runtime uidmap (i.e. the one the container payload
1333 * processes run in) will leave this UID unmapped, i.e. if we accidentally leave files owned
1334 * by host root in the already uidmapped tree around they'll show up as owned by 'nobody',
1335 * which is safe. (Of course, we shouldn't leave such inodes around, but always chown() them
1336 * to the container's own UID range, but it's good to have a safety net, in case we
1337 * forget it.) */
1338 if (idmapping == REMOUNT_IDMAPPING_HOST_ROOT)
1339 if (strextendf(&line,
1340 UID_FMT " " UID_FMT " " UID_FMT "\n",
1341 UID_MAPPED_ROOT, 0u, 1u) < 0)
1342 return log_oom_debug();
1343 }
1344
1345 if (idmapping == REMOUNT_IDMAPPING_HOST_OWNER) {
1346 /* Remap the owner of the bind mounted directory to the root user within the container. This
1347 * way every file written by root within the container to the bind-mounted directory will
1348 * be owned by the original user. All other user will remain unmapped. */
1349 if (asprintf(&line, UID_FMT " " UID_FMT " " UID_FMT "\n", owner, uid_shift, 1u) < 0)
1350 return log_oom_debug();
1351 }
1352
1353 /* We always assign the same UID and GID ranges */
1354 userns_fd = userns_acquire(line, line);
1355 if (userns_fd < 0)
1356 return log_debug_errno(userns_fd, "Failed to acquire new userns: %m");
1357
1358 return TAKE_FD(userns_fd);
1359 }
1360
1361 int remount_idmap_fd(
1362 char **paths,
1363 int userns_fd) {
1364
1365 int r;
1366
1367 assert(userns_fd >= 0);
1368
1369 /* This remounts all specified paths with the specified userns as idmap. It will do so in in the
1370 * order specified in the strv: the expectation is that the top-level directories are at the
1371 * beginning, and nested directories in the right, so that the tree can be built correctly from left
1372 * to right. */
1373
1374 size_t n = strv_length(paths);
1375 if (n == 0) /* Nothing to do? */
1376 return 0;
1377
1378 int *mount_fds = NULL;
1379 size_t n_mounts_fds = 0;
1380
1381 mount_fds = new(int, n);
1382 if (!mount_fds)
1383 return log_oom_debug();
1384
1385 CLEANUP_ARRAY(mount_fds, n_mounts_fds, close_many_and_free);
1386
1387 for (size_t i = 0; i < n; i++) {
1388 int mntfd;
1389
1390 /* Clone the mount point */
1391 mntfd = mount_fds[n_mounts_fds] = open_tree(-EBADF, paths[i], OPEN_TREE_CLONE | OPEN_TREE_CLOEXEC);
1392 if (mount_fds[n_mounts_fds] < 0)
1393 return log_debug_errno(errno, "Failed to open tree of mounted filesystem '%s': %m", paths[i]);
1394
1395 n_mounts_fds++;
1396
1397 /* Set the user namespace mapping attribute on the cloned mount point */
1398 if (mount_setattr(mntfd, "", AT_EMPTY_PATH,
1399 &(struct mount_attr) {
1400 .attr_set = MOUNT_ATTR_IDMAP,
1401 .userns_fd = userns_fd,
1402 }, sizeof(struct mount_attr)) < 0)
1403 return log_debug_errno(errno, "Failed to change bind mount attributes for clone of '%s': %m", paths[i]);
1404 }
1405
1406 for (size_t i = n; i > 0; i--) { /* Unmount the paths right-to-left */
1407 /* Remove the old mount points now that we have a idmapped mounts as replacement for all of them */
1408 r = umount_verbose(LOG_DEBUG, paths[i-1], UMOUNT_NOFOLLOW);
1409 if (r < 0)
1410 return r;
1411 }
1412
1413 for (size_t i = 0; i < n; i++) { /* Mount the replacement mounts left-to-right */
1414 /* And place the cloned version in its place */
1415 log_debug("Mounting idmapped fs to '%s'", paths[i]);
1416 if (move_mount(mount_fds[i], "", -EBADF, paths[i], MOVE_MOUNT_F_EMPTY_PATH) < 0)
1417 return log_debug_errno(errno, "Failed to attach UID mapped mount to '%s': %m", paths[i]);
1418 }
1419
1420 return 0;
1421 }
1422
1423 int remount_idmap(char **p, uid_t uid_shift, uid_t uid_range, uid_t owner, RemountIdmapping idmapping) {
1424 _cleanup_close_ int userns_fd = -EBADF;
1425
1426 userns_fd = make_userns(uid_shift, uid_range, owner, idmapping);
1427 if (userns_fd < 0)
1428 return userns_fd;
1429
1430 return remount_idmap_fd(p, userns_fd);
1431 }
1432
1433 typedef struct SubMount {
1434 char *path;
1435 int mount_fd;
1436 } SubMount;
1437
1438 static void sub_mount_clear(SubMount *s) {
1439 assert(s);
1440
1441 s->path = mfree(s->path);
1442 s->mount_fd = safe_close(s->mount_fd);
1443 }
1444
1445 static void sub_mount_array_free(SubMount *s, size_t n) {
1446 assert(s || n == 0);
1447
1448 for (size_t i = 0; i < n; i++)
1449 sub_mount_clear(s + i);
1450
1451 free(s);
1452 }
1453
1454 static int sub_mount_compare(const SubMount *a, const SubMount *b) {
1455 assert(a);
1456 assert(b);
1457 assert(a->path);
1458 assert(b->path);
1459
1460 return path_compare(a->path, b->path);
1461 }
1462
1463 static void sub_mount_drop(SubMount *s, size_t n) {
1464 assert(s || n == 0);
1465
1466 for (size_t m = 0, i = 1; i < n; i++) {
1467 if (path_startswith(s[i].path, s[m].path))
1468 sub_mount_clear(s + i);
1469 else
1470 m = i;
1471 }
1472 }
1473
1474 static int get_sub_mounts(
1475 const char *prefix,
1476 SubMount **ret_mounts,
1477 size_t *ret_n_mounts) {
1478 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
1479 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
1480 SubMount *mounts = NULL;
1481 size_t n = 0;
1482 int r;
1483
1484 CLEANUP_ARRAY(mounts, n, sub_mount_array_free);
1485
1486 assert(prefix);
1487 assert(ret_mounts);
1488 assert(ret_n_mounts);
1489
1490 r = libmount_parse("/proc/self/mountinfo", NULL, &table, &iter);
1491 if (r < 0)
1492 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
1493
1494 for (;;) {
1495 _cleanup_close_ int mount_fd = -EBADF;
1496 _cleanup_free_ char *p = NULL;
1497 struct libmnt_fs *fs;
1498 const char *path;
1499 int id1, id2;
1500
1501 r = mnt_table_next_fs(table, iter, &fs);
1502 if (r == 1)
1503 break; /* EOF */
1504 if (r < 0)
1505 return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
1506
1507 path = mnt_fs_get_target(fs);
1508 if (!path)
1509 continue;
1510
1511 if (isempty(path_startswith(path, prefix)))
1512 continue;
1513
1514 id1 = mnt_fs_get_id(fs);
1515 r = path_get_mnt_id(path, &id2);
1516 if (r < 0) {
1517 log_debug_errno(r, "Failed to get mount ID of '%s', ignoring: %m", path);
1518 continue;
1519 }
1520 if (id1 != id2) {
1521 /* The path may be hidden by another over-mount or already remounted. */
1522 log_debug("The mount IDs of '%s' obtained by libmount and path_get_mnt_id() are different (%i vs %i), ignoring.",
1523 path, id1, id2);
1524 continue;
1525 }
1526
1527 mount_fd = open(path, O_CLOEXEC|O_PATH);
1528 if (mount_fd < 0) {
1529 if (errno == ENOENT) /* The path may be hidden by another over-mount or already unmounted. */
1530 continue;
1531
1532 return log_debug_errno(errno, "Failed to open subtree of mounted filesystem '%s': %m", path);
1533 }
1534
1535 p = strdup(path);
1536 if (!p)
1537 return log_oom_debug();
1538
1539 if (!GREEDY_REALLOC(mounts, n + 1))
1540 return log_oom_debug();
1541
1542 mounts[n++] = (SubMount) {
1543 .path = TAKE_PTR(p),
1544 .mount_fd = TAKE_FD(mount_fd),
1545 };
1546 }
1547
1548 typesafe_qsort(mounts, n, sub_mount_compare);
1549 sub_mount_drop(mounts, n);
1550
1551 *ret_mounts = TAKE_PTR(mounts);
1552 *ret_n_mounts = n;
1553 return 0;
1554 }
1555
1556 int bind_mount_submounts(
1557 const char *source,
1558 const char *target) {
1559
1560 SubMount *mounts = NULL;
1561 size_t n = 0;
1562 int ret = 0, r;
1563
1564 /* Bind mounts all child mounts of 'source' to 'target'. Useful when setting up a new procfs instance
1565 * with new mount options to copy the original submounts over. */
1566
1567 assert(source);
1568 assert(target);
1569
1570 CLEANUP_ARRAY(mounts, n, sub_mount_array_free);
1571
1572 r = get_sub_mounts(source, &mounts, &n);
1573 if (r < 0)
1574 return r;
1575
1576 FOREACH_ARRAY(m, mounts, n) {
1577 _cleanup_free_ char *t = NULL;
1578 const char *suffix;
1579
1580 if (isempty(m->path))
1581 continue;
1582
1583 assert_se(suffix = path_startswith(m->path, source));
1584
1585 t = path_join(target, suffix);
1586 if (!t)
1587 return -ENOMEM;
1588
1589 r = path_is_mount_point(t, NULL, 0);
1590 if (r < 0) {
1591 log_debug_errno(r, "Failed to detect if '%s' already is a mount point, ignoring: %m", t);
1592 continue;
1593 }
1594 if (r > 0) {
1595 log_debug("Not bind mounting '%s' from '%s' to '%s', since there's already a mountpoint.", suffix, source, target);
1596 continue;
1597 }
1598
1599 r = mount_follow_verbose(LOG_DEBUG, FORMAT_PROC_FD_PATH(m->mount_fd), t, NULL, MS_BIND|MS_REC, NULL);
1600 if (r < 0 && ret == 0)
1601 ret = r;
1602 }
1603
1604 return ret;
1605 }
1606
1607 int make_mount_point_inode_from_stat(const struct stat *st, const char *dest, mode_t mode) {
1608 assert(st);
1609 assert(dest);
1610
1611 if (S_ISDIR(st->st_mode))
1612 return mkdir_label(dest, mode);
1613 else
1614 return RET_NERRNO(mknod(dest, S_IFREG|(mode & ~0111), 0));
1615 }
1616
1617 int make_mount_point_inode_from_path(const char *source, const char *dest, mode_t mode) {
1618 struct stat st;
1619
1620 assert(source);
1621 assert(dest);
1622
1623 if (stat(source, &st) < 0)
1624 return -errno;
1625
1626 return make_mount_point_inode_from_stat(&st, dest, mode);
1627 }
1628
1629 int trigger_automount_at(int dir_fd, const char *path) {
1630 _cleanup_free_ char *nested = NULL;
1631
1632 assert(dir_fd >= 0 || dir_fd == AT_FDCWD);
1633
1634 nested = path_join(path, "a");
1635 if (!nested)
1636 return -ENOMEM;
1637
1638 (void) faccessat(dir_fd, nested, F_OK, 0);
1639
1640 return 0;
1641 }
1642
1643 unsigned long credentials_fs_mount_flags(bool ro) {
1644 /* A tight set of mount flags for credentials mounts */
1645 return MS_NODEV|MS_NOEXEC|MS_NOSUID|ms_nosymfollow_supported()|(ro ? MS_RDONLY : 0);
1646 }
1647
1648 int mount_credentials_fs(const char *path, size_t size, bool ro) {
1649 _cleanup_free_ char *opts = NULL;
1650 int r, noswap_supported;
1651
1652 /* Mounts a file system we can place credentials in, i.e. with tight access modes right from the
1653 * beginning, and ideally swapping turned off. In order of preference:
1654 *
1655 * 1. tmpfs if it supports "noswap"
1656 * 2. ramfs
1657 * 3. tmpfs if it doesn't support "noswap"
1658 */
1659
1660 noswap_supported = mount_option_supported("tmpfs", "noswap", NULL); /* Check explicitly to avoid kmsg noise */
1661 if (noswap_supported > 0) {
1662 _cleanup_free_ char *noswap_opts = NULL;
1663
1664 if (asprintf(&noswap_opts, "mode=0700,nr_inodes=1024,size=%zu,noswap", size) < 0)
1665 return -ENOMEM;
1666
1667 /* Best case: tmpfs with noswap (needs kernel >= 6.3) */
1668
1669 r = mount_nofollow_verbose(
1670 LOG_DEBUG,
1671 "tmpfs",
1672 path,
1673 "tmpfs",
1674 credentials_fs_mount_flags(ro),
1675 noswap_opts);
1676 if (r >= 0)
1677 return r;
1678 }
1679
1680 r = mount_nofollow_verbose(
1681 LOG_DEBUG,
1682 "ramfs",
1683 path,
1684 "ramfs",
1685 credentials_fs_mount_flags(ro),
1686 "mode=0700");
1687 if (r >= 0)
1688 return r;
1689
1690 if (asprintf(&opts, "mode=0700,nr_inodes=1024,size=%zu", size) < 0)
1691 return -ENOMEM;
1692
1693 return mount_nofollow_verbose(
1694 LOG_DEBUG,
1695 "tmpfs",
1696 path,
1697 "tmpfs",
1698 credentials_fs_mount_flags(ro),
1699 opts);
1700 }
1701
1702 int make_fsmount(
1703 int error_log_level,
1704 const char *what,
1705 const char *type,
1706 unsigned long flags,
1707 const char *options,
1708 int userns_fd) {
1709
1710 _cleanup_close_ int fs_fd = -EBADF, mnt_fd = -EBADF;
1711 _cleanup_free_ char *o = NULL;
1712 unsigned long f;
1713 int r;
1714
1715 assert(type);
1716 assert(what);
1717
1718 r = mount_option_mangle(options, flags, &f, &o);
1719 if (r < 0)
1720 return log_full_errno(
1721 error_log_level, r, "Failed to mangle mount options %s: %m",
1722 strempty(options));
1723
1724 if (DEBUG_LOGGING) {
1725 _cleanup_free_ char *fl = NULL;
1726 (void) mount_flags_to_string(f, &fl);
1727
1728 log_debug("Creating mount fd for %s (%s) (%s \"%s\")...",
1729 strna(what), strna(type), strnull(fl), strempty(o));
1730 }
1731
1732 fs_fd = fsopen(type, FSOPEN_CLOEXEC);
1733 if (fs_fd < 0)
1734 return log_full_errno(error_log_level, errno, "Failed to open superblock for \"%s\": %m", type);
1735
1736 if (fsconfig(fs_fd, FSCONFIG_SET_STRING, "source", what, 0) < 0)
1737 return log_full_errno(error_log_level, errno, "Failed to set mount source for \"%s\" to \"%s\": %m", type, what);
1738
1739 if (FLAGS_SET(f, MS_RDONLY))
1740 if (fsconfig(fs_fd, FSCONFIG_SET_FLAG, "ro", NULL, 0) < 0)
1741 return log_full_errno(error_log_level, errno, "Failed to set read only mount flag for \"%s\": %m", type);
1742
1743 for (const char *p = o;;) {
1744 _cleanup_free_ char *word = NULL;
1745 char *eq;
1746
1747 r = extract_first_word(&p, &word, ",", EXTRACT_KEEP_QUOTE);
1748 if (r < 0)
1749 return log_full_errno(error_log_level, r, "Failed to parse mount option string \"%s\": %m", o);
1750 if (r == 0)
1751 break;
1752
1753 eq = strchr(word, '=');
1754 if (eq) {
1755 *eq = 0;
1756 eq++;
1757
1758 if (fsconfig(fs_fd, FSCONFIG_SET_STRING, word, eq, 0) < 0)
1759 return log_full_errno(error_log_level, errno, "Failed to set mount option \"%s=%s\" for \"%s\": %m", word, eq, type);
1760 } else {
1761 if (fsconfig(fs_fd, FSCONFIG_SET_FLAG, word, NULL, 0) < 0)
1762 return log_full_errno(error_log_level, errno, "Failed to set mount flag \"%s\" for \"%s\": %m", word, type);
1763 }
1764 }
1765
1766 if (fsconfig(fs_fd, FSCONFIG_CMD_CREATE, NULL, NULL, 0) < 0)
1767 return log_full_errno(error_log_level, errno, "Failed to realize fs fd for \"%s\" (\"%s\"): %m", what, type);
1768
1769 mnt_fd = fsmount(fs_fd, FSMOUNT_CLOEXEC, 0);
1770 if (mnt_fd < 0)
1771 return log_full_errno(error_log_level, errno, "Failed to create mount fd for \"%s\" (\"%s\"): %m", what, type);
1772
1773 if (mount_setattr(mnt_fd, "", AT_EMPTY_PATH|AT_RECURSIVE,
1774 &(struct mount_attr) {
1775 .attr_set = ms_flags_to_mount_attr(f) | (userns_fd >= 0 ? MOUNT_ATTR_IDMAP : 0),
1776 .userns_fd = userns_fd,
1777 }, MOUNT_ATTR_SIZE_VER0) < 0)
1778 return log_full_errno(error_log_level,
1779 errno,
1780 "Failed to set mount flags for \"%s\" (\"%s\"): %m",
1781 what,
1782 type);
1783
1784 return TAKE_FD(mnt_fd);
1785 }