diff options
author | Jakob Unterwurzacher <jakobunt@gmail.com> | 2019-07-16 23:09:07 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-07-17 11:37:09 +0200 |
commit | d34a40082db3ffca8de66bfa4df50951101bdae5 (patch) | |
tree | 152d3ae3a3bfd01bace2ec880bd868c0b16619ea | |
parent | 31cd5f63ce86a0784c4ef869c4d323a11ff14adc (diff) | |
download | systemd-d34a40082db3ffca8de66bfa4df50951101bdae5.tar.gz systemd-d34a40082db3ffca8de66bfa4df50951101bdae5.tar.bz2 systemd-d34a40082db3ffca8de66bfa4df50951101bdae5.zip |
mount-util: bind_remount: avoid calling statvfs
The commit
"util: Do not clear parent mount flags when setting up namespaces"
introduced a statvfs call read the flags of the original mount
and have them applied to the bind mount.
This has two problems:
(1) The mount flags returned by statvfs(2) do not match the flags
accepted by mount(2). For example, the value 4096 means ST_RELATIME
when returned by statvfs(2), but means MS_BIND when passed to mount(2).
(2) A call to statvfs blocks indefinitely when ran against a disconnected
network drive ( https://github.com/systemd/systemd/issues/12667 ).
We already use libmount to parse `/proc/self/mountinfo` but did not use the
mount flag information from there. This patch changes that to use the mount
flags parsed by libmount instead of calling statvfs. Only if getting the
flags through libmount fails we call statvfs.
Fixes https://github.com/systemd/systemd/issues/12667
-rw-r--r-- | src/shared/mount-util.c | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index de9e35b128..b6ff8d8c84 100644 --- a/src/shared/mount-util.c +++ b/src/shared/mount-util.c @@ -77,11 +77,34 @@ int umount_recursive(const char *prefix, int flags) { return n; } -static int get_mount_flags(const char *path, unsigned long *flags) { - struct statvfs buf; +/* Get the mount flags for the mountpoint at "path" from "table" */ +static int get_mount_flags(const char *path, unsigned long *flags, struct libmnt_table *table) { + struct statvfs buf = {}; + struct libmnt_fs *fs = NULL; + const char *opts = NULL; + int r = 0; + + fs = mnt_table_find_target(table, path, MNT_ITER_FORWARD); + if (fs == NULL) { + log_warning("Could not find '%s' in mount table", path); + goto fallback; + } + + opts = mnt_fs_get_vfs_options(fs); + r = mnt_optstr_get_flags(opts, flags, mnt_get_builtin_optmap(MNT_LINUX_MAP)); + if (r != 0) { + log_warning_errno(r, "Could not get flags for '%s': %m", path); + goto fallback; + } + /* relatime is default and trying to set it in an unprivileged container causes EPERM */ + *flags &= ~MS_RELATIME; + return 0; + +fallback: if (statvfs(path, &buf) < 0) return -errno; + *flags = buf.f_flag; return 0; } @@ -214,7 +237,7 @@ int bind_remount_recursive_with_mountinfo( return -errno; orig_flags = 0; - (void) get_mount_flags(cleaned, &orig_flags); + (void) get_mount_flags(cleaned, &orig_flags, table); orig_flags &= ~MS_RDONLY; if (mount(NULL, cleaned, NULL, (orig_flags & ~flags_mask)|MS_BIND|MS_REMOUNT|new_flags, NULL) < 0) @@ -256,7 +279,7 @@ int bind_remount_recursive_with_mountinfo( /* Try to reuse the original flag set */ orig_flags = 0; - (void) get_mount_flags(x, &orig_flags); + (void) get_mount_flags(x, &orig_flags, table); orig_flags &= ~MS_RDONLY; if (mount(NULL, x, NULL, (orig_flags & ~flags_mask)|MS_BIND|MS_REMOUNT|new_flags, NULL) < 0) |