]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/mount-util.h
mount-util: use mfree()
[thirdparty/systemd.git] / src / shared / mount-util.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 #include <mntent.h>
5 #include <stdio.h>
6 #include <unistd.h>
7
8 #include "alloc-util.h"
9 #include "errno-util.h"
10 #include "macro.h"
11
12 /* 4MB for contents of regular files, 64k inodes for directories, symbolic links and device specials, using
13 * large storage array systems as a baseline */
14 #define TMPFS_LIMITS_DEV ",size=4m,nr_inodes=64k"
15
16 /* Very little, if any use expected */
17 #define TMPFS_LIMITS_EMPTY_OR_ALMOST ",size=4m,nr_inodes=1k"
18 #define TMPFS_LIMITS_SYS TMPFS_LIMITS_EMPTY_OR_ALMOST
19 #define TMPFS_LIMITS_SYS_FS_CGROUP TMPFS_LIMITS_EMPTY_OR_ALMOST
20
21 /* On an extremely small device with only 256MB of RAM, 20% of RAM should be enough for the re-execution of
22 * PID1 because 16MB of free space is required. */
23 #define TMPFS_LIMITS_RUN ",size=20%,nr_inodes=800k"
24
25 /* The limit used for various nested tmpfs mounts, in paricular for guests started by systemd-nspawn.
26 * 10% of RAM (using 16GB of RAM as a baseline) translates to 400k inodes (assuming 4k each) and 25%
27 * translates to 1M inodes.
28 * (On the host, /tmp is configured through a .mount unit file.) */
29 #define NESTED_TMPFS_LIMITS ",size=10%,nr_inodes=400k"
30
31 /* More space for volatile root and /var */
32 #define TMPFS_LIMITS_VAR ",size=25%,nr_inodes=1m"
33 #define TMPFS_LIMITS_ROOTFS TMPFS_LIMITS_VAR
34 #define TMPFS_LIMITS_VOLATILE_STATE TMPFS_LIMITS_VAR
35
36 int mount_fd(const char *source, int target_fd, const char *filesystemtype, unsigned long mountflags, const void *data);
37 int mount_nofollow(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data);
38
39 int repeat_unmount(const char *path, int flags);
40 int umount_recursive(const char *target, int flags);
41 int bind_remount_recursive(const char *prefix, unsigned long new_flags, unsigned long flags_mask, char **deny_list);
42 int bind_remount_recursive_with_mountinfo(const char *prefix, unsigned long new_flags, unsigned long flags_mask, char **deny_list, FILE *proc_self_mountinfo);
43 int bind_remount_one_with_mountinfo(const char *path, unsigned long new_flags, unsigned long flags_mask, FILE *proc_self_mountinfo);
44
45 int mount_move_root(const char *path);
46
47 DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, endmntent);
48 #define _cleanup_endmntent_ _cleanup_(endmntentp)
49
50 int mount_verbose_full(
51 int error_log_level,
52 const char *what,
53 const char *where,
54 const char *type,
55 unsigned long flags,
56 const char *options,
57 bool follow_symlink);
58
59 static inline int mount_follow_verbose(
60 int error_log_level,
61 const char *what,
62 const char *where,
63 const char *type,
64 unsigned long flags,
65 const char *options) {
66 return mount_verbose_full(error_log_level, what, where, type, flags, options, true);
67 }
68
69 static inline int mount_nofollow_verbose(
70 int error_log_level,
71 const char *what,
72 const char *where,
73 const char *type,
74 unsigned long flags,
75 const char *options) {
76 return mount_verbose_full(error_log_level, what, where, type, flags, options, false);
77 }
78
79 int umount_verbose(
80 int error_log_level,
81 const char *where,
82 int flags);
83
84 int mount_option_mangle(
85 const char *options,
86 unsigned long mount_flags,
87 unsigned long *ret_mount_flags,
88 char **ret_remaining_options);
89
90 int mode_to_inaccessible_node(const char *runtime_dir, mode_t mode, char **dest);
91
92 /* Useful for usage with _cleanup_(), unmounts, removes a directory and frees the pointer */
93 static inline char* umount_and_rmdir_and_free(char *p) {
94 PROTECT_ERRNO;
95 (void) umount_recursive(p, 0);
96 (void) rmdir(p);
97 return mfree(p);
98 }
99 DEFINE_TRIVIAL_CLEANUP_FUNC(char*, umount_and_rmdir_and_free);