]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/fstab-util.h
mount-util: beef up bind_remount_recursive() to be able to toggle more than MS_RDONLY
[thirdparty/systemd.git] / src / shared / fstab-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <stdbool.h>
5 #include <stddef.h>
6
7 #include "macro.h"
8
9 int fstab_is_mount_point(const char *mount);
10 int fstab_has_fstype(const char *fstype);
11
12 int fstab_filter_options(const char *opts, const char *names, const char **namefound, char **value, char **filtered);
13
14 int fstab_extract_values(const char *opts, const char *name, char ***values);
15
16 static inline bool fstab_test_option(const char *opts, const char *names) {
17 return !!fstab_filter_options(opts, names, NULL, NULL, NULL);
18 }
19
20 int fstab_find_pri(const char *options, int *ret);
21
22 static inline bool fstab_test_yes_no_option(const char *opts, const char *yes_no) {
23 int r;
24 const char *opt;
25
26 /* If first name given is last, return 1.
27 * If second name given is last or neither is found, return 0. */
28
29 r = fstab_filter_options(opts, yes_no, &opt, NULL, NULL);
30 assert(r >= 0);
31
32 return opt == yes_no;
33 }
34
35 char *fstab_node_to_udev_node(const char *p);