]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/tmpfiles/tmpfiles.c
update TODO
[thirdparty/systemd.git] / src / tmpfiles / tmpfiles.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
5008d581 2
5008d581 3#include <errno.h>
3f6fd1ba
LP
4#include <fcntl.h>
5#include <fnmatch.h>
6#include <getopt.h>
5008d581 7#include <limits.h>
3f6fd1ba
LP
8#include <linux/fs.h>
9#include <stdbool.h>
10#include <stddef.h>
3b63d2d3 11#include <stdlib.h>
52b32b2a 12#include <sys/file.h>
ebf4e801 13#include <sys/xattr.h>
d9daae55 14#include <sysexits.h>
3f6fd1ba
LP
15#include <time.h>
16#include <unistd.h>
5008d581 17
5a8575ef
ZJS
18#include "sd-path.h"
19
3f6fd1ba 20#include "acl-util.h"
b5efdb8a 21#include "alloc-util.h"
3f6fd1ba 22#include "btrfs-util.h"
430f0182 23#include "capability-util.h"
c8b3094d 24#include "chattr-util.h"
3f6fd1ba
LP
25#include "conf-files.h"
26#include "copy.h"
a0f29c76 27#include "def.h"
8fb3f009 28#include "dirent-util.h"
63d3d0a5 29#include "dissect-image.h"
4f5dd394 30#include "escape.h"
3ffd4af2 31#include "fd-util.h"
0d39fa9c 32#include "fileio.h"
f97b34a6 33#include "format-util.h"
f4f15635 34#include "fs-util.h"
7d50b32a 35#include "glob-util.h"
c004493c 36#include "io-util.h"
3f6fd1ba 37#include "label.h"
5008d581 38#include "log.h"
54693d9b 39#include "macro.h"
87938c3b 40#include "main-func.h"
ddb439b8
LP
41#include "missing_stat.h"
42#include "missing_syscall.h"
49e942b2 43#include "mkdir.h"
63d3d0a5 44#include "mount-util.h"
049af8ad 45#include "mountpoint-util.h"
a3451c2c 46#include "offline-passwd.h"
dcd5c891 47#include "pager.h"
6bedfcbb 48#include "parse-util.h"
f2b5ca0e 49#include "path-lookup.h"
9eb977db 50#include "path-util.h"
294bf0c3 51#include "pretty-print.h"
e5358401 52#include "rlimit-util.h"
c6878637 53#include "rm-rf.h"
d7b8eec7 54#include "selinux-util.h"
3f6fd1ba 55#include "set.h"
760877e9 56#include "sort-util.h"
3f6fd1ba 57#include "specifier.h"
8fcde012 58#include "stat-util.h"
15a5e950 59#include "stdio-util.h"
8b43440b 60#include "string-table.h"
07630cea 61#include "string-util.h"
3f6fd1ba 62#include "strv.h"
affb60b1 63#include "umask-util.h"
b1d4f8e1 64#include "user-util.h"
5008d581 65
01000479 66/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
5008d581 67 * them in the file system. This is intended to be used to create
db019b8d
KS
68 * properly owned directories beneath /tmp, /var/tmp, /run, which are
69 * volatile and hence need to be recreated on bootup. */
5008d581 70
1a967b6b
LP
71typedef enum OperationMask {
72 OPERATION_CREATE = 1 << 0,
73 OPERATION_REMOVE = 1 << 1,
74 OPERATION_CLEAN = 1 << 2,
75} OperationMask;
76
66ccd038 77typedef enum ItemType {
b8bb3e8f 78 /* These ones take file names */
3b63d2d3 79 CREATE_FILE = 'f',
eccebf4b 80 TRUNCATE_FILE = 'F', /* deprecated: use f+ */
3b63d2d3
LP
81 CREATE_DIRECTORY = 'd',
82 TRUNCATE_DIRECTORY = 'D',
d7b8eec7 83 CREATE_SUBVOLUME = 'v',
5fb13eb5
LP
84 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
85 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
ee17ee7c 86 CREATE_FIFO = 'p',
468d726b
LP
87 CREATE_SYMLINK = 'L',
88 CREATE_CHAR_DEVICE = 'c',
89 CREATE_BLOCK_DEVICE = 'b',
849958d1 90 COPY_FILES = 'C',
b8bb3e8f
LP
91
92 /* These ones take globs */
17493fa5 93 WRITE_FILE = 'w',
df8dee85 94 EMPTY_DIRECTORY = 'e',
b705ab6a
ZJS
95 SET_XATTR = 't',
96 RECURSIVE_SET_XATTR = 'T',
97 SET_ACL = 'a',
98 RECURSIVE_SET_ACL = 'A',
17493fa5
LP
99 SET_ATTRIBUTE = 'h',
100 RECURSIVE_SET_ATTRIBUTE = 'H',
3b63d2d3 101 IGNORE_PATH = 'x',
78a92a5a 102 IGNORE_DIRECTORY_PATH = 'X',
3b63d2d3 103 REMOVE_PATH = 'r',
a8d88783 104 RECURSIVE_REMOVE_PATH = 'R',
777b87e7 105 RELABEL_PATH = 'z',
e73a03e0 106 RECURSIVE_RELABEL_PATH = 'Z',
17493fa5 107 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
66ccd038 108} ItemType;
3b63d2d3
LP
109
110typedef struct Item {
66ccd038 111 ItemType type;
3b63d2d3
LP
112
113 char *path;
468d726b 114 char *argument;
ebf4e801 115 char **xattrs;
349cc4a5 116#if HAVE_ACL
f8eeeaf9
ZJS
117 acl_t acl_access;
118 acl_t acl_default;
119#endif
5008d581
LP
120 uid_t uid;
121 gid_t gid;
3b63d2d3
LP
122 mode_t mode;
123 usec_t age;
124
468d726b 125 dev_t major_minor;
88ec4dfa
LP
126 unsigned attribute_value;
127 unsigned attribute_mask;
468d726b 128
3b63d2d3
LP
129 bool uid_set:1;
130 bool gid_set:1;
131 bool mode_set:1;
132 bool age_set:1;
abef3f91 133 bool mask_perms:1;
88ec4dfa 134 bool attribute_set:1;
24f3a374
LP
135
136 bool keep_first_level:1;
1910cd0e 137
c55ac248 138 bool append_or_force:1;
2e78fa79 139
6d7b5433
WD
140 bool allow_failure:1;
141
811a1587 142 OperationMask done;
3b63d2d3
LP
143} Item;
144
3f93da98
ZJS
145typedef struct ItemArray {
146 Item *items;
96d10d78 147 size_t n_items;
64768714 148 size_t allocated;
811a1587
LP
149
150 struct ItemArray *parent;
151 Set *children;
3f93da98
ZJS
152} ItemArray;
153
5a8575ef 154typedef enum DirectoryType {
133bbca4 155 DIRECTORY_RUNTIME,
5a8575ef
ZJS
156 DIRECTORY_STATE,
157 DIRECTORY_CACHE,
158 DIRECTORY_LOGS,
159 _DIRECTORY_TYPE_MAX,
160} DirectoryType;
161
ceaaeb9b 162static bool arg_cat_config = false;
f2b5ca0e 163static bool arg_user = false;
1a967b6b 164static OperationMask arg_operation = 0;
81815651 165static bool arg_boot = false;
0221d68a 166static PagerFlags arg_pager_flags = 0;
3b63d2d3 167
7bc040fa
LP
168static char **arg_include_prefixes = NULL;
169static char **arg_exclude_prefixes = NULL;
cf9a4abd 170static char *arg_root = NULL;
63d3d0a5 171static char *arg_image = NULL;
a6d8474f 172static char *arg_replace = NULL;
fba6e687 173
3b63d2d3
LP
174#define MAX_DEPTH 256
175
ef43a391 176static OrderedHashmap *items = NULL, *globs = NULL;
7bc040fa
LP
177static Set *unix_sockets = NULL;
178
87938c3b
YW
179STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
180STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
181STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_free_freep);
182STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
183STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
184STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
63d3d0a5 185STATIC_DESTRUCTOR_REGISTER(arg_image, freep);
87938c3b 186
303ee601
ZJS
187static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret);
188static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret);
4cef1923 189
bd550f78 190static const Specifier specifier_table[] = {
e93387f3 191 { 'a', specifier_architecture, NULL },
5a8575ef 192 { 'b', specifier_boot_id, NULL },
e93387f3 193 { 'B', specifier_os_build_id, NULL },
5a8575ef 194 { 'H', specifier_host_name, NULL },
e97708fa 195 { 'l', specifier_short_host_name, NULL },
e93387f3 196 { 'm', specifier_machine_id_safe, NULL },
268f5a54 197 { 'o', specifier_os_id, NULL },
e93387f3 198 { 'v', specifier_kernel_release, NULL },
268f5a54 199 { 'w', specifier_os_version_id, NULL },
268f5a54 200 { 'W', specifier_os_variant_id, NULL },
5a8575ef 201
5a8575ef 202 { 'h', specifier_user_home, NULL },
b294e594 203
5a8575ef
ZJS
204 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
205 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
e93387f3
YW
206 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
207 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
208
209 COMMON_CREDS_SPECIFIERS,
210
2824aa07 211 COMMON_TMP_SPECIFIERS,
bd550f78
LP
212 {}
213};
214
303ee601 215static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret) {
4cef1923
FB
216 int r;
217
d8dab757
FB
218 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
219 * return a recognizable error so that the caller can skip the rule
4cef1923
FB
220 * gracefully. */
221
222 r = specifier_machine_id(specifier, data, userdata, ret);
d8dab757 223 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
5a8575ef 224 return -ENXIO;
4cef1923
FB
225
226 return r;
227}
228
303ee601 229static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret) {
5a8575ef
ZJS
230 struct table_entry {
231 uint64_t type;
232 const char *suffix;
233 };
234
235 static const struct table_entry paths_system[] = {
236 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
237 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
238 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
239 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
240 };
241
242 static const struct table_entry paths_user[] = {
243 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
244 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
245 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
246 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
247 };
248
249 unsigned i;
250 const struct table_entry *paths;
251
252 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
253 paths = arg_user ? paths_user : paths_system;
254
255 i = PTR_TO_UINT(data);
256 assert(i < ELEMENTSOF(paths_system));
257
51327bcc 258 return sd_path_lookup(paths[i].type, paths[i].suffix, ret);
5a8575ef
ZJS
259}
260
4cef1923
FB
261static int log_unresolvable_specifier(const char *filename, unsigned line) {
262 static bool notified = false;
263
5a8575ef
ZJS
264 /* In system mode, this is called when /etc is not fully initialized (e.g.
265 * in a chroot environment) where some specifiers are unresolvable. In user
266 * mode, this is called when some variables are not defined. These cases are
267 * not considered as an error so log at LOG_NOTICE only for the first time
268 * and then downgrade this to LOG_DEBUG for the rest. */
4cef1923 269
d02933fd
LP
270 log_syntax(NULL,
271 notified ? LOG_DEBUG : LOG_NOTICE,
272 filename, line, 0,
273 "Failed to resolve specifier: %s, skipping",
274 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
4cef1923
FB
275
276 if (!notified)
277 log_notice("All rules containing unresolvable specifiers will be skipped.");
278
279 notified = true;
280 return 0;
281}
282
f2b5ca0e
ZJS
283static int user_config_paths(char*** ret) {
284 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
285 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
286 _cleanup_strv_free_ char **res = NULL;
287 int r;
288
289 r = xdg_user_dirs(&config_dirs, &data_dirs);
290 if (r < 0)
291 return r;
292
293 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
294 if (r < 0 && r != -ENXIO)
295 return r;
296
297 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
298 if (r < 0 && r != -ENXIO)
299 return r;
300
301 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
302 if (r < 0 && r != -ENXIO)
303 return r;
304
305 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
306 if (r < 0)
307 return r;
308
309 r = strv_extend(&res, persistent_config);
310 if (r < 0)
311 return r;
312
313 r = strv_extend(&res, runtime_config);
314 if (r < 0)
315 return r;
316
317 r = strv_extend(&res, data_home);
318 if (r < 0)
319 return r;
320
321 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
322 if (r < 0)
323 return r;
324
325 r = path_strv_make_absolute_cwd(res);
326 if (r < 0)
327 return r;
328
ae2a15bc 329 *ret = TAKE_PTR(res);
f2b5ca0e
ZJS
330 return 0;
331}
332
66ccd038 333static bool needs_glob(ItemType t) {
cde684a2
LP
334 return IN_SET(t,
335 WRITE_FILE,
336 IGNORE_PATH,
337 IGNORE_DIRECTORY_PATH,
338 REMOVE_PATH,
339 RECURSIVE_REMOVE_PATH,
df8dee85 340 EMPTY_DIRECTORY,
e73a03e0 341 ADJUST_MODE,
cde684a2 342 RELABEL_PATH,
b705ab6a
ZJS
343 RECURSIVE_RELABEL_PATH,
344 SET_XATTR,
345 RECURSIVE_SET_XATTR,
346 SET_ACL,
34f64536
LP
347 RECURSIVE_SET_ACL,
348 SET_ATTRIBUTE,
349 RECURSIVE_SET_ATTRIBUTE);
b8bb3e8f
LP
350}
351
3f93da98
ZJS
352static bool takes_ownership(ItemType t) {
353 return IN_SET(t,
354 CREATE_FILE,
355 TRUNCATE_FILE,
356 CREATE_DIRECTORY,
df8dee85 357 EMPTY_DIRECTORY,
3f93da98
ZJS
358 TRUNCATE_DIRECTORY,
359 CREATE_SUBVOLUME,
5fb13eb5
LP
360 CREATE_SUBVOLUME_INHERIT_QUOTA,
361 CREATE_SUBVOLUME_NEW_QUOTA,
3f93da98
ZJS
362 CREATE_FIFO,
363 CREATE_SYMLINK,
364 CREATE_CHAR_DEVICE,
365 CREATE_BLOCK_DEVICE,
366 COPY_FILES,
3f93da98
ZJS
367 WRITE_FILE,
368 IGNORE_PATH,
369 IGNORE_DIRECTORY_PATH,
370 REMOVE_PATH,
371 RECURSIVE_REMOVE_PATH);
372}
373
ef43a391 374static struct Item* find_glob(OrderedHashmap *h, const char *match) {
3f93da98 375 ItemArray *j;
b8bb3e8f 376
90e74a66 377 ORDERED_HASHMAP_FOREACH(j, h) {
96d10d78 378 size_t n;
3f93da98 379
96d10d78 380 for (n = 0; n < j->n_items; n++) {
3f93da98
ZJS
381 Item *item = j->items + n;
382
383 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
384 return item;
385 }
386 }
b8bb3e8f
LP
387
388 return NULL;
389}
390
71a0be76
YW
391static int load_unix_sockets(void) {
392 _cleanup_set_free_free_ Set *sockets = NULL;
7fd1b19b 393 _cleanup_fclose_ FILE *f = NULL;
f1ff734f 394 int r;
17b90525
LP
395
396 if (unix_sockets)
71a0be76 397 return 0;
17b90525 398
f1ff734f 399 /* We maintain a cache of the sockets we found in /proc/net/unix to speed things up a little. */
17b90525 400
71a0be76
YW
401 sockets = set_new(&path_hash_ops);
402 if (!sockets)
403 return log_oom();
17b90525 404
fdcad0c2 405 f = fopen("/proc/net/unix", "re");
71a0be76
YW
406 if (!f)
407 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
408 "Failed to open /proc/net/unix, ignoring: %m");
17b90525 409
fdcad0c2 410 /* Skip header */
f1ff734f 411 r = read_line(f, LONG_LINE_MAX, NULL);
71a0be76
YW
412 if (r < 0)
413 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
414 if (r == 0)
415 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
17b90525
LP
416
417 for (;;) {
71a0be76
YW
418 _cleanup_free_ char *line = NULL, *s = NULL;
419 char *p;
17b90525 420
f1ff734f 421 r = read_line(f, LONG_LINE_MAX, &line);
71a0be76
YW
422 if (r < 0)
423 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
f1ff734f 424 if (r == 0) /* EOF */
17b90525
LP
425 break;
426
fdcad0c2
LP
427 p = strchr(line, ':');
428 if (!p)
429 continue;
430
431 if (strlen(p) < 37)
17b90525
LP
432 continue;
433
fdcad0c2 434 p += 37;
17b90525 435 p += strspn(p, WHITESPACE);
fdcad0c2 436 p += strcspn(p, WHITESPACE); /* skip one more word */
17b90525
LP
437 p += strspn(p, WHITESPACE);
438
439 if (*p != '/')
440 continue;
441
fdcad0c2 442 s = strdup(p);
71a0be76
YW
443 if (!s)
444 return log_oom();
17b90525 445
858d36c1 446 path_simplify(s, false);
4ff21d85 447
71a0be76
YW
448 r = set_consume(sockets, s);
449 if (r == -EEXIST)
450 continue;
451 if (r < 0)
452 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
17b90525 453
71a0be76
YW
454 TAKE_PTR(s);
455 }
17b90525 456
71a0be76
YW
457 unix_sockets = TAKE_PTR(sockets);
458 return 1;
17b90525
LP
459}
460
461static bool unix_socket_alive(const char *fn) {
462 assert(fn);
463
71a0be76
YW
464 if (load_unix_sockets() < 0)
465 return true; /* We don't know, so assume yes */
17b90525 466
71a0be76 467 return !!set_get(unix_sockets, (char*) fn);
17b90525
LP
468}
469
df99a9ef
ZJS
470static DIR* xopendirat_nomod(int dirfd, const char *path) {
471 DIR *dir;
472
473 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
1532227a
LP
474 if (dir)
475 return dir;
476
477 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
478 if (errno != EPERM)
479 return NULL;
480
481 dir = xopendirat(dirfd, path, O_NOFOLLOW);
482 if (!dir)
483 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
df99a9ef
ZJS
484
485 return dir;
486}
487
488static DIR* opendir_nomod(const char *path) {
489 return xopendirat_nomod(AT_FDCWD, path);
490}
491
ddb439b8
LP
492static inline nsec_t load_statx_timestamp_nsec(const struct statx_timestamp *ts) {
493 assert(ts);
494
495 if (ts->tv_sec < 0)
496 return NSEC_INFINITY;
497
498 if ((nsec_t) ts->tv_sec >= (UINT64_MAX - ts->tv_nsec) / NSEC_PER_SEC)
499 return NSEC_INFINITY;
500
501 return ts->tv_sec * NSEC_PER_SEC + ts->tv_nsec;
502}
503
3b63d2d3 504static int dir_cleanup(
78a92a5a 505 Item *i,
3b63d2d3
LP
506 const char *p,
507 DIR *d,
ddb439b8
LP
508 nsec_t self_atime_nsec,
509 nsec_t self_mtime_nsec,
510 nsec_t cutoff_nsec,
511 dev_t rootdev_major,
512 dev_t rootdev_minor,
3b63d2d3 513 bool mountpoint,
24f3a374 514 int maxdepth,
265ffa1e
LP
515 bool keep_this_level) {
516
3b63d2d3 517 bool deleted = false;
ddb439b8 518 struct dirent *dent;
3b63d2d3
LP
519 int r = 0;
520
8fb3f009 521 FOREACH_DIRENT_ALL(dent, d, break) {
7fd1b19b 522 _cleanup_free_ char *sub_path = NULL;
ddb439b8 523 nsec_t atime_nsec, mtime_nsec, ctime_nsec, btime_nsec;
3b63d2d3 524
49bfc877 525 if (dot_or_dot_dot(dent->d_name))
3b63d2d3 526 continue;
5008d581 527
ca194a2a 528 /* If statx() is supported, use it. It's preferable over fstatat() since it tells us
69e3234d 529 * explicitly where we are looking at a mount point, for free as side information. Determining
ca194a2a
LP
530 * the same information without statx() is hard, see the complexity of path_is_mount_point(),
531 * and also much slower as it requires a number of syscalls instead of just one. Hence, when
532 * we have modern statx() we use it instead of fstat() and do proper mount point checks,
533 * while on older kernels's well do traditional st_dev based detection of mount points.
534 *
535 * Using statx() for detecting mount points also has the benfit that we handle weird file
536 * systems such as overlayfs better where each file is originating from a different
537 * st_dev. */
538
539 STRUCT_STATX_DEFINE(sx);
540
541 r = statx_fallback(
542 dirfd(d), dent->d_name,
543 AT_SYMLINK_NOFOLLOW|AT_NO_AUTOMOUNT,
544 STATX_TYPE|STATX_MODE|STATX_UID|STATX_ATIME|STATX_MTIME|STATX_CTIME|STATX_BTIME,
545 &sx);
546 if (r == -ENOENT)
547 continue;
548 if (r < 0) {
549 /* FUSE, NFS mounts, SELinux might return EACCES */
550 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
551 "statx(%s/%s) failed: %m", p, dent->d_name);
552 continue;
3b63d2d3
LP
553 }
554
ca194a2a
LP
555 if (FLAGS_SET(sx.stx_attributes_mask, STATX_ATTR_MOUNT_ROOT)) {
556 /* Yay, we have the mount point API, use it */
557 if (FLAGS_SET(sx.stx_attributes, STATX_ATTR_MOUNT_ROOT)) {
558 log_debug("Ignoring \"%s/%s\": different mount points.", p, dent->d_name);
ddb439b8
LP
559 continue;
560 }
ca194a2a
LP
561 } else {
562 /* So we might have statx() but the STATX_ATTR_MOUNT_ROOT flag is not supported, fall
563 * back to traditional stx_dev checking. */
564 if (sx.stx_dev_major != rootdev_major ||
565 sx.stx_dev_minor != rootdev_minor) {
ddb439b8
LP
566 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
567 continue;
568 }
569
ca194a2a
LP
570 /* Try to detect bind mounts of the same filesystem instance; they do not differ in device
571 * major/minors. This type of query is not supported on all kernels or filesystem types
572 * though. */
573 if (S_ISDIR(sx.stx_mode)) {
574 int q;
3b63d2d3 575
ca194a2a
LP
576 q = fd_is_mount_point(dirfd(d), dent->d_name, 0);
577 if (q < 0)
578 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, dent->d_name);
579 else if (q > 0) {
580 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, dent->d_name);
581 continue;
582 }
60bdc0ca 583 }
582deb84 584 }
99d680ac 585
ca194a2a
LP
586 atime_nsec = FLAGS_SET(sx.stx_mask, STATX_ATIME) ? load_statx_timestamp_nsec(&sx.stx_atime) : 0;
587 mtime_nsec = FLAGS_SET(sx.stx_mask, STATX_MTIME) ? load_statx_timestamp_nsec(&sx.stx_mtime) : 0;
588 ctime_nsec = FLAGS_SET(sx.stx_mask, STATX_CTIME) ? load_statx_timestamp_nsec(&sx.stx_ctime) : 0;
589 btime_nsec = FLAGS_SET(sx.stx_mask, STATX_BTIME) ? load_statx_timestamp_nsec(&sx.stx_btime) : 0;
590
113ed3be 591 sub_path = path_join(p, dent->d_name);
cde684a2 592 if (!sub_path) {
0d0f0c50 593 r = log_oom();
3b63d2d3
LP
594 goto finish;
595 }
596
597 /* Is there an item configured for this path? */
ef43a391 598 if (ordered_hashmap_get(items, sub_path)) {
582deb84 599 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
3b63d2d3 600 continue;
582deb84 601 }
3b63d2d3 602
582deb84
ZJS
603 if (find_glob(globs, sub_path)) {
604 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
b8bb3e8f 605 continue;
582deb84 606 }
b8bb3e8f 607
ca194a2a 608 if (S_ISDIR(sx.stx_mode)) {
52b32b2a 609 _cleanup_closedir_ DIR *sub_dir = NULL;
3b63d2d3
LP
610
611 if (mountpoint &&
612 streq(dent->d_name, "lost+found") &&
ca194a2a 613 sx.stx_uid == 0) {
781bc44e 614 log_debug("Ignoring directory \"%s\".", sub_path);
3b63d2d3 615 continue;
582deb84 616 }
3b63d2d3
LP
617
618 if (maxdepth <= 0)
582deb84 619 log_warning("Reached max depth on \"%s\".", sub_path);
3b63d2d3 620 else {
3b63d2d3
LP
621 int q;
622
df99a9ef 623 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
cde684a2 624 if (!sub_dir) {
582deb84 625 if (errno != ENOENT)
781bc44e 626 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
3b63d2d3
LP
627
628 continue;
629 }
630
52b32b2a
LP
631 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
632 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
633 continue;
634 }
635
ddb439b8
LP
636 q = dir_cleanup(i,
637 sub_path, sub_dir,
638 atime_nsec, mtime_nsec, cutoff_nsec,
639 rootdev_major, rootdev_minor,
640 false, maxdepth-1, false);
3b63d2d3
LP
641 if (q < 0)
642 r = q;
643 }
644
a23fabc6
LP
645 /* Note: if you are wondering why we don't support the sticky bit for excluding
646 * directories from cleaning like we do it for other file system objects: well, the
647 * sticky bit already has a meaning for directories, so we don't want to overload
648 * that. */
24f3a374 649
582deb84 650 if (keep_this_level) {
781bc44e 651 log_debug("Keeping directory \"%s\".", sub_path);
24f3a374 652 continue;
582deb84 653 }
24f3a374 654
3b63d2d3 655 /* Ignore ctime, we change it when deleting */
ddb439b8 656 if (mtime_nsec != NSEC_INFINITY && mtime_nsec >= cutoff_nsec) {
582deb84
ZJS
657 char a[FORMAT_TIMESTAMP_MAX];
658 /* Follows spelling in stat(1). */
659 log_debug("Directory \"%s\": modify time %s is too new.",
660 sub_path,
ddb439b8 661 format_timestamp_style(a, sizeof(a), mtime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
3b63d2d3 662 continue;
582deb84
ZJS
663 }
664
ddb439b8 665 if (atime_nsec != NSEC_INFINITY && atime_nsec >= cutoff_nsec) {
582deb84
ZJS
666 char a[FORMAT_TIMESTAMP_MAX];
667 log_debug("Directory \"%s\": access time %s is too new.",
668 sub_path,
ddb439b8
LP
669 format_timestamp_style(a, sizeof(a), atime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
670 continue;
671 }
672
673 if (btime_nsec != NSEC_INFINITY && btime_nsec >= cutoff_nsec) {
674 char a[FORMAT_TIMESTAMP_MAX];
675 log_debug("Directory \"%s\": birth time %s is too new.",
676 sub_path,
677 format_timestamp_style(a, sizeof(a), btime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
582deb84
ZJS
678 continue;
679 }
3b63d2d3 680
61253220
ZJS
681 log_debug("Removing directory \"%s\".", sub_path);
682 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
920ce828 683 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
781bc44e 684 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
3b63d2d3
LP
685
686 } else {
a23fabc6
LP
687 /* Skip files for which the sticky bit is set. These are semantics we define, and are
688 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
ca194a2a 689 if (sx.stx_mode & S_ISVTX) {
582deb84 690 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
9c73736d 691 continue;
582deb84 692 }
9c73736d 693
20b6bb95 694 if (mountpoint &&
ca194a2a
LP
695 S_ISREG(sx.stx_mode) &&
696 sx.stx_uid == 0 &&
20b6bb95
LP
697 STR_IN_SET(dent->d_name,
698 ".journal",
699 "aquota.user",
700 "aquota.group")) {
701 log_debug("Skipping \"%s\".", sub_path);
702 continue;
703 }
3b63d2d3 704
17b90525 705 /* Ignore sockets that are listed in /proc/net/unix */
ca194a2a 706 if (S_ISSOCK(sx.stx_mode) && unix_socket_alive(sub_path)) {
582deb84 707 log_debug("Skipping \"%s\": live socket.", sub_path);
17b90525 708 continue;
582deb84 709 }
17b90525 710
78ab08eb 711 /* Ignore device nodes */
ca194a2a 712 if (S_ISCHR(sx.stx_mode) || S_ISBLK(sx.stx_mode)) {
582deb84 713 log_debug("Skipping \"%s\": a device.", sub_path);
78ab08eb 714 continue;
582deb84 715 }
78ab08eb 716
a23fabc6 717 /* Keep files on this level around if this is requested */
582deb84
ZJS
718 if (keep_this_level) {
719 log_debug("Keeping \"%s\".", sub_path);
24f3a374 720 continue;
582deb84 721 }
24f3a374 722
ddb439b8 723 if (mtime_nsec != NSEC_INFINITY && mtime_nsec >= cutoff_nsec) {
582deb84
ZJS
724 char a[FORMAT_TIMESTAMP_MAX];
725 /* Follows spelling in stat(1). */
726 log_debug("File \"%s\": modify time %s is too new.",
727 sub_path,
ddb439b8 728 format_timestamp_style(a, sizeof(a), mtime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
3b63d2d3 729 continue;
582deb84 730 }
3b63d2d3 731
ddb439b8 732 if (atime_nsec != NSEC_INFINITY && atime_nsec >= cutoff_nsec) {
582deb84
ZJS
733 char a[FORMAT_TIMESTAMP_MAX];
734 log_debug("File \"%s\": access time %s is too new.",
735 sub_path,
ddb439b8 736 format_timestamp_style(a, sizeof(a), atime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
582deb84
ZJS
737 continue;
738 }
3b63d2d3 739
ddb439b8 740 if (ctime_nsec != NSEC_INFINITY && ctime_nsec >= cutoff_nsec) {
582deb84
ZJS
741 char a[FORMAT_TIMESTAMP_MAX];
742 log_debug("File \"%s\": change time %s is too new.",
743 sub_path,
ddb439b8
LP
744 format_timestamp_style(a, sizeof(a), ctime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
745 continue;
746 }
747
748 if (btime_nsec != NSEC_INFINITY && btime_nsec >= cutoff_nsec) {
749 char a[FORMAT_TIMESTAMP_MAX];
750 log_debug("File \"%s\": birth time %s is too new.",
751 sub_path,
752 format_timestamp_style(a, sizeof(a), btime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
582deb84 753 continue;
3b63d2d3
LP
754 }
755
781bc44e 756 log_debug("Removing \"%s\".", sub_path);
582deb84
ZJS
757 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
758 if (errno != ENOENT)
781bc44e 759 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
582deb84 760
3b63d2d3
LP
761 deleted = true;
762 }
763 }
764
765finish:
766 if (deleted) {
ddb439b8
LP
767 char a[FORMAT_TIMESTAMP_MAX], m[FORMAT_TIMESTAMP_MAX];
768 struct timespec ts[2];
76e15a9c 769
582deb84
ZJS
770 log_debug("Restoring access and modification time on \"%s\": %s, %s",
771 p,
ddb439b8
LP
772 format_timestamp_style(a, sizeof(a), self_atime_nsec / NSEC_PER_USEC, TIMESTAMP_US),
773 format_timestamp_style(m, sizeof(m), self_mtime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
774
775 timespec_store_nsec(ts + 0, self_atime_nsec);
776 timespec_store_nsec(ts + 1, self_mtime_nsec);
76e15a9c
LP
777
778 /* Restore original directory timestamps */
ddb439b8 779 if (futimens(dirfd(d), ts) < 0)
76e15a9c 780 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
3b63d2d3
LP
781 }
782
3b63d2d3
LP
783 return r;
784}
785
5579f856
LP
786static bool dangerous_hardlinks(void) {
787 _cleanup_free_ char *value = NULL;
788 static int cached = -1;
789 int r;
790
791 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
792 * what the upstream default is. */
793
794 if (cached >= 0)
795 return cached;
796
797 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
798 if (r < 0) {
799 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
800 return true;
801 }
802
803 r = parse_boolean(value);
804 if (r < 0) {
805 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
806 return true;
807 }
808
809 cached = r == 0;
810 return cached;
811}
812
774f79b5 813static bool hardlink_vulnerable(const struct stat *st) {
5579f856
LP
814 assert(st);
815
816 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
817}
818
8b364a38
LP
819static mode_t process_mask_perms(mode_t mode, mode_t current) {
820
821 if ((current & 0111) == 0)
822 mode &= ~0111;
823 if ((current & 0222) == 0)
824 mode &= ~0222;
825 if ((current & 0444) == 0)
826 mode &= ~0444;
827 if (!S_ISDIR(current))
828 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
829
830 return mode;
831}
832
9d874aec 833static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
b206ac8e 834 struct stat stbuf;
a9f55d0e
LP
835 mode_t new_mode;
836 bool do_chown;
dee00c19 837 int r;
1924a97d 838
cde684a2 839 assert(i);
936f6bdb 840 assert(fd);
4dc7bfdf 841 assert(path);
48b8aaa8 842
936f6bdb
FB
843 if (!i->mode_set && !i->uid_set && !i->gid_set)
844 goto shortcut;
1924a97d 845
b206ac8e
FB
846 if (!st) {
847 if (fstat(fd, &stbuf) < 0)
848 return log_error_errno(errno, "fstat(%s) failed: %m", path);
849 st = &stbuf;
850 }
851
baaa35ad
ZJS
852 if (hardlink_vulnerable(st))
853 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
854 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
855 path);
5579f856 856
a9f55d0e
LP
857 /* Do we need a chown()? */
858 do_chown =
859 (i->uid_set && i->uid != st->st_uid) ||
860 (i->gid_set && i->gid != st->st_gid);
8b364a38 861
a9f55d0e
LP
862 /* Calculate the mode to apply */
863 new_mode = i->mode_set ? (i->mask_perms ?
864 process_mask_perms(i->mode, st->st_mode) :
865 i->mode) :
866 (st->st_mode & 07777);
867
868 if (i->mode_set && do_chown) {
869 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
870 * the new mode. That way there's no time window where the file exists under the old owner
871 * with more than the old access modes — and not under the new owner with more than the new
872 * access modes either. */
8b364a38 873
936f6bdb 874 if (S_ISLNK(st->st_mode))
a9f55d0e 875 log_debug("Skipping temporary mode fix for symlink %s.", path);
51207ca1 876 else {
a9f55d0e 877 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
abef3f91 878
a9f55d0e
LP
879 if (((m ^ st->st_mode) & 07777) == 0)
880 log_debug("\"%s\" matches temporary mode %o already.", path, m);
48b8aaa8 881 else {
a9f55d0e 882 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
dee00c19
LP
883 r = fchmod_opath(fd, m);
884 if (r < 0)
885 return log_error_errno(r, "fchmod() of %s failed: %m", path);
48b8aaa8 886 }
062e01bb 887 }
51207ca1 888 }
062e01bb 889
a9f55d0e 890 if (do_chown) {
51207ca1
LP
891 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
892 path,
893 i->uid_set ? i->uid : UID_INVALID,
894 i->gid_set ? i->gid : GID_INVALID);
895
936f6bdb
FB
896 if (fchownat(fd,
897 "",
898 i->uid_set ? i->uid : UID_INVALID,
899 i->gid_set ? i->gid : GID_INVALID,
900 AT_EMPTY_PATH) < 0)
901 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
582deb84 902 }
062e01bb 903
a9f55d0e
LP
904 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
905 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
906 if (i->mode_set || do_chown) {
907 if (S_ISLNK(st->st_mode))
908 log_debug("Skipping mode fix for symlink %s.", path);
909 else {
910 /* Check if the chmod() is unnecessary. Note that if we did a chown() before we always
911 * chmod() here again, since it might have mangled the bits. */
912 if (!do_chown && ((new_mode ^ st->st_mode) & 07777) == 0)
913 log_debug("\"%s\" matches mode %o already.", path, new_mode);
914 else {
915 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
dee00c19
LP
916 r = fchmod_opath(fd, new_mode);
917 if (r < 0)
918 return log_error_errno(r, "fchmod() of %s failed: %m", path);
a9f55d0e
LP
919 }
920 }
921 }
922
59793c8f 923shortcut:
08c84981 924 return label_fix(path, 0);
062e01bb
MS
925}
926
5ec9d065
FB
927static int path_open_parent_safe(const char *path) {
928 _cleanup_free_ char *dn = NULL;
a5648b80 929 int r, fd;
5ec9d065 930
baaa35ad
ZJS
931 if (path_equal(path, "/") || !path_is_normalized(path))
932 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
933 "Failed to open parent of '%s': invalid path.",
934 path);
5ec9d065
FB
935
936 dn = dirname_malloc(path);
937 if (!dn)
938 return log_oom();
939
a5648b80
ZJS
940 r = chase_symlinks(dn, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
941 if (r < 0 && r != -ENOLINK)
942 return log_error_errno(r, "Failed to validate path %s: %m", path);
5ec9d065 943
a5648b80 944 return r < 0 ? r : fd;
5ec9d065
FB
945}
946
addc3e30 947static int path_open_safe(const char *path) {
a5648b80 948 int r, fd;
addc3e30
FB
949
950 /* path_open_safe() returns a file descriptor opened with O_PATH after
951 * verifying that the path doesn't contain unsafe transitions, except
952 * for its final component as the function does not follow symlink. */
953
954 assert(path);
955
baaa35ad
ZJS
956 if (!path_is_normalized(path))
957 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
958 "Failed to open invalid path '%s'.",
959 path);
addc3e30 960
a5648b80
ZJS
961 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
962 if (r < 0 && r != -ENOLINK)
963 return log_error_errno(r, "Failed to validate path %s: %m", path);
addc3e30 964
a5648b80 965 return r < 0 ? r : fd;
addc3e30
FB
966}
967
936f6bdb
FB
968static int path_set_perms(Item *i, const char *path) {
969 _cleanup_close_ int fd = -1;
936f6bdb
FB
970
971 assert(i);
972 assert(path);
973
addc3e30 974 fd = path_open_safe(path);
54946021 975 if (fd < 0)
addc3e30 976 return fd;
d460ba18 977
9d874aec 978 return fd_set_perms(i, fd, path, NULL);
936f6bdb
FB
979}
980
bd550f78 981static int parse_xattrs_from_arg(Item *i) {
ebf4e801
MW
982 const char *p;
983 int r;
984
985 assert(i);
505ef0e3 986 assert(i->argument);
ebf4e801 987
ebf4e801
MW
988 p = i->argument;
989
4034a06d 990 for (;;) {
4cef1923 991 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
4034a06d 992
4ec85141 993 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
4034a06d 994 if (r < 0)
bd550f78 995 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
4034a06d
LP
996 if (r <= 0)
997 break;
505ef0e3 998
4cef1923 999 r = split_pair(xattr, "=", &name, &value);
ebf4e801 1000 if (r < 0) {
4034a06d 1001 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
ebf4e801
MW
1002 continue;
1003 }
505ef0e3 1004
4034a06d 1005 if (isempty(name) || isempty(value)) {
bd550f78 1006 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
ebf4e801
MW
1007 continue;
1008 }
505ef0e3 1009
4034a06d 1010 if (strv_push_pair(&i->xattrs, name, value) < 0)
ebf4e801 1011 return log_oom();
505ef0e3 1012
4034a06d 1013 name = value = NULL;
ebf4e801
MW
1014 }
1015
4034a06d 1016 return 0;
ebf4e801
MW
1017}
1018
9d874aec 1019static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
34d26777 1020 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
ebf4e801
MW
1021 char **name, **value;
1022
1023 assert(i);
936f6bdb 1024 assert(fd);
4dc7bfdf 1025 assert(path);
936f6bdb
FB
1026
1027 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
ebf4e801 1028
ebf4e801 1029 STRV_FOREACH_PAIR(name, value, i->xattrs) {
bd550f78 1030 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
936f6bdb 1031 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
25f027c5
ZJS
1032 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
1033 *name, *value, path);
ebf4e801
MW
1034 }
1035 return 0;
1036}
1037
936f6bdb
FB
1038static int path_set_xattrs(Item *i, const char *path) {
1039 _cleanup_close_ int fd = -1;
1040
1041 assert(i);
1042 assert(path);
1043
addc3e30 1044 fd = path_open_safe(path);
936f6bdb 1045 if (fd < 0)
addc3e30 1046 return fd;
936f6bdb 1047
9d874aec 1048 return fd_set_xattrs(i, fd, path, NULL);
936f6bdb
FB
1049}
1050
bd550f78 1051static int parse_acls_from_arg(Item *item) {
349cc4a5 1052#if HAVE_ACL
f8eeeaf9 1053 int r;
f8eeeaf9
ZJS
1054
1055 assert(item);
1056
c55ac248 1057 /* If append_or_force (= modify) is set, we will not modify the acl
50d9e46d 1058 * afterwards, so the mask can be added now if necessary. */
bd550f78 1059
c55ac248 1060 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
f8eeeaf9 1061 if (r < 0)
4034a06d 1062 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
f8eeeaf9 1063#else
6008336f 1064 log_warning("ACLs are not supported. Ignoring.");
f8eeeaf9
ZJS
1065#endif
1066
1067 return 0;
1068}
1069
349cc4a5 1070#if HAVE_ACL
48b8aaa8
LP
1071static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
1072 _cleanup_(acl_free_charpp) char *t = NULL;
dd4105b0 1073 _cleanup_(acl_freep) acl_t dup = NULL;
50d9e46d
ZJS
1074 int r;
1075
d873e877
HPD
1076 /* Returns 0 for success, positive error if already warned,
1077 * negative error otherwise. */
1078
50d9e46d 1079 if (modify) {
dd4105b0 1080 r = acls_for_file(path, type, acl, &dup);
50d9e46d
ZJS
1081 if (r < 0)
1082 return r;
50d9e46d 1083
dd4105b0
ZJS
1084 r = calc_acl_mask_if_needed(&dup);
1085 if (r < 0)
1086 return r;
1087 } else {
1088 dup = acl_dup(acl);
1089 if (!dup)
1090 return -errno;
1091
1092 /* the mask was already added earlier if needed */
1093 }
1094
1095 r = add_base_acls_if_needed(&dup, path);
1096 if (r < 0)
1097 return r;
1098
582deb84 1099 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
48b8aaa8 1100 log_debug("Setting %s ACL %s on %s.",
582deb84 1101 type == ACL_TYPE_ACCESS ? "access" : "default",
48b8aaa8 1102 strna(t), pretty);
50d9e46d 1103
582deb84 1104 r = acl_set_file(path, type, dup);
3045c416
PC
1105 if (r < 0) {
1106 if (ERRNO_IS_NOT_SUPPORTED(errno))
1107 /* No error if filesystem doesn't support ACLs. Return negative. */
1108 return -errno;
1109 else
1110 /* Return positive to indicate we already warned */
1111 return -log_error_errno(errno,
1112 "Setting %s ACL \"%s\" on %s failed: %m",
1113 type == ACL_TYPE_ACCESS ? "access" : "default",
1114 strna(t), pretty);
1115 }
582deb84 1116 return 0;
50d9e46d 1117}
35888b67 1118#endif
50d9e46d 1119
9d874aec 1120static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
d873e877 1121 int r = 0;
349cc4a5 1122#if HAVE_ACL
34d26777 1123 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
b206ac8e 1124 struct stat stbuf;
48b8aaa8 1125
f8eeeaf9 1126 assert(item);
936f6bdb 1127 assert(fd);
4dc7bfdf 1128 assert(path);
48b8aaa8 1129
b206ac8e
FB
1130 if (!st) {
1131 if (fstat(fd, &stbuf) < 0)
1132 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1133 st = &stbuf;
1134 }
1135
baaa35ad
ZJS
1136 if (hardlink_vulnerable(st))
1137 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1138 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1139 path);
5579f856 1140
936f6bdb 1141 if (S_ISLNK(st->st_mode)) {
48b8aaa8
LP
1142 log_debug("Skipping ACL fix for symlink %s.", path);
1143 return 0;
1144 }
1145
936f6bdb 1146 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
48b8aaa8 1147
d873e877 1148 if (item->acl_access)
c55ac248 1149 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
f8eeeaf9 1150
2667385b
RM
1151 /* set only default acls to folders */
1152 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
c55ac248 1153 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
f8eeeaf9 1154
3045c416
PC
1155 if (ERRNO_IS_NOT_SUPPORTED(r)) {
1156 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1157 return 0;
1158 }
1159
d873e877
HPD
1160 if (r > 0)
1161 return -r; /* already warned */
f8606626
LP
1162
1163 /* The above procfs paths don't work if /proc is not mounted. */
1164 if (r == -ENOENT && proc_mounted() == 0)
1165 r = -ENOSYS;
1166
936f6bdb
FB
1167 if (r < 0)
1168 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
d873e877
HPD
1169#endif
1170 return r;
f8eeeaf9
ZJS
1171}
1172
936f6bdb
FB
1173static int path_set_acls(Item *item, const char *path) {
1174 int r = 0;
545cdb90 1175#if HAVE_ACL
936f6bdb 1176 _cleanup_close_ int fd = -1;
936f6bdb
FB
1177
1178 assert(item);
1179 assert(path);
1180
addc3e30 1181 fd = path_open_safe(path);
936f6bdb 1182 if (fd < 0)
addc3e30 1183 return fd;
936f6bdb 1184
9d874aec 1185 r = fd_set_acls(item, fd, path, NULL);
545cdb90
YW
1186#endif
1187 return r;
1188}
936f6bdb 1189
bd550f78 1190static int parse_attribute_from_arg(Item *item) {
88ec4dfa
LP
1191
1192 static const struct {
1193 char character;
1194 unsigned value;
1195 } attributes[] = {
1196 { 'A', FS_NOATIME_FL }, /* do not update atime */
1197 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1198 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1199 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1200 { 'c', FS_COMPR_FL }, /* Compress file */
1201 { 'd', FS_NODUMP_FL }, /* do not dump file */
8c35b2ca 1202 { 'e', FS_EXTENT_FL }, /* Extents */
88ec4dfa
LP
1203 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1204 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1205 { 's', FS_SECRM_FL }, /* Secure deletion */
1206 { 'u', FS_UNRM_FL }, /* Undelete */
1207 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
13e785f7 1208 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
88ec4dfa 1209 { 'C', FS_NOCOW_FL }, /* Do not cow file */
75006470 1210 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
22c3a6ca 1211 };
88ec4dfa 1212
22c3a6ca
GB
1213 enum {
1214 MODE_ADD,
1215 MODE_DEL,
1216 MODE_SET
1217 } mode = MODE_ADD;
22c3a6ca 1218
88ec4dfa
LP
1219 unsigned value = 0, mask = 0;
1220 const char *p;
22c3a6ca 1221
88ec4dfa
LP
1222 assert(item);
1223
1224 p = item->argument;
1225 if (p) {
1226 if (*p == '+') {
1227 mode = MODE_ADD;
1228 p++;
1229 } else if (*p == '-') {
1230 mode = MODE_DEL;
1231 p++;
1232 } else if (*p == '=') {
1233 mode = MODE_SET;
1234 p++;
1235 }
22c3a6ca
GB
1236 }
1237
baaa35ad
ZJS
1238 if (isempty(p) && mode != MODE_SET)
1239 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1240 "Setting file attribute on '%s' needs an attribute specification.",
1241 item->path);
88ec4dfa
LP
1242
1243 for (; p && *p ; p++) {
1244 unsigned i, v;
1245
1246 for (i = 0; i < ELEMENTSOF(attributes); i++)
1247 if (*p == attributes[i].character)
1248 break;
1249
baaa35ad
ZJS
1250 if (i >= ELEMENTSOF(attributes))
1251 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1252 "Unknown file attribute '%c' on '%s'.",
1253 *p, item->path);
88ec4dfa
LP
1254
1255 v = attributes[i].value;
1256
3742095b 1257 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
88ec4dfa
LP
1258
1259 mask |= v;
22c3a6ca
GB
1260 }
1261
1262 if (mode == MODE_SET)
d629ba70 1263 mask |= CHATTR_ALL_FL;
22c3a6ca 1264
88ec4dfa 1265 assert(mask != 0);
22c3a6ca 1266
88ec4dfa
LP
1267 item->attribute_mask = mask;
1268 item->attribute_value = value;
1269 item->attribute_set = true;
22c3a6ca
GB
1270
1271 return 0;
22c3a6ca
GB
1272}
1273
9d874aec 1274static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
936f6bdb 1275 _cleanup_close_ int procfs_fd = -1;
b206ac8e 1276 struct stat stbuf;
88ec4dfa
LP
1277 unsigned f;
1278 int r;
22c3a6ca 1279
4dc7bfdf
FB
1280 assert(item);
1281 assert(fd);
1282 assert(path);
1283
88ec4dfa 1284 if (!item->attribute_set || item->attribute_mask == 0)
22c3a6ca 1285 return 0;
22c3a6ca 1286
b206ac8e
FB
1287 if (!st) {
1288 if (fstat(fd, &stbuf) < 0)
1289 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1290 st = &stbuf;
1291 }
1292
88ec4dfa
LP
1293 /* Issuing the file attribute ioctls on device nodes is not
1294 * safe, as that will be delivered to the drivers, not the
1295 * file system containing the device node. */
baaa35ad
ZJS
1296 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1297 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1298 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1299 path);
88ec4dfa
LP
1300
1301 f = item->attribute_value & item->attribute_mask;
1302
1303 /* Mask away directory-specific flags */
936f6bdb 1304 if (!S_ISDIR(st->st_mode))
22c3a6ca 1305 f &= ~FS_DIRSYNC_FL;
88ec4dfa 1306
f2324783 1307 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
936f6bdb 1308 if (procfs_fd < 0)
c3e03778 1309 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
936f6bdb 1310
94566540
YW
1311 unsigned previous, current;
1312 r = chattr_full(NULL, procfs_fd, f, item->attribute_mask, &previous, &current, true);
1313 if (r == -ENOANO)
d1a61dfa 1314 log_warning("Cannot set file attributes for '%s', maybe due to incompatibility in specified attributes, "
94566540
YW
1315 "previous=0x%08x, current=0x%08x, expected=0x%08x, ignoring.",
1316 path, previous, current, (previous & ~item->attribute_mask) | (f & item->attribute_mask));
1317 else if (r < 0)
1318 log_full_errno(ERRNO_IS_NOT_SUPPORTED(r) ? LOG_DEBUG : LOG_WARNING, r,
1319 "Cannot set file attributes for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
ad75a97f 1320 path, item->attribute_value, item->attribute_mask);
22c3a6ca
GB
1321
1322 return 0;
1323}
1324
936f6bdb
FB
1325static int path_set_attribute(Item *item, const char *path) {
1326 _cleanup_close_ int fd = -1;
936f6bdb
FB
1327
1328 if (!item->attribute_set || item->attribute_mask == 0)
1329 return 0;
1330
addc3e30 1331 fd = path_open_safe(path);
936f6bdb 1332 if (fd < 0)
addc3e30 1333 return fd;
936f6bdb 1334
9d874aec 1335 return fd_set_attribute(item, fd, path, NULL);
936f6bdb
FB
1336}
1337
d4e9eb91 1338static int write_one_file(Item *i, const char *path) {
551470ec
FB
1339 _cleanup_close_ int fd = -1, dir_fd = -1;
1340 char *bn;
1baaf8aa 1341 int r;
31c84ff1
FB
1342
1343 assert(i);
1344 assert(path);
1345 assert(i->argument);
1346 assert(i->type == WRITE_FILE);
1347
551470ec
FB
1348 /* Validate the path and keep the fd on the directory for opening the
1349 * file so we're sure that it can't be changed behind our back. */
1350 dir_fd = path_open_parent_safe(path);
1351 if (dir_fd < 0)
1352 return dir_fd;
1353
1354 bn = basename(path);
1355
31c84ff1 1356 /* Follows symlinks */
1baaf8aa
LP
1357 fd = openat(dir_fd, bn,
1358 O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY|(i->append_or_force ? O_APPEND : 0),
1359 i->mode);
31c84ff1
FB
1360 if (fd < 0) {
1361 if (errno == ENOENT) {
1362 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1363 return 0;
1364 }
1baaf8aa
LP
1365
1366 if (i->allow_failure)
1367 return log_debug_errno(errno, "Failed to open file \"%s\", ignoring: %m", path);
1368
31c84ff1
FB
1369 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1370 }
1371
1372 /* 'w' is allowed to write into any kind of files. */
1373 log_debug("Writing to \"%s\".", path);
1374
1375 r = loop_write(fd, i->argument, strlen(i->argument), false);
1376 if (r < 0)
1377 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1378
9d874aec 1379 return fd_set_perms(i, fd, path, NULL);
31c84ff1
FB
1380}
1381
1382static int create_file(Item *i, const char *path) {
5ec9d065
FB
1383 _cleanup_close_ int fd = -1, dir_fd = -1;
1384 struct stat stbuf, *st = NULL;
1385 int r = 0;
1386 char *bn;
d4e9eb91 1387
874f1947
LP
1388 assert(i);
1389 assert(path);
5ec9d065
FB
1390 assert(i->type == CREATE_FILE);
1391
1392 /* 'f' operates on regular files exclusively. */
1393
1394 /* Validate the path and keep the fd on the directory for opening the
1395 * file so we're sure that it can't be changed behind our back. */
1396 dir_fd = path_open_parent_safe(path);
1397 if (dir_fd < 0)
1398 return dir_fd;
874f1947 1399
5ec9d065 1400 bn = basename(path);
d4e9eb91 1401
43ad6e31 1402 RUN_WITH_UMASK(0000) {
ecabcf8b 1403 mac_selinux_create_file_prepare(path, S_IFREG);
5ec9d065 1404 fd = openat(dir_fd, bn, O_CREAT|O_EXCL|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
ecabcf8b 1405 mac_selinux_create_file_clear();
5c0d398d 1406 }
d4e9eb91
DR
1407
1408 if (fd < 0) {
5ec9d065
FB
1409 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1410 * file already exists. It returns EROFS only if it needs to
1411 * create the file. */
1412 if (errno != EEXIST)
1413 return log_error_errno(errno, "Failed to create file %s: %m", path);
1414
1415 /* Re-open the file. At that point it must exist since open(2)
1416 * failed with EEXIST. We still need to check if the perms/mode
1417 * need to be changed. For read-only filesystems, we let
1418 * fd_set_perms() report the error if the perms need to be
1419 * modified. */
1420 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1421 if (fd < 0)
1422 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1423
1424 if (fstat(fd, &stbuf) < 0)
1425 return log_error_errno(errno, "stat(%s) failed: %m", path);
1426
d7a0f1f4
FS
1427 if (!S_ISREG(stbuf.st_mode))
1428 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1429 "%s exists and is not a regular file.",
1430 path);
d4e9eb91 1431
5ec9d065
FB
1432 st = &stbuf;
1433 } else {
1434
1435 log_debug("\"%s\" has been created.", path);
1436
1437 if (i->argument) {
1438 log_debug("Writing to \"%s\".", path);
f44b28fd 1439
5ec9d065
FB
1440 r = loop_write(fd, i->argument, strlen(i->argument), false);
1441 if (r < 0)
1442 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1443 }
d4e9eb91
DR
1444 }
1445
9d874aec 1446 return fd_set_perms(i, fd, path, st);
5ec9d065 1447}
d4e9eb91 1448
5ec9d065 1449static int truncate_file(Item *i, const char *path) {
14ab804e 1450 _cleanup_close_ int fd = -1, dir_fd = -1;
5ec9d065
FB
1451 struct stat stbuf, *st = NULL;
1452 bool erofs = false;
1453 int r = 0;
14ab804e 1454 char *bn;
5ec9d065
FB
1455
1456 assert(i);
1457 assert(path);
eccebf4b 1458 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
d4e9eb91 1459
5ec9d065
FB
1460 /* We want to operate on regular file exclusively especially since
1461 * O_TRUNC is unspecified if the file is neither a regular file nor a
1462 * fifo nor a terminal device. Therefore we first open the file and make
1463 * sure it's a regular one before truncating it. */
3612fbc1 1464
14ab804e
FB
1465 /* Validate the path and keep the fd on the directory for opening the
1466 * file so we're sure that it can't be changed behind our back. */
1467 dir_fd = path_open_parent_safe(path);
1468 if (dir_fd < 0)
1469 return dir_fd;
1470
1471 bn = basename(path);
1472
5ec9d065
FB
1473 RUN_WITH_UMASK(0000) {
1474 mac_selinux_create_file_prepare(path, S_IFREG);
14ab804e 1475 fd = openat(dir_fd, bn, O_CREAT|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
5ec9d065
FB
1476 mac_selinux_create_file_clear();
1477 }
1478
1479 if (fd < 0) {
1480 if (errno != EROFS)
1481 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1482
1483 /* On a read-only filesystem, we don't want to fail if the
1484 * target is already empty and the perms are set. So we still
1485 * proceed with the sanity checks and let the remaining
1486 * operations fail with EROFS if they try to modify the target
1487 * file. */
1488
14ab804e 1489 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
5ec9d065 1490 if (fd < 0) {
d7a0f1f4
FS
1491 if (errno == ENOENT)
1492 return log_error_errno(SYNTHETIC_ERRNO(EROFS),
1493 "Cannot create file %s on a read-only file system.",
1494 path);
5ec9d065
FB
1495
1496 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1497 }
1498
1499 erofs = true;
1500 }
1501
1502 if (fstat(fd, &stbuf) < 0)
4a62c710 1503 return log_error_errno(errno, "stat(%s) failed: %m", path);
d4e9eb91 1504
d7a0f1f4
FS
1505 if (!S_ISREG(stbuf.st_mode))
1506 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1507 "%s exists and is not a regular file.",
1508 path);
d4e9eb91 1509
5ec9d065
FB
1510 if (stbuf.st_size > 0) {
1511 if (ftruncate(fd, 0) < 0) {
1512 r = erofs ? -EROFS : -errno;
1513 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1514 }
1515 } else
1516 st = &stbuf;
d4e9eb91 1517
5ec9d065
FB
1518 log_debug("\"%s\" has been created.", path);
1519
1520 if (i->argument) {
1521 log_debug("Writing to \"%s\".", path);
1522
1523 r = loop_write(fd, i->argument, strlen(i->argument), false);
1524 if (r < 0) {
1525 r = erofs ? -EROFS : r;
1526 return log_error_errno(r, "Failed to write file %s: %m", path);
1527 }
1528 }
1529
9d874aec 1530 return fd_set_perms(i, fd, path, st);
d4e9eb91
DR
1531}
1532
b1f7b17f 1533static int copy_files(Item *i) {
16ba55ad
FB
1534 _cleanup_close_ int dfd = -1, fd = -1;
1535 char *bn;
b1f7b17f
FB
1536 int r;
1537
1538 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1539
16ba55ad 1540 bn = basename(i->path);
b1f7b17f 1541
16ba55ad
FB
1542 /* Validate the path and use the returned directory fd for copying the
1543 * target so we're sure that the path can't be changed behind our
1544 * back. */
1545 dfd = path_open_parent_safe(i->path);
1546 if (dfd < 0)
1547 return dfd;
b1f7b17f 1548
16ba55ad
FB
1549 r = copy_tree_at(AT_FDCWD, i->argument,
1550 dfd, bn,
1551 i->uid_set ? i->uid : UID_INVALID,
1552 i->gid_set ? i->gid : GID_INVALID,
652d9040 1553 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE | COPY_HARDLINKS);
b1f7b17f
FB
1554 if (r < 0) {
1555 struct stat a, b;
1556
16ba55ad
FB
1557 /* If the target already exists on read-only filesystems, trying
1558 * to create the target will not fail with EEXIST but with
1559 * EROFS. */
1560 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1561 r = -EEXIST;
1562
b1f7b17f
FB
1563 if (r != -EEXIST)
1564 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1565
1566 if (stat(i->argument, &a) < 0)
1567 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1568
16ba55ad 1569 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
b1f7b17f
FB
1570 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1571
1572 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1573 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1574 return 0;
1575 }
1576 }
1577
16ba55ad
FB
1578 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1579 if (fd < 0)
1580 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1581
9d874aec 1582 return fd_set_perms(i, fd, i->path, NULL);
b1f7b17f
FB
1583}
1584
074bd73f
FB
1585typedef enum {
1586 CREATION_NORMAL,
1587 CREATION_EXISTING,
1588 CREATION_FORCE,
1589 _CREATION_MODE_MAX,
1590 _CREATION_MODE_INVALID = -1
1591} CreationMode;
1592
b82f71c7 1593static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
074bd73f
FB
1594 [CREATION_NORMAL] = "Created",
1595 [CREATION_EXISTING] = "Found existing",
1596 [CREATION_FORCE] = "Created replacement",
1597};
1598
1599DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1600
f17a8d61 1601static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
4c39d899 1602 _cleanup_close_ int pfd = -1;
f17a8d61 1603 CreationMode c;
4c39d899 1604 int r;
4ad36844 1605
4c39d899 1606 assert(path);
4ad36844 1607
f17a8d61
FB
1608 if (!creation)
1609 creation = &c;
1610
4c39d899
FB
1611 pfd = path_open_parent_safe(path);
1612 if (pfd < 0)
1613 return pfd;
4ad36844 1614
4c39d899 1615 if (subvol) {
4ad36844
FB
1616 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1617
1618 /* Don't create a subvolume unless the root directory is
1619 * one, too. We do this under the assumption that if the
1620 * root directory is just a plain directory (i.e. very
1621 * light-weight), we shouldn't try to split it up into
1622 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1623 * environments and suchlike will get a full brtfs
1624 * subvolume set up below their tree only if they
1625 * specifically set up a btrfs subvolume for the root
1626 * dir too. */
1627
4c39d899 1628 subvol = false;
4ad36844 1629 else {
4c39d899
FB
1630 RUN_WITH_UMASK((~mode) & 0777)
1631 r = btrfs_subvol_make_fd(pfd, basename(path));
4ad36844
FB
1632 }
1633 } else
1634 r = 0;
1635
4c39d899 1636 if (!subvol || r == -ENOTTY)
4ad36844 1637 RUN_WITH_UMASK(0000)
4c39d899 1638 r = mkdirat_label(pfd, basename(path), mode);
4ad36844
FB
1639
1640 if (r < 0) {
1641 int k;
1642
1643 if (!IN_SET(r, -EEXIST, -EROFS))
4c39d899 1644 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
4ad36844 1645
4c39d899 1646 k = is_dir_fd(pfd);
4ad36844 1647 if (k == -ENOENT && r == -EROFS)
4c39d899 1648 return log_error_errno(r, "%s does not exist and cannot be created as the file system is read-only.", path);
4ad36844 1649 if (k < 0)
4c39d899 1650 return log_error_errno(k, "Failed to check if %s exists: %m", path);
4ad36844 1651 if (!k) {
4c39d899
FB
1652 log_warning("\"%s\" already exists and is not a directory.", path);
1653 return -EEXIST;
4ad36844
FB
1654 }
1655
f17a8d61 1656 *creation = CREATION_EXISTING;
4ad36844 1657 } else
f17a8d61 1658 *creation = CREATION_NORMAL;
4ad36844 1659
f17a8d61 1660 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
4c39d899
FB
1661
1662 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1663 if (r < 0)
09f12798
LP
1664 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1665
4c39d899
FB
1666 return r;
1667}
1668
1669static int create_directory(Item *i, const char *path) {
1670 _cleanup_close_ int fd = -1;
1671
1672 assert(i);
1673 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1674
f17a8d61 1675 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
4c39d899
FB
1676 if (fd == -EEXIST)
1677 return 0;
1678 if (fd < 0)
1679 return fd;
1680
9d874aec 1681 return fd_set_perms(i, fd, path, NULL);
4c39d899
FB
1682}
1683
1684static int create_subvolume(Item *i, const char *path) {
1685 _cleanup_close_ int fd = -1;
f17a8d61 1686 CreationMode creation;
4c39d899
FB
1687 int r, q = 0;
1688
1689 assert(i);
1690 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1691
f17a8d61 1692 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
4c39d899
FB
1693 if (fd == -EEXIST)
1694 return 0;
1695 if (fd < 0)
1696 return fd;
4ad36844 1697
f17a8d61
FB
1698 if (creation == CREATION_NORMAL &&
1699 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
4c39d899 1700 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
4ad36844
FB
1701 if (r == -ENOTTY)
1702 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1703 else if (r == -EROFS)
1704 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
4b019d2f 1705 else if (r == -ENOTCONN)
4ad36844
FB
1706 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1707 else if (r < 0)
1708 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1709 else if (r > 0)
1710 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1711 else if (r == 0)
1712 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1713 }
1714
9d874aec
LP
1715 r = fd_set_perms(i, fd, path, NULL);
1716 if (q < 0) /* prefer the quota change error from above */
4ad36844
FB
1717 return q;
1718
1719 return r;
1720}
1721
54946021
FB
1722static int empty_directory(Item *i, const char *path) {
1723 int r;
1724
1725 assert(i);
1726 assert(i->type == EMPTY_DIRECTORY);
1727
1728 r = is_dir(path, false);
1729 if (r == -ENOENT) {
1730 /* Option "e" operates only on existing objects. Do not
1731 * print errors about non-existent files or directories */
1732 log_debug("Skipping missing directory: %s", path);
1733 return 0;
1734 }
1735 if (r < 0)
1736 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
baaa35ad
ZJS
1737 if (r == 0)
1738 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1739 "'%s' already exists and is not a directory.",
1740 path);
54946021
FB
1741
1742 return path_set_perms(i, path);
1743}
1744
074bd73f 1745static int create_device(Item *i, mode_t file_type) {
c7700a77 1746 _cleanup_close_ int dfd = -1, fd = -1;
074bd73f 1747 CreationMode creation;
c7700a77 1748 char *bn;
074bd73f
FB
1749 int r;
1750
1751 assert(i);
1752 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1753
c7700a77
FB
1754 bn = basename(i->path);
1755
1756 /* Validate the path and use the returned directory fd for copying the
1757 * target so we're sure that the path can't be changed behind our
1758 * back. */
1759 dfd = path_open_parent_safe(i->path);
1760 if (dfd < 0)
1761 return dfd;
1762
074bd73f
FB
1763 RUN_WITH_UMASK(0000) {
1764 mac_selinux_create_file_prepare(i->path, file_type);
c7700a77 1765 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
074bd73f
FB
1766 mac_selinux_create_file_clear();
1767 }
1768
1769 if (r < 0) {
c7700a77
FB
1770 struct stat st;
1771
074bd73f
FB
1772 if (errno == EPERM) {
1773 log_debug("We lack permissions, possibly because of cgroup configuration; "
1774 "skipping creation of device node %s.", i->path);
1775 return 0;
1776 }
1777
1778 if (errno != EEXIST)
1779 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1780
c7700a77 1781 if (fstatat(dfd, bn, &st, 0) < 0)
074bd73f
FB
1782 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1783
1784 if ((st.st_mode & S_IFMT) != file_type) {
1785
c55ac248 1786 if (i->append_or_force) {
074bd73f
FB
1787
1788 RUN_WITH_UMASK(0000) {
1789 mac_selinux_create_file_prepare(i->path, file_type);
c7700a77 1790 /* FIXME: need to introduce mknodat_atomic() */
074bd73f
FB
1791 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1792 mac_selinux_create_file_clear();
1793 }
1794
1795 if (r < 0)
1796 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1797 creation = CREATION_FORCE;
1798 } else {
1799 log_debug("%s is not a device node.", i->path);
1800 return 0;
1801 }
1802 } else
1803 creation = CREATION_EXISTING;
1804 } else
1805 creation = CREATION_NORMAL;
1806
1807 log_debug("%s %s device node \"%s\" %u:%u.",
1808 creation_mode_verb_to_string(creation),
1809 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1810 i->path, major(i->mode), minor(i->mode));
1811
c7700a77
FB
1812 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1813 if (fd < 0)
1814 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1815
9d874aec 1816 return fd_set_perms(i, fd, i->path, NULL);
074bd73f
FB
1817}
1818
a2fc2f8d 1819static int create_fifo(Item *i, const char *path) {
7ea5a87f 1820 _cleanup_close_ int pfd = -1, fd = -1;
a2fc2f8d
FB
1821 CreationMode creation;
1822 struct stat st;
7ea5a87f 1823 char *bn;
a2fc2f8d
FB
1824 int r;
1825
7ea5a87f
FB
1826 pfd = path_open_parent_safe(path);
1827 if (pfd < 0)
1828 return pfd;
1829
1830 bn = basename(path);
1831
a2fc2f8d
FB
1832 RUN_WITH_UMASK(0000) {
1833 mac_selinux_create_file_prepare(path, S_IFIFO);
7ea5a87f 1834 r = mkfifoat(pfd, bn, i->mode);
a2fc2f8d
FB
1835 mac_selinux_create_file_clear();
1836 }
1837
1838 if (r < 0) {
1839 if (errno != EEXIST)
1840 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1841
7ea5a87f 1842 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
a2fc2f8d
FB
1843 return log_error_errno(errno, "stat(%s) failed: %m", path);
1844
1845 if (!S_ISFIFO(st.st_mode)) {
1846
c55ac248 1847 if (i->append_or_force) {
a2fc2f8d
FB
1848 RUN_WITH_UMASK(0000) {
1849 mac_selinux_create_file_prepare(path, S_IFIFO);
7ea5a87f 1850 r = mkfifoat_atomic(pfd, bn, i->mode);
a2fc2f8d
FB
1851 mac_selinux_create_file_clear();
1852 }
1853
1854 if (r < 0)
1855 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1856 creation = CREATION_FORCE;
1857 } else {
1858 log_warning("\"%s\" already exists and is not a fifo.", path);
1859 return 0;
1860 }
1861 } else
1862 creation = CREATION_EXISTING;
1863 } else
1864 creation = CREATION_NORMAL;
7ea5a87f 1865
a2fc2f8d
FB
1866 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1867
7ea5a87f
FB
1868 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1869 if (fd < 0)
a5df05ff 1870 return log_error_errno(errno, "Failed to openat(%s): %m", path);
7ea5a87f 1871
9d874aec 1872 return fd_set_perms(i, fd, i->path, NULL);
a2fc2f8d
FB
1873}
1874
9d874aec
LP
1875typedef int (*action_t)(Item *i, const char *path);
1876typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
081043cf 1877
9d874aec 1878static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
14f3480a 1879 struct stat st;
936f6bdb 1880 int r = 0, q;
e73a03e0
LP
1881
1882 assert(i);
4dc7bfdf 1883 assert(path);
936f6bdb 1884 assert(fd >= 0);
14f3480a
FB
1885
1886 if (fstat(fd, &st) < 0) {
09f12798 1887 r = log_error_errno(errno, "fstat() on file failed: %m");
14f3480a
FB
1888 goto finish;
1889 }
a8d88783
MS
1890
1891 /* This returns the first error we run into, but nevertheless
1892 * tries to go on */
9d874aec 1893 r = action(i, fd, path, &st);
a8d88783 1894
14f3480a 1895 if (S_ISDIR(st.st_mode)) {
22dd8d35 1896 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
936f6bdb
FB
1897 _cleanup_closedir_ DIR *d = NULL;
1898 struct dirent *de;
a8d88783 1899
936f6bdb
FB
1900 /* The passed 'fd' was opened with O_PATH. We need to convert
1901 * it into a 'regular' fd before reading the directory content. */
1902 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
a8d88783 1903
936f6bdb
FB
1904 d = opendir(procfs_path);
1905 if (!d) {
09f12798
LP
1906 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1907 if (r == 0)
1908 r = -errno;
936f6bdb
FB
1909 goto finish;
1910 }
a8d88783 1911
936f6bdb 1912 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
936f6bdb 1913 int de_fd;
a8d88783 1914
936f6bdb
FB
1915 if (dot_or_dot_dot(de->d_name))
1916 continue;
1917
1918 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
9d874aec
LP
1919 if (de_fd < 0)
1920 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
4dc7bfdf
FB
1921 else {
1922 _cleanup_free_ char *de_path = NULL;
1923
62a85ee0 1924 de_path = path_join(path, de->d_name);
4dc7bfdf
FB
1925 if (!de_path)
1926 q = log_oom();
1927 else
1928 /* Pass ownership of dirent fd over */
1929 q = item_do(i, de_fd, de_path, action);
1930 }
a8d88783 1931
e73a03e0
LP
1932 if (q < 0 && r == 0)
1933 r = q;
a8d88783 1934 }
a8d88783 1935 }
936f6bdb
FB
1936finish:
1937 safe_close(fd);
e73a03e0 1938 return r;
a8d88783
MS
1939}
1940
936f6bdb 1941static int glob_item(Item *i, action_t action) {
df99a9ef 1942 _cleanup_globfree_ glob_t g = {
ebf31a1f 1943 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
df99a9ef 1944 };
e73a03e0 1945 int r = 0, k;
99e68c0b
MS
1946 char **fn;
1947
84e72b5e
ZJS
1948 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1949 if (k < 0 && k != -ENOENT)
1950 return log_error_errno(k, "glob(%s) failed: %m", i->path);
99e68c0b 1951
c84a9488
ZJS
1952 STRV_FOREACH(fn, g.gl_pathv) {
1953 k = action(i, *fn);
e73a03e0 1954 if (k < 0 && r == 0)
99e68c0b 1955 r = k;
936f6bdb
FB
1956 }
1957
1958 return r;
1959}
081043cf 1960
936f6bdb
FB
1961static int glob_item_recursively(Item *i, fdaction_t action) {
1962 _cleanup_globfree_ glob_t g = {
1963 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1964 };
1965 int r = 0, k;
1966 char **fn;
1967
1968 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1969 if (k < 0 && k != -ENOENT)
1970 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1971
1972 STRV_FOREACH(fn, g.gl_pathv) {
1973 _cleanup_close_ int fd = -1;
936f6bdb
FB
1974
1975 /* Make sure we won't trigger/follow file object (such as
1976 * device nodes, automounts, ...) pointed out by 'fn' with
1977 * O_PATH. Note, when O_PATH is used, flags other than
1978 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1979
1980 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1981 if (fd < 0) {
09f12798
LP
1982 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1983 if (r == 0)
1984 r = -errno;
936f6bdb
FB
1985 continue;
1986 }
1987
9d874aec 1988 k = item_do(i, fd, *fn, action);
936f6bdb
FB
1989 if (k < 0 && r == 0)
1990 r = k;
1991
1992 /* we passed fd ownership to the previous call */
1993 fd = -1;
c84a9488 1994 }
99e68c0b 1995
99e68c0b
MS
1996 return r;
1997}
1998
3b63d2d3 1999static int create_item(Item *i) {
294929f8 2000 CreationMode creation;
a2fc2f8d 2001 int r = 0;
5008d581 2002
3b63d2d3 2003 assert(i);
5008d581 2004
582deb84
ZJS
2005 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
2006
3b63d2d3
LP
2007 switch (i->type) {
2008
2009 case IGNORE_PATH:
78a92a5a 2010 case IGNORE_DIRECTORY_PATH:
3b63d2d3
LP
2011 case REMOVE_PATH:
2012 case RECURSIVE_REMOVE_PATH:
2013 return 0;
5008d581 2014
eccebf4b 2015 case TRUNCATE_FILE:
3b63d2d3 2016 case CREATE_FILE:
7fa10748
LP
2017 RUN_WITH_UMASK(0000)
2018 (void) mkdir_parents_label(i->path, 0755);
2019
eccebf4b
ZS
2020 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
2021 r = truncate_file(i, i->path);
2022 else
2023 r = create_file(i, i->path);
5ec9d065 2024
5ec9d065
FB
2025 if (r < 0)
2026 return r;
2027 break;
2028
7b887f22 2029 case COPY_FILES:
7fa10748
LP
2030 RUN_WITH_UMASK(0000)
2031 (void) mkdir_parents_label(i->path, 0755);
2032
b1f7b17f 2033 r = copy_files(i);
849958d1
LP
2034 if (r < 0)
2035 return r;
849958d1
LP
2036 break;
2037
d4e9eb91 2038 case WRITE_FILE:
936f6bdb 2039 r = glob_item(i, write_one_file);
f05bc3f7
MS
2040 if (r < 0)
2041 return r;
5008d581 2042
3b63d2d3
LP
2043 break;
2044
3b63d2d3 2045 case CREATE_DIRECTORY:
d7b8eec7 2046 case TRUNCATE_DIRECTORY:
4c39d899
FB
2047 RUN_WITH_UMASK(0000)
2048 (void) mkdir_parents_label(i->path, 0755);
2049
2050 r = create_directory(i, i->path);
2051 if (r < 0)
2052 return r;
2053 break;
2054
d7b8eec7 2055 case CREATE_SUBVOLUME:
5fb13eb5
LP
2056 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2057 case CREATE_SUBVOLUME_NEW_QUOTA:
d7b8eec7 2058 RUN_WITH_UMASK(0000)
7fa10748 2059 (void) mkdir_parents_label(i->path, 0755);
d7b8eec7 2060
4c39d899 2061 r = create_subvolume(i, i->path);
4ad36844
FB
2062 if (r < 0)
2063 return r;
2064 break;
5fb13eb5 2065
df8dee85 2066 case EMPTY_DIRECTORY:
54946021 2067 r = glob_item(i, empty_directory);
f05bc3f7
MS
2068 if (r < 0)
2069 return r;
3b63d2d3 2070 break;
ee17ee7c
LP
2071
2072 case CREATE_FIFO:
a2fc2f8d 2073 RUN_WITH_UMASK(0000)
7fa10748
LP
2074 (void) mkdir_parents_label(i->path, 0755);
2075
a2fc2f8d 2076 r = create_fifo(i, i->path);
f05bc3f7
MS
2077 if (r < 0)
2078 return r;
ee17ee7c 2079 break;
a8d88783 2080
5c5ccf12 2081 case CREATE_SYMLINK: {
7fa10748
LP
2082 RUN_WITH_UMASK(0000)
2083 (void) mkdir_parents_label(i->path, 0755);
2084
ecabcf8b 2085 mac_selinux_create_file_prepare(i->path, S_IFLNK);
4cef1923 2086 r = symlink(i->argument, i->path);
ecabcf8b 2087 mac_selinux_create_file_clear();
e9a5ef7c 2088
468d726b 2089 if (r < 0) {
2e78fa79 2090 _cleanup_free_ char *x = NULL;
468d726b 2091
4a62c710 2092 if (errno != EEXIST)
4cef1923 2093 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
2e78fa79
LP
2094
2095 r = readlink_malloc(i->path, &x);
4cef1923 2096 if (r < 0 || !streq(i->argument, x)) {
2e78fa79 2097
c55ac248 2098 if (i->append_or_force) {
ecabcf8b 2099 mac_selinux_create_file_prepare(i->path, S_IFLNK);
4cef1923 2100 r = symlink_atomic(i->argument, i->path);
ecabcf8b 2101 mac_selinux_create_file_clear();
2e78fa79 2102
2ef5de1b 2103 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
b3f5897f
WD
2104 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2105 if (r < 0)
2106 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2107
2108 mac_selinux_create_file_prepare(i->path, S_IFLNK);
4cef1923 2109 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
b3f5897f
WD
2110 mac_selinux_create_file_clear();
2111 }
f647962d 2112 if (r < 0)
4cef1923 2113 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
a542c4dc 2114
294929f8 2115 creation = CREATION_FORCE;
1554afae 2116 } else {
582deb84 2117 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
1554afae
LP
2118 return 0;
2119 }
294929f8
ZJS
2120 } else
2121 creation = CREATION_EXISTING;
2122 } else
a542c4dc 2123
294929f8 2124 creation = CREATION_NORMAL;
7a7d5db7 2125 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
468d726b 2126 break;
5c5ccf12 2127 }
468d726b
LP
2128
2129 case CREATE_BLOCK_DEVICE:
074bd73f 2130 case CREATE_CHAR_DEVICE:
cb7ed9df 2131 if (have_effective_cap(CAP_MKNOD) == 0) {
713998cf
LP
2132 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2133 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
cb7ed9df
LP
2134
2135 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2136 return 0;
2137 }
2138
7fa10748
LP
2139 RUN_WITH_UMASK(0000)
2140 (void) mkdir_parents_label(i->path, 0755);
2141
074bd73f 2142 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
468d726b
LP
2143 if (r < 0)
2144 return r;
2145
2146 break;
468d726b 2147
e73a03e0 2148 case ADJUST_MODE:
777b87e7 2149 case RELABEL_PATH:
936f6bdb 2150 r = glob_item(i, path_set_perms);
777b87e7 2151 if (r < 0)
96ca8194 2152 return r;
777b87e7
MS
2153 break;
2154
a8d88783 2155 case RECURSIVE_RELABEL_PATH:
936f6bdb 2156 r = glob_item_recursively(i, fd_set_perms);
a8d88783
MS
2157 if (r < 0)
2158 return r;
ebf4e801 2159 break;
e73a03e0 2160
ebf4e801 2161 case SET_XATTR:
936f6bdb 2162 r = glob_item(i, path_set_xattrs);
b705ab6a
ZJS
2163 if (r < 0)
2164 return r;
2165 break;
2166
2167 case RECURSIVE_SET_XATTR:
936f6bdb 2168 r = glob_item_recursively(i, fd_set_xattrs);
ebf4e801
MW
2169 if (r < 0)
2170 return r;
e73a03e0 2171 break;
f8eeeaf9
ZJS
2172
2173 case SET_ACL:
936f6bdb 2174 r = glob_item(i, path_set_acls);
f8eeeaf9
ZJS
2175 if (r < 0)
2176 return r;
b705ab6a
ZJS
2177 break;
2178
2179 case RECURSIVE_SET_ACL:
936f6bdb 2180 r = glob_item_recursively(i, fd_set_acls);
b705ab6a
ZJS
2181 if (r < 0)
2182 return r;
2183 break;
22c3a6ca 2184
88ec4dfa 2185 case SET_ATTRIBUTE:
936f6bdb 2186 r = glob_item(i, path_set_attribute);
22c3a6ca
GB
2187 if (r < 0)
2188 return r;
2189 break;
2190
88ec4dfa 2191 case RECURSIVE_SET_ATTRIBUTE:
936f6bdb 2192 r = glob_item_recursively(i, fd_set_attribute);
22c3a6ca
GB
2193 if (r < 0)
2194 return r;
2195 break;
3b63d2d3
LP
2196 }
2197
f05bc3f7 2198 return 0;
3b63d2d3
LP
2199}
2200
a0896123 2201static int remove_item_instance(Item *i, const char *instance) {
3b63d2d3
LP
2202 int r;
2203
2204 assert(i);
2205
2206 switch (i->type) {
2207
3b63d2d3 2208 case REMOVE_PATH:
4a62c710 2209 if (remove(instance) < 0 && errno != ENOENT)
3f93da98 2210 return log_error_errno(errno, "rm(%s): %m", instance);
3b63d2d3
LP
2211
2212 break;
2213
3b63d2d3 2214 case RECURSIVE_REMOVE_PATH:
2c575977 2215 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
582deb84 2216 log_debug("rm -rf \"%s\"", instance);
2c575977 2217 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
f647962d
MS
2218 if (r < 0 && r != -ENOENT)
2219 return log_error_errno(r, "rm_rf(%s): %m", instance);
3b63d2d3
LP
2220
2221 break;
7fcb4b9b
ZJS
2222
2223 default:
2224 assert_not_reached("wut?");
3b63d2d3
LP
2225 }
2226
2227 return 0;
2228}
2229
a0896123 2230static int remove_item(Item *i) {
2c575977
LP
2231 int r;
2232
b8bb3e8f
LP
2233 assert(i);
2234
582deb84
ZJS
2235 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2236
b8bb3e8f
LP
2237 switch (i->type) {
2238
b8bb3e8f 2239 case TRUNCATE_DIRECTORY:
2c575977
LP
2240 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2241 log_debug("rm -rf \"%s\"", i->path);
2242 r = rm_rf(i->path, REMOVE_PHYSICAL);
2243 if (r < 0 && r != -ENOENT)
2244 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2245
2246 return 0;
2247
2248 case REMOVE_PATH:
99e68c0b 2249 case RECURSIVE_REMOVE_PATH:
936f6bdb 2250 return glob_item(i, remove_item_instance);
b8bb3e8f 2251
df8dee85
ZJS
2252 default:
2253 return 0;
2254 }
b8bb3e8f
LP
2255}
2256
78a92a5a 2257static int clean_item_instance(Item *i, const char* instance) {
ddb439b8 2258 char timestamp[FORMAT_TIMESTAMP_MAX];
7fd1b19b 2259 _cleanup_closedir_ DIR *d = NULL;
7cd296c2 2260 STRUCT_STATX_DEFINE(sx);
ca194a2a 2261 int mountpoint, r;
78a92a5a 2262 usec_t cutoff, n;
ddb439b8 2263
78a92a5a
MS
2264 assert(i);
2265
2266 if (!i->age_set)
2267 return 0;
2268
2269 n = now(CLOCK_REALTIME);
2270 if (n < i->age)
2271 return 0;
2272
2273 cutoff = n - i->age;
2274
df99a9ef 2275 d = opendir_nomod(instance);
78a92a5a 2276 if (!d) {
d710aaf7 2277 if (IN_SET(errno, ENOENT, ENOTDIR)) {
582deb84 2278 log_debug_errno(errno, "Directory \"%s\": %m", instance);
78a92a5a 2279 return 0;
582deb84 2280 }
78a92a5a 2281
d710aaf7 2282 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
78a92a5a
MS
2283 }
2284
ca194a2a
LP
2285 r = statx_fallback(dirfd(d), "", AT_EMPTY_PATH, STATX_MODE|STATX_INO|STATX_ATIME|STATX_MTIME, &sx);
2286 if (r < 0)
2287 return log_error_errno(r, "statx(%s) failed: %m", instance);
ddb439b8 2288
ca194a2a
LP
2289 if (FLAGS_SET(sx.stx_attributes_mask, STATX_ATTR_MOUNT_ROOT))
2290 mountpoint = FLAGS_SET(sx.stx_attributes, STATX_ATTR_MOUNT_ROOT);
2291 else {
ddb439b8 2292 struct stat ps;
78a92a5a 2293
ddb439b8
LP
2294 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2295 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
78a92a5a 2296
ddb439b8 2297 mountpoint =
ca194a2a
LP
2298 sx.stx_dev_major != major(ps.st_dev) ||
2299 sx.stx_dev_minor != minor(ps.st_dev) ||
2300 sx.stx_ino != ps.st_ino;
ddb439b8 2301 }
78a92a5a 2302
582deb84
ZJS
2303 log_debug("Cleanup threshold for %s \"%s\" is %s",
2304 mountpoint ? "mount point" : "directory",
2305 instance,
7b3eb5c9 2306 format_timestamp_style(timestamp, sizeof(timestamp), cutoff, TIMESTAMP_US));
582deb84 2307
ddb439b8 2308 return dir_cleanup(i, instance, d,
ca194a2a
LP
2309 load_statx_timestamp_nsec(&sx.stx_atime),
2310 load_statx_timestamp_nsec(&sx.stx_mtime),
2311 cutoff * NSEC_PER_USEC,
2312 sx.stx_dev_major, sx.stx_dev_minor, mountpoint,
582deb84 2313 MAX_DEPTH, i->keep_first_level);
78a92a5a
MS
2314}
2315
2316static int clean_item(Item *i) {
78a92a5a
MS
2317 assert(i);
2318
582deb84
ZJS
2319 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2320
78a92a5a
MS
2321 switch (i->type) {
2322 case CREATE_DIRECTORY:
d7b8eec7 2323 case CREATE_SUBVOLUME:
5fb13eb5
LP
2324 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2325 case CREATE_SUBVOLUME_NEW_QUOTA:
78a92a5a
MS
2326 case TRUNCATE_DIRECTORY:
2327 case IGNORE_PATH:
849958d1 2328 case COPY_FILES:
78a92a5a 2329 clean_item_instance(i, i->path);
df8dee85 2330 return 0;
65241c14 2331 case EMPTY_DIRECTORY:
78a92a5a 2332 case IGNORE_DIRECTORY_PATH:
936f6bdb 2333 return glob_item(i, clean_item_instance);
78a92a5a 2334 default:
df8dee85 2335 return 0;
78a92a5a 2336 }
78a92a5a
MS
2337}
2338
599ebe29 2339static int process_item(Item *i, OperationMask operation) {
811a1587
LP
2340 OperationMask todo;
2341 int r, q, p;
3b63d2d3
LP
2342
2343 assert(i);
2344
811a1587
LP
2345 todo = operation & ~i->done;
2346 if (todo == 0) /* Everything already done? */
1910cd0e
LP
2347 return 0;
2348
811a1587 2349 i->done |= operation;
1910cd0e 2350
a5648b80 2351 r = chase_symlinks(i->path, arg_root, CHASE_NO_AUTOFS|CHASE_WARN, NULL, NULL);
21af3386 2352 if (r == -EREMOTE) {
145b8d0f 2353 log_notice_errno(r, "Skipping %s", i->path);
811a1587 2354 return 0;
145b8d0f
FB
2355 }
2356 if (r < 0)
48d96904 2357 log_debug_errno(r, "Failed to determine whether '%s' is below autofs, ignoring: %m", i->path);
655f2da0 2358
599ebe29 2359 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
6d7b5433
WD
2360 /* Failure can only be tolerated for create */
2361 if (i->allow_failure)
2362 r = 0;
3b63d2d3 2363
599ebe29
LP
2364 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2365 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
1a967b6b 2366
811a1587 2367 return r < 0 ? r :
1db50423
ZJS
2368 q < 0 ? q :
2369 p;
3b63d2d3
LP
2370}
2371
599ebe29 2372static int process_item_array(ItemArray *array, OperationMask operation) {
96d10d78
LP
2373 int r = 0;
2374 size_t n;
753615e8 2375
3f93da98
ZJS
2376 assert(array);
2377
811a1587
LP
2378 /* Create any parent first. */
2379 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2380 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2381
2382 /* Clean up all children first */
2383 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
811a1587
LP
2384 ItemArray *c;
2385
90e74a66 2386 SET_FOREACH(c, array->children) {
811a1587
LP
2387 int k;
2388
2389 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2390 if (k < 0 && r == 0)
2391 r = k;
2392 }
2393 }
2394
96d10d78
LP
2395 for (n = 0; n < array->n_items; n++) {
2396 int k;
2397
599ebe29 2398 k = process_item(array->items + n, operation);
3f93da98
ZJS
2399 if (k < 0 && r == 0)
2400 r = k;
2401 }
2402
2403 return r;
2404}
3b63d2d3 2405
3f93da98
ZJS
2406static void item_free_contents(Item *i) {
2407 assert(i);
3b63d2d3 2408 free(i->path);
468d726b 2409 free(i->argument);
ebf4e801 2410 strv_free(i->xattrs);
f8eeeaf9 2411
349cc4a5 2412#if HAVE_ACL
f8eeeaf9
ZJS
2413 acl_free(i->acl_access);
2414 acl_free(i->acl_default);
2415#endif
3b63d2d3
LP
2416}
2417
87938c3b 2418static ItemArray* item_array_free(ItemArray *a) {
96d10d78 2419 size_t n;
3f93da98
ZJS
2420
2421 if (!a)
87938c3b 2422 return NULL;
3f93da98 2423
96d10d78 2424 for (n = 0; n < a->n_items; n++)
3f93da98 2425 item_free_contents(a->items + n);
96d10d78 2426
811a1587 2427 set_free(a->children);
3f93da98 2428 free(a->items);
87938c3b 2429 return mfree(a);
3f93da98 2430}
e2f2fb78 2431
93bab288 2432static int item_compare(const Item *a, const Item *b) {
17493fa5
LP
2433 /* Make sure that the ownership taking item is put first, so
2434 * that we first create the node, and then can adjust it */
2435
93bab288 2436 if (takes_ownership(a->type) && !takes_ownership(b->type))
17493fa5 2437 return -1;
93bab288 2438 if (!takes_ownership(a->type) && takes_ownership(b->type))
17493fa5
LP
2439 return 1;
2440
93bab288 2441 return CMP(a->type, b->type);
17493fa5
LP
2442}
2443
3f93da98 2444static bool item_compatible(Item *a, Item *b) {
bfe95f35
LP
2445 assert(a);
2446 assert(b);
3f93da98 2447 assert(streq(a->path, b->path));
bfe95f35 2448
3f93da98
ZJS
2449 if (takes_ownership(a->type) && takes_ownership(b->type))
2450 /* check if the items are the same */
2451 return streq_ptr(a->argument, b->argument) &&
bfe95f35 2452
3f93da98
ZJS
2453 a->uid_set == b->uid_set &&
2454 a->uid == b->uid &&
bfe95f35 2455
3f93da98
ZJS
2456 a->gid_set == b->gid_set &&
2457 a->gid == b->gid &&
bfe95f35 2458
3f93da98
ZJS
2459 a->mode_set == b->mode_set &&
2460 a->mode == b->mode &&
bfe95f35 2461
3f93da98
ZJS
2462 a->age_set == b->age_set &&
2463 a->age == b->age &&
bfe95f35 2464
3f93da98 2465 a->mask_perms == b->mask_perms &&
bfe95f35 2466
3f93da98 2467 a->keep_first_level == b->keep_first_level &&
468d726b 2468
3f93da98 2469 a->major_minor == b->major_minor;
468d726b 2470
bfe95f35
LP
2471 return true;
2472}
2473
a2aced4a
DR
2474static bool should_include_path(const char *path) {
2475 char **prefix;
2476
abef3f91 2477 STRV_FOREACH(prefix, arg_exclude_prefixes)
582deb84
ZJS
2478 if (path_startswith(path, *prefix)) {
2479 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2480 path, *prefix);
5c795114 2481 return false;
582deb84 2482 }
a2aced4a 2483
abef3f91 2484 STRV_FOREACH(prefix, arg_include_prefixes)
582deb84
ZJS
2485 if (path_startswith(path, *prefix)) {
2486 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
a2aced4a 2487 return true;
582deb84 2488 }
a2aced4a 2489
6b000af4 2490 /* no matches, so we should include this path only if we have no allow list at all */
7b943bb7 2491 if (strv_isempty(arg_include_prefixes))
582deb84
ZJS
2492 return true;
2493
2494 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2495 return false;
a2aced4a
DR
2496}
2497
4cef1923
FB
2498static int specifier_expansion_from_arg(Item *i) {
2499 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2500 char **xattr;
2501 int r;
2502
2503 assert(i);
2504
4e361acc 2505 if (!i->argument)
4cef1923
FB
2506 return 0;
2507
2508 switch (i->type) {
2509 case COPY_FILES:
2510 case CREATE_SYMLINK:
2511 case CREATE_FILE:
2512 case TRUNCATE_FILE:
2513 case WRITE_FILE:
2514 r = cunescape(i->argument, 0, &unescaped);
2515 if (r < 0)
2516 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2517
2518 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2519 if (r < 0)
2520 return r;
2521
2522 free_and_replace(i->argument, resolved);
2523 break;
2524
2525 case SET_XATTR:
2526 case RECURSIVE_SET_XATTR:
dfe01841 2527 STRV_FOREACH(xattr, i->xattrs) {
4cef1923
FB
2528 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2529 if (r < 0)
2530 return r;
2531
2532 free_and_replace(*xattr, resolved);
2533 }
2534 break;
2535
2536 default:
2537 break;
2538 }
2539 return 0;
2540}
2541
a2d1fb88
LP
2542static int patch_var_run(const char *fname, unsigned line, char **path) {
2543 const char *k;
2544 char *n;
2545
2546 assert(path);
2547 assert(*path);
2548
2549 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2550 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2551 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2552 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2553 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2554 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2555 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2556 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2557 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2558
2559 k = path_startswith(*path, "/var/run/");
2560 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2561 return 0;
2562
2d9b74ba 2563 n = path_join("/run", k);
a2d1fb88
LP
2564 if (!n)
2565 return log_oom();
2566
2567 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2568 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2569 * to the user, let's still inform the user that these snippets should really be updated. */
afb7e1ce 2570 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Line references path below legacy directory /var/run/, updating %s → %s; please update the tmpfiles.d/ drop-in file accordingly.", *path, n);
a2d1fb88 2571
81fa4479 2572 free_and_replace(*path, n);
a2d1fb88
LP
2573
2574 return 0;
2575}
2576
a3451c2c
LP
2577static int find_uid(const char *user, uid_t *ret_uid, Hashmap **cache) {
2578 int r;
2579
2580 assert(user);
2581 assert(ret_uid);
2582
2583 /* First: parse as numeric UID string */
2584 r = parse_uid(user, ret_uid);
2585 if (r >= 0)
2586 return r;
2587
2588 /* Second: pass to NSS if we are running "online" */
2589 if (!arg_root)
2590 return get_user_creds(&user, ret_uid, NULL, NULL, NULL, 0);
2591
2592 /* Third, synthesize "root" unconditionally */
2593 if (streq(user, "root")) {
2594 *ret_uid = 0;
2595 return 0;
2596 }
2597
2598 /* Fourth: use fgetpwent() to read /etc/passwd directly, if we are "offline" */
2599 return name_to_uid_offline(arg_root, user, ret_uid, cache);
2600}
2601
2602static int find_gid(const char *group, gid_t *ret_gid, Hashmap **cache) {
2603 int r;
2604
2605 assert(group);
2606 assert(ret_gid);
2607
2608 /* First: parse as numeric GID string */
2609 r = parse_gid(group, ret_gid);
2610 if (r >= 0)
2611 return r;
2612
2613 /* Second: pass to NSS if we are running "online" */
2614 if (!arg_root)
2615 return get_group_creds(&group, ret_gid, 0);
2616
2617 /* Third, synthesize "root" unconditionally */
2618 if (streq(group, "root")) {
2619 *ret_gid = 0;
2620 return 0;
2621 }
2622
2623 /* Fourth: use fgetgrent() to read /etc/group directly, if we are "offline" */
2624 return name_to_gid_offline(arg_root, group, ret_gid, cache);
2625}
2626
2627static int parse_line(
2628 const char *fname,
2629 unsigned line,
2630 const char *buffer,
2631 bool *invalid_config,
2632 Hashmap **uid_cache,
2633 Hashmap **gid_cache) {
1731e34a 2634
cde684a2 2635 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
3f93da98
ZJS
2636 _cleanup_(item_free_contents) Item i = {};
2637 ItemArray *existing;
ef43a391 2638 OrderedHashmap *h;
657cf7f4 2639 int r, pos;
c55ac248 2640 bool append_or_force = false, boot = false, allow_failure = false;
3b63d2d3
LP
2641
2642 assert(fname);
2643 assert(line >= 1);
2644 assert(buffer);
2645
68685607 2646 r = extract_many_words(
4034a06d 2647 &buffer,
68685607 2648 NULL,
4ec85141 2649 EXTRACT_UNQUOTE,
4034a06d
LP
2650 &action,
2651 &path,
2652 &mode,
2653 &user,
2654 &group,
2655 &age,
2656 NULL);
d9daae55 2657 if (r < 0) {
751223fe
ZJS
2658 if (IN_SET(r, -EINVAL, -EBADSLT))
2659 /* invalid quoting and such or an unknown specifier */
d9daae55 2660 *invalid_config = true;
d02933fd 2661 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to parse line: %m");
4b93699d 2662 } else if (r < 2) {
d9daae55 2663 *invalid_config = true;
d02933fd 2664 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Syntax error.");
5008d581
LP
2665 }
2666
e7b88b7b 2667 if (!empty_or_dash(buffer)) {
4034a06d
LP
2668 i.argument = strdup(buffer);
2669 if (!i.argument)
2670 return log_oom();
2671 }
2672
2e78fa79 2673 if (isempty(action)) {
d9daae55 2674 *invalid_config = true;
d02933fd 2675 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Command too short '%s'.", action);
2e78fa79
LP
2676 }
2677
5f255144
ZJS
2678 for (pos = 1; action[pos]; pos++) {
2679 if (action[pos] == '!' && !boot)
2680 boot = true;
c55ac248
ZS
2681 else if (action[pos] == '+' && !append_or_force)
2682 append_or_force = true;
6d7b5433
WD
2683 else if (action[pos] == '-' && !allow_failure)
2684 allow_failure = true;
5f255144 2685 else {
d9daae55 2686 *invalid_config = true;
d02933fd 2687 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Unknown modifiers in command '%s'", action);
5f255144 2688 }
2e78fa79
LP
2689 }
2690
582deb84 2691 if (boot && !arg_boot) {
d02933fd 2692 log_syntax(NULL, LOG_DEBUG, fname, line, 0, "Ignoring entry %s \"%s\" because --boot is not specified.", action, path);
c4708f13 2693 return 0;
582deb84 2694 }
c4708f13 2695
3f93da98 2696 i.type = action[0];
c55ac248 2697 i.append_or_force = append_or_force;
6d7b5433 2698 i.allow_failure = allow_failure;
2e78fa79 2699
3f93da98 2700 r = specifier_printf(path, specifier_table, NULL, &i.path);
5a8575ef 2701 if (r == -ENXIO)
4cef1923 2702 return log_unresolvable_specifier(fname, line);
d9daae55 2703 if (r < 0) {
751223fe
ZJS
2704 if (IN_SET(r, -EINVAL, -EBADSLT))
2705 *invalid_config = true;
d02933fd 2706 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to replace specifiers in '%s': %m", path);
d9daae55 2707 }
1731e34a 2708
a2d1fb88
LP
2709 r = patch_var_run(fname, line, &i.path);
2710 if (r < 0)
2711 return r;
2712
3f93da98 2713 switch (i.type) {
468d726b 2714
777b87e7 2715 case CREATE_DIRECTORY:
d7b8eec7 2716 case CREATE_SUBVOLUME:
5fb13eb5
LP
2717 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2718 case CREATE_SUBVOLUME_NEW_QUOTA:
df8dee85 2719 case EMPTY_DIRECTORY:
777b87e7
MS
2720 case TRUNCATE_DIRECTORY:
2721 case CREATE_FIFO:
2722 case IGNORE_PATH:
78a92a5a 2723 case IGNORE_DIRECTORY_PATH:
777b87e7
MS
2724 case REMOVE_PATH:
2725 case RECURSIVE_REMOVE_PATH:
e73a03e0 2726 case ADJUST_MODE:
777b87e7
MS
2727 case RELABEL_PATH:
2728 case RECURSIVE_RELABEL_PATH:
c82500c6 2729 if (i.argument)
d02933fd 2730 log_syntax(NULL, LOG_WARNING, fname, line, 0, "%c lines don't take argument fields, ignoring.", i.type);
c82500c6
LP
2731
2732 break;
2733
2734 case CREATE_FILE:
2735 case TRUNCATE_FILE:
777b87e7 2736 break;
468d726b
LP
2737
2738 case CREATE_SYMLINK:
3f93da98 2739 if (!i.argument) {
b910cc72 2740 i.argument = path_join("/usr/share/factory", i.path);
3f93da98 2741 if (!i.argument)
2f3b873a 2742 return log_oom();
468d726b
LP
2743 }
2744 break;
2745
31ed59c5 2746 case WRITE_FILE:
3f93da98 2747 if (!i.argument) {
d9daae55 2748 *invalid_config = true;
d02933fd 2749 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Write file requires argument.");
31ed59c5
LP
2750 }
2751 break;
2752
849958d1 2753 case COPY_FILES:
3f93da98 2754 if (!i.argument) {
7dc6477d 2755 i.argument = path_join("/usr/share/factory", i.path);
3f93da98 2756 if (!i.argument)
2f3b873a 2757 return log_oom();
626f8d16 2758
3f93da98 2759 } else if (!path_is_absolute(i.argument)) {
d9daae55 2760 *invalid_config = true;
d02933fd 2761 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Source path '%s' is not absolute.", i.argument);
626f8d16 2762
7dc6477d
LP
2763 }
2764
2765 if (!empty_or_root(arg_root)) {
626f8d16
ZJS
2766 char *p;
2767
d34cd571 2768 p = path_join(arg_root, i.argument);
626f8d16
ZJS
2769 if (!p)
2770 return log_oom();
2771 free_and_replace(i.argument, p);
849958d1
LP
2772 }
2773
858d36c1 2774 path_simplify(i.argument, false);
849958d1
LP
2775 break;
2776
468d726b 2777 case CREATE_CHAR_DEVICE:
3a47c40d 2778 case CREATE_BLOCK_DEVICE:
3f93da98 2779 if (!i.argument) {
d9daae55 2780 *invalid_config = true;
d02933fd 2781 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Device file requires argument.");
468d726b
LP
2782 }
2783
3a47c40d
LP
2784 r = parse_dev(i.argument, &i.major_minor);
2785 if (r < 0) {
d9daae55 2786 *invalid_config = true;
d02933fd 2787 return log_syntax(NULL, LOG_ERR, fname, line, r, "Can't parse device file major/minor '%s'.", i.argument);
468d726b
LP
2788 }
2789
468d726b 2790 break;
468d726b 2791
ebf4e801 2792 case SET_XATTR:
b705ab6a 2793 case RECURSIVE_SET_XATTR:
3f93da98 2794 if (!i.argument) {
d9daae55 2795 *invalid_config = true;
d02933fd
LP
2796 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2797 "Set extended attribute requires argument.");
ebf4e801 2798 }
bd550f78 2799 r = parse_xattrs_from_arg(&i);
ebf4e801
MW
2800 if (r < 0)
2801 return r;
2802 break;
2803
f8eeeaf9 2804 case SET_ACL:
b705ab6a 2805 case RECURSIVE_SET_ACL:
f8eeeaf9 2806 if (!i.argument) {
d9daae55 2807 *invalid_config = true;
d02933fd
LP
2808 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2809 "Set ACLs requires argument.");
f8eeeaf9 2810 }
bd550f78 2811 r = parse_acls_from_arg(&i);
f8eeeaf9
ZJS
2812 if (r < 0)
2813 return r;
2814 break;
2815
88ec4dfa
LP
2816 case SET_ATTRIBUTE:
2817 case RECURSIVE_SET_ATTRIBUTE:
22c3a6ca 2818 if (!i.argument) {
d9daae55 2819 *invalid_config = true;
d02933fd
LP
2820 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2821 "Set file attribute requires argument.");
22c3a6ca 2822 }
bd550f78 2823 r = parse_attribute_from_arg(&i);
751223fe 2824 if (IN_SET(r, -EINVAL, -EBADSLT))
d9daae55 2825 *invalid_config = true;
22c3a6ca
GB
2826 if (r < 0)
2827 return r;
2828 break;
2829
777b87e7 2830 default:
d9daae55 2831 *invalid_config = true;
d02933fd
LP
2832 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2833 "Unknown command type '%c'.", (char) i.type);
3b63d2d3 2834 }
468d726b 2835
3f93da98 2836 if (!path_is_absolute(i.path)) {
d9daae55 2837 *invalid_config = true;
d02933fd
LP
2838 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2839 "Path '%s' not absolute.", i.path);
3b63d2d3
LP
2840 }
2841
858d36c1 2842 path_simplify(i.path, false);
3b63d2d3 2843
3f93da98 2844 if (!should_include_path(i.path))
7f2c1f4d 2845 return 0;
5008d581 2846
4cef1923 2847 r = specifier_expansion_from_arg(&i);
5a8575ef 2848 if (r == -ENXIO)
4cef1923 2849 return log_unresolvable_specifier(fname, line);
751223fe
ZJS
2850 if (r < 0) {
2851 if (IN_SET(r, -EINVAL, -EBADSLT))
2852 *invalid_config = true;
d02933fd 2853 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to substitute specifiers in argument: %m");
751223fe 2854 }
4cef1923 2855
7dc6477d 2856 if (!empty_or_root(arg_root)) {
cde684a2
LP
2857 char *p;
2858
c6134d3e 2859 p = path_join(arg_root, i.path);
cf9a4abd
MM
2860 if (!p)
2861 return log_oom();
81fa4479 2862 free_and_replace(i.path, p);
cf9a4abd
MM
2863 }
2864
e7b88b7b 2865 if (!empty_or_dash(user)) {
a3451c2c 2866 r = find_uid(user, &i.uid, uid_cache);
4b67834e 2867 if (r < 0) {
d9daae55 2868 *invalid_config = true;
d02933fd 2869 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve user '%s': %m", user);
3b63d2d3
LP
2870 }
2871
3f93da98 2872 i.uid_set = true;
3b63d2d3
LP
2873 }
2874
e7b88b7b 2875 if (!empty_or_dash(group)) {
a3451c2c 2876 r = find_gid(group, &i.gid, gid_cache);
4b67834e 2877 if (r < 0) {
d9daae55 2878 *invalid_config = true;
d02933fd 2879 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve group '%s'.", group);
3b63d2d3
LP
2880 }
2881
3f93da98 2882 i.gid_set = true;
3b63d2d3
LP
2883 }
2884
e7b88b7b 2885 if (!empty_or_dash(mode)) {
abef3f91 2886 const char *mm = mode;
3b63d2d3
LP
2887 unsigned m;
2888
abef3f91 2889 if (*mm == '~') {
3f93da98 2890 i.mask_perms = true;
abef3f91
LP
2891 mm++;
2892 }
2893
d02933fd
LP
2894 r = parse_mode(mm, &m);
2895 if (r < 0) {
d9daae55 2896 *invalid_config = true;
d02933fd 2897 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid mode '%s'.", mode);
3b63d2d3
LP
2898 }
2899
3f93da98
ZJS
2900 i.mode = m;
2901 i.mode_set = true;
3b63d2d3 2902 } else
5fb13eb5 2903 i.mode = IN_SET(i.type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA) ? 0755 : 0644;
3b63d2d3 2904
e7b88b7b 2905 if (!empty_or_dash(age)) {
24f3a374
LP
2906 const char *a = age;
2907
2908 if (*a == '~') {
3f93da98 2909 i.keep_first_level = true;
24f3a374
LP
2910 a++;
2911 }
2912
d02933fd
LP
2913 r = parse_sec(a, &i.age);
2914 if (r < 0) {
d9daae55 2915 *invalid_config = true;
d02933fd 2916 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age '%s'.", age);
3b63d2d3
LP
2917 }
2918
3f93da98 2919 i.age_set = true;
3b63d2d3
LP
2920 }
2921
3f93da98 2922 h = needs_glob(i.type) ? globs : items;
bfe95f35 2923
ef43a391 2924 existing = ordered_hashmap_get(h, i.path);
468d726b 2925 if (existing) {
96d10d78 2926 size_t n;
3f93da98 2927
96d10d78 2928 for (n = 0; n < existing->n_items; n++) {
d0ea5c5e 2929 if (!item_compatible(existing->items + n, &i) && !i.append_or_force) {
d02933fd 2930 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Duplicate line for path \"%s\", ignoring.", i.path);
6487ada8
MP
2931 return 0;
2932 }
ebf4e801
MW
2933 }
2934 } else {
3f93da98 2935 existing = new0(ItemArray, 1);
07982ed1
LP
2936 if (!existing)
2937 return log_oom();
2938
ef43a391 2939 r = ordered_hashmap_put(h, i.path, existing);
ccd114f0
LP
2940 if (r < 0) {
2941 free(existing);
3f93da98 2942 return log_oom();
ccd114f0 2943 }
bfe95f35
LP
2944 }
2945
96d10d78 2946 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
3f93da98 2947 return log_oom();
5008d581 2948
7ab7529d
LP
2949 existing->items[existing->n_items++] = i;
2950 i = (struct Item) {};
dd449aca
ZJS
2951
2952 /* Sort item array, to enforce stable ordering of application */
96d10d78 2953 typesafe_qsort(existing->items, existing->n_items, item_compare);
17493fa5 2954
7f2c1f4d 2955 return 0;
5008d581
LP
2956}
2957
ceaaeb9b
ZJS
2958static int cat_config(char **config_dirs, char **args) {
2959 _cleanup_strv_free_ char **files = NULL;
2960 int r;
2961
2962 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2963 if (r < 0)
2964 return r;
2965
2966 return cat_files(NULL, files, 0);
2967}
2968
dd04fb32
LP
2969static int exclude_default_prefixes(void) {
2970 int r;
2971
2972 /* Provide an easy way to exclude virtual/memory file systems from what we do here. Useful in
2973 * combination with --root= where we probably don't want to apply stuff to these dirs as they are
2974 * likely over-mounted if the root directory is actually used, and it wouldbe less than ideal to have
2975 * all kinds of files created/adjusted underneath these mount points. */
2976
2977 r = strv_extend_strv(
2978 &arg_exclude_prefixes,
2979 STRV_MAKE("/dev",
2980 "/proc",
2981 "/run",
2982 "/sys"),
2983 true);
2984 if (r < 0)
2985 return log_oom();
2986
2987 return 0;
2988}
2989
37ec0fdd
LP
2990static int help(void) {
2991 _cleanup_free_ char *link = NULL;
2992 int r;
2993
2994 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2995 if (r < 0)
2996 return log_oom();
2997
522d4a49
LP
2998 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2999 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
5c795114 3000 " -h --help Show this help\n"
f2b5ca0e 3001 " --user Execute user configuration\n"
eb9da376 3002 " --version Show package version\n"
ceaaeb9b 3003 " --cat-config Show configuration files\n"
5c795114
DR
3004 " --create Create marked files/directories\n"
3005 " --clean Clean up marked directories\n"
3006 " --remove Remove marked files/directories\n"
81815651 3007 " --boot Execute actions only safe at boot\n"
79ca888f
ZJS
3008 " --prefix=PATH Only apply rules with the specified prefix\n"
3009 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
dd04fb32 3010 " -E Ignore rules prefixed with /dev, /proc, /run, /sys\n"
d9daae55 3011 " --root=PATH Operate on an alternate filesystem root\n"
63d3d0a5 3012 " --image=PATH Operate on disk image as filesystem root\n"
a6d8474f 3013 " --replace=PATH Treat arguments as replacement for PATH\n"
dcd5c891 3014 " --no-pager Do not pipe output into a pager\n"
37ec0fdd
LP
3015 "\nSee the %s for details.\n"
3016 , program_invocation_short_name
3017 , link
3018 );
3019
3020 return 0;
3b63d2d3
LP
3021}
3022
3023static int parse_argv(int argc, char *argv[]) {
3024
3025 enum {
eb9da376 3026 ARG_VERSION = 0x100,
ceaaeb9b 3027 ARG_CAT_CONFIG,
f2b5ca0e 3028 ARG_USER,
3b63d2d3
LP
3029 ARG_CREATE,
3030 ARG_CLEAN,
fba6e687 3031 ARG_REMOVE,
81815651 3032 ARG_BOOT,
5c795114
DR
3033 ARG_PREFIX,
3034 ARG_EXCLUDE_PREFIX,
cf9a4abd 3035 ARG_ROOT,
63d3d0a5 3036 ARG_IMAGE,
a6d8474f 3037 ARG_REPLACE,
dcd5c891 3038 ARG_NO_PAGER,
3b63d2d3
LP
3039 };
3040
3041 static const struct option options[] = {
5c795114 3042 { "help", no_argument, NULL, 'h' },
f2b5ca0e 3043 { "user", no_argument, NULL, ARG_USER },
eb9da376 3044 { "version", no_argument, NULL, ARG_VERSION },
ceaaeb9b 3045 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
5c795114
DR
3046 { "create", no_argument, NULL, ARG_CREATE },
3047 { "clean", no_argument, NULL, ARG_CLEAN },
3048 { "remove", no_argument, NULL, ARG_REMOVE },
81815651 3049 { "boot", no_argument, NULL, ARG_BOOT },
5c795114
DR
3050 { "prefix", required_argument, NULL, ARG_PREFIX },
3051 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
cf9a4abd 3052 { "root", required_argument, NULL, ARG_ROOT },
63d3d0a5 3053 { "image", required_argument, NULL, ARG_IMAGE },
a6d8474f 3054 { "replace", required_argument, NULL, ARG_REPLACE },
dcd5c891 3055 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
eb9da376 3056 {}
3b63d2d3
LP
3057 };
3058
0f474365 3059 int c, r;
3b63d2d3
LP
3060
3061 assert(argc >= 0);
3062 assert(argv);
3063
dd04fb32 3064 while ((c = getopt_long(argc, argv, "hE", options, NULL)) >= 0)
3b63d2d3
LP
3065
3066 switch (c) {
3067
3068 case 'h':
37ec0fdd 3069 return help();
eb9da376
LP
3070
3071 case ARG_VERSION:
3f6fd1ba 3072 return version();
3b63d2d3 3073
ceaaeb9b
ZJS
3074 case ARG_CAT_CONFIG:
3075 arg_cat_config = true;
3076 break;
3077
f2b5ca0e
ZJS
3078 case ARG_USER:
3079 arg_user = true;
3080 break;
3081
3b63d2d3 3082 case ARG_CREATE:
1a967b6b 3083 arg_operation |= OPERATION_CREATE;
3b63d2d3
LP
3084 break;
3085
3086 case ARG_CLEAN:
1a967b6b 3087 arg_operation |= OPERATION_CLEAN;
3b63d2d3
LP
3088 break;
3089
3090 case ARG_REMOVE:
1a967b6b 3091 arg_operation |= OPERATION_REMOVE;
3b63d2d3
LP
3092 break;
3093
81815651
ZJS
3094 case ARG_BOOT:
3095 arg_boot = true;
c4708f13
ZJS
3096 break;
3097
fba6e687 3098 case ARG_PREFIX:
7bc040fa 3099 if (strv_push(&arg_include_prefixes, optarg) < 0)
a2aced4a 3100 return log_oom();
fba6e687
LP
3101 break;
3102
5c795114 3103 case ARG_EXCLUDE_PREFIX:
7bc040fa 3104 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
5c795114
DR
3105 return log_oom();
3106 break;
3107
63d3d0a5
LP
3108 case ARG_ROOT:
3109 r = parse_path_argument_and_warn(optarg, /* suppress_root= */ false, &arg_root);
dd04fb32
LP
3110 if (r < 0)
3111 return r;
dd04fb32
LP
3112 break;
3113
63d3d0a5 3114 case ARG_IMAGE:
3537577c
ZJS
3115#ifdef STANDALONE
3116 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
3117 "This systemd-tmpfiles version is compiled without support for --image=.");
3118#else
63d3d0a5
LP
3119 r = parse_path_argument_and_warn(optarg, /* suppress_root= */ false, &arg_image);
3120 if (r < 0)
3121 return r;
3537577c
ZJS
3122#endif
3123 /* Imply -E here since it makes little sense to create files persistently in the /run mountpoint of a disk image */
63d3d0a5
LP
3124 _fallthrough_;
3125
3126 case 'E':
3127 r = exclude_default_prefixes();
0f474365 3128 if (r < 0)
0f03c2a4 3129 return r;
63d3d0a5 3130
cf9a4abd
MM
3131 break;
3132
a6d8474f
ZJS
3133 case ARG_REPLACE:
3134 if (!path_is_absolute(optarg) ||
baaa35ad
ZJS
3135 !endswith(optarg, ".conf"))
3136 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3137 "The argument to --replace= must an absolute path to a config file");
a6d8474f
ZJS
3138
3139 arg_replace = optarg;
3140 break;
3141
dcd5c891 3142 case ARG_NO_PAGER:
0221d68a 3143 arg_pager_flags |= PAGER_DISABLE;
dcd5c891
LP
3144 break;
3145
3b63d2d3
LP
3146 case '?':
3147 return -EINVAL;
3148
3149 default:
eb9da376 3150 assert_not_reached("Unhandled option");
3b63d2d3 3151 }
3b63d2d3 3152
baaa35ad
ZJS
3153 if (arg_operation == 0 && !arg_cat_config)
3154 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3155 "You need to specify at least one of --clean, --create or --remove.");
3b63d2d3 3156
baaa35ad
ZJS
3157 if (arg_replace && arg_cat_config)
3158 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3159 "Option --replace= is not supported with --cat-config");
ceaaeb9b 3160
baaa35ad
ZJS
3161 if (arg_replace && optind >= argc)
3162 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3163 "When --replace= is given, some configuration items must be specified");
a6d8474f 3164
b63aacaa
LP
3165 if (arg_root && arg_user)
3166 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3167 "Combination of --user and --root= is not supported.");
3168
63d3d0a5
LP
3169 if (arg_image && arg_root)
3170 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Please specify either --root= or --image=, the combination of both is not supported.");
3171
3b63d2d3
LP
3172 return 1;
3173}
3174
a6d8474f 3175static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
a3451c2c 3176 _cleanup_(hashmap_freep) Hashmap *uid_cache = NULL, *gid_cache = NULL;
f7ac1ed2 3177 _cleanup_fclose_ FILE *_f = NULL;
1731e34a 3178 unsigned v = 0;
2a98ae4a 3179 FILE *f;
78a92a5a 3180 Item *i;
4e68ec18 3181 int r = 0;
fba6e687
LP
3182
3183 assert(fn);
3184
f7ac1ed2 3185 if (streq(fn, "-")) {
a6d8474f 3186 log_debug("Reading config from stdin…");
f7ac1ed2
ZJS
3187 fn = "<stdin>";
3188 f = stdin;
3189 } else {
a6d8474f 3190 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
f7ac1ed2
ZJS
3191 if (r < 0) {
3192 if (ignore_enoent && r == -ENOENT) {
3193 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3194 return 0;
3195 }
fba6e687 3196
f7ac1ed2
ZJS
3197 return log_error_errno(r, "Failed to open '%s': %m", fn);
3198 }
a6d8474f 3199 log_debug("Reading config file \"%s\"…", fn);
f7ac1ed2 3200 f = _f;
fba6e687
LP
3201 }
3202
2a98ae4a
LP
3203 for (;;) {
3204 _cleanup_free_ char *line = NULL;
3205 bool invalid_line = false;
1731e34a 3206 char *l;
fba6e687 3207 int k;
2a98ae4a
LP
3208
3209 k = read_line(f, LONG_LINE_MAX, &line);
3210 if (k < 0)
3211 return log_error_errno(k, "Failed to read '%s': %m", fn);
3212 if (k == 0)
3213 break;
fba6e687 3214
fba6e687
LP
3215 v++;
3216
3217 l = strstrip(line);
4c701096 3218 if (IN_SET(*l, 0, '#'))
fba6e687
LP
3219 continue;
3220
a3451c2c 3221 k = parse_line(fn, v, l, &invalid_line, &uid_cache, &gid_cache);
d9daae55
ZJS
3222 if (k < 0) {
3223 if (invalid_line)
3224 /* Allow reporting with a special code if the caller requested this */
3225 *invalid_config = true;
3226 else if (r == 0)
3227 /* The first error becomes our return value */
3228 r = k;
3229 }
fba6e687
LP
3230 }
3231
78a92a5a 3232 /* we have to determine age parameter for each entry of type X */
90e74a66 3233 ORDERED_HASHMAP_FOREACH(i, globs) {
78a92a5a
MS
3234 Item *j, *candidate_item = NULL;
3235
3236 if (i->type != IGNORE_DIRECTORY_PATH)
3237 continue;
3238
90e74a66 3239 ORDERED_HASHMAP_FOREACH(j, items) {
5fb13eb5 3240 if (!IN_SET(j->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA))
78a92a5a
MS
3241 continue;
3242
3243 if (path_equal(j->path, i->path)) {
3244 candidate_item = j;
3245 break;
3246 }
3247
3248 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3249 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3250 candidate_item = j;
3251 }
3252
9ed2a35e 3253 if (candidate_item && candidate_item->age_set) {
78a92a5a
MS
3254 i->age = candidate_item->age;
3255 i->age_set = true;
3256 }
3257 }
3258
fba6e687 3259 if (ferror(f)) {
56f64d95 3260 log_error_errno(errno, "Failed to read from file %s: %m", fn);
fba6e687
LP
3261 if (r == 0)
3262 r = -EIO;
3263 }
3264
fba6e687
LP
3265 return r;
3266}
3267
a6d8474f
ZJS
3268static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3269 char **arg;
3270 int r;
3271
3272 STRV_FOREACH(arg, args) {
3273 r = read_config_file(config_dirs, *arg, false, invalid_config);
3274 if (r < 0)
3275 return r;
3276 }
3277
3278 return 0;
3279}
3280
3281static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3282 _cleanup_strv_free_ char **files = NULL;
3283 _cleanup_free_ char *p = NULL;
3284 char **f;
3285 int r;
3286
ceaaeb9b 3287 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
a6d8474f 3288 if (r < 0)
ceaaeb9b 3289 return r;
a6d8474f
ZJS
3290
3291 STRV_FOREACH(f, files)
3292 if (p && path_equal(*f, p)) {
3293 log_debug("Parsing arguments at position \"%s\"…", *f);
3294
3295 r = parse_arguments(config_dirs, args, invalid_config);
3296 if (r < 0)
3297 return r;
3298 } else
3299 /* Just warn, ignore result otherwise.
3300 * read_config_file() has some debug output, so no need to print anything. */
3301 (void) read_config_file(config_dirs, *f, true, invalid_config);
3302
3303 return 0;
3304}
3305
811a1587
LP
3306static int link_parent(ItemArray *a) {
3307 const char *path;
3308 char *prefix;
3309 int r;
3310
3311 assert(a);
3312
09f467ac 3313 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
811a1587
LP
3314 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3315 * before their children, and clean up/remove children before their parents. */
3316
3317 if (a->n_items <= 0)
3318 return 0;
3319
3320 path = a->items[0].path;
6e9417f5 3321 prefix = newa(char, strlen(path) + 1);
811a1587
LP
3322 PATH_FOREACH_PREFIX(prefix, path) {
3323 ItemArray *j;
3324
3325 j = ordered_hashmap_get(items, prefix);
bd0ce244
LP
3326 if (!j)
3327 j = ordered_hashmap_get(globs, prefix);
811a1587 3328 if (j) {
de7fef4b 3329 r = set_ensure_put(&j->children, NULL, a);
811a1587
LP
3330 if (r < 0)
3331 return log_oom();
3332
3333 a->parent = j;
3334 return 1;
3335 }
3336 }
3337
3338 return 0;
3339}
3340
87938c3b
YW
3341DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3342 ItemArray, item_array_free);
3343
3344static int run(int argc, char *argv[]) {
3537577c 3345#ifndef STANDALONE
63d3d0a5
LP
3346 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
3347 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
3348 _cleanup_(umount_and_rmdir_and_freep) char *unlink_dir = NULL;
3537577c 3349#endif
f2b5ca0e 3350 _cleanup_strv_free_ char **config_dirs = NULL;
d9daae55 3351 bool invalid_config = false;
64adb379 3352 ItemArray *a;
44ac4f88
LP
3353 enum {
3354 PHASE_REMOVE_AND_CLEAN,
3355 PHASE_CREATE,
3356 _PHASE_MAX
3357 } phase;
87938c3b 3358 int r, k;
3b63d2d3 3359
fdcad0c2
LP
3360 r = parse_argv(argc, argv);
3361 if (r <= 0)
87938c3b 3362 return r;
5008d581 3363
6bf3c61c 3364 log_setup_service();
5008d581 3365
e5358401
LP
3366 /* Descending down file system trees might take a lot of fds */
3367 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
3368
f2b5ca0e
ZJS
3369 if (arg_user) {
3370 r = user_config_paths(&config_dirs);
87938c3b
YW
3371 if (r < 0)
3372 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
f2b5ca0e
ZJS
3373 } else {
3374 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
87938c3b
YW
3375 if (!config_dirs)
3376 return log_oom();
f2b5ca0e
ZJS
3377 }
3378
79c91cec 3379 if (DEBUG_LOGGING) {
f2b5ca0e 3380 _cleanup_free_ char *t = NULL;
b8e35011 3381 char **i;
f2b5ca0e 3382
b8e35011
LP
3383 STRV_FOREACH(i, config_dirs) {
3384 _cleanup_free_ char *j = NULL;
3385
3386 j = path_join(arg_root, *i);
3387 if (!j)
3388 return log_oom();
3389
3390 if (!strextend(&t, "\n\t", j, NULL))
3391 return log_oom();
3392 }
3393
3394 log_debug("Looking for configuration files in (higher priority first):%s", t);
f2b5ca0e
ZJS
3395 }
3396
ceaaeb9b 3397 if (arg_cat_config) {
0221d68a 3398 (void) pager_open(arg_pager_flags);
dcd5c891 3399
87938c3b 3400 return cat_config(config_dirs, argv + optind);
ceaaeb9b
ZJS
3401 }
3402
3403 umask(0022);
3404
a9ba0e32
CG
3405 r = mac_selinux_init();
3406 if (r < 0)
3407 return r;
ceaaeb9b 3408
3537577c 3409#ifndef STANDALONE
63d3d0a5
LP
3410 if (arg_image) {
3411 assert(!arg_root);
3412
3413 r = mount_image_privately_interactively(
3414 arg_image,
3415 DISSECT_IMAGE_REQUIRE_ROOT|DISSECT_IMAGE_VALIDATE_OS|DISSECT_IMAGE_RELAX_VAR_CHECK|DISSECT_IMAGE_FSCK,
3416 &unlink_dir,
3417 &loop_device,
3418 &decrypted_image);
3419 if (r < 0)
3420 return r;
3421
3422 arg_root = strdup(unlink_dir);
3423 if (!arg_root)
3424 return log_oom();
3425 }
3537577c
ZJS
3426#else
3427 assert(!arg_image);
3428#endif
63d3d0a5 3429
87938c3b
YW
3430 items = ordered_hashmap_new(&item_array_hash_ops);
3431 globs = ordered_hashmap_new(&item_array_hash_ops);
3432 if (!items || !globs)
3433 return log_oom();
ceaaeb9b 3434
a6d8474f
ZJS
3435 /* If command line arguments are specified along with --replace, read all
3436 * configuration files and insert the positional arguments at the specified
3437 * place. Otherwise, if command line arguments are specified, execute just
3438 * them, and finally, without --replace= or any positional arguments, just
3439 * read configuration and execute it.
3440 */
3441 if (arg_replace || optind >= argc)
3442 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3443 else
3444 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3445 if (r < 0)
87938c3b 3446 return r;
5008d581 3447
811a1587 3448 /* Let's now link up all child/parent relationships */
90e74a66 3449 ORDERED_HASHMAP_FOREACH(a, items) {
811a1587
LP
3450 r = link_parent(a);
3451 if (r < 0)
87938c3b 3452 return r;
1db50423 3453 }
90e74a66 3454 ORDERED_HASHMAP_FOREACH(a, globs) {
811a1587
LP
3455 r = link_parent(a);
3456 if (r < 0)
87938c3b 3457 return r;
811a1587
LP
3458 }
3459
64adb379
LP
3460 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3461 * operations. i.e. that we first clean out the platform we then build on. */
44ac4f88 3462 for (phase = 0; phase < _PHASE_MAX; phase++) {
64adb379 3463 OperationMask op;
b8bb3e8f 3464
44ac4f88 3465 if (phase == PHASE_REMOVE_AND_CLEAN)
64adb379 3466 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
44ac4f88 3467 else if (phase == PHASE_CREATE)
64adb379
LP
3468 op = arg_operation & OPERATION_CREATE;
3469 else
3470 assert_not_reached("unexpected phase");
3471
3472 if (op == 0) /* Nothing requested in this phase */
3473 continue;
3474
3475 /* The non-globbing ones usually create things, hence we apply them first */
90e74a66 3476 ORDERED_HASHMAP_FOREACH(a, items) {
64adb379 3477 k = process_item_array(a, op);
87938c3b
YW
3478 if (k < 0 && r >= 0)
3479 r = k;
64adb379
LP
3480 }
3481
3482 /* The globbing ones usually alter things, hence we apply them second. */
90e74a66 3483 ORDERED_HASHMAP_FOREACH(a, globs) {
64adb379 3484 k = process_item_array(a, op);
87938c3b
YW
3485 if (k < 0 && r >= 0)
3486 r = k;
64adb379 3487 }
1db50423 3488 }
3b63d2d3 3489
95d2155a 3490 if (ERRNO_IS_RESOURCE(r))
87938c3b
YW
3491 return r;
3492 if (invalid_config)
d9daae55 3493 return EX_DATAERR;
87938c3b 3494 if (r < 0)
bb9947be 3495 return EX_CANTCREAT;
87938c3b 3496 return 0;
5008d581 3497}
87938c3b
YW
3498
3499DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);