]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/mount-util.c
mount-util: Downgrade log message to trace
[thirdparty/systemd.git] / src / shared / mount-util.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
4349cd7c 2
11c3a366
TA
3#include <errno.h>
4#include <stdlib.h>
4349cd7c 5#include <sys/mount.h>
11c3a366 6#include <sys/stat.h>
4349cd7c 7#include <sys/statvfs.h>
11c3a366 8#include <unistd.h>
35fd3558 9#include <linux/loop.h>
3657d3a0 10#if WANT_LINUX_FS_H
35fd3558 11#include <linux/fs.h>
3657d3a0 12#endif
4349cd7c 13
b5efdb8a 14#include "alloc-util.h"
f461a28d 15#include "chase.h"
70599967 16#include "dissect-image.h"
45a68ed3 17#include "exec-util.h"
9e7f941a 18#include "extract-word.h"
4349cd7c
LP
19#include "fd-util.h"
20#include "fileio.h"
e1873695 21#include "fs-util.h"
e2341b6b 22#include "glyph-util.h"
93cc7779 23#include "hashmap.h"
2e776ed6 24#include "initrd-util.h"
9c653536 25#include "label.h"
13dcfe46 26#include "libmount-util.h"
1c092b62 27#include "missing_mount.h"
35fd3558 28#include "missing_syscall.h"
35cd0ba5 29#include "mkdir-label.h"
4349cd7c 30#include "mount-util.h"
049af8ad 31#include "mountpoint-util.h"
2338a175 32#include "namespace-util.h"
4349cd7c
LP
33#include "parse-util.h"
34#include "path-util.h"
6af52c3a 35#include "process-util.h"
4349cd7c 36#include "set.h"
f63a2c48 37#include "sort-util.h"
28126409 38#include "stat-util.h"
15a5e950 39#include "stdio-util.h"
57c10a56 40#include "string-table.h"
4349cd7c 41#include "string-util.h"
6b7c9f8b 42#include "strv.h"
6af52c3a 43#include "tmpfile-util.h"
70599967 44#include "user-util.h"
4349cd7c 45
84bcb394 46int umount_recursive_full(const char *prefix, int flags, char **keep) {
890c14e3 47 _cleanup_fclose_ FILE *f = NULL;
4349cd7c
LP
48 int n = 0, r;
49
9d0619de
LP
50 /* Try to umount everything recursively below a directory. Also, take care of stacked mounts, and
51 * keep unmounting them until they are gone. */
4349cd7c 52
890c14e3
LP
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 (;;) {
13dcfe46
ZJS
58 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
59 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
890c14e3 60 bool again = false;
4349cd7c 61
890c14e3 62 r = libmount_parse("/proc/self/mountinfo", f, &table, &iter);
fdeea3f4 63 if (r < 0)
13dcfe46 64 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
35bbbf85 65
4349cd7c 66 for (;;) {
84bcb394 67 bool shall_keep = false;
13dcfe46
ZJS
68 struct libmnt_fs *fs;
69 const char *path;
4349cd7c 70
13dcfe46
ZJS
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");
4349cd7c 76
13dcfe46
ZJS
77 path = mnt_fs_get_target(fs);
78 if (!path)
79 continue;
4349cd7c 80
ef742415 81 if (prefix && !path_startswith(path, prefix)) {
62c505e1 82 log_trace("Not unmounting %s, outside of prefix: %s", path, prefix);
4349cd7c 83 continue;
ef742415 84 }
4349cd7c 85
84bcb394
LP
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
827ea521
LP
97 if (umount2(path, flags | UMOUNT_NOFOLLOW) < 0) {
98 log_debug_errno(errno, "Failed to umount %s, ignoring: %m", path);
4349cd7c
LP
99 continue;
100 }
101
13dcfe46 102 log_debug("Successfully unmounted %s", path);
6b7c9f8b 103
4349cd7c
LP
104 again = true;
105 n++;
106
107 break;
108 }
890c14e3
LP
109
110 if (!again)
111 break;
112
113 rewind(f);
114 }
4349cd7c 115
13dcfe46 116 return n;
4349cd7c
LP
117}
118
4f5644db
LP
119#define MS_CONVERTIBLE_FLAGS (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_NOSYMFOLLOW)
120
121static 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
142static bool skip_mount_set_attr = false;
143
be3f3752 144/* Use this function only if you do not have direct access to /proc/self/mountinfo but the caller can open it
64e82c19
LP
145 * for you. This is the case when /proc is masked or not mounted. Otherwise, use bind_remount_recursive. */
146int bind_remount_recursive_with_mountinfo(
147 const char *prefix,
148 unsigned long new_flags,
149 unsigned long flags_mask,
6b000af4 150 char **deny_list,
64e82c19
LP
151 FILE *proc_self_mountinfo) {
152
0289948e 153 _cleanup_fclose_ FILE *proc_self_mountinfo_opened = NULL;
ba8dced2 154 _cleanup_set_free_ Set *done = NULL;
670e8efd 155 unsigned n_tries = 0;
4349cd7c
LP
156 int r;
157
8403219f 158 assert(prefix);
ac9de0b3 159
874052c5
LP
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
0289948e
LP
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
ddc155b2
TM
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
4b6ef527
LP
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.
6b7c9f8b 202 *
6b000af4
LP
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. */
4349cd7c 205
4349cd7c 206 for (;;) {
13dcfe46
ZJS
207 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
208 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
ba8dced2 209 _cleanup_hashmap_free_ Hashmap *todo = NULL;
4349cd7c 210 bool top_autofs = false;
4349cd7c 211
670e8efd
LP
212 if (n_tries++ >= 32) /* Let's not retry this loop forever */
213 return -EBUSY;
214
ac9de0b3 215 rewind(proc_self_mountinfo);
4349cd7c 216
e2857b3d 217 r = libmount_parse("/proc/self/mountinfo", proc_self_mountinfo, &table, &iter);
13dcfe46
ZJS
218 if (r < 0)
219 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
4349cd7c 220
13dcfe46 221 for (;;) {
ba8dced2
LP
222 _cleanup_free_ char *d = NULL;
223 const char *path, *type, *opts;
224 unsigned long flags = 0;
13dcfe46 225 struct libmnt_fs *fs;
4349cd7c 226
13dcfe46 227 r = mnt_table_next_fs(table, iter, &fs);
d6bfab11 228 if (r == 1) /* EOF */
13dcfe46 229 break;
4349cd7c 230 if (r < 0)
13dcfe46 231 return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
4349cd7c 232
13dcfe46 233 path = mnt_fs_get_target(fs);
d6bfab11 234 if (!path)
6b7c9f8b
LP
235 continue;
236
c6111b85 237 if (!path_startswith(path, prefix))
13dcfe46
ZJS
238 continue;
239
d6bfab11
LP
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
6b000af4 255 /* Ignore this mount if it is deny-listed, but only if it isn't the top-level mount
13dcfe46 256 * we shall operate on. */
c6111b85 257 if (!path_equal(path, prefix)) {
6b000af4 258 bool deny_listed = false;
6b7c9f8b 259
6b000af4 260 STRV_FOREACH(i, deny_list) {
c6111b85 261 if (path_equal(*i, prefix))
6b7c9f8b
LP
262 continue;
263
c6111b85 264 if (!path_startswith(*i, prefix))
6b7c9f8b
LP
265 continue;
266
13dcfe46 267 if (path_startswith(path, *i)) {
6b000af4 268 deny_listed = true;
d6bfab11 269 log_debug("Not remounting %s deny-listed by %s, called for %s", path, *i, prefix);
6b7c9f8b
LP
270 break;
271 }
272 }
d6bfab11 273
6b000af4 274 if (deny_listed)
6b7c9f8b
LP
275 continue;
276 }
277
ba8dced2
LP
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)
e0103063
LB
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));
d6bfab11
LP
298 if (r < 0)
299 return r;
ba8dced2
LP
300 if (r > 0)
301 TAKE_PTR(d);
4349cd7c
LP
302 }
303
5c5753b9
LP
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. */
c6111b85 307 if (!set_contains(done, prefix) &&
ba8dced2 308 !(top_autofs || hashmap_contains(todo, prefix))) {
5c5753b9 309
6b7c9f8b 310 /* The prefix directory itself is not yet a mount, make it one. */
c6111b85 311 r = mount_nofollow(prefix, prefix, NULL, MS_BIND|MS_REC, NULL);
511a8cfe
LP
312 if (r < 0)
313 return r;
4349cd7c 314
5c5753b9
LP
315 /* Immediately rescan, so that we pick up the new mount's flags */
316 continue;
4349cd7c
LP
317 }
318
5c5753b9 319 /* If we have no submounts to process anymore, we are done */
ba8dced2 320 if (hashmap_isempty(todo))
5c5753b9
LP
321 return 0;
322
ba8dced2
LP
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;
4349cd7c 331
ba8dced2 332 r = set_ensure_consume(&done, &path_hash_ops_free, x);
4c701096 333 if (IN_SET(r, 0, -EEXIST))
ba8dced2 334 continue; /* Already done */
4349cd7c
LP
335 if (r < 0)
336 return r;
337
ba8dced2
LP
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);
065b4774 342 if (r < 0) {
ba8dced2
LP
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))
065b4774
LP
369 return r;
370
ba8dced2
LP
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);
ef454fd1
YW
376 continue;
377 }
98df8089 378
ba8dced2 379 log_debug("Remounted %s.", x);
4349cd7c
LP
380 }
381 }
382}
383
7cce68e1
LP
384int 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;
2c5ff8ea
LP
391 unsigned long flags = 0;
392 struct libmnt_fs *fs;
393 const char *opts;
7cce68e1
LP
394 int r;
395
396 assert(path);
397 assert(proc_self_mountinfo);
398
4f5644db
LP
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
7cce68e1
LP
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
2c5ff8ea 426 fs = mnt_table_find_target(table, path, MNT_ITER_FORWARD);
0338df47
LP
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
2c5ff8ea 431 return -EINVAL; /* Not a mount point we recognize */
0338df47 432 }
2c5ff8ea
LP
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 }
7cce68e1 440
2c5ff8ea 441 r = mount_nofollow(NULL, path, NULL, ((flags & ~flags_mask)|MS_BIND|MS_REMOUNT|new_flags) & ~MS_RELATIME, NULL);
b23c6a64
LP
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 }
7cce68e1
LP
452
453 return 0;
454}
455
ea0f3289
LP
456static int mount_switch_root_pivot(int fd_newroot, const char *path) {
457 assert(fd_newroot >= 0);
458 assert(path);
2e776ed6 459
ea0f3289
LP
460 /* Change into the new rootfs. */
461 if (fchdir(fd_newroot) < 0)
462 return log_debug_errno(errno, "Failed to change into new rootfs '%s': %m", path);
2e776ed6 463
2e776ed6
CB
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
ea0f3289
LP
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.) */
2e776ed6
CB
470 if (umount2(".", MNT_DETACH) < 0)
471 return log_debug_errno(errno, "Failed to unmount old rootfs: %m");
472
2e776ed6
CB
473 return 0;
474}
475
ea0f3289
LP
476static 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 change into new rootfs '%s': %m", path);
483
484 /* Move the new root fs */
485 if (mount(".", "/", NULL, MS_MOVE, NULL) < 0)
57c10a56
CB
486 return log_debug_errno(errno, "Failed to move new rootfs '%s': %m", path);
487
ea0f3289 488 /* Also change chroot dir */
57c10a56
CB
489 if (chroot(".") < 0)
490 return log_debug_errno(errno, "Failed to chroot to new rootfs '%s': %m", path);
491
57c10a56
CB
492 return 0;
493}
494
ea0f3289 495int mount_switch_root_full(const char *path, unsigned long mount_propagation_flag, bool force_ms_move) {
57c10a56 496 _cleanup_close_ int fd_newroot = -EBADF;
6c6eb219 497 int r;
57c10a56
CB
498
499 assert(path);
9d50f850 500 assert(mount_propagation_flag_is_valid(mount_propagation_flag));
57c10a56
CB
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
ea0f3289
LP
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);
57c10a56 519 }
57c10a56 520
9d50f850
YW
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)
57c10a56 526 return log_debug_errno(errno, "Failed to turn new rootfs '%s' into %s mount: %m",
9d50f850 527 mount_propagation_flag_to_string(mount_propagation_flag), path);
57c10a56
CB
528
529 return 0;
530}
2e776ed6 531
3f2c0bec
LP
532int 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}
c4b41707 552
48b747fa
LP
553int 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
e5f10caf
AZ
569 _cleanup_free_ char *d = NULL;
570 const char *node = NULL;
e5f10caf 571
48b747fa
LP
572 assert(ret);
573
574 if (!runtime_dir)
575 runtime_dir = "/run";
fe80fcc7 576
79893116 577 switch (mode & S_IFMT) {
c4b41707 578 case S_IFREG:
48b747fa 579 node = "/systemd/inaccessible/reg";
e5f10caf 580 break;
fe80fcc7 581
c4b41707 582 case S_IFDIR:
48b747fa 583 node = "/systemd/inaccessible/dir";
e5f10caf 584 break;
fe80fcc7 585
c4b41707 586 case S_IFCHR:
48b747fa 587 node = "/systemd/inaccessible/chr";
e5f10caf 588 break;
fe80fcc7 589
c4b41707 590 case S_IFBLK:
48b747fa 591 node = "/systemd/inaccessible/blk";
e5f10caf 592 break;
fe80fcc7 593
c4b41707 594 case S_IFIFO:
48b747fa 595 node = "/systemd/inaccessible/fifo";
e5f10caf 596 break;
fe80fcc7 597
c4b41707 598 case S_IFSOCK:
48b747fa 599 node = "/systemd/inaccessible/sock";
e5f10caf 600 break;
c4b41707 601 }
e5f10caf
AZ
602 if (!node)
603 return -EINVAL;
604
48b747fa
LP
605 d = path_join(runtime_dir, node);
606 if (!d)
607 return -ENOMEM;
608
cbed1dc8
LP
609 /* On new kernels unprivileged users are permitted to create 0:0 char device nodes (because they also
610 * act as whiteout inode for overlayfs), but no other char or block device nodes. On old kernels no
611 * device node whatsoever may be created by unprivileged processes. Hence, if the caller asks for the
612 * inaccessible block device node let's see if the block device node actually exists, and if not,
613 * fall back to the character device node. From there fall back to the socket device node. This means
614 * in the best case we'll get the right device node type — but if not we'll hopefully at least get a
615 * device node at all. */
616
617 if (S_ISBLK(mode) &&
618 access(d, F_OK) < 0 && errno == ENOENT) {
619 free(d);
620 d = path_join(runtime_dir, "/systemd/inaccessible/chr");
621 if (!d)
622 return -ENOMEM;
623 }
624
625 if (IN_SET(mode & S_IFMT, S_IFBLK, S_IFCHR) &&
626 access(d, F_OK) < 0 && errno == ENOENT) {
48b747fa
LP
627 free(d);
628 d = path_join(runtime_dir, "/systemd/inaccessible/sock");
629 if (!d)
630 return -ENOMEM;
631 }
e5f10caf 632
48b747fa 633 *ret = TAKE_PTR(d);
e5f10caf 634 return 0;
c4b41707 635}
60e76d48 636
da185cd0 637int mount_flags_to_string(unsigned long flags, char **ret) {
1c092b62 638 static const struct {
da185cd0 639 unsigned long flag;
1c092b62
YW
640 const char *name;
641 } map[] = {
642 { .flag = MS_RDONLY, .name = "MS_RDONLY", },
643 { .flag = MS_NOSUID, .name = "MS_NOSUID", },
644 { .flag = MS_NODEV, .name = "MS_NODEV", },
645 { .flag = MS_NOEXEC, .name = "MS_NOEXEC", },
646 { .flag = MS_SYNCHRONOUS, .name = "MS_SYNCHRONOUS", },
647 { .flag = MS_REMOUNT, .name = "MS_REMOUNT", },
648 { .flag = MS_MANDLOCK, .name = "MS_MANDLOCK", },
649 { .flag = MS_DIRSYNC, .name = "MS_DIRSYNC", },
650 { .flag = MS_NOSYMFOLLOW, .name = "MS_NOSYMFOLLOW", },
651 { .flag = MS_NOATIME, .name = "MS_NOATIME", },
652 { .flag = MS_NODIRATIME, .name = "MS_NODIRATIME", },
653 { .flag = MS_BIND, .name = "MS_BIND", },
654 { .flag = MS_MOVE, .name = "MS_MOVE", },
655 { .flag = MS_REC, .name = "MS_REC", },
656 { .flag = MS_SILENT, .name = "MS_SILENT", },
657 { .flag = MS_POSIXACL, .name = "MS_POSIXACL", },
658 { .flag = MS_UNBINDABLE, .name = "MS_UNBINDABLE", },
659 { .flag = MS_PRIVATE, .name = "MS_PRIVATE", },
660 { .flag = MS_SLAVE, .name = "MS_SLAVE", },
661 { .flag = MS_SHARED, .name = "MS_SHARED", },
662 { .flag = MS_RELATIME, .name = "MS_RELATIME", },
663 { .flag = MS_KERNMOUNT, .name = "MS_KERNMOUNT", },
664 { .flag = MS_I_VERSION, .name = "MS_I_VERSION", },
665 { .flag = MS_STRICTATIME, .name = "MS_STRICTATIME", },
666 { .flag = MS_LAZYTIME, .name = "MS_LAZYTIME", },
667 };
668 _cleanup_free_ char *str = NULL;
669
4bee2333
YW
670 assert(ret);
671
1c092b62
YW
672 for (size_t i = 0; i < ELEMENTSOF(map); i++)
673 if (flags & map[i].flag) {
674 if (!strextend_with_separator(&str, "|", map[i].name))
675 return -ENOMEM;
676 flags &= ~map[i].flag;
677 }
678
679 if (!str || flags != 0)
680 if (strextendf_with_separator(&str, "|", "%lx", flags) < 0)
681 return -ENOMEM;
682
683 *ret = TAKE_PTR(str);
684 return 0;
60e76d48
ZJS
685}
686
511a8cfe 687int mount_verbose_full(
60e76d48
ZJS
688 int error_log_level,
689 const char *what,
690 const char *where,
691 const char *type,
692 unsigned long flags,
511a8cfe
LP
693 const char *options,
694 bool follow_symlink) {
60e76d48 695
6ef8df2b
YW
696 _cleanup_free_ char *fl = NULL, *o = NULL;
697 unsigned long f;
698 int r;
699
700 r = mount_option_mangle(options, flags, &f, &o);
701 if (r < 0)
702 return log_full_errno(error_log_level, r,
703 "Failed to mangle mount options %s: %m",
704 strempty(options));
60e76d48 705
1c092b62 706 (void) mount_flags_to_string(f, &fl);
60e76d48 707
6ef8df2b 708 if ((f & MS_REMOUNT) && !what && !type)
60e76d48 709 log_debug("Remounting %s (%s \"%s\")...",
6ef8df2b 710 where, strnull(fl), strempty(o));
60e76d48
ZJS
711 else if (!what && !type)
712 log_debug("Mounting %s (%s \"%s\")...",
6ef8df2b
YW
713 where, strnull(fl), strempty(o));
714 else if ((f & MS_BIND) && !type)
60e76d48 715 log_debug("Bind-mounting %s on %s (%s \"%s\")...",
6ef8df2b
YW
716 what, where, strnull(fl), strempty(o));
717 else if (f & MS_MOVE)
e2341b6b
DT
718 log_debug("Moving mount %s %s %s (%s \"%s\")...",
719 what, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), where, strnull(fl), strempty(o));
60e76d48 720 else
3b493d94
LP
721 log_debug("Mounting %s (%s) on %s (%s \"%s\")...",
722 strna(what), strna(type), where, strnull(fl), strempty(o));
511a8cfe
LP
723
724 if (follow_symlink)
7c248223 725 r = RET_NERRNO(mount(what, where, type, f, o));
511a8cfe
LP
726 else
727 r = mount_nofollow(what, where, type, f, o);
728 if (r < 0)
729 return log_full_errno(error_log_level, r,
3ccf6126
LP
730 "Failed to mount %s (type %s) on %s (%s \"%s\"): %m",
731 strna(what), strna(type), where, strnull(fl), strempty(o));
60e76d48
ZJS
732 return 0;
733}
734
30f5d104
LP
735int umount_verbose(
736 int error_log_level,
737 const char *what,
738 int flags) {
739
740 assert(what);
741
60e76d48 742 log_debug("Umounting %s...", what);
30f5d104
LP
743
744 if (umount2(what, flags) < 0)
745 return log_full_errno(error_log_level, errno,
746 "Failed to unmount %s: %m", what);
747
60e76d48
ZJS
748 return 0;
749}
83555251 750
9e7f941a
YW
751int mount_option_mangle(
752 const char *options,
753 unsigned long mount_flags,
754 unsigned long *ret_mount_flags,
755 char **ret_remaining_options) {
756
757 const struct libmnt_optmap *map;
758 _cleanup_free_ char *ret = NULL;
9e7f941a
YW
759 int r;
760
3ca4ec20 761 /* This extracts mount flags from the mount options, and stores
9e7f941a
YW
762 * non-mount-flag options to '*ret_remaining_options'.
763 * E.g.,
9f563f27 764 * "rw,nosuid,nodev,relatime,size=1630748k,mode=0700,uid=1000,gid=1000"
9e7f941a 765 * is split to MS_NOSUID|MS_NODEV|MS_RELATIME and
9f563f27 766 * "size=1630748k,mode=0700,uid=1000,gid=1000".
3ca4ec20 767 * See more examples in test-mount-util.c.
9e7f941a 768 *
3ca4ec20 769 * If 'options' does not contain any non-mount-flag options,
5238e957 770 * then '*ret_remaining_options' is set to NULL instead of empty string.
3ca4ec20
ZJS
771 * The validity of options stored in '*ret_remaining_options' is not checked.
772 * If 'options' is NULL, this just copies 'mount_flags' to *ret_mount_flags. */
9e7f941a
YW
773
774 assert(ret_mount_flags);
775 assert(ret_remaining_options);
776
777 map = mnt_get_builtin_optmap(MNT_LINUX_MAP);
778 if (!map)
779 return -EINVAL;
780
25086b4c 781 for (const char *p = options;;) {
9e7f941a
YW
782 _cleanup_free_ char *word = NULL;
783 const struct libmnt_optmap *ent;
784
9b23679e 785 r = extract_first_word(&p, &word, ",", EXTRACT_KEEP_QUOTE);
9e7f941a
YW
786 if (r < 0)
787 return r;
788 if (r == 0)
789 break;
790
791 for (ent = map; ent->name; ent++) {
792 /* All entries in MNT_LINUX_MAP do not take any argument.
793 * Thus, ent->name does not contain "=" or "[=]". */
794 if (!streq(word, ent->name))
795 continue;
796
797 if (!(ent->mask & MNT_INVERT))
798 mount_flags |= ent->id;
799 else if (mount_flags & ent->id)
800 mount_flags ^= ent->id;
801
802 break;
803 }
804
805 /* If 'word' is not a mount flag, then store it in '*ret_remaining_options'. */
ac6086fd
LB
806 if (!ent->name &&
807 !startswith_no_case(word, "x-") &&
808 !strextend_with_separator(&ret, ",", word))
9e7f941a
YW
809 return -ENOMEM;
810 }
811
812 *ret_mount_flags = mount_flags;
ae2a15bc 813 *ret_remaining_options = TAKE_PTR(ret);
9e7f941a
YW
814
815 return 0;
816}
6af52c3a 817
70599967 818static int mount_in_namespace(
6af52c3a
LB
819 pid_t target,
820 const char *propagate_path,
821 const char *incoming_path,
822 const char *src,
823 const char *dest,
824 bool read_only,
70599967
LB
825 bool make_file_or_directory,
826 const MountOptions *options,
84be0c71 827 const ImagePolicy *image_policy,
70599967 828 bool is_image) {
6af52c3a 829
19ee48a6 830 _cleanup_close_pair_ int errno_pipe_fd[2] = PIPE_EBADF;
254d1313 831 _cleanup_close_ int mntns_fd = -EBADF, root_fd = -EBADF, pidns_fd = -EBADF, chased_src_fd = -EBADF;
ddb6eeaf 832 char mount_slave[] = "/tmp/propagate.XXXXXX", *mount_tmp, *mount_outside, *p;
6af52c3a
LB
833 bool mount_slave_created = false, mount_slave_mounted = false,
834 mount_tmp_created = false, mount_tmp_mounted = false,
835 mount_outside_created = false, mount_outside_mounted = false;
cedf5b1a 836 _cleanup_free_ char *chased_src_path = NULL;
4b00e738 837 struct stat st;
6af52c3a
LB
838 pid_t child;
839 int r;
840
841 assert(target > 0);
842 assert(propagate_path);
843 assert(incoming_path);
844 assert(src);
845 assert(dest);
70599967 846 assert(!options || is_image);
6af52c3a 847
98f654fd 848 r = namespace_open(target, &pidns_fd, &mntns_fd, NULL, NULL, &root_fd);
2338a175
LB
849 if (r < 0)
850 return log_debug_errno(r, "Failed to retrieve FDs of the target process' namespace: %m");
851
4b00e738 852 r = in_same_namespace(target, 0, NAMESPACE_MOUNT);
2338a175 853 if (r < 0)
4b00e738 854 return log_debug_errno(r, "Failed to determine if mount namespaces are equal: %m");
2338a175 855 /* We can't add new mounts at runtime if the process wasn't started in a namespace */
4b00e738 856 if (r > 0)
2338a175
LB
857 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to activate bind mount in target, not running in a mount namespace");
858
ddb6eeaf
LP
859 /* One day, when bind mounting /proc/self/fd/n works across namespace boundaries we should rework
860 * this logic to make use of it... */
6af52c3a
LB
861
862 p = strjoina(propagate_path, "/");
863 r = laccess(p, F_OK);
864 if (r < 0)
865 return log_debug_errno(r == -ENOENT ? SYNTHETIC_ERRNO(EOPNOTSUPP) : r, "Target does not allow propagation of mount points");
866
f461a28d 867 r = chase(src, NULL, 0, &chased_src_path, &chased_src_fd);
6af52c3a
LB
868 if (r < 0)
869 return log_debug_errno(r, "Failed to resolve source path of %s: %m", src);
cedf5b1a 870 log_debug("Chased source path of %s to %s", src, chased_src_path);
6af52c3a 871
f7c18d3d
LB
872 if (fstat(chased_src_fd, &st) < 0)
873 return log_debug_errno(errno, "Failed to stat() resolved source path %s: %m", src);
6af52c3a 874 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… */
f7c18d3d 875 return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "Source directory %s can't be a symbolic link", src);
6af52c3a
LB
876
877 /* Our goal is to install a new bind mount into the container,
878 possibly read-only. This is irritatingly complex
879 unfortunately, currently.
880
881 First, we start by creating a private playground in /tmp,
882 that we can mount MS_SLAVE. (Which is necessary, since
883 MS_MOVE cannot be applied to mounts with MS_SHARED parent
884 mounts.) */
885
886 if (!mkdtemp(mount_slave))
887 return log_debug_errno(errno, "Failed to create playground %s: %m", mount_slave);
888
889 mount_slave_created = true;
890
891 r = mount_nofollow_verbose(LOG_DEBUG, mount_slave, mount_slave, NULL, MS_BIND, NULL);
892 if (r < 0)
893 goto finish;
894
895 mount_slave_mounted = true;
896
897 r = mount_nofollow_verbose(LOG_DEBUG, NULL, mount_slave, NULL, MS_SLAVE, NULL);
898 if (r < 0)
899 goto finish;
900
901 /* Second, we mount the source file or directory to a directory inside of our MS_SLAVE playground. */
902 mount_tmp = strjoina(mount_slave, "/mount");
70599967
LB
903 if (is_image)
904 r = mkdir_p(mount_tmp, 0700);
905 else
906 r = make_mount_point_inode_from_stat(&st, mount_tmp, 0700);
6af52c3a
LB
907 if (r < 0) {
908 log_debug_errno(r, "Failed to create temporary mount point %s: %m", mount_tmp);
909 goto finish;
910 }
911
912 mount_tmp_created = true;
913
70599967 914 if (is_image)
84be0c71 915 r = verity_dissect_and_mount(chased_src_fd, chased_src_path, mount_tmp, options, image_policy, NULL, NULL, NULL, NULL);
70599967 916 else
ddb6eeaf 917 r = mount_follow_verbose(LOG_DEBUG, FORMAT_PROC_FD_PATH(chased_src_fd), mount_tmp, NULL, MS_BIND, NULL);
6af52c3a
LB
918 if (r < 0)
919 goto finish;
920
921 mount_tmp_mounted = true;
922
923 /* Third, we remount the new bind mount read-only if requested. */
924 if (read_only) {
925 r = mount_nofollow_verbose(LOG_DEBUG, NULL, mount_tmp, NULL, MS_BIND|MS_REMOUNT|MS_RDONLY, NULL);
926 if (r < 0)
927 goto finish;
928 }
929
930 /* Fourth, we move the new bind mount into the propagation directory. This way it will appear there read-only
931 * right-away. */
932
933 mount_outside = strjoina(propagate_path, "/XXXXXX");
70599967 934 if (is_image || S_ISDIR(st.st_mode))
6af52c3a
LB
935 r = mkdtemp(mount_outside) ? 0 : -errno;
936 else {
937 r = mkostemp_safe(mount_outside);
938 safe_close(r);
939 }
940 if (r < 0) {
941 log_debug_errno(r, "Cannot create propagation file or directory %s: %m", mount_outside);
942 goto finish;
943 }
944
945 mount_outside_created = true;
946
947 r = mount_nofollow_verbose(LOG_DEBUG, mount_tmp, mount_outside, NULL, MS_MOVE, NULL);
948 if (r < 0)
949 goto finish;
950
951 mount_outside_mounted = true;
952 mount_tmp_mounted = false;
953
70599967 954 if (is_image || S_ISDIR(st.st_mode))
6af52c3a
LB
955 (void) rmdir(mount_tmp);
956 else
957 (void) unlink(mount_tmp);
958 mount_tmp_created = false;
959
960 (void) umount_verbose(LOG_DEBUG, mount_slave, UMOUNT_NOFOLLOW);
961 mount_slave_mounted = false;
962
963 (void) rmdir(mount_slave);
964 mount_slave_created = false;
965
966 if (pipe2(errno_pipe_fd, O_CLOEXEC|O_NONBLOCK) < 0) {
967 log_debug_errno(errno, "Failed to create pipe: %m");
968 goto finish;
969 }
970
2338a175 971 r = namespace_fork("(sd-bindmnt)", "(sd-bindmnt-inner)", NULL, 0, FORK_RESET_SIGNALS|FORK_DEATHSIG,
98f654fd 972 pidns_fd, mntns_fd, -1, -1, root_fd, &child);
6af52c3a
LB
973 if (r < 0)
974 goto finish;
975 if (r == 0) {
03469b77 976 _cleanup_free_ char *mount_outside_fn = NULL, *mount_inside = NULL;
6af52c3a
LB
977
978 errno_pipe_fd[0] = safe_close(errno_pipe_fd[0]);
979
6af52c3a 980 if (make_file_or_directory) {
70599967
LB
981 if (!is_image) {
982 (void) mkdir_parents(dest, 0755);
983 (void) make_mount_point_inode_from_stat(&st, dest, 0700);
984 } else
985 (void) mkdir_p(dest, 0755);
6af52c3a
LB
986 }
987
988 /* Fifth, move the mount to the right place inside */
03469b77
LP
989 r = path_extract_filename(mount_outside, &mount_outside_fn);
990 if (r < 0) {
991 log_debug_errno(r, "Failed to extract filename from propagation file or directory '%s': %m", mount_outside);
992 goto child_fail;
993 }
994
995 mount_inside = path_join(incoming_path, mount_outside_fn);
996 if (!mount_inside) {
997 r = log_oom_debug();
998 goto child_fail;
999 }
1000
1001 r = mount_nofollow_verbose(LOG_DEBUG, mount_inside, dest, NULL, MS_MOVE, NULL);
6af52c3a
LB
1002 if (r < 0)
1003 goto child_fail;
1004
1005 _exit(EXIT_SUCCESS);
1006
1007 child_fail:
1008 (void) write(errno_pipe_fd[1], &r, sizeof(r));
1009 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1010
1011 _exit(EXIT_FAILURE);
1012 }
1013
1014 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1015
1016 r = wait_for_terminate_and_check("(sd-bindmnt)", child, 0);
1017 if (r < 0) {
1018 log_debug_errno(r, "Failed to wait for child: %m");
1019 goto finish;
1020 }
1021 if (r != EXIT_SUCCESS) {
1022 if (read(errno_pipe_fd[0], &r, sizeof(r)) == sizeof(r))
1023 log_debug_errno(r, "Failed to mount: %m");
1024 else
1025 log_debug("Child failed.");
1026 goto finish;
1027 }
1028
1029finish:
1030 if (mount_outside_mounted)
1031 (void) umount_verbose(LOG_DEBUG, mount_outside, UMOUNT_NOFOLLOW);
1032 if (mount_outside_created) {
70599967 1033 if (is_image || S_ISDIR(st.st_mode))
6af52c3a
LB
1034 (void) rmdir(mount_outside);
1035 else
1036 (void) unlink(mount_outside);
1037 }
1038
1039 if (mount_tmp_mounted)
1040 (void) umount_verbose(LOG_DEBUG, mount_tmp, UMOUNT_NOFOLLOW);
1041 if (mount_tmp_created) {
70599967 1042 if (is_image || S_ISDIR(st.st_mode))
6af52c3a
LB
1043 (void) rmdir(mount_tmp);
1044 else
1045 (void) unlink(mount_tmp);
1046 }
1047
1048 if (mount_slave_mounted)
1049 (void) umount_verbose(LOG_DEBUG, mount_slave, UMOUNT_NOFOLLOW);
1050 if (mount_slave_created)
1051 (void) rmdir(mount_slave);
1052
1053 return r;
1054}
70599967
LB
1055
1056int bind_mount_in_namespace(
1057 pid_t target,
1058 const char *propagate_path,
1059 const char *incoming_path,
1060 const char *src,
1061 const char *dest,
1062 bool read_only,
1063 bool make_file_or_directory) {
1064
84be0c71 1065 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);
70599967
LB
1066}
1067
1068int mount_image_in_namespace(
1069 pid_t target,
1070 const char *propagate_path,
1071 const char *incoming_path,
1072 const char *src,
1073 const char *dest,
1074 bool read_only,
1075 bool make_file_or_directory,
84be0c71
LP
1076 const MountOptions *options,
1077 const ImagePolicy *image_policy) {
70599967 1078
84be0c71 1079 return mount_in_namespace(target, propagate_path, incoming_path, src, dest, read_only, make_file_or_directory, options, image_policy, /* is_image=*/ true);
70599967 1080}
14a25e1f
LP
1081
1082int make_mount_point(const char *path) {
1083 int r;
1084
1085 assert(path);
1086
1087 /* If 'path' is already a mount point, does nothing and returns 0. If it is not it makes it one, and returns 1. */
1088
1089 r = path_is_mount_point(path, NULL, 0);
1090 if (r < 0)
1091 return log_debug_errno(r, "Failed to determine whether '%s' is a mount point: %m", path);
1092 if (r > 0)
1093 return 0;
1094
1095 r = mount_nofollow_verbose(LOG_DEBUG, path, path, NULL, MS_BIND|MS_REC, NULL);
1096 if (r < 0)
1097 return r;
1098
1099 return 1;
1100}
35fd3558 1101
17b798d9 1102int make_userns(uid_t uid_shift, uid_t uid_range, uid_t owner, RemountIdmapping idmapping) {
254d1313 1103 _cleanup_close_ int userns_fd = -EBADF;
50ae2966 1104 _cleanup_free_ char *line = NULL;
35fd3558
LP
1105
1106 /* Allocates a userns file descriptor with the mapping we need. For this we'll fork off a child
1107 * process whose only purpose is to give us a new user namespace. It's killed when we got it. */
1108
17b798d9
LP
1109 if (!userns_shift_range_valid(uid_shift, uid_range))
1110 return -EINVAL;
1111
2b2777ed
QD
1112 if (IN_SET(idmapping, REMOUNT_IDMAPPING_NONE, REMOUNT_IDMAPPING_HOST_ROOT)) {
1113 if (asprintf(&line, UID_FMT " " UID_FMT " " UID_FMT "\n", 0u, uid_shift, uid_range) < 0)
50ae2966 1114 return log_oom_debug();
35fd3558 1115
2b2777ed
QD
1116 /* If requested we'll include an entry in the mapping so that the host root user can make
1117 * changes to the uidmapped mount like it normally would. Specifically, we'll map the user
1118 * with UID_MAPPED_ROOT on the backing fs to UID 0. This is useful, since nspawn code wants
1119 * to create various missing inodes in the OS tree before booting into it, and this becomes
1120 * very easy and straightforward to do if it can just do it under its own regular UID. Note
1121 * that in that case the container's runtime uidmap (i.e. the one the container payload
1122 * processes run in) will leave this UID unmapped, i.e. if we accidentally leave files owned
1123 * by host root in the already uidmapped tree around they'll show up as owned by 'nobody',
1124 * which is safe. (Of course, we shouldn't leave such inodes around, but always chown() them
1125 * to the container's own UID range, but it's good to have a safety net, in case we
1126 * forget it.) */
1127 if (idmapping == REMOUNT_IDMAPPING_HOST_ROOT)
1128 if (strextendf(&line,
1129 UID_FMT " " UID_FMT " " UID_FMT "\n",
1130 UID_MAPPED_ROOT, 0u, 1u) < 0)
1131 return log_oom_debug();
1132 }
1133
1134 if (idmapping == REMOUNT_IDMAPPING_HOST_OWNER) {
1135 /* Remap the owner of the bind mounted directory to the root user within the container. This
1136 * way every file written by root within the container to the bind-mounted directory will
1137 * be owned by the original user. All other user will remain unmapped. */
1138 if (asprintf(&line, UID_FMT " " UID_FMT " " UID_FMT "\n", owner, uid_shift, 1u) < 0)
1139 return log_oom_debug();
1140 }
1141
35fd3558 1142 /* We always assign the same UID and GID ranges */
979b0ff2
LP
1143 userns_fd = userns_acquire(line, line);
1144 if (userns_fd < 0)
1145 return log_debug_errno(userns_fd, "Failed to acquire new userns: %m");
35fd3558
LP
1146
1147 return TAKE_FD(userns_fd);
1148}
1149
17b798d9 1150int remount_idmap_fd(
35fd3558 1151 const char *p,
17b798d9 1152 int userns_fd) {
35fd3558 1153
17b798d9 1154 _cleanup_close_ int mount_fd = -EBADF;
35fd3558
LP
1155 int r;
1156
1157 assert(p);
17b798d9 1158 assert(userns_fd >= 0);
35fd3558
LP
1159
1160 /* Clone the mount point */
1161 mount_fd = open_tree(-1, p, OPEN_TREE_CLONE | OPEN_TREE_CLOEXEC);
1162 if (mount_fd < 0)
1163 return log_debug_errno(errno, "Failed to open tree of mounted filesystem '%s': %m", p);
1164
35fd3558
LP
1165 /* Set the user namespace mapping attribute on the cloned mount point */
1166 if (mount_setattr(mount_fd, "", AT_EMPTY_PATH | AT_RECURSIVE,
1167 &(struct mount_attr) {
1168 .attr_set = MOUNT_ATTR_IDMAP,
1169 .userns_fd = userns_fd,
1170 }, sizeof(struct mount_attr)) < 0)
1171 return log_debug_errno(errno, "Failed to change bind mount attributes for '%s': %m", p);
1172
1173 /* Remove the old mount point */
1174 r = umount_verbose(LOG_DEBUG, p, UMOUNT_NOFOLLOW);
1175 if (r < 0)
1176 return r;
1177
1178 /* And place the cloned version in its place */
1179 if (move_mount(mount_fd, "", -1, p, MOVE_MOUNT_F_EMPTY_PATH) < 0)
1180 return log_debug_errno(errno, "Failed to attach UID mapped mount to '%s': %m", p);
1181
1182 return 0;
1183}
9c653536 1184
17b798d9
LP
1185int remount_idmap(const char *p, uid_t uid_shift, uid_t uid_range, uid_t owner, RemountIdmapping idmapping) {
1186 _cleanup_close_ int userns_fd = -EBADF;
1187
1188 userns_fd = make_userns(uid_shift, uid_range, owner, idmapping);
1189 if (userns_fd < 0)
1190 return userns_fd;
1191
1192 return remount_idmap_fd(p, userns_fd);
1193}
1194
f63a2c48
YW
1195typedef struct SubMount {
1196 char *path;
1197 int mount_fd;
1198} SubMount;
1199
1200static void sub_mount_clear(SubMount *s) {
1201 assert(s);
1202
1203 s->path = mfree(s->path);
1204 s->mount_fd = safe_close(s->mount_fd);
1205}
1206
1207static void sub_mount_array_free(SubMount *s, size_t n) {
1208 assert(s || n == 0);
1209
1210 for (size_t i = 0; i < n; i++)
1211 sub_mount_clear(s + i);
1212
1213 free(s);
1214}
1215
1216static int sub_mount_compare(const SubMount *a, const SubMount *b) {
1217 assert(a);
1218 assert(b);
1219 assert(a->path);
1220 assert(b->path);
1221
1222 return path_compare(a->path, b->path);
1223}
1224
1225static void sub_mount_drop(SubMount *s, size_t n) {
1226 assert(s || n == 0);
1227
1228 for (size_t m = 0, i = 1; i < n; i++) {
1229 if (path_startswith(s[i].path, s[m].path))
1230 sub_mount_clear(s + i);
1231 else
1232 m = i;
1233 }
1234}
1235
1236static int get_sub_mounts(const char *prefix, SubMount **ret_mounts, size_t *ret_n_mounts) {
1237 _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
1238 _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
1239 SubMount *mounts = NULL;
1240 size_t n = 0;
1241 int r;
1242
1243 CLEANUP_ARRAY(mounts, n, sub_mount_array_free);
1244
1245 assert(prefix);
1246 assert(ret_mounts);
1247 assert(ret_n_mounts);
1248
1249 r = libmount_parse("/proc/self/mountinfo", NULL, &table, &iter);
1250 if (r < 0)
1251 return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
1252
1253 for (;;) {
1254 _cleanup_close_ int mount_fd = -EBADF;
1255 _cleanup_free_ char *p = NULL;
1256 struct libmnt_fs *fs;
1257 const char *path;
1258 int id1, id2;
1259
1260 r = mnt_table_next_fs(table, iter, &fs);
1261 if (r == 1)
1262 break; /* EOF */
1263 if (r < 0)
1264 return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
1265
1266 path = mnt_fs_get_target(fs);
1267 if (!path)
1268 continue;
1269
1270 if (isempty(path_startswith(path, prefix)))
1271 continue;
1272
1273 id1 = mnt_fs_get_id(fs);
1274 r = path_get_mnt_id(path, &id2);
1275 if (r < 0) {
1276 log_debug_errno(r, "Failed to get mount ID of '%s', ignoring: %m", path);
1277 continue;
1278 }
1279 if (id1 != id2) {
1280 /* The path may be hidden by another over-mount or already remounted. */
1281 log_debug("The mount IDs of '%s' obtained by libmount and path_get_mnt_id() are different (%i vs %i), ignoring.",
1282 path, id1, id2);
1283 continue;
1284 }
1285
1286 mount_fd = open_tree(AT_FDCWD, path, OPEN_TREE_CLONE | OPEN_TREE_CLOEXEC | AT_RECURSIVE);
1287 if (mount_fd < 0) {
1288 if (errno == ENOENT) /* The path may be hidden by another over-mount or already unmounted. */
1289 continue;
1290
1291 return log_debug_errno(errno, "Failed to open tree of mounted filesystem '%s': %m", path);
1292 }
1293
1294 p = strdup(path);
1295 if (!p)
1296 return log_oom_debug();
1297
1298 if (!GREEDY_REALLOC(mounts, n + 1))
1299 return log_oom_debug();
1300
1301 mounts[n++] = (SubMount) {
1302 .path = TAKE_PTR(p),
1303 .mount_fd = TAKE_FD(mount_fd),
1304 };
1305 }
1306
1307 typesafe_qsort(mounts, n, sub_mount_compare);
1308 sub_mount_drop(mounts, n);
1309
1310 *ret_mounts = TAKE_PTR(mounts);
1311 *ret_n_mounts = n;
1312 return 0;
1313}
1314
1315static int move_sub_mounts(SubMount *mounts, size_t n) {
1316 assert(mounts || n == 0);
1317
1318 for (size_t i = 0; i < n; i++) {
1319 if (!mounts[i].path || mounts[i].mount_fd < 0)
1320 continue;
1321
1322 (void) mkdir_p_label(mounts[i].path, 0755);
1323
1324 if (move_mount(mounts[i].mount_fd, "", AT_FDCWD, mounts[i].path, MOVE_MOUNT_F_EMPTY_PATH) < 0)
1325 return log_debug_errno(errno, "Failed to move mount_fd to '%s': %m", mounts[i].path);
1326 }
1327
1328 return 0;
1329}
1330
1331int remount_and_move_sub_mounts(
1332 const char *what,
1333 const char *where,
1334 const char *type,
1335 unsigned long flags,
1336 const char *options) {
1337
1338 SubMount *mounts = NULL; /* avoid false maybe-uninitialized warning */
1339 size_t n = 0; /* avoid false maybe-uninitialized warning */
1340 int r;
1341
1342 CLEANUP_ARRAY(mounts, n, sub_mount_array_free);
1343
1344 assert(where);
1345
1346 /* This is useful when creating a new network namespace. Unlike procfs, we need to remount sysfs,
1347 * otherwise properties of the network interfaces in the main network namespace are still accessible
1348 * through the old sysfs, e.g. /sys/class/net/eth0. All sub-mounts previously mounted on the sysfs
1349 * are moved onto the new sysfs mount. */
1350
1351 r = path_is_mount_point(where, NULL, 0);
1352 if (r < 0)
1353 return log_debug_errno(r, "Failed to determine if '%s' is a mountpoint: %m", where);
1354 if (r == 0)
1355 /* Shortcut. Simply mount the requested filesystem. */
1356 return mount_nofollow_verbose(LOG_DEBUG, what, where, type, flags, options);
1357
1358 /* Get the list of sub-mounts and duplicate them. */
1359 r = get_sub_mounts(where, &mounts, &n);
1360 if (r < 0)
1361 return r;
1362
1363 /* Then, remount the mount and its sub-mounts. */
1364 (void) umount_recursive(where, 0);
1365
1366 /* Remount the target filesystem. */
1367 r = mount_nofollow_verbose(LOG_DEBUG, what, where, type, flags, options);
1368 if (r < 0)
1369 return r;
1370
1371 /* Finally, move the all sub-mounts on the new target mount point. */
1372 return move_sub_mounts(mounts, n);
1373}
1374
1375int remount_sysfs(const char *where) {
1376 return remount_and_move_sub_mounts("sysfs", where, "sysfs", MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL);
1377}
1378
9c653536
ZJS
1379int make_mount_point_inode_from_stat(const struct stat *st, const char *dest, mode_t mode) {
1380 assert(st);
1381 assert(dest);
1382
1383 if (S_ISDIR(st->st_mode))
1384 return mkdir_label(dest, mode);
1385 else
b6ca2b28 1386 return RET_NERRNO(mknod(dest, S_IFREG|(mode & ~0111), 0));
9c653536
ZJS
1387}
1388
1389int make_mount_point_inode_from_path(const char *source, const char *dest, mode_t mode) {
1390 struct stat st;
1391
1392 assert(source);
1393 assert(dest);
1394
1395 if (stat(source, &st) < 0)
1396 return -errno;
1397
1398 return make_mount_point_inode_from_stat(&st, dest, mode);
1399}