]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/mount-util.h
tree-wide: drop 'This file is part of systemd' blurb
[thirdparty/systemd.git] / src / basic / mount-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2010 Lennart Poettering
6 ***/
7
8 #include <fcntl.h>
9 #include <mntent.h>
10 #include <stdbool.h>
11 #include <stdio.h>
12 #include <sys/stat.h>
13 #include <sys/types.h>
14
15 #include "macro.h"
16 #include "missing.h"
17
18 int name_to_handle_at_loop(int fd, const char *path, struct file_handle **ret_handle, int *ret_mnt_id, int flags);
19
20 int path_get_mnt_id(const char *path, int *ret);
21
22 int fd_is_mount_point(int fd, const char *filename, int flags);
23 int path_is_mount_point(const char *path, const char *root, int flags);
24
25 int repeat_unmount(const char *path, int flags);
26
27 int umount_recursive(const char *target, int flags);
28 int bind_remount_recursive(const char *prefix, bool ro, char **blacklist);
29 int bind_remount_recursive_with_mountinfo(const char *prefix, bool ro, char **blacklist, FILE *proc_self_mountinfo);
30
31 int mount_move_root(const char *path);
32
33 DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, endmntent);
34 #define _cleanup_endmntent_ _cleanup_(endmntentp)
35
36 bool fstype_is_network(const char *fstype);
37 bool fstype_is_api_vfs(const char *fstype);
38 bool fstype_is_ro(const char *fsype);
39 bool fstype_can_discard(const char *fstype);
40 bool fstype_can_uid_gid(const char *fstype);
41
42 const char* mode_to_inaccessible_node(mode_t mode);
43
44 int mount_verbose(
45 int error_log_level,
46 const char *what,
47 const char *where,
48 const char *type,
49 unsigned long flags,
50 const char *options);
51 int umount_verbose(const char *where);
52
53 const char *mount_propagation_flags_to_string(unsigned long flags);
54 int mount_propagation_flags_from_string(const char *name, unsigned long *ret);
55
56 int mount_option_mangle(
57 const char *options,
58 unsigned long mount_flags,
59 unsigned long *ret_mount_flags,
60 char **ret_remaining_options);