From: Mike Yuan Date: Thu, 13 Jul 2023 15:13:10 +0000 (+0800) Subject: fstab-util: add fstab_is_bind X-Git-Tag: v254-rc2~28^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=35df78cd88e784abafd5df4545feeb3dd98e14a4;p=thirdparty%2Fsystemd.git fstab-util: add fstab_is_bind --- diff --git a/src/core/mount.c b/src/core/mount.c index 765c9899ef6..1e752aa44ff 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -123,14 +123,7 @@ static bool mount_is_loop(const MountParameters *p) { static bool mount_is_bind(const MountParameters *p) { assert(p); - - if (fstab_test_option(p->options, "bind\0" "rbind\0")) - return true; - - if (p->fstype && STR_IN_SET(p->fstype, "bind", "rbind")) - return true; - - return false; + return fstab_is_bind(p->options, p->fstype); } static bool mount_is_bound_to_device(Mount *m) { diff --git a/src/shared/fstab-util.c b/src/shared/fstab-util.c index b0e274afcca..6efdcd68965 100644 --- a/src/shared/fstab-util.c +++ b/src/shared/fstab-util.c @@ -20,6 +20,8 @@ int fstab_has_fstype(const char *fstype) { _cleanup_endmntent_ FILE *f = NULL; struct mntent *m; + assert(fstype); + f = setmntent(fstab_path(), "re"); if (!f) return errno == ENOENT ? false : -errno; @@ -288,3 +290,14 @@ char *fstab_node_to_udev_node(const char *p) { return strdup(p); } + +bool fstab_is_bind(const char *options, const char *fstype) { + + if (fstab_test_option(options, "bind\0" "rbind\0")) + return true; + + if (fstype && STR_IN_SET(fstype, "bind", "rbind")) + return true; + + return false; +} diff --git a/src/shared/fstab-util.h b/src/shared/fstab-util.h index 6b596baafa1..5979b476b67 100644 --- a/src/shared/fstab-util.h +++ b/src/shared/fstab-util.h @@ -40,3 +40,5 @@ char *fstab_node_to_udev_node(const char *p); static inline const char* fstab_path(void) { return secure_getenv("SYSTEMD_FSTAB") ?: "/etc/fstab"; } + +bool fstab_is_bind(const char *options, const char *fstype);