]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/path-util.h
2e43c0c345f4d2dac72bb78f0835fc1f11f77799
[thirdparty/systemd.git] / src / basic / path-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2010-2012 Lennart Poettering
6 ***/
7
8 #include <alloca.h>
9 #include <stdbool.h>
10 #include <stddef.h>
11
12 #include "macro.h"
13 #include "string-util.h"
14 #include "time-util.h"
15
16 #define PATH_SPLIT_SBIN_BIN(x) x "sbin:" x "bin"
17 #define PATH_SPLIT_SBIN_BIN_NULSTR(x) x "sbin\0" x "bin\0"
18
19 #define PATH_NORMAL_SBIN_BIN(x) x "bin"
20 #define PATH_NORMAL_SBIN_BIN_NULSTR(x) x "bin\0"
21
22 #if HAVE_SPLIT_BIN
23 # define PATH_SBIN_BIN(x) PATH_SPLIT_SBIN_BIN(x)
24 # define PATH_SBIN_BIN_NULSTR(x) PATH_SPLIT_SBIN_BIN_NULSTR(x)
25 #else
26 # define PATH_SBIN_BIN(x) PATH_NORMAL_SBIN_BIN(x)
27 # define PATH_SBIN_BIN_NULSTR(x) PATH_NORMAL_SBIN_BIN_NULSTR(x)
28 #endif
29
30 #define DEFAULT_PATH_NORMAL PATH_SBIN_BIN("/usr/local/") ":" PATH_SBIN_BIN("/usr/")
31 #define DEFAULT_PATH_NORMAL_NULSTR PATH_SBIN_BIN_NULSTR("/usr/local/") PATH_SBIN_BIN_NULSTR("/usr/")
32 #define DEFAULT_PATH_SPLIT_USR DEFAULT_PATH_NORMAL ":" PATH_SBIN_BIN("/")
33 #define DEFAULT_PATH_SPLIT_USR_NULSTR DEFAULT_PATH_NORMAL_NULSTR PATH_SBIN_BIN_NULSTR("/")
34 #define DEFAULT_PATH_COMPAT PATH_SPLIT_SBIN_BIN("/usr/local/") ":" PATH_SPLIT_SBIN_BIN("/usr/") ":" PATH_SPLIT_SBIN_BIN("/")
35
36 #if HAVE_SPLIT_USR
37 # define DEFAULT_PATH DEFAULT_PATH_SPLIT_USR
38 # define DEFAULT_PATH_NULSTR DEFAULT_PATH_SPLIT_USR_NULSTR
39 #else
40 # define DEFAULT_PATH DEFAULT_PATH_NORMAL
41 # define DEFAULT_PATH_NULSTR DEFAULT_PATH_NORMAL_NULSTR
42 #endif
43
44 bool is_path(const char *p) _pure_;
45 int path_split_and_make_absolute(const char *p, char ***ret);
46 bool path_is_absolute(const char *p) _pure_;
47 char* path_make_absolute(const char *p, const char *prefix);
48 int safe_getcwd(char **ret);
49 int path_make_absolute_cwd(const char *p, char **ret);
50 int path_make_relative(const char *from_dir, const char *to_path, char **_r);
51 char* path_startswith(const char *path, const char *prefix) _pure_;
52 int path_compare(const char *a, const char *b) _pure_;
53 bool path_equal(const char *a, const char *b) _pure_;
54 bool path_equal_or_files_same(const char *a, const char *b, int flags);
55 char* path_join(const char *root, const char *path, const char *rest);
56 char* path_simplify(char *path, bool kill_dots);
57
58 static inline bool path_equal_ptr(const char *a, const char *b) {
59 return !!a == !!b && (!a || path_equal(a, b));
60 }
61
62 /* Note: the search terminates on the first NULL item. */
63 #define PATH_IN_SET(p, ...) \
64 ({ \
65 char **s; \
66 bool _found = false; \
67 STRV_FOREACH(s, STRV_MAKE(__VA_ARGS__)) \
68 if (path_equal(p, *s)) { \
69 _found = true; \
70 break; \
71 } \
72 _found; \
73 })
74
75 #define PATH_STARTSWITH_SET(p, ...) \
76 ({ \
77 char **s; \
78 bool _found = false; \
79 STRV_FOREACH(s, STRV_MAKE(__VA_ARGS__)) \
80 if (path_startswith(p, *s)) { \
81 _found = true; \
82 break; \
83 } \
84 _found; \
85 })
86
87 int path_strv_make_absolute_cwd(char **l);
88 char** path_strv_resolve(char **l, const char *root);
89 char** path_strv_resolve_uniq(char **l, const char *root);
90
91 int find_binary(const char *name, char **filename);
92
93 bool paths_check_timestamp(const char* const* paths, usec_t *paths_ts_usec, bool update);
94
95 int fsck_exists(const char *fstype);
96 int mkfs_exists(const char *fstype);
97
98 /* Iterates through the path prefixes of the specified path, going up
99 * the tree, to root. Also returns "" (and not "/"!) for the root
100 * directory. Excludes the specified directory itself */
101 #define PATH_FOREACH_PREFIX(prefix, path) \
102 for (char *_slash = ({ path_simplify(strcpy(prefix, path), false); streq(prefix, "/") ? NULL : strrchr(prefix, '/'); }); _slash && ((*_slash = 0), true); _slash = strrchr((prefix), '/'))
103
104 /* Same as PATH_FOREACH_PREFIX but also includes the specified path itself */
105 #define PATH_FOREACH_PREFIX_MORE(prefix, path) \
106 for (char *_slash = ({ path_simplify(strcpy(prefix, path), false); if (streq(prefix, "/")) prefix[0] = 0; strrchr(prefix, 0); }); _slash && ((*_slash = 0), true); _slash = strrchr((prefix), '/'))
107
108 char *prefix_root(const char *root, const char *path);
109
110 /* Similar to prefix_root(), but returns an alloca() buffer, or
111 * possibly a const pointer into the path parameter */
112 #define prefix_roota(root, path) \
113 ({ \
114 const char* _path = (path), *_root = (root), *_ret; \
115 char *_p, *_n; \
116 size_t _l; \
117 while (_path[0] == '/' && _path[1] == '/') \
118 _path ++; \
119 if (empty_or_root(_root)) \
120 _ret = _path; \
121 else { \
122 _l = strlen(_root) + 1 + strlen(_path) + 1; \
123 _n = alloca(_l); \
124 _p = stpcpy(_n, _root); \
125 while (_p > _n && _p[-1] == '/') \
126 _p--; \
127 if (_path[0] != '/') \
128 *(_p++) = '/'; \
129 strcpy(_p, _path); \
130 _ret = _n; \
131 } \
132 _ret; \
133 })
134
135 int parse_path_argument_and_warn(const char *path, bool suppress_root, char **arg);
136
137 char* dirname_malloc(const char *path);
138 const char *last_path_component(const char *path);
139
140 bool filename_is_valid(const char *p) _pure_;
141 bool path_is_normalized(const char *p) _pure_;
142
143 char *file_in_same_dir(const char *path, const char *filename);
144
145 bool hidden_or_backup_file(const char *filename) _pure_;
146
147 bool is_device_path(const char *path);
148
149 bool valid_device_node_path(const char *path);
150 bool valid_device_allow_pattern(const char *path);
151
152 int systemd_installation_has_version(const char *root, unsigned minimal_version);
153
154 bool dot_or_dot_dot(const char *path);
155
156 static inline const char *skip_dev_prefix(const char *p) {
157 const char *e;
158
159 /* Drop any /dev prefix if there is any */
160
161 e = path_startswith(p, "/dev/");
162
163 return e ?: p;
164 }
165
166 bool empty_or_root(const char *root);
167 static inline const char *empty_to_root(const char *path) {
168 return isempty(path) ? "/" : path;
169 }
170
171 enum {
172 PATH_CHECK_FATAL = 1 << 0, /* If not set, then error message is appended with 'ignoring'. */
173 PATH_CHECK_ABSOLUTE = 1 << 1,
174 PATH_CHECK_RELATIVE = 1 << 2,
175 };
176
177 int path_simplify_and_warn(char *path, unsigned flag, const char *unit, const char *filename, unsigned line, const char *lvalue);