]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/tmpfiles/tmpfiles.c
tree-wide: use -EBADF for fd initialization
[thirdparty/systemd.git] / src / tmpfiles / tmpfiles.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <fnmatch.h>
6 #include <getopt.h>
7 #include <limits.h>
8 #include <linux/fs.h>
9 #include <stdbool.h>
10 #include <stddef.h>
11 #include <stdlib.h>
12 #include <sys/file.h>
13 #include <sys/xattr.h>
14 #include <sysexits.h>
15 #include <time.h>
16 #include <unistd.h>
17
18 #include "sd-path.h"
19
20 #include "acl-util.h"
21 #include "alloc-util.h"
22 #include "btrfs-util.h"
23 #include "build.h"
24 #include "capability-util.h"
25 #include "chase-symlinks.h"
26 #include "chattr-util.h"
27 #include "conf-files.h"
28 #include "constants.h"
29 #include "copy.h"
30 #include "creds-util.h"
31 #include "devnum-util.h"
32 #include "dirent-util.h"
33 #include "dissect-image.h"
34 #include "env-util.h"
35 #include "errno-util.h"
36 #include "escape.h"
37 #include "fd-util.h"
38 #include "fileio.h"
39 #include "format-util.h"
40 #include "fs-util.h"
41 #include "glob-util.h"
42 #include "hexdecoct.h"
43 #include "io-util.h"
44 #include "label.h"
45 #include "log.h"
46 #include "macro.h"
47 #include "main-func.h"
48 #include "missing_stat.h"
49 #include "missing_syscall.h"
50 #include "mkdir-label.h"
51 #include "mount-util.h"
52 #include "mountpoint-util.h"
53 #include "nulstr-util.h"
54 #include "offline-passwd.h"
55 #include "pager.h"
56 #include "parse-argument.h"
57 #include "parse-util.h"
58 #include "path-lookup.h"
59 #include "path-util.h"
60 #include "pretty-print.h"
61 #include "rlimit-util.h"
62 #include "rm-rf.h"
63 #include "selinux-util.h"
64 #include "set.h"
65 #include "sort-util.h"
66 #include "specifier.h"
67 #include "stdio-util.h"
68 #include "string-table.h"
69 #include "string-util.h"
70 #include "strv.h"
71 #include "terminal-util.h"
72 #include "umask-util.h"
73 #include "user-util.h"
74 #include "virt.h"
75
76 /* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
77 * them in the file system. This is intended to be used to create
78 * properly owned directories beneath /tmp, /var/tmp, /run, which are
79 * volatile and hence need to be recreated on bootup. */
80
81 typedef enum OperationMask {
82 OPERATION_CREATE = 1 << 0,
83 OPERATION_REMOVE = 1 << 1,
84 OPERATION_CLEAN = 1 << 2,
85 } OperationMask;
86
87 typedef enum ItemType {
88 /* These ones take file names */
89 CREATE_FILE = 'f',
90 TRUNCATE_FILE = 'F', /* deprecated: use f+ */
91 CREATE_DIRECTORY = 'd',
92 TRUNCATE_DIRECTORY = 'D',
93 CREATE_SUBVOLUME = 'v',
94 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
95 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
96 CREATE_FIFO = 'p',
97 CREATE_SYMLINK = 'L',
98 CREATE_CHAR_DEVICE = 'c',
99 CREATE_BLOCK_DEVICE = 'b',
100 COPY_FILES = 'C',
101
102 /* These ones take globs */
103 WRITE_FILE = 'w',
104 EMPTY_DIRECTORY = 'e',
105 SET_XATTR = 't',
106 RECURSIVE_SET_XATTR = 'T',
107 SET_ACL = 'a',
108 RECURSIVE_SET_ACL = 'A',
109 SET_ATTRIBUTE = 'h',
110 RECURSIVE_SET_ATTRIBUTE = 'H',
111 IGNORE_PATH = 'x',
112 IGNORE_DIRECTORY_PATH = 'X',
113 REMOVE_PATH = 'r',
114 RECURSIVE_REMOVE_PATH = 'R',
115 RELABEL_PATH = 'z',
116 RECURSIVE_RELABEL_PATH = 'Z',
117 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
118 } ItemType;
119
120 typedef enum AgeBy {
121 AGE_BY_ATIME = 1 << 0,
122 AGE_BY_BTIME = 1 << 1,
123 AGE_BY_CTIME = 1 << 2,
124 AGE_BY_MTIME = 1 << 3,
125
126 /* All file timestamp types are checked by default. */
127 AGE_BY_DEFAULT_FILE = AGE_BY_ATIME | AGE_BY_BTIME | AGE_BY_CTIME | AGE_BY_MTIME,
128 AGE_BY_DEFAULT_DIR = AGE_BY_ATIME | AGE_BY_BTIME | AGE_BY_MTIME
129 } AgeBy;
130
131 typedef struct Item {
132 ItemType type;
133
134 char *path;
135 char *argument;
136 void *binary_argument; /* set if binary data, in which case it takes precedence over 'argument' */
137 size_t binary_argument_size;
138 char **xattrs;
139 #if HAVE_ACL
140 acl_t acl_access;
141 acl_t acl_default;
142 #endif
143 uid_t uid;
144 gid_t gid;
145 mode_t mode;
146 usec_t age;
147 AgeBy age_by_file, age_by_dir;
148
149 dev_t major_minor;
150 unsigned attribute_value;
151 unsigned attribute_mask;
152
153 bool uid_set:1;
154 bool gid_set:1;
155 bool mode_set:1;
156 bool uid_only_create:1;
157 bool gid_only_create:1;
158 bool mode_only_create:1;
159 bool age_set:1;
160 bool mask_perms:1;
161 bool attribute_set:1;
162
163 bool keep_first_level:1;
164
165 bool append_or_force:1;
166
167 bool allow_failure:1;
168
169 bool try_replace:1;
170
171 OperationMask done;
172 } Item;
173
174 typedef struct ItemArray {
175 Item *items;
176 size_t n_items;
177
178 struct ItemArray *parent;
179 Set *children;
180 } ItemArray;
181
182 typedef enum DirectoryType {
183 DIRECTORY_RUNTIME,
184 DIRECTORY_STATE,
185 DIRECTORY_CACHE,
186 DIRECTORY_LOGS,
187 _DIRECTORY_TYPE_MAX,
188 } DirectoryType;
189
190 typedef enum {
191 CREATION_NORMAL,
192 CREATION_EXISTING,
193 CREATION_FORCE,
194 _CREATION_MODE_MAX,
195 _CREATION_MODE_INVALID = -EINVAL,
196 } CreationMode;
197
198 static bool arg_cat_config = false;
199 static bool arg_user = false;
200 static OperationMask arg_operation = 0;
201 static bool arg_boot = false;
202 static PagerFlags arg_pager_flags = 0;
203
204 static char **arg_include_prefixes = NULL;
205 static char **arg_exclude_prefixes = NULL;
206 static char *arg_root = NULL;
207 static char *arg_image = NULL;
208 static char *arg_replace = NULL;
209
210 #define MAX_DEPTH 256
211
212 static OrderedHashmap *items = NULL, *globs = NULL;
213 static Set *unix_sockets = NULL;
214
215 STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
216 STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
217 STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_freep);
218 STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
219 STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
220 STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
221 STATIC_DESTRUCTOR_REGISTER(arg_image, freep);
222
223 static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
224 [CREATION_NORMAL] = "Created",
225 [CREATION_EXISTING] = "Found existing",
226 [CREATION_FORCE] = "Created replacement",
227 };
228
229 DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
230
231 /* Different kinds of errors that mean that information is not available in the environment. */
232 static inline bool ERRNO_IS_NOINFO(int r) {
233 return IN_SET(abs(r),
234 EUNATCH, /* os-release or machine-id missing */
235 ENOMEDIUM, /* machine-id or another file empty */
236 ENXIO); /* env var is unset */
237 }
238
239 static int specifier_directory(char specifier, const void *data, const char *root, const void *userdata, char **ret) {
240 struct table_entry {
241 uint64_t type;
242 const char *suffix;
243 };
244
245 static const struct table_entry paths_system[] = {
246 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
247 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
248 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
249 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
250 };
251
252 static const struct table_entry paths_user[] = {
253 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
254 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
255 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
256 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
257 };
258
259 const struct table_entry *paths;
260 _cleanup_free_ char *p = NULL;
261 unsigned i;
262 int r;
263
264 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
265 paths = arg_user ? paths_user : paths_system;
266
267 i = PTR_TO_UINT(data);
268 assert(i < ELEMENTSOF(paths_system));
269
270 r = sd_path_lookup(paths[i].type, paths[i].suffix, &p);
271 if (r < 0)
272 return r;
273
274 if (arg_root) {
275 _cleanup_free_ char *j = NULL;
276
277 j = path_join(arg_root, p);
278 if (!j)
279 return -ENOMEM;
280
281 *ret = TAKE_PTR(j);
282 } else
283 *ret = TAKE_PTR(p);
284
285 return 0;
286 }
287
288 static int log_unresolvable_specifier(const char *filename, unsigned line) {
289 static bool notified = false;
290
291 /* In system mode, this is called when /etc is not fully initialized and some specifiers are
292 * unresolvable. In user mode, this is called when some variables are not defined. These cases are
293 * not considered a fatal error, so log at LOG_NOTICE only for the first time and then downgrade this
294 * to LOG_DEBUG for the rest.
295 *
296 * If we're running in a chroot (--root was used or sd_booted() reports that systemd is not running),
297 * always use LOG_DEBUG. We may be called to initialize a chroot before booting and there is no
298 * expectation that machine-id and other files will be populated.
299 */
300
301 int log_level = notified || arg_root || running_in_chroot() > 0 ?
302 LOG_DEBUG : LOG_NOTICE;
303
304 log_syntax(NULL,
305 log_level,
306 filename, line, 0,
307 "Failed to resolve specifier: %s, skipping.",
308 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc/ detected");
309
310 if (!notified)
311 log_full(log_level,
312 "All rules containing unresolvable specifiers will be skipped.");
313
314 notified = true;
315 return 0;
316 }
317
318 static int user_config_paths(char*** ret) {
319 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
320 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
321 _cleanup_strv_free_ char **res = NULL;
322 int r;
323
324 r = xdg_user_dirs(&config_dirs, &data_dirs);
325 if (r < 0)
326 return r;
327
328 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
329 if (r < 0 && !ERRNO_IS_NOINFO(r))
330 return r;
331
332 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
333 if (r < 0 && !ERRNO_IS_NOINFO(r))
334 return r;
335
336 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
337 if (r < 0 && !ERRNO_IS_NOINFO(r))
338 return r;
339
340 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
341 if (r < 0)
342 return r;
343
344 r = strv_extend(&res, persistent_config);
345 if (r < 0)
346 return r;
347
348 r = strv_extend(&res, runtime_config);
349 if (r < 0)
350 return r;
351
352 r = strv_extend(&res, data_home);
353 if (r < 0)
354 return r;
355
356 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
357 if (r < 0)
358 return r;
359
360 r = path_strv_make_absolute_cwd(res);
361 if (r < 0)
362 return r;
363
364 *ret = TAKE_PTR(res);
365 return 0;
366 }
367
368 static bool needs_glob(ItemType t) {
369 return IN_SET(t,
370 WRITE_FILE,
371 IGNORE_PATH,
372 IGNORE_DIRECTORY_PATH,
373 REMOVE_PATH,
374 RECURSIVE_REMOVE_PATH,
375 EMPTY_DIRECTORY,
376 ADJUST_MODE,
377 RELABEL_PATH,
378 RECURSIVE_RELABEL_PATH,
379 SET_XATTR,
380 RECURSIVE_SET_XATTR,
381 SET_ACL,
382 RECURSIVE_SET_ACL,
383 SET_ATTRIBUTE,
384 RECURSIVE_SET_ATTRIBUTE);
385 }
386
387 static bool takes_ownership(ItemType t) {
388 return IN_SET(t,
389 CREATE_FILE,
390 TRUNCATE_FILE,
391 CREATE_DIRECTORY,
392 EMPTY_DIRECTORY,
393 TRUNCATE_DIRECTORY,
394 CREATE_SUBVOLUME,
395 CREATE_SUBVOLUME_INHERIT_QUOTA,
396 CREATE_SUBVOLUME_NEW_QUOTA,
397 CREATE_FIFO,
398 CREATE_SYMLINK,
399 CREATE_CHAR_DEVICE,
400 CREATE_BLOCK_DEVICE,
401 COPY_FILES,
402 WRITE_FILE,
403 IGNORE_PATH,
404 IGNORE_DIRECTORY_PATH,
405 REMOVE_PATH,
406 RECURSIVE_REMOVE_PATH);
407 }
408
409 static struct Item* find_glob(OrderedHashmap *h, const char *match) {
410 ItemArray *j;
411
412 ORDERED_HASHMAP_FOREACH(j, h) {
413 size_t n;
414
415 for (n = 0; n < j->n_items; n++) {
416 Item *item = j->items + n;
417
418 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
419 return item;
420 }
421 }
422
423 return NULL;
424 }
425
426 static int load_unix_sockets(void) {
427 _cleanup_set_free_ Set *sockets = NULL;
428 _cleanup_fclose_ FILE *f = NULL;
429 int r;
430
431 if (unix_sockets)
432 return 0;
433
434 /* We maintain a cache of the sockets we found in /proc/net/unix to speed things up a little. */
435
436 f = fopen("/proc/net/unix", "re");
437 if (!f)
438 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
439 "Failed to open /proc/net/unix, ignoring: %m");
440
441 /* Skip header */
442 r = read_line(f, LONG_LINE_MAX, NULL);
443 if (r < 0)
444 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
445 if (r == 0)
446 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
447
448 for (;;) {
449 _cleanup_free_ char *line = NULL;
450 char *p;
451
452 r = read_line(f, LONG_LINE_MAX, &line);
453 if (r < 0)
454 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
455 if (r == 0) /* EOF */
456 break;
457
458 p = strchr(line, ':');
459 if (!p)
460 continue;
461
462 if (strlen(p) < 37)
463 continue;
464
465 p += 37;
466 p += strspn(p, WHITESPACE);
467 p += strcspn(p, WHITESPACE); /* skip one more word */
468 p += strspn(p, WHITESPACE);
469
470 if (!path_is_absolute(p))
471 continue;
472
473 r = set_put_strdup_full(&sockets, &path_hash_ops_free, p);
474 if (r < 0)
475 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
476 }
477
478 unix_sockets = TAKE_PTR(sockets);
479 return 1;
480 }
481
482 static bool unix_socket_alive(const char *fn) {
483 assert(fn);
484
485 if (load_unix_sockets() < 0)
486 return true; /* We don't know, so assume yes */
487
488 return set_contains(unix_sockets, fn);
489 }
490
491 /* Accessors for the argument in binary format */
492 static const void* item_binary_argument(const Item *i) {
493 assert(i);
494 return i->binary_argument ?: i->argument;
495 }
496
497 static size_t item_binary_argument_size(const Item *i) {
498 assert(i);
499 return i->binary_argument ? i->binary_argument_size : strlen_ptr(i->argument);
500 }
501
502 static DIR* xopendirat_nomod(int dirfd, const char *path) {
503 DIR *dir;
504
505 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
506 if (dir)
507 return dir;
508
509 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
510 if (errno != EPERM)
511 return NULL;
512
513 dir = xopendirat(dirfd, path, O_NOFOLLOW);
514 if (!dir)
515 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
516
517 return dir;
518 }
519
520 static DIR* opendir_nomod(const char *path) {
521 return xopendirat_nomod(AT_FDCWD, path);
522 }
523
524 static inline nsec_t load_statx_timestamp_nsec(const struct statx_timestamp *ts) {
525 assert(ts);
526
527 if (ts->tv_sec < 0)
528 return NSEC_INFINITY;
529
530 if ((nsec_t) ts->tv_sec >= (UINT64_MAX - ts->tv_nsec) / NSEC_PER_SEC)
531 return NSEC_INFINITY;
532
533 return ts->tv_sec * NSEC_PER_SEC + ts->tv_nsec;
534 }
535
536 static bool needs_cleanup(
537 nsec_t atime,
538 nsec_t btime,
539 nsec_t ctime,
540 nsec_t mtime,
541 nsec_t cutoff,
542 const char *sub_path,
543 AgeBy age_by,
544 bool is_dir) {
545
546 if (FLAGS_SET(age_by, AGE_BY_MTIME) && mtime != NSEC_INFINITY && mtime >= cutoff) {
547 /* Follows spelling in stat(1). */
548 log_debug("%s \"%s\": modify time %s is too new.",
549 is_dir ? "Directory" : "File",
550 sub_path,
551 FORMAT_TIMESTAMP_STYLE(mtime / NSEC_PER_USEC, TIMESTAMP_US));
552
553 return false;
554 }
555
556 if (FLAGS_SET(age_by, AGE_BY_ATIME) && atime != NSEC_INFINITY && atime >= cutoff) {
557 log_debug("%s \"%s\": access time %s is too new.",
558 is_dir ? "Directory" : "File",
559 sub_path,
560 FORMAT_TIMESTAMP_STYLE(atime / NSEC_PER_USEC, TIMESTAMP_US));
561
562 return false;
563 }
564
565 /*
566 * Note: Unless explicitly specified by the user, "ctime" is ignored
567 * by default for directories, because we change it when deleting.
568 */
569 if (FLAGS_SET(age_by, AGE_BY_CTIME) && ctime != NSEC_INFINITY && ctime >= cutoff) {
570 log_debug("%s \"%s\": change time %s is too new.",
571 is_dir ? "Directory" : "File",
572 sub_path,
573 FORMAT_TIMESTAMP_STYLE(ctime / NSEC_PER_USEC, TIMESTAMP_US));
574
575 return false;
576 }
577
578 if (FLAGS_SET(age_by, AGE_BY_BTIME) && btime != NSEC_INFINITY && btime >= cutoff) {
579 log_debug("%s \"%s\": birth time %s is too new.",
580 is_dir ? "Directory" : "File",
581 sub_path,
582 FORMAT_TIMESTAMP_STYLE(btime / NSEC_PER_USEC, TIMESTAMP_US));
583
584 return false;
585 }
586
587 return true;
588 }
589
590 static int dir_cleanup(
591 Item *i,
592 const char *p,
593 DIR *d,
594 nsec_t self_atime_nsec,
595 nsec_t self_mtime_nsec,
596 nsec_t cutoff_nsec,
597 dev_t rootdev_major,
598 dev_t rootdev_minor,
599 bool mountpoint,
600 int maxdepth,
601 bool keep_this_level,
602 AgeBy age_by_file,
603 AgeBy age_by_dir) {
604
605 bool deleted = false;
606 int r = 0;
607
608 FOREACH_DIRENT_ALL(de, d, break) {
609 _cleanup_free_ char *sub_path = NULL;
610 nsec_t atime_nsec, mtime_nsec, ctime_nsec, btime_nsec;
611
612 if (dot_or_dot_dot(de->d_name))
613 continue;
614
615 /* If statx() is supported, use it. It's preferable over fstatat() since it tells us
616 * explicitly where we are looking at a mount point, for free as side information. Determining
617 * the same information without statx() is hard, see the complexity of path_is_mount_point(),
618 * and also much slower as it requires a number of syscalls instead of just one. Hence, when
619 * we have modern statx() we use it instead of fstat() and do proper mount point checks,
620 * while on older kernels's well do traditional st_dev based detection of mount points.
621 *
622 * Using statx() for detecting mount points also has the benfit that we handle weird file
623 * systems such as overlayfs better where each file is originating from a different
624 * st_dev. */
625
626 STRUCT_STATX_DEFINE(sx);
627
628 r = statx_fallback(
629 dirfd(d), de->d_name,
630 AT_SYMLINK_NOFOLLOW|AT_NO_AUTOMOUNT,
631 STATX_TYPE|STATX_MODE|STATX_UID|STATX_ATIME|STATX_MTIME|STATX_CTIME|STATX_BTIME,
632 &sx);
633 if (r == -ENOENT)
634 continue;
635 if (r < 0) {
636 /* FUSE, NFS mounts, SELinux might return EACCES */
637 r = log_full_errno(r == -EACCES ? LOG_DEBUG : LOG_ERR, r,
638 "statx(%s/%s) failed: %m", p, de->d_name);
639 continue;
640 }
641
642 if (FLAGS_SET(sx.stx_attributes_mask, STATX_ATTR_MOUNT_ROOT)) {
643 /* Yay, we have the mount point API, use it */
644 if (FLAGS_SET(sx.stx_attributes, STATX_ATTR_MOUNT_ROOT)) {
645 log_debug("Ignoring \"%s/%s\": different mount points.", p, de->d_name);
646 continue;
647 }
648 } else {
649 /* So we might have statx() but the STATX_ATTR_MOUNT_ROOT flag is not supported, fall
650 * back to traditional stx_dev checking. */
651 if (sx.stx_dev_major != rootdev_major ||
652 sx.stx_dev_minor != rootdev_minor) {
653 log_debug("Ignoring \"%s/%s\": different filesystem.", p, de->d_name);
654 continue;
655 }
656
657 /* Try to detect bind mounts of the same filesystem instance; they do not differ in device
658 * major/minors. This type of query is not supported on all kernels or filesystem types
659 * though. */
660 if (S_ISDIR(sx.stx_mode)) {
661 int q;
662
663 q = fd_is_mount_point(dirfd(d), de->d_name, 0);
664 if (q < 0)
665 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, de->d_name);
666 else if (q > 0) {
667 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, de->d_name);
668 continue;
669 }
670 }
671 }
672
673 atime_nsec = FLAGS_SET(sx.stx_mask, STATX_ATIME) ? load_statx_timestamp_nsec(&sx.stx_atime) : 0;
674 mtime_nsec = FLAGS_SET(sx.stx_mask, STATX_MTIME) ? load_statx_timestamp_nsec(&sx.stx_mtime) : 0;
675 ctime_nsec = FLAGS_SET(sx.stx_mask, STATX_CTIME) ? load_statx_timestamp_nsec(&sx.stx_ctime) : 0;
676 btime_nsec = FLAGS_SET(sx.stx_mask, STATX_BTIME) ? load_statx_timestamp_nsec(&sx.stx_btime) : 0;
677
678 sub_path = path_join(p, de->d_name);
679 if (!sub_path) {
680 r = log_oom();
681 goto finish;
682 }
683
684 /* Is there an item configured for this path? */
685 if (ordered_hashmap_get(items, sub_path)) {
686 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
687 continue;
688 }
689
690 if (find_glob(globs, sub_path)) {
691 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
692 continue;
693 }
694
695 if (S_ISDIR(sx.stx_mode)) {
696 _cleanup_closedir_ DIR *sub_dir = NULL;
697
698 if (mountpoint &&
699 streq(de->d_name, "lost+found") &&
700 sx.stx_uid == 0) {
701 log_debug("Ignoring directory \"%s\".", sub_path);
702 continue;
703 }
704
705 if (maxdepth <= 0)
706 log_warning("Reached max depth on \"%s\".", sub_path);
707 else {
708 int q;
709
710 sub_dir = xopendirat_nomod(dirfd(d), de->d_name);
711 if (!sub_dir) {
712 if (errno != ENOENT)
713 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
714
715 continue;
716 }
717
718 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
719 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
720 continue;
721 }
722
723 q = dir_cleanup(i,
724 sub_path, sub_dir,
725 atime_nsec, mtime_nsec, cutoff_nsec,
726 rootdev_major, rootdev_minor,
727 false, maxdepth-1, false,
728 age_by_file, age_by_dir);
729 if (q < 0)
730 r = q;
731 }
732
733 /* Note: if you are wondering why we don't support the sticky bit for excluding
734 * directories from cleaning like we do it for other file system objects: well, the
735 * sticky bit already has a meaning for directories, so we don't want to overload
736 * that. */
737
738 if (keep_this_level) {
739 log_debug("Keeping directory \"%s\".", sub_path);
740 continue;
741 }
742
743 /*
744 * Check the file timestamps of an entry against the
745 * given cutoff time; delete if it is older.
746 */
747 if (!needs_cleanup(atime_nsec, btime_nsec, ctime_nsec, mtime_nsec,
748 cutoff_nsec, sub_path, age_by_dir, true))
749 continue;
750
751 log_debug("Removing directory \"%s\".", sub_path);
752 if (unlinkat(dirfd(d), de->d_name, AT_REMOVEDIR) < 0)
753 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
754 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
755
756 } else {
757 /* Skip files for which the sticky bit is set. These are semantics we define, and are
758 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
759 if (sx.stx_mode & S_ISVTX) {
760 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
761 continue;
762 }
763
764 if (mountpoint &&
765 S_ISREG(sx.stx_mode) &&
766 sx.stx_uid == 0 &&
767 STR_IN_SET(de->d_name,
768 ".journal",
769 "aquota.user",
770 "aquota.group")) {
771 log_debug("Skipping \"%s\".", sub_path);
772 continue;
773 }
774
775 /* Ignore sockets that are listed in /proc/net/unix */
776 if (S_ISSOCK(sx.stx_mode) && unix_socket_alive(sub_path)) {
777 log_debug("Skipping \"%s\": live socket.", sub_path);
778 continue;
779 }
780
781 /* Ignore device nodes */
782 if (S_ISCHR(sx.stx_mode) || S_ISBLK(sx.stx_mode)) {
783 log_debug("Skipping \"%s\": a device.", sub_path);
784 continue;
785 }
786
787 /* Keep files on this level around if this is requested */
788 if (keep_this_level) {
789 log_debug("Keeping \"%s\".", sub_path);
790 continue;
791 }
792
793 if (!needs_cleanup(atime_nsec, btime_nsec, ctime_nsec, mtime_nsec,
794 cutoff_nsec, sub_path, age_by_file, false))
795 continue;
796
797 log_debug("Removing \"%s\".", sub_path);
798 if (unlinkat(dirfd(d), de->d_name, 0) < 0)
799 if (errno != ENOENT)
800 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
801
802 deleted = true;
803 }
804 }
805
806 finish:
807 if (deleted) {
808 struct timespec ts[2];
809
810 log_debug("Restoring access and modification time on \"%s\": %s, %s",
811 p,
812 FORMAT_TIMESTAMP_STYLE(self_atime_nsec / NSEC_PER_USEC, TIMESTAMP_US),
813 FORMAT_TIMESTAMP_STYLE(self_mtime_nsec / NSEC_PER_USEC, TIMESTAMP_US));
814
815 timespec_store_nsec(ts + 0, self_atime_nsec);
816 timespec_store_nsec(ts + 1, self_mtime_nsec);
817
818 /* Restore original directory timestamps */
819 if (futimens(dirfd(d), ts) < 0)
820 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
821 }
822
823 return r;
824 }
825
826 static bool dangerous_hardlinks(void) {
827 _cleanup_free_ char *value = NULL;
828 static int cached = -1;
829 int r;
830
831 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
832 * what the upstream default is. */
833
834 if (cached >= 0)
835 return cached;
836
837 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
838 if (r < 0) {
839 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
840 return true;
841 }
842
843 r = parse_boolean(value);
844 if (r < 0) {
845 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
846 return true;
847 }
848
849 cached = r == 0;
850 return cached;
851 }
852
853 static bool hardlink_vulnerable(const struct stat *st) {
854 assert(st);
855
856 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
857 }
858
859 static mode_t process_mask_perms(mode_t mode, mode_t current) {
860
861 if ((current & 0111) == 0)
862 mode &= ~0111;
863 if ((current & 0222) == 0)
864 mode &= ~0222;
865 if ((current & 0444) == 0)
866 mode &= ~0444;
867 if (!S_ISDIR(current))
868 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
869
870 return mode;
871 }
872
873 static int fd_set_perms(
874 Item *i,
875 int fd,
876 const char *path,
877 const struct stat *st,
878 CreationMode creation) {
879
880 bool do_chown, do_chmod;
881 struct stat stbuf;
882 mode_t new_mode;
883 uid_t new_uid;
884 gid_t new_gid;
885 int r;
886
887 assert(i);
888 assert(fd >= 0);
889 assert(path);
890
891 if (!i->mode_set && !i->uid_set && !i->gid_set)
892 goto shortcut;
893
894 if (!st) {
895 if (fstat(fd, &stbuf) < 0)
896 return log_error_errno(errno, "fstat(%s) failed: %m", path);
897 st = &stbuf;
898 }
899
900 if (hardlink_vulnerable(st))
901 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
902 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
903 path);
904 new_uid = i->uid_set && (creation != CREATION_EXISTING || !i->uid_only_create) ? i->uid : st->st_uid;
905 new_gid = i->gid_set && (creation != CREATION_EXISTING || !i->gid_only_create) ? i->gid : st->st_gid;
906
907 /* Do we need a chown()? */
908 do_chown = (new_uid != st->st_uid) || (new_gid != st->st_gid);
909
910 /* Calculate the mode to apply */
911 new_mode = i->mode_set && (creation != CREATION_EXISTING || !i->mode_only_create) ?
912 (i->mask_perms ? process_mask_perms(i->mode, st->st_mode) : i->mode) :
913 (st->st_mode & 07777);
914
915 do_chmod = ((new_mode ^ st->st_mode) & 07777) != 0;
916
917 if (do_chmod && do_chown) {
918 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
919 * the new mode. That way there's no time window where the file exists under the old owner
920 * with more than the old access modes — and not under the new owner with more than the new
921 * access modes either. */
922
923 if (S_ISLNK(st->st_mode))
924 log_debug("Skipping temporary mode fix for symlink %s.", path);
925 else {
926 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
927
928 if (((m ^ st->st_mode) & 07777) == 0)
929 log_debug("\"%s\" matches temporary mode %o already.", path, m);
930 else {
931 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
932 r = fchmod_opath(fd, m);
933 if (r < 0)
934 return log_error_errno(r, "fchmod() of %s failed: %m", path);
935 }
936 }
937 }
938
939 if (do_chown) {
940 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT, path, new_uid, new_gid);
941
942 if (fchownat(fd, "",
943 new_uid != st->st_uid ? new_uid : UID_INVALID,
944 new_gid != st->st_gid ? new_gid : GID_INVALID,
945 AT_EMPTY_PATH) < 0)
946 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
947 }
948
949 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
950 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
951 if (do_chmod || do_chown) {
952 if (S_ISLNK(st->st_mode))
953 log_debug("Skipping mode fix for symlink %s.", path);
954 else {
955 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
956 r = fchmod_opath(fd, new_mode);
957 if (r < 0)
958 return log_error_errno(r, "fchmod() of %s failed: %m", path);
959 }
960 }
961
962 shortcut:
963 return label_fix_full(fd, /* inode_path= */ NULL, /* label_path= */ path, 0);
964 }
965
966 static int path_open_parent_safe(const char *path, bool allow_failure) {
967 _cleanup_free_ char *dn = NULL;
968 int r, fd;
969
970 if (!path_is_normalized(path))
971 return log_full_errno(allow_failure ? LOG_INFO : LOG_ERR,
972 SYNTHETIC_ERRNO(EINVAL),
973 "Failed to open parent of '%s': path not normalized%s.",
974 path,
975 allow_failure ? ", ignoring" : "");
976
977 r = path_extract_directory(path, &dn);
978 if (r < 0)
979 return log_full_errno(allow_failure ? LOG_INFO : LOG_ERR,
980 r,
981 "Unable to determine parent directory of '%s'%s: %m",
982 path,
983 allow_failure ? ", ignoring" : "");
984
985 r = chase_symlinks(dn, arg_root, allow_failure ? CHASE_SAFE : CHASE_SAFE|CHASE_WARN, NULL, &fd);
986 if (r == -ENOLINK) /* Unsafe symlink: already covered by CHASE_WARN */
987 return r;
988 if (r < 0)
989 return log_full_errno(allow_failure ? LOG_INFO : LOG_ERR,
990 r,
991 "Failed to open path '%s'%s: %m",
992 dn,
993 allow_failure ? ", ignoring" : "");
994
995 return fd;
996 }
997
998 static int path_open_safe(const char *path) {
999 int r, fd;
1000
1001 /* path_open_safe() returns a file descriptor opened with O_PATH after
1002 * verifying that the path doesn't contain unsafe transitions, except
1003 * for its final component as the function does not follow symlink. */
1004
1005 assert(path);
1006
1007 if (!path_is_normalized(path))
1008 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to open invalid path '%s'.", path);
1009
1010 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
1011 if (r == -ENOLINK)
1012 return r; /* Unsafe symlink: already covered by CHASE_WARN */
1013 if (r < 0)
1014 return log_error_errno(r, "Failed to open path %s: %m", path);
1015
1016 return fd;
1017 }
1018
1019 static int path_set_perms(
1020 Item *i,
1021 const char *path,
1022 CreationMode creation) {
1023
1024 _cleanup_close_ int fd = -EBADF;
1025
1026 assert(i);
1027 assert(path);
1028
1029 fd = path_open_safe(path);
1030 if (fd < 0)
1031 return fd;
1032
1033 return fd_set_perms(i, fd, path, /* st= */ NULL, creation);
1034 }
1035
1036 static int parse_xattrs_from_arg(Item *i) {
1037 const char *p;
1038 int r;
1039
1040 assert(i);
1041
1042 assert_se(p = i->argument);
1043 for (;;) {
1044 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
1045
1046 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
1047 if (r < 0)
1048 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
1049 if (r <= 0)
1050 break;
1051
1052 r = split_pair(xattr, "=", &name, &value);
1053 if (r < 0) {
1054 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
1055 continue;
1056 }
1057
1058 if (isempty(name) || isempty(value)) {
1059 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
1060 continue;
1061 }
1062
1063 if (strv_push_pair(&i->xattrs, name, value) < 0)
1064 return log_oom();
1065
1066 name = value = NULL;
1067 }
1068
1069 return 0;
1070 }
1071
1072 static int fd_set_xattrs(
1073 Item *i,
1074 int fd,
1075 const char *path,
1076 const struct stat *st,
1077 CreationMode creation) {
1078
1079 assert(i);
1080 assert(fd >= 0);
1081 assert(path);
1082
1083 STRV_FOREACH_PAIR(name, value, i->xattrs) {
1084 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
1085 if (setxattr(FORMAT_PROC_FD_PATH(fd), *name, *value, strlen(*value), 0) < 0)
1086 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
1087 *name, *value, path);
1088 }
1089 return 0;
1090 }
1091
1092 static int path_set_xattrs(
1093 Item *i,
1094 const char *path,
1095 CreationMode creation) {
1096
1097 _cleanup_close_ int fd = -EBADF;
1098
1099 assert(i);
1100 assert(path);
1101
1102 fd = path_open_safe(path);
1103 if (fd < 0)
1104 return fd;
1105
1106 return fd_set_xattrs(i, fd, path, /* st = */ NULL, creation);
1107 }
1108
1109 static int parse_acls_from_arg(Item *item) {
1110 #if HAVE_ACL
1111 int r;
1112
1113 assert(item);
1114
1115 /* If append_or_force (= modify) is set, we will not modify the acl
1116 * afterwards, so the mask can be added now if necessary. */
1117
1118 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
1119 if (r < 0)
1120 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
1121 #else
1122 log_warning("ACLs are not supported. Ignoring.");
1123 #endif
1124
1125 return 0;
1126 }
1127
1128 #if HAVE_ACL
1129 static int path_set_acl(
1130 const char *path,
1131 const char *pretty,
1132 acl_type_t type,
1133 acl_t acl,
1134 bool modify) {
1135
1136 _cleanup_(acl_free_charpp) char *t = NULL;
1137 _cleanup_(acl_freep) acl_t dup = NULL;
1138 int r;
1139
1140 /* Returns 0 for success, positive error if already warned,
1141 * negative error otherwise. */
1142
1143 if (modify) {
1144 r = acls_for_file(path, type, acl, &dup);
1145 if (r < 0)
1146 return r;
1147
1148 r = calc_acl_mask_if_needed(&dup);
1149 if (r < 0)
1150 return r;
1151 } else {
1152 dup = acl_dup(acl);
1153 if (!dup)
1154 return -errno;
1155
1156 /* the mask was already added earlier if needed */
1157 }
1158
1159 r = add_base_acls_if_needed(&dup, path);
1160 if (r < 0)
1161 return r;
1162
1163 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
1164 log_debug("Setting %s ACL %s on %s.",
1165 type == ACL_TYPE_ACCESS ? "access" : "default",
1166 strna(t), pretty);
1167
1168 r = acl_set_file(path, type, dup);
1169 if (r < 0) {
1170 if (ERRNO_IS_NOT_SUPPORTED(errno))
1171 /* No error if filesystem doesn't support ACLs. Return negative. */
1172 return -errno;
1173 else
1174 /* Return positive to indicate we already warned */
1175 return -log_error_errno(errno,
1176 "Setting %s ACL \"%s\" on %s failed: %m",
1177 type == ACL_TYPE_ACCESS ? "access" : "default",
1178 strna(t), pretty);
1179 }
1180 return 0;
1181 }
1182 #endif
1183
1184 static int fd_set_acls(
1185 Item *item,
1186 int fd,
1187 const char *path,
1188 const struct stat *st,
1189 CreationMode creation) {
1190
1191 int r = 0;
1192 #if HAVE_ACL
1193 struct stat stbuf;
1194
1195 assert(item);
1196 assert(fd >= 0);
1197 assert(path);
1198
1199 if (!st) {
1200 if (fstat(fd, &stbuf) < 0)
1201 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1202 st = &stbuf;
1203 }
1204
1205 if (hardlink_vulnerable(st))
1206 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1207 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1208 path);
1209
1210 if (S_ISLNK(st->st_mode)) {
1211 log_debug("Skipping ACL fix for symlink %s.", path);
1212 return 0;
1213 }
1214
1215 if (item->acl_access)
1216 r = path_set_acl(FORMAT_PROC_FD_PATH(fd), path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
1217
1218 /* set only default acls to folders */
1219 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
1220 r = path_set_acl(FORMAT_PROC_FD_PATH(fd), path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
1221
1222 if (ERRNO_IS_NOT_SUPPORTED(r)) {
1223 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1224 return 0;
1225 }
1226
1227 if (r > 0)
1228 return -r; /* already warned */
1229
1230 /* The above procfs paths don't work if /proc is not mounted. */
1231 if (r == -ENOENT && proc_mounted() == 0)
1232 r = -ENOSYS;
1233
1234 if (r < 0)
1235 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1236 #endif
1237 return r;
1238 }
1239
1240 static int path_set_acls(Item *item, const char *path, CreationMode creation) {
1241 int r = 0;
1242 #if HAVE_ACL
1243 _cleanup_close_ int fd = -EBADF;
1244
1245 assert(item);
1246 assert(path);
1247
1248 fd = path_open_safe(path);
1249 if (fd < 0)
1250 return fd;
1251
1252 r = fd_set_acls(item, fd, path, /* st= */ NULL, creation);
1253 #endif
1254 return r;
1255 }
1256
1257 static int parse_attribute_from_arg(Item *item) {
1258
1259 static const struct {
1260 char character;
1261 unsigned value;
1262 } attributes[] = {
1263 { 'A', FS_NOATIME_FL }, /* do not update atime */
1264 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1265 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1266 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1267 { 'c', FS_COMPR_FL }, /* Compress file */
1268 { 'd', FS_NODUMP_FL }, /* do not dump file */
1269 { 'e', FS_EXTENT_FL }, /* Extents */
1270 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1271 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1272 { 's', FS_SECRM_FL }, /* Secure deletion */
1273 { 'u', FS_UNRM_FL }, /* Undelete */
1274 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
1275 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
1276 { 'C', FS_NOCOW_FL }, /* Do not cow file */
1277 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
1278 };
1279
1280 enum {
1281 MODE_ADD,
1282 MODE_DEL,
1283 MODE_SET
1284 } mode = MODE_ADD;
1285
1286 unsigned value = 0, mask = 0;
1287 const char *p;
1288
1289 assert(item);
1290
1291 p = item->argument;
1292 if (p) {
1293 if (*p == '+') {
1294 mode = MODE_ADD;
1295 p++;
1296 } else if (*p == '-') {
1297 mode = MODE_DEL;
1298 p++;
1299 } else if (*p == '=') {
1300 mode = MODE_SET;
1301 p++;
1302 }
1303 }
1304
1305 if (isempty(p) && mode != MODE_SET)
1306 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1307 "Setting file attribute on '%s' needs an attribute specification.",
1308 item->path);
1309
1310 for (; p && *p ; p++) {
1311 unsigned i, v;
1312
1313 for (i = 0; i < ELEMENTSOF(attributes); i++)
1314 if (*p == attributes[i].character)
1315 break;
1316
1317 if (i >= ELEMENTSOF(attributes))
1318 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1319 "Unknown file attribute '%c' on '%s'.",
1320 *p, item->path);
1321
1322 v = attributes[i].value;
1323
1324 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
1325
1326 mask |= v;
1327 }
1328
1329 if (mode == MODE_SET)
1330 mask |= CHATTR_ALL_FL;
1331
1332 assert(mask != 0);
1333
1334 item->attribute_mask = mask;
1335 item->attribute_value = value;
1336 item->attribute_set = true;
1337
1338 return 0;
1339 }
1340
1341 static int fd_set_attribute(
1342 Item *item,
1343 int fd,
1344 const char *path,
1345 const struct stat *st,
1346 CreationMode creation) {
1347
1348 _cleanup_close_ int procfs_fd = -EBADF;
1349 struct stat stbuf;
1350 unsigned f;
1351 int r;
1352
1353 assert(item);
1354 assert(fd >= 0);
1355 assert(path);
1356
1357 if (!item->attribute_set || item->attribute_mask == 0)
1358 return 0;
1359
1360 if (!st) {
1361 if (fstat(fd, &stbuf) < 0)
1362 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1363 st = &stbuf;
1364 }
1365
1366 /* Issuing the file attribute ioctls on device nodes is not safe, as that will be delivered to the
1367 * drivers, not the file system containing the device node. */
1368 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1369 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1370 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1371 path);
1372
1373 f = item->attribute_value & item->attribute_mask;
1374
1375 /* Mask away directory-specific flags */
1376 if (!S_ISDIR(st->st_mode))
1377 f &= ~FS_DIRSYNC_FL;
1378
1379 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
1380 if (procfs_fd < 0)
1381 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
1382
1383 unsigned previous, current;
1384 r = chattr_full(NULL, procfs_fd, f, item->attribute_mask, &previous, &current, CHATTR_FALLBACK_BITWISE);
1385 if (r == -ENOANO)
1386 log_warning("Cannot set file attributes for '%s', maybe due to incompatibility in specified attributes, "
1387 "previous=0x%08x, current=0x%08x, expected=0x%08x, ignoring.",
1388 path, previous, current, (previous & ~item->attribute_mask) | (f & item->attribute_mask));
1389 else if (r < 0)
1390 log_full_errno(ERRNO_IS_NOT_SUPPORTED(r) ? LOG_DEBUG : LOG_WARNING, r,
1391 "Cannot set file attributes for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
1392 path, item->attribute_value, item->attribute_mask);
1393
1394 return 0;
1395 }
1396
1397 static int path_set_attribute(Item *item, const char *path, CreationMode creation) {
1398 _cleanup_close_ int fd = -EBADF;
1399
1400 if (!item->attribute_set || item->attribute_mask == 0)
1401 return 0;
1402
1403 fd = path_open_safe(path);
1404 if (fd < 0)
1405 return fd;
1406
1407 return fd_set_attribute(item, fd, path, /* st= */ NULL, creation);
1408 }
1409
1410 static int write_argument_data(Item *i, int fd, const char *path) {
1411 int r;
1412
1413 assert(i);
1414 assert(fd >= 0);
1415 assert(path);
1416
1417 if (item_binary_argument_size(i) == 0)
1418 return 0;
1419
1420 assert(item_binary_argument(i));
1421
1422 log_debug("Writing to \"%s\".", path);
1423
1424 r = loop_write(fd, item_binary_argument(i), item_binary_argument_size(i), /* do_poll= */ false);
1425 if (r < 0)
1426 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1427
1428 return 0;
1429 }
1430
1431 static int write_one_file(Item *i, const char *path, CreationMode creation) {
1432 _cleanup_close_ int fd = -EBADF, dir_fd = -EBADF;
1433 _cleanup_free_ char *bn = NULL;
1434 int r;
1435
1436 assert(i);
1437 assert(path);
1438 assert(i->type == WRITE_FILE);
1439
1440 r = path_extract_filename(path, &bn);
1441 if (r < 0)
1442 return log_error_errno(r, "Failed to extract filename from path '%s': %m", path);
1443 if (r == O_DIRECTORY)
1444 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for writing, is a directory.", path);
1445
1446 /* Validate the path and keep the fd on the directory for opening the file so we're sure that it
1447 * can't be changed behind our back. */
1448 dir_fd = path_open_parent_safe(path, i->allow_failure);
1449 if (dir_fd < 0)
1450 return dir_fd;
1451
1452 /* Follows symlinks */
1453 fd = openat(dir_fd, bn,
1454 O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY|(i->append_or_force ? O_APPEND : 0),
1455 i->mode);
1456 if (fd < 0) {
1457 if (errno == ENOENT) {
1458 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1459 return 0;
1460 }
1461
1462 if (i->allow_failure)
1463 return log_debug_errno(errno, "Failed to open file \"%s\", ignoring: %m", path);
1464
1465 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1466 }
1467
1468 /* 'w' is allowed to write into any kind of files. */
1469
1470 r = write_argument_data(i, fd, path);
1471 if (r < 0)
1472 return r;
1473
1474 return fd_set_perms(i, fd, path, NULL, creation);
1475 }
1476
1477 static int create_file(Item *i, const char *path) {
1478 _cleanup_close_ int fd = -EBADF, dir_fd = -EBADF;
1479 _cleanup_free_ char *bn = NULL;
1480 struct stat stbuf, *st = NULL;
1481 CreationMode creation;
1482 int r = 0;
1483
1484 assert(i);
1485 assert(path);
1486 assert(i->type == CREATE_FILE);
1487
1488 /* 'f' operates on regular files exclusively. */
1489
1490 r = path_extract_filename(path, &bn);
1491 if (r < 0)
1492 return log_error_errno(r, "Failed to extract filename from path '%s': %m", path);
1493 if (r == O_DIRECTORY)
1494 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for writing, is a directory.", path);
1495
1496 /* Validate the path and keep the fd on the directory for opening the file so we're sure that it
1497 * can't be changed behind our back. */
1498 dir_fd = path_open_parent_safe(path, i->allow_failure);
1499 if (dir_fd < 0)
1500 return dir_fd;
1501
1502 WITH_UMASK(0000) {
1503 mac_selinux_create_file_prepare(path, S_IFREG);
1504 fd = RET_NERRNO(openat(dir_fd, bn, O_CREAT|O_EXCL|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode));
1505 mac_selinux_create_file_clear();
1506 }
1507
1508 if (fd < 0) {
1509 /* Even on a read-only filesystem, open(2) returns EEXIST if the file already exists. It
1510 * returns EROFS only if it needs to create the file. */
1511 if (fd != -EEXIST)
1512 return log_error_errno(fd, "Failed to create file %s: %m", path);
1513
1514 /* Re-open the file. At that point it must exist since open(2) failed with EEXIST. We still
1515 * need to check if the perms/mode need to be changed. For read-only filesystems, we let
1516 * fd_set_perms() report the error if the perms need to be modified. */
1517 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1518 if (fd < 0)
1519 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1520
1521 if (fstat(fd, &stbuf) < 0)
1522 return log_error_errno(errno, "stat(%s) failed: %m", path);
1523
1524 if (!S_ISREG(stbuf.st_mode))
1525 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1526 "%s exists and is not a regular file.",
1527 path);
1528
1529 st = &stbuf;
1530 creation = CREATION_EXISTING;
1531 } else {
1532 r = write_argument_data(i, fd, path);
1533 if (r < 0)
1534 return r;
1535
1536 creation = CREATION_NORMAL;
1537 }
1538
1539 return fd_set_perms(i, fd, path, st, creation);
1540 }
1541
1542 static int truncate_file(Item *i, const char *path) {
1543 _cleanup_close_ int fd = -EBADF, dir_fd = -EBADF;
1544 _cleanup_free_ char *bn = NULL;
1545 struct stat stbuf, *st = NULL;
1546 CreationMode creation;
1547 bool erofs = false;
1548 int r = 0;
1549
1550 assert(i);
1551 assert(path);
1552 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
1553
1554 /* We want to operate on regular file exclusively especially since O_TRUNC is unspecified if the file
1555 * is neither a regular file nor a fifo nor a terminal device. Therefore we first open the file and
1556 * make sure it's a regular one before truncating it. */
1557
1558 r = path_extract_filename(path, &bn);
1559 if (r < 0)
1560 return log_error_errno(r, "Failed to extract filename from path '%s': %m", path);
1561 if (r == O_DIRECTORY)
1562 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for truncation, is a directory.", path);
1563
1564 /* Validate the path and keep the fd on the directory for opening the file so we're sure that it
1565 * can't be changed behind our back. */
1566 dir_fd = path_open_parent_safe(path, i->allow_failure);
1567 if (dir_fd < 0)
1568 return dir_fd;
1569
1570 creation = CREATION_EXISTING;
1571 fd = RET_NERRNO(openat(dir_fd, bn, O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode));
1572 if (fd == -ENOENT) {
1573 creation = CREATION_NORMAL; /* Didn't work without O_CREATE, try again with */
1574
1575 WITH_UMASK(0000) {
1576 mac_selinux_create_file_prepare(path, S_IFREG);
1577 fd = RET_NERRNO(openat(dir_fd, bn, O_CREAT|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode));
1578 mac_selinux_create_file_clear();
1579 }
1580 }
1581
1582 if (fd < 0) {
1583 if (fd != -EROFS)
1584 return log_error_errno(fd, "Failed to open/create file %s: %m", path);
1585
1586 /* On a read-only filesystem, we don't want to fail if the target is already empty and the
1587 * perms are set. So we still proceed with the sanity checks and let the remaining operations
1588 * fail with EROFS if they try to modify the target file. */
1589
1590 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1591 if (fd < 0) {
1592 if (errno == ENOENT)
1593 return log_error_errno(SYNTHETIC_ERRNO(EROFS),
1594 "Cannot create file %s on a read-only file system.",
1595 path);
1596
1597 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1598 }
1599
1600 erofs = true;
1601 creation = CREATION_EXISTING;
1602 }
1603
1604 if (fstat(fd, &stbuf) < 0)
1605 return log_error_errno(errno, "stat(%s) failed: %m", path);
1606
1607 if (!S_ISREG(stbuf.st_mode))
1608 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1609 "%s exists and is not a regular file.",
1610 path);
1611
1612 if (stbuf.st_size > 0) {
1613 if (ftruncate(fd, 0) < 0) {
1614 r = erofs ? -EROFS : -errno;
1615 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1616 }
1617 } else
1618 st = &stbuf;
1619
1620 log_debug("\"%s\" has been created.", path);
1621
1622 if (item_binary_argument(i)) {
1623 r = write_argument_data(i, fd, path);
1624 if (r < 0)
1625 return r;
1626 }
1627
1628 return fd_set_perms(i, fd, path, st, creation);
1629 }
1630
1631 static int copy_files(Item *i) {
1632 _cleanup_close_ int dfd = -EBADF, fd = -EBADF;
1633 _cleanup_free_ char *bn = NULL;
1634 struct stat st, a;
1635 int r;
1636
1637 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1638
1639 r = path_extract_filename(i->path, &bn);
1640 if (r < 0)
1641 return log_error_errno(r, "Failed to extract filename from path '%s': %m", i->path);
1642
1643 /* Validate the path and use the returned directory fd for copying the target so we're sure that the
1644 * path can't be changed behind our back. */
1645 dfd = path_open_parent_safe(i->path, i->allow_failure);
1646 if (dfd < 0)
1647 return dfd;
1648
1649 r = copy_tree_at(AT_FDCWD, i->argument,
1650 dfd, bn,
1651 i->uid_set ? i->uid : UID_INVALID,
1652 i->gid_set ? i->gid : GID_INVALID,
1653 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE | COPY_HARDLINKS,
1654 NULL);
1655
1656 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1657 if (fd < 0) {
1658 if (r < 0) /* Look at original error first */
1659 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1660
1661 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1662 }
1663
1664 if (fstat(fd, &st) < 0)
1665 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
1666
1667 if (stat(i->argument, &a) < 0)
1668 return log_error_errno(errno, "Failed to stat(%s): %m", i->argument);
1669
1670 if (((st.st_mode ^ a.st_mode) & S_IFMT) != 0) {
1671 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1672 return 0;
1673 }
1674
1675 return fd_set_perms(i, fd, i->path, &st, _CREATION_MODE_INVALID);
1676 }
1677
1678 static int create_directory_or_subvolume(
1679 const char *path,
1680 mode_t mode,
1681 bool subvol,
1682 bool allow_failure,
1683 struct stat *ret_st,
1684 CreationMode *ret_creation) {
1685
1686 _cleanup_free_ char *bn = NULL;
1687 _cleanup_close_ int pfd = -EBADF;
1688 CreationMode creation;
1689 struct stat st;
1690 int r, fd;
1691
1692 assert(path);
1693
1694 r = path_extract_filename(path, &bn);
1695 if (r < 0)
1696 return log_error_errno(r, "Failed to extract filename from path '%s': %m", path);
1697
1698 pfd = path_open_parent_safe(path, allow_failure);
1699 if (pfd < 0)
1700 return pfd;
1701
1702 if (subvol) {
1703 r = getenv_bool("SYSTEMD_TMPFILES_FORCE_SUBVOL");
1704 if (r < 0) {
1705 if (r != -ENXIO) /* env var is unset */
1706 log_warning_errno(r, "Cannot parse value of $SYSTEMD_TMPFILES_FORCE_SUBVOL, ignoring.");
1707 r = btrfs_is_subvol(empty_to_root(arg_root)) > 0;
1708 }
1709 if (r == 0)
1710 /* Don't create a subvolume unless the root directory is one, too. We do this under
1711 * the assumption that if the root directory is just a plain directory (i.e. very
1712 * light-weight), we shouldn't try to split it up into subvolumes (i.e. more
1713 * heavy-weight). Thus, chroot() environments and suchlike will get a full brtfs
1714 * subvolume set up below their tree only if they specifically set up a btrfs
1715 * subvolume for the root dir too. */
1716
1717 subvol = false;
1718 else {
1719 WITH_UMASK((~mode) & 0777)
1720 r = btrfs_subvol_make_fd(pfd, bn);
1721 }
1722 } else
1723 r = 0;
1724
1725 if (!subvol || ERRNO_IS_NOT_SUPPORTED(r))
1726 WITH_UMASK(0000)
1727 r = mkdirat_label(pfd, bn, mode);
1728
1729 creation = r >= 0 ? CREATION_NORMAL : CREATION_EXISTING;
1730
1731 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_DIRECTORY|O_PATH);
1732 if (fd < 0) {
1733 /* We couldn't open it because it is not actually a directory? */
1734 if (errno == ENOTDIR)
1735 return log_error_errno(SYNTHETIC_ERRNO(EEXIST), "\"%s\" already exists and is not a directory.", path);
1736
1737 /* Then look at the original error */
1738 if (r < 0)
1739 return log_full_errno(allow_failure ? LOG_INFO : LOG_ERR,
1740 r,
1741 "Failed to create directory or subvolume \"%s\"%s: %m",
1742 path,
1743 allow_failure ? ", ignoring" : "");
1744
1745 return log_error_errno(errno, "Failed to open directory/subvolume we just created '%s': %m", path);
1746 }
1747
1748 if (fstat(fd, &st) < 0)
1749 return log_error_errno(errno, "Failed to fstat(%s): %m", path);
1750
1751 assert(S_ISDIR(st.st_mode)); /* we used O_DIRECTORY above */
1752
1753 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(creation), path);
1754
1755 if (ret_st)
1756 *ret_st = st;
1757 if (ret_creation)
1758 *ret_creation = creation;
1759
1760 return fd;
1761 }
1762
1763 static int create_directory(Item *i, const char *path) {
1764 _cleanup_close_ int fd = -EBADF;
1765 CreationMode creation;
1766 struct stat st;
1767
1768 assert(i);
1769 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1770
1771 fd = create_directory_or_subvolume(path, i->mode, /* subvol= */ false, i->allow_failure, &st, &creation);
1772 if (fd == -EEXIST)
1773 return 0;
1774 if (fd < 0)
1775 return fd;
1776
1777 return fd_set_perms(i, fd, path, &st, creation);
1778 }
1779
1780 static int create_subvolume(Item *i, const char *path) {
1781 _cleanup_close_ int fd = -EBADF;
1782 CreationMode creation;
1783 struct stat st;
1784 int r, q = 0;
1785
1786 assert(i);
1787 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1788
1789 fd = create_directory_or_subvolume(path, i->mode, /* subvol = */ true, i->allow_failure, &st, &creation);
1790 if (fd == -EEXIST)
1791 return 0;
1792 if (fd < 0)
1793 return fd;
1794
1795 if (creation == CREATION_NORMAL &&
1796 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
1797 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
1798 if (r == -ENOTTY)
1799 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1800 else if (r == -EROFS)
1801 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1802 else if (r == -ENOTCONN)
1803 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1804 else if (r < 0)
1805 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1806 else if (r > 0)
1807 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1808 else if (r == 0)
1809 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1810 }
1811
1812 r = fd_set_perms(i, fd, path, &st, creation);
1813 if (q < 0) /* prefer the quota change error from above */
1814 return q;
1815
1816 return r;
1817 }
1818
1819 static int empty_directory(Item *i, const char *path, CreationMode creation) {
1820 _cleanup_close_ int fd = -EBADF;
1821 struct stat st;
1822 int r;
1823
1824 assert(i);
1825 assert(i->type == EMPTY_DIRECTORY);
1826
1827 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
1828 if (r == -ENOLINK) /* Unsafe symlink: already covered by CHASE_WARN */
1829 return r;
1830 if (r == -ENOENT) {
1831 /* Option "e" operates only on existing objects. Do not print errors about non-existent files
1832 * or directories */
1833 log_debug_errno(r, "Skipping missing directory: %s", path);
1834 return 0;
1835 }
1836 if (r < 0)
1837 return log_error_errno(r, "Failed to open directory '%s': %m", path);
1838
1839 if (fstat(fd, &st) < 0)
1840 return log_error_errno(errno, "Failed to fstat(%s): %m", path);
1841 if (!S_ISDIR(st.st_mode)) {
1842 log_warning("'%s' already exists and is not a directory.", path);
1843 return 0;
1844 }
1845
1846 return fd_set_perms(i, fd, path, &st, creation);
1847 }
1848
1849 static int create_device(Item *i, mode_t file_type) {
1850 _cleanup_close_ int dfd = -EBADF, fd = -EBADF;
1851 _cleanup_free_ char *bn = NULL;
1852 CreationMode creation;
1853 struct stat st;
1854 int r;
1855
1856 assert(i);
1857 assert(IN_SET(i->type, CREATE_BLOCK_DEVICE, CREATE_CHAR_DEVICE));
1858 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1859
1860 r = path_extract_filename(i->path, &bn);
1861 if (r < 0)
1862 return log_error_errno(r, "Failed to extract filename from path '%s': %m", i->path);
1863 if (r == O_DIRECTORY)
1864 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for creating device node, is a directory.", i->path);
1865
1866 /* Validate the path and use the returned directory fd for copying the target so we're sure that the
1867 * path can't be changed behind our back. */
1868 dfd = path_open_parent_safe(i->path, i->allow_failure);
1869 if (dfd < 0)
1870 return dfd;
1871
1872 WITH_UMASK(0000) {
1873 mac_selinux_create_file_prepare(i->path, file_type);
1874 r = RET_NERRNO(mknodat(dfd, bn, i->mode | file_type, i->major_minor));
1875 mac_selinux_create_file_clear();
1876 }
1877 creation = r >= 0 ? CREATION_NORMAL : CREATION_EXISTING;
1878
1879 /* Try to open the inode via O_PATH, regardless if we could create it or not. Maybe everything is in
1880 * order anyway and we hence can ignore the error to create the device node */
1881 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1882 if (fd < 0) {
1883 /* OK, so opening the inode failed, let's look at the original error then. */
1884
1885 if (r < 0) {
1886 if (ERRNO_IS_PRIVILEGE(r))
1887 goto handle_privilege;
1888
1889 return log_error_errno(r, "Failed to create device node '%s': %m", i->path);
1890 }
1891
1892 return log_error_errno(errno, "Failed to open device node '%s' we just created: %m", i->path);
1893 }
1894
1895 if (fstat(fd, &st) < 0)
1896 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
1897
1898 if (((st.st_mode ^ file_type) & S_IFMT) != 0) {
1899
1900 if (i->append_or_force) {
1901 fd = safe_close(fd);
1902
1903 WITH_UMASK(0000) {
1904 mac_selinux_create_file_prepare(i->path, file_type);
1905 r = mknodat_atomic(dfd, bn, i->mode | file_type, i->major_minor);
1906 mac_selinux_create_file_clear();
1907 }
1908 if (ERRNO_IS_PRIVILEGE(r))
1909 goto handle_privilege;
1910 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
1911 r = rm_rf_child(dfd, bn, REMOVE_PHYSICAL);
1912 if (r < 0)
1913 return log_error_errno(r, "rm -rf %s failed: %m", i->path);
1914
1915 mac_selinux_create_file_prepare(i->path, file_type);
1916 r = RET_NERRNO(mknodat(dfd, bn, i->mode | file_type, i->major_minor));
1917 mac_selinux_create_file_clear();
1918 }
1919 if (r < 0)
1920 return log_error_errno(r, "Failed to create device node '%s': %m", i->path);
1921
1922 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1923 if (fd < 0)
1924 return log_error_errno(errno, "Failed to open device node we just created '%s': %m", i->path);
1925
1926 /* Validate type before change ownership below */
1927 if (fstat(fd, &st) < 0)
1928 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
1929
1930 if (((st.st_mode ^ file_type) & S_IFMT) != 0)
1931 return log_error_errno(SYNTHETIC_ERRNO(EBADF), "Device node we just created is not a device node, refusing.");
1932
1933 creation = CREATION_FORCE;
1934 } else {
1935 log_warning("\"%s\" already exists and is not a device node.", i->path);
1936 return 0;
1937 }
1938 }
1939
1940 log_debug("%s %s device node \"%s\" %u:%u.",
1941 creation_mode_verb_to_string(creation),
1942 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1943 i->path, major(i->mode), minor(i->mode));
1944
1945 return fd_set_perms(i, fd, i->path, &st, creation);
1946
1947 handle_privilege:
1948 log_debug_errno(r,
1949 "We lack permissions, possibly because of cgroup configuration; "
1950 "skipping creation of device node '%s'.", i->path);
1951 return 0;
1952 }
1953
1954 static int create_fifo(Item *i) {
1955 _cleanup_close_ int pfd = -EBADF, fd = -EBADF;
1956 _cleanup_free_ char *bn = NULL;
1957 CreationMode creation;
1958 struct stat st;
1959 int r;
1960
1961 assert(i);
1962 assert(i->type == CREATE_FIFO);
1963
1964 r = path_extract_filename(i->path, &bn);
1965 if (r < 0)
1966 return log_error_errno(r, "Failed to extract filename from path '%s': %m", i->path);
1967 if (r == O_DIRECTORY)
1968 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for creating FIFO, is a directory.", i->path);
1969
1970 pfd = path_open_parent_safe(i->path, i->allow_failure);
1971 if (pfd < 0)
1972 return pfd;
1973
1974 WITH_UMASK(0000) {
1975 mac_selinux_create_file_prepare(i->path, S_IFIFO);
1976 r = RET_NERRNO(mkfifoat(pfd, bn, i->mode));
1977 mac_selinux_create_file_clear();
1978 }
1979
1980 creation = r >= 0 ? CREATION_NORMAL : CREATION_EXISTING;
1981
1982 /* Open the inode via O_PATH, regardless if we managed to create it or not. Maybe it is already the FIFO we want */
1983 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1984 if (fd < 0) {
1985 if (r < 0)
1986 return log_error_errno(r, "Failed to create FIFO %s: %m", i->path); /* original error! */
1987
1988 return log_error_errno(errno, "Failed to open FIFO we just created %s: %m", i->path);
1989 }
1990
1991 if (fstat(fd, &st) < 0)
1992 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
1993
1994 if (!S_ISFIFO(st.st_mode)) {
1995
1996 if (i->append_or_force) {
1997 fd = safe_close(fd);
1998
1999 WITH_UMASK(0000) {
2000 mac_selinux_create_file_prepare(i->path, S_IFIFO);
2001 r = mkfifoat_atomic(pfd, bn, i->mode);
2002 mac_selinux_create_file_clear();
2003 }
2004 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
2005 r = rm_rf_child(pfd, bn, REMOVE_PHYSICAL);
2006 if (r < 0)
2007 return log_error_errno(r, "rm -rf %s failed: %m", i->path);
2008
2009 mac_selinux_create_file_prepare(i->path, S_IFIFO);
2010 r = RET_NERRNO(mkfifoat(pfd, bn, i->mode));
2011 mac_selinux_create_file_clear();
2012 }
2013 if (r < 0)
2014 return log_error_errno(r, "Failed to create FIFO %s: %m", i->path);
2015
2016 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
2017 if (fd < 0)
2018 return log_error_errno(errno, "Failed to open FIFO we just created '%s': %m", i->path);
2019
2020 /* Validate type before change ownership below */
2021 if (fstat(fd, &st) < 0)
2022 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
2023
2024 if (!S_ISFIFO(st.st_mode))
2025 return log_error_errno(SYNTHETIC_ERRNO(EBADF), "FIFO inode we just created is not a FIFO, refusing.");
2026
2027 creation = CREATION_FORCE;
2028 } else {
2029 log_warning("\"%s\" already exists and is not a FIFO.", i->path);
2030 return 0;
2031 }
2032 }
2033
2034 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), i->path);
2035
2036 return fd_set_perms(i, fd, i->path, &st, creation);
2037 }
2038
2039 static int create_symlink(Item *i) {
2040 _cleanup_close_ int pfd = -EBADF, fd = -EBADF;
2041 _cleanup_free_ char *bn = NULL;
2042 CreationMode creation;
2043 struct stat st;
2044 bool good = false;
2045 int r;
2046
2047 assert(i);
2048
2049 r = path_extract_filename(i->path, &bn);
2050 if (r < 0)
2051 return log_error_errno(r, "Failed to extract filename from path '%s': %m", i->path);
2052 if (r == O_DIRECTORY)
2053 return log_error_errno(SYNTHETIC_ERRNO(EISDIR), "Cannot open path '%s' for creating FIFO, is a directory.", i->path);
2054
2055 pfd = path_open_parent_safe(i->path, i->allow_failure);
2056 if (pfd < 0)
2057 return pfd;
2058
2059 mac_selinux_create_file_prepare(i->path, S_IFLNK);
2060 r = RET_NERRNO(symlinkat(i->argument, pfd, bn));
2061 mac_selinux_create_file_clear();
2062
2063 creation = r >= 0 ? CREATION_NORMAL : CREATION_EXISTING;
2064
2065 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
2066 if (fd < 0) {
2067 if (r < 0)
2068 return log_error_errno(r, "Failed to create symlink '%s': %m", i->path); /* original error! */
2069
2070 return log_error_errno(errno, "Failed to open symlink we just created '%s': %m", i->path);
2071 }
2072
2073 if (fstat(fd, &st) < 0)
2074 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
2075
2076 if (S_ISLNK(st.st_mode)) {
2077 _cleanup_free_ char *x = NULL;
2078
2079 r = readlinkat_malloc(fd, "", &x);
2080 if (r < 0)
2081 return log_error_errno(r, "readlinkat(%s) failed: %m", i->path);
2082
2083 good = streq(x, i->argument);
2084 } else
2085 good = false;
2086
2087 if (!good) {
2088 if (!i->append_or_force) {
2089 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
2090 return 0;
2091 }
2092
2093 fd = safe_close(fd);
2094
2095 mac_selinux_create_file_prepare(i->path, S_IFLNK);
2096 r = symlinkat_atomic_full(i->argument, pfd, bn, /* make_relative= */ false);
2097 mac_selinux_create_file_clear();
2098 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
2099 r = rm_rf_child(pfd, bn, REMOVE_PHYSICAL);
2100 if (r < 0)
2101 return log_error_errno(r, "rm -rf %s failed: %m", i->path);
2102
2103 mac_selinux_create_file_prepare(i->path, S_IFLNK);
2104 r = RET_NERRNO(symlinkat(i->argument, pfd, i->path));
2105 mac_selinux_create_file_clear();
2106 }
2107 if (r < 0)
2108 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
2109
2110 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
2111 if (fd < 0)
2112 return log_error_errno(errno, "Failed to open symlink we just created '%s': %m", i->path);
2113
2114 /* Validate type before change ownership below */
2115 if (fstat(fd, &st) < 0)
2116 return log_error_errno(errno, "Failed to fstat(%s): %m", i->path);
2117
2118 if (!S_ISLNK(st.st_mode))
2119 return log_error_errno(SYNTHETIC_ERRNO(EBADF), "Symlink we just created is not a symlink, refusing.");
2120
2121 creation = CREATION_FORCE;
2122 }
2123
2124 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
2125 return fd_set_perms(i, fd, i->path, &st, creation);
2126 }
2127
2128 typedef int (*action_t)(Item *i, const char *path, CreationMode creation);
2129 typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st, CreationMode creation);
2130
2131 static int item_do(
2132 Item *i,
2133 int fd,
2134 const char *path,
2135 CreationMode creation,
2136 fdaction_t action) {
2137
2138 struct stat st;
2139 int r = 0, q;
2140
2141 assert(i);
2142 assert(path);
2143 assert(fd >= 0);
2144
2145 if (fstat(fd, &st) < 0) {
2146 r = log_error_errno(errno, "fstat() on file failed: %m");
2147 goto finish;
2148 }
2149
2150 /* This returns the first error we run into, but nevertheless tries to go on */
2151 r = action(i, fd, path, &st, creation);
2152
2153 if (S_ISDIR(st.st_mode)) {
2154 _cleanup_closedir_ DIR *d = NULL;
2155
2156 /* The passed 'fd' was opened with O_PATH. We need to convert it into a 'regular' fd before
2157 * reading the directory content. */
2158 d = opendir(FORMAT_PROC_FD_PATH(fd));
2159 if (!d) {
2160 log_error_errno(errno, "Failed to opendir() '%s': %m", FORMAT_PROC_FD_PATH(fd));
2161 if (r == 0)
2162 r = -errno;
2163 goto finish;
2164 }
2165
2166 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
2167 int de_fd;
2168
2169 if (dot_or_dot_dot(de->d_name))
2170 continue;
2171
2172 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
2173 if (de_fd < 0)
2174 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
2175 else {
2176 _cleanup_free_ char *de_path = NULL;
2177
2178 de_path = path_join(path, de->d_name);
2179 if (!de_path)
2180 q = log_oom();
2181 else
2182 /* Pass ownership of dirent fd over */
2183 q = item_do(i, de_fd, de_path, CREATION_EXISTING, action);
2184 }
2185
2186 if (q < 0 && r == 0)
2187 r = q;
2188 }
2189 }
2190 finish:
2191 safe_close(fd);
2192 return r;
2193 }
2194
2195 static int glob_item(Item *i, action_t action) {
2196 _cleanup_globfree_ glob_t g = {
2197 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
2198 };
2199 int r = 0, k;
2200
2201 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
2202 if (k < 0 && k != -ENOENT)
2203 return log_error_errno(k, "glob(%s) failed: %m", i->path);
2204
2205 STRV_FOREACH(fn, g.gl_pathv) {
2206 /* We pass CREATION_EXISTING here, since if we are globbing for it, it always has to exist */
2207 k = action(i, *fn, CREATION_EXISTING);
2208 if (k < 0 && r == 0)
2209 r = k;
2210 }
2211
2212 return r;
2213 }
2214
2215 static int glob_item_recursively(Item *i, fdaction_t action) {
2216 _cleanup_globfree_ glob_t g = {
2217 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
2218 };
2219 int r = 0, k;
2220
2221 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
2222 if (k < 0 && k != -ENOENT)
2223 return log_error_errno(k, "glob(%s) failed: %m", i->path);
2224
2225 STRV_FOREACH(fn, g.gl_pathv) {
2226 _cleanup_close_ int fd = -EBADF;
2227
2228 /* Make sure we won't trigger/follow file object (such as
2229 * device nodes, automounts, ...) pointed out by 'fn' with
2230 * O_PATH. Note, when O_PATH is used, flags other than
2231 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
2232
2233 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
2234 if (fd < 0) {
2235 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
2236 if (r == 0)
2237 r = -errno;
2238 continue;
2239 }
2240
2241 k = item_do(i, fd, *fn, CREATION_EXISTING, action);
2242 if (k < 0 && r == 0)
2243 r = k;
2244
2245 /* we passed fd ownership to the previous call */
2246 fd = -EBADF;
2247 }
2248
2249 return r;
2250 }
2251
2252 static int rm_if_wrong_type_safe(
2253 mode_t mode,
2254 int parent_fd,
2255 const struct stat *parent_st, /* Only used if follow_links below is true. */
2256 const char *name,
2257 int flags) {
2258 _cleanup_free_ char *parent_name = NULL;
2259 bool follow_links = !FLAGS_SET(flags, AT_SYMLINK_NOFOLLOW);
2260 struct stat st;
2261 int r;
2262
2263 assert(name);
2264 assert((mode & ~S_IFMT) == 0);
2265 assert(!follow_links || parent_st);
2266 assert((flags & ~AT_SYMLINK_NOFOLLOW) == 0);
2267
2268 if (!filename_is_valid(name))
2269 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "\"%s\" is not a valid filename.", name);
2270
2271 r = fstatat_harder(parent_fd, name, &st, flags, REMOVE_CHMOD | REMOVE_CHMOD_RESTORE);
2272 if (r < 0) {
2273 (void) fd_get_path(parent_fd, &parent_name);
2274 return log_full_errno(r == -ENOENT? LOG_DEBUG : LOG_ERR, r,
2275 "Failed to stat \"%s\" at \"%s\": %m", name, strna(parent_name));
2276 }
2277
2278 /* Fail before removing anything if this is an unsafe transition. */
2279 if (follow_links && unsafe_transition(parent_st, &st)) {
2280 (void) fd_get_path(parent_fd, &parent_name);
2281 return log_error_errno(SYNTHETIC_ERRNO(ENOLINK),
2282 "Unsafe transition from \"%s\" to \"%s\".", parent_name, name);
2283 }
2284
2285 if ((st.st_mode & S_IFMT) == mode)
2286 return 0;
2287
2288 (void) fd_get_path(parent_fd, &parent_name);
2289 log_notice("Wrong file type 0x%x; rm -rf \"%s/%s\"", st.st_mode & S_IFMT, strna(parent_name), name);
2290
2291 /* If the target of the symlink was the wrong type, the link needs to be removed instead of the
2292 * target, so make sure it is identified as a link and not a directory. */
2293 if (follow_links) {
2294 r = fstatat_harder(parent_fd, name, &st, AT_SYMLINK_NOFOLLOW, REMOVE_CHMOD | REMOVE_CHMOD_RESTORE);
2295 if (r < 0)
2296 return log_error_errno(r, "Failed to stat \"%s\" at \"%s\": %m", name, strna(parent_name));
2297 }
2298
2299 /* Do not remove mount points. */
2300 r = fd_is_mount_point(parent_fd, name, follow_links ? AT_SYMLINK_FOLLOW : 0);
2301 if (r < 0)
2302 (void) log_warning_errno(r, "Failed to check if \"%s/%s\" is a mount point: %m; Continuing",
2303 strna(parent_name), name);
2304 else if (r > 0)
2305 return log_error_errno(SYNTHETIC_ERRNO(EBUSY),
2306 "Not removing \"%s/%s\" because it is a mount point.", strna(parent_name), name);
2307
2308 if ((st.st_mode & S_IFMT) == S_IFDIR) {
2309 _cleanup_close_ int child_fd = -EBADF;
2310
2311 child_fd = openat(parent_fd, name, O_NOCTTY | O_CLOEXEC | O_DIRECTORY);
2312 if (child_fd < 0)
2313 return log_error_errno(errno, "Failed to open \"%s\" at \"%s\": %m", name, strna(parent_name));
2314
2315 r = rm_rf_children(TAKE_FD(child_fd), REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL, &st);
2316 if (r < 0)
2317 return log_error_errno(r, "Failed to remove contents of \"%s\" at \"%s\": %m", name, strna(parent_name));
2318
2319 r = unlinkat_harder(parent_fd, name, AT_REMOVEDIR, REMOVE_CHMOD | REMOVE_CHMOD_RESTORE);
2320 } else
2321 r = unlinkat_harder(parent_fd, name, 0, REMOVE_CHMOD | REMOVE_CHMOD_RESTORE);
2322 if (r < 0)
2323 return log_error_errno(r, "Failed to remove \"%s\" at \"%s\": %m", name, strna(parent_name));
2324
2325 /* This is covered by the log_notice "Wrong file type..." It is logged earlier because it gives
2326 * context to other error messages that might follow. */
2327 return -ENOENT;
2328 }
2329
2330 /* If child_mode is non-zero, rm_if_wrong_type_safe will be executed for the last path component. */
2331 static int mkdir_parents_rm_if_wrong_type(mode_t child_mode, const char *path) {
2332 _cleanup_close_ int parent_fd = -EBADF;
2333 struct stat parent_st;
2334 size_t path_len;
2335 int r;
2336
2337 assert(path);
2338 assert((child_mode & ~S_IFMT) == 0);
2339
2340 path_len = strlen(path);
2341
2342 if (!is_path(path))
2343 /* rm_if_wrong_type_safe already logs errors. */
2344 return child_mode != 0 ? rm_if_wrong_type_safe(child_mode, AT_FDCWD, NULL, path, AT_SYMLINK_NOFOLLOW) : 0;
2345
2346 if (child_mode != 0 && endswith(path, "/"))
2347 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2348 "Trailing path separators are only allowed if child_mode is not set; got \"%s\"", path);
2349
2350 /* Get the parent_fd and stat. */
2351 parent_fd = openat(AT_FDCWD, path_is_absolute(path) ? "/" : ".", O_NOCTTY | O_CLOEXEC | O_DIRECTORY);
2352 if (parent_fd < 0)
2353 return log_error_errno(errno, "Failed to open root: %m");
2354
2355 if (fstat(parent_fd, &parent_st) < 0)
2356 return log_error_errno(errno, "Failed to stat root: %m");
2357
2358 /* Check every parent directory in the path, except the last component */
2359 for (const char *e = path;;) {
2360 _cleanup_close_ int next_fd = -EBADF;
2361 char t[path_len + 1];
2362 const char *s;
2363
2364 /* Find the start of the next path component. */
2365 s = e + strspn(e, "/");
2366 /* Find the end of the next path component. */
2367 e = s + strcspn(s, "/");
2368
2369 /* Copy the path component to t so it can be a null terminated string. */
2370 *((char*) mempcpy(t, s, e - s)) = 0;
2371
2372 /* Is this the last component? If so, then check the type */
2373 if (*e == 0)
2374 return child_mode != 0 ? rm_if_wrong_type_safe(child_mode, parent_fd, &parent_st, t, AT_SYMLINK_NOFOLLOW) : 0;
2375
2376 r = rm_if_wrong_type_safe(S_IFDIR, parent_fd, &parent_st, t, 0);
2377 /* Remove dangling symlinks. */
2378 if (r == -ENOENT)
2379 r = rm_if_wrong_type_safe(S_IFDIR, parent_fd, &parent_st, t, AT_SYMLINK_NOFOLLOW);
2380 if (r == -ENOENT) {
2381 WITH_UMASK(0000)
2382 r = mkdirat_label(parent_fd, t, 0755);
2383 if (r < 0) {
2384 _cleanup_free_ char *parent_name = NULL;
2385
2386 (void) fd_get_path(parent_fd, &parent_name);
2387 return log_error_errno(r, "Failed to mkdir \"%s\" at \"%s\": %m", t, strnull(parent_name));
2388 }
2389 } else if (r < 0)
2390 /* rm_if_wrong_type_safe already logs errors. */
2391 return r;
2392
2393 next_fd = RET_NERRNO(openat(parent_fd, t, O_NOCTTY | O_CLOEXEC | O_DIRECTORY));
2394 if (next_fd < 0) {
2395 _cleanup_free_ char *parent_name = NULL;
2396
2397 (void) fd_get_path(parent_fd, &parent_name);
2398 return log_error_errno(next_fd, "Failed to open \"%s\" at \"%s\": %m", t, strnull(parent_name));
2399 }
2400 r = RET_NERRNO(fstat(next_fd, &parent_st));
2401 if (r < 0) {
2402 _cleanup_free_ char *parent_name = NULL;
2403
2404 (void) fd_get_path(parent_fd, &parent_name);
2405 return log_error_errno(r, "Failed to stat \"%s\" at \"%s\": %m", t, strnull(parent_name));
2406 }
2407
2408 close_and_replace(parent_fd, next_fd);
2409 }
2410 }
2411
2412 static int mkdir_parents_item(Item *i, mode_t child_mode) {
2413 int r;
2414 if (i->try_replace) {
2415 r = mkdir_parents_rm_if_wrong_type(child_mode, i->path);
2416 if (r < 0 && r != -ENOENT)
2417 return r;
2418 } else
2419 WITH_UMASK(0000)
2420 (void) mkdir_parents_label(i->path, 0755);
2421
2422 return 0;
2423 }
2424
2425 static int create_item(Item *i) {
2426 int r;
2427
2428 assert(i);
2429
2430 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
2431
2432 switch (i->type) {
2433
2434 case IGNORE_PATH:
2435 case IGNORE_DIRECTORY_PATH:
2436 case REMOVE_PATH:
2437 case RECURSIVE_REMOVE_PATH:
2438 return 0;
2439
2440 case TRUNCATE_FILE:
2441 case CREATE_FILE:
2442 r = mkdir_parents_item(i, S_IFREG);
2443 if (r < 0)
2444 return r;
2445
2446 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
2447 r = truncate_file(i, i->path);
2448 else
2449 r = create_file(i, i->path);
2450 if (r < 0)
2451 return r;
2452 break;
2453
2454 case COPY_FILES:
2455 r = mkdir_parents_item(i, 0);
2456 if (r < 0)
2457 return r;
2458
2459 r = copy_files(i);
2460 if (r < 0)
2461 return r;
2462 break;
2463
2464 case WRITE_FILE:
2465 r = glob_item(i, write_one_file);
2466 if (r < 0)
2467 return r;
2468
2469 break;
2470
2471 case CREATE_DIRECTORY:
2472 case TRUNCATE_DIRECTORY:
2473 r = mkdir_parents_item(i, S_IFDIR);
2474 if (r < 0)
2475 return r;
2476
2477 r = create_directory(i, i->path);
2478 if (r < 0)
2479 return r;
2480 break;
2481
2482 case CREATE_SUBVOLUME:
2483 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2484 case CREATE_SUBVOLUME_NEW_QUOTA:
2485 r = mkdir_parents_item(i, S_IFDIR);
2486 if (r < 0)
2487 return r;
2488
2489 r = create_subvolume(i, i->path);
2490 if (r < 0)
2491 return r;
2492 break;
2493
2494 case EMPTY_DIRECTORY:
2495 r = glob_item(i, empty_directory);
2496 if (r < 0)
2497 return r;
2498 break;
2499
2500 case CREATE_FIFO:
2501 r = mkdir_parents_item(i, S_IFIFO);
2502 if (r < 0)
2503 return r;
2504
2505 r = create_fifo(i);
2506 if (r < 0)
2507 return r;
2508 break;
2509
2510 case CREATE_SYMLINK:
2511 r = mkdir_parents_item(i, S_IFLNK);
2512 if (r < 0)
2513 return r;
2514
2515 r = create_symlink(i);
2516 if (r < 0)
2517 return r;
2518
2519 break;
2520
2521 case CREATE_BLOCK_DEVICE:
2522 case CREATE_CHAR_DEVICE:
2523 if (have_effective_cap(CAP_MKNOD) == 0) {
2524 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2525 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
2526
2527 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2528 return 0;
2529 }
2530
2531 r = mkdir_parents_item(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
2532 if (r < 0)
2533 return r;
2534
2535 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
2536 if (r < 0)
2537 return r;
2538
2539 break;
2540
2541 case ADJUST_MODE:
2542 case RELABEL_PATH:
2543 r = glob_item(i, path_set_perms);
2544 if (r < 0)
2545 return r;
2546 break;
2547
2548 case RECURSIVE_RELABEL_PATH:
2549 r = glob_item_recursively(i, fd_set_perms);
2550 if (r < 0)
2551 return r;
2552 break;
2553
2554 case SET_XATTR:
2555 r = glob_item(i, path_set_xattrs);
2556 if (r < 0)
2557 return r;
2558 break;
2559
2560 case RECURSIVE_SET_XATTR:
2561 r = glob_item_recursively(i, fd_set_xattrs);
2562 if (r < 0)
2563 return r;
2564 break;
2565
2566 case SET_ACL:
2567 r = glob_item(i, path_set_acls);
2568 if (r < 0)
2569 return r;
2570 break;
2571
2572 case RECURSIVE_SET_ACL:
2573 r = glob_item_recursively(i, fd_set_acls);
2574 if (r < 0)
2575 return r;
2576 break;
2577
2578 case SET_ATTRIBUTE:
2579 r = glob_item(i, path_set_attribute);
2580 if (r < 0)
2581 return r;
2582 break;
2583
2584 case RECURSIVE_SET_ATTRIBUTE:
2585 r = glob_item_recursively(i, fd_set_attribute);
2586 if (r < 0)
2587 return r;
2588 break;
2589 }
2590
2591 return 0;
2592 }
2593
2594 static int remove_item_instance(Item *i, const char *instance, CreationMode creation) {
2595 int r;
2596
2597 assert(i);
2598
2599 switch (i->type) {
2600
2601 case REMOVE_PATH:
2602 if (remove(instance) < 0 && errno != ENOENT)
2603 return log_error_errno(errno, "rm(%s): %m", instance);
2604
2605 break;
2606
2607 case RECURSIVE_REMOVE_PATH:
2608 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2609 log_debug("rm -rf \"%s\"", instance);
2610 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
2611 if (r < 0 && r != -ENOENT)
2612 return log_error_errno(r, "rm_rf(%s): %m", instance);
2613
2614 break;
2615
2616 default:
2617 assert_not_reached();
2618 }
2619
2620 return 0;
2621 }
2622
2623 static int remove_item(Item *i) {
2624 int r;
2625
2626 assert(i);
2627
2628 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2629
2630 switch (i->type) {
2631
2632 case TRUNCATE_DIRECTORY:
2633 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2634 log_debug("rm -rf \"%s\"", i->path);
2635 r = rm_rf(i->path, REMOVE_PHYSICAL);
2636 if (r < 0 && r != -ENOENT)
2637 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2638
2639 return 0;
2640
2641 case REMOVE_PATH:
2642 case RECURSIVE_REMOVE_PATH:
2643 return glob_item(i, remove_item_instance);
2644
2645 default:
2646 return 0;
2647 }
2648 }
2649
2650 static char *age_by_to_string(AgeBy ab, bool is_dir) {
2651 static const char ab_map[] = { 'a', 'b', 'c', 'm' };
2652 size_t j = 0;
2653 char *ret;
2654
2655 ret = new(char, ELEMENTSOF(ab_map) + 1);
2656 if (!ret)
2657 return NULL;
2658
2659 for (size_t i = 0; i < ELEMENTSOF(ab_map); i++)
2660 if (FLAGS_SET(ab, 1U << i))
2661 ret[j++] = is_dir ? ascii_toupper(ab_map[i]) : ab_map[i];
2662
2663 ret[j] = 0;
2664 return ret;
2665 }
2666
2667 static int clean_item_instance(
2668 Item *i,
2669 const char* instance,
2670 CreationMode creation) {
2671
2672 _cleanup_closedir_ DIR *d = NULL;
2673 STRUCT_STATX_DEFINE(sx);
2674 int mountpoint, r;
2675 usec_t cutoff, n;
2676
2677 assert(i);
2678
2679 if (!i->age_set)
2680 return 0;
2681
2682 n = now(CLOCK_REALTIME);
2683 if (n < i->age)
2684 return 0;
2685
2686 cutoff = n - i->age;
2687
2688 d = opendir_nomod(instance);
2689 if (!d) {
2690 if (IN_SET(errno, ENOENT, ENOTDIR)) {
2691 log_debug_errno(errno, "Directory \"%s\": %m", instance);
2692 return 0;
2693 }
2694
2695 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
2696 }
2697
2698 r = statx_fallback(dirfd(d), "", AT_EMPTY_PATH, STATX_MODE|STATX_INO|STATX_ATIME|STATX_MTIME, &sx);
2699 if (r < 0)
2700 return log_error_errno(r, "statx(%s) failed: %m", instance);
2701
2702 if (FLAGS_SET(sx.stx_attributes_mask, STATX_ATTR_MOUNT_ROOT))
2703 mountpoint = FLAGS_SET(sx.stx_attributes, STATX_ATTR_MOUNT_ROOT);
2704 else {
2705 struct stat ps;
2706
2707 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2708 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
2709
2710 mountpoint =
2711 sx.stx_dev_major != major(ps.st_dev) ||
2712 sx.stx_dev_minor != minor(ps.st_dev) ||
2713 sx.stx_ino != ps.st_ino;
2714 }
2715
2716 if (DEBUG_LOGGING) {
2717 _cleanup_free_ char *ab_f = NULL, *ab_d = NULL;
2718
2719 ab_f = age_by_to_string(i->age_by_file, false);
2720 if (!ab_f)
2721 return log_oom();
2722
2723 ab_d = age_by_to_string(i->age_by_dir, true);
2724 if (!ab_d)
2725 return log_oom();
2726
2727 log_debug("Cleanup threshold for %s \"%s\" is %s; age-by: %s%s",
2728 mountpoint ? "mount point" : "directory",
2729 instance,
2730 FORMAT_TIMESTAMP_STYLE(cutoff, TIMESTAMP_US),
2731 ab_f, ab_d);
2732 }
2733
2734 return dir_cleanup(i, instance, d,
2735 load_statx_timestamp_nsec(&sx.stx_atime),
2736 load_statx_timestamp_nsec(&sx.stx_mtime),
2737 cutoff * NSEC_PER_USEC,
2738 sx.stx_dev_major, sx.stx_dev_minor, mountpoint,
2739 MAX_DEPTH, i->keep_first_level,
2740 i->age_by_file, i->age_by_dir);
2741 }
2742
2743 static int clean_item(Item *i) {
2744 assert(i);
2745
2746 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2747
2748 switch (i->type) {
2749 case CREATE_DIRECTORY:
2750 case CREATE_SUBVOLUME:
2751 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2752 case CREATE_SUBVOLUME_NEW_QUOTA:
2753 case TRUNCATE_DIRECTORY:
2754 case IGNORE_PATH:
2755 case COPY_FILES:
2756 clean_item_instance(i, i->path, CREATION_EXISTING);
2757 return 0;
2758 case EMPTY_DIRECTORY:
2759 case IGNORE_DIRECTORY_PATH:
2760 return glob_item(i, clean_item_instance);
2761 default:
2762 return 0;
2763 }
2764 }
2765
2766 static int process_item(Item *i, OperationMask operation) {
2767 OperationMask todo;
2768 _cleanup_free_ char *_path = NULL;
2769 const char *path;
2770 int r, q, p;
2771
2772 assert(i);
2773
2774 todo = operation & ~i->done;
2775 if (todo == 0) /* Everything already done? */
2776 return 0;
2777
2778 i->done |= operation;
2779
2780 path = i->path;
2781 if (string_is_glob(path)) {
2782 /* We can't easily check whether a glob matches any autofs path, so let's do the check only
2783 * for the non-glob part. */
2784
2785 r = glob_non_glob_prefix(path, &_path);
2786 if (r < 0 && r != -ENOENT)
2787 return log_debug_errno(r, "Failed to deglob path: %m");
2788 if (r >= 0)
2789 path = _path;
2790 }
2791
2792 r = chase_symlinks(path, arg_root, CHASE_NO_AUTOFS|CHASE_NONEXISTENT|CHASE_WARN, NULL, NULL);
2793 if (r == -EREMOTE) {
2794 log_notice_errno(r, "Skipping %s", i->path); /* We log the configured path, to not confuse the user. */
2795 return 0;
2796 }
2797 if (r < 0)
2798 log_debug_errno(r, "Failed to determine whether '%s' is below autofs, ignoring: %m", i->path);
2799
2800 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
2801 /* Failure can only be tolerated for create */
2802 if (i->allow_failure)
2803 r = 0;
2804
2805 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2806 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
2807
2808 return r < 0 ? r :
2809 q < 0 ? q :
2810 p;
2811 }
2812
2813 static int process_item_array(ItemArray *array, OperationMask operation) {
2814 int r = 0;
2815 size_t n;
2816
2817 assert(array);
2818
2819 /* Create any parent first. */
2820 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2821 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2822
2823 /* Clean up all children first */
2824 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2825 ItemArray *c;
2826
2827 SET_FOREACH(c, array->children) {
2828 int k;
2829
2830 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2831 if (k < 0 && r == 0)
2832 r = k;
2833 }
2834 }
2835
2836 for (n = 0; n < array->n_items; n++) {
2837 int k;
2838
2839 k = process_item(array->items + n, operation);
2840 if (k < 0 && r == 0)
2841 r = k;
2842 }
2843
2844 return r;
2845 }
2846
2847 static void item_free_contents(Item *i) {
2848 assert(i);
2849 free(i->path);
2850 free(i->argument);
2851 free(i->binary_argument);
2852 strv_free(i->xattrs);
2853
2854 #if HAVE_ACL
2855 acl_free(i->acl_access);
2856 acl_free(i->acl_default);
2857 #endif
2858 }
2859
2860 static ItemArray* item_array_free(ItemArray *a) {
2861 size_t n;
2862
2863 if (!a)
2864 return NULL;
2865
2866 for (n = 0; n < a->n_items; n++)
2867 item_free_contents(a->items + n);
2868
2869 set_free(a->children);
2870 free(a->items);
2871 return mfree(a);
2872 }
2873
2874 static int item_compare(const Item *a, const Item *b) {
2875 /* Make sure that the ownership taking item is put first, so
2876 * that we first create the node, and then can adjust it */
2877
2878 if (takes_ownership(a->type) && !takes_ownership(b->type))
2879 return -1;
2880 if (!takes_ownership(a->type) && takes_ownership(b->type))
2881 return 1;
2882
2883 return CMP(a->type, b->type);
2884 }
2885
2886 static bool item_compatible(const Item *a, const Item *b) {
2887 assert(a);
2888 assert(b);
2889 assert(streq(a->path, b->path));
2890
2891 if (takes_ownership(a->type) && takes_ownership(b->type))
2892 /* check if the items are the same */
2893 return memcmp_nn(item_binary_argument(a), item_binary_argument_size(a),
2894 item_binary_argument(b), item_binary_argument_size(b)) == 0 &&
2895
2896 a->uid_set == b->uid_set &&
2897 a->uid == b->uid &&
2898 a->uid_only_create == b->uid_only_create &&
2899
2900 a->gid_set == b->gid_set &&
2901 a->gid == b->gid &&
2902 a->gid_only_create == b->gid_only_create &&
2903
2904 a->mode_set == b->mode_set &&
2905 a->mode == b->mode &&
2906 a->mode_only_create == b->mode_only_create &&
2907
2908 a->age_set == b->age_set &&
2909 a->age == b->age &&
2910
2911 a->age_by_file == b->age_by_file &&
2912 a->age_by_dir == b->age_by_dir &&
2913
2914 a->mask_perms == b->mask_perms &&
2915
2916 a->keep_first_level == b->keep_first_level &&
2917
2918 a->major_minor == b->major_minor;
2919
2920 return true;
2921 }
2922
2923 static bool should_include_path(const char *path) {
2924 STRV_FOREACH(prefix, arg_exclude_prefixes)
2925 if (path_startswith(path, *prefix)) {
2926 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2927 path, *prefix);
2928 return false;
2929 }
2930
2931 STRV_FOREACH(prefix, arg_include_prefixes)
2932 if (path_startswith(path, *prefix)) {
2933 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
2934 return true;
2935 }
2936
2937 /* no matches, so we should include this path only if we have no allow list at all */
2938 if (strv_isempty(arg_include_prefixes))
2939 return true;
2940
2941 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2942 return false;
2943 }
2944
2945 static int specifier_expansion_from_arg(const Specifier *specifier_table, Item *i) {
2946 int r;
2947
2948 assert(i);
2949
2950 if (!i->argument)
2951 return 0;
2952
2953 switch (i->type) {
2954 case COPY_FILES:
2955 case CREATE_SYMLINK:
2956 case CREATE_FILE:
2957 case TRUNCATE_FILE:
2958 case WRITE_FILE: {
2959 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2960 ssize_t l;
2961
2962 l = cunescape(i->argument, 0, &unescaped);
2963 if (l < 0)
2964 return log_error_errno(l, "Failed to unescape parameter to write: %s", i->argument);
2965
2966 r = specifier_printf(unescaped, PATH_MAX-1, specifier_table, arg_root, NULL, &resolved);
2967 if (r < 0)
2968 return r;
2969
2970 return free_and_replace(i->argument, resolved);
2971 }
2972 case SET_XATTR:
2973 case RECURSIVE_SET_XATTR:
2974 STRV_FOREACH(xattr, i->xattrs) {
2975 _cleanup_free_ char *resolved = NULL;
2976
2977 r = specifier_printf(*xattr, SIZE_MAX, specifier_table, arg_root, NULL, &resolved);
2978 if (r < 0)
2979 return r;
2980
2981 free_and_replace(*xattr, resolved);
2982 }
2983 return 0;
2984
2985 default:
2986 return 0;
2987 }
2988 }
2989
2990 static int patch_var_run(const char *fname, unsigned line, char **path) {
2991 const char *k;
2992 char *n;
2993
2994 assert(path);
2995 assert(*path);
2996
2997 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2998 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2999 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
3000 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
3001 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
3002 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
3003 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
3004 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
3005 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
3006
3007 k = path_startswith(*path, "/var/run/");
3008 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
3009 return 0;
3010
3011 n = path_join("/run", k);
3012 if (!n)
3013 return log_oom();
3014
3015 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
3016 * there's no immediate need for action by the user. However, in the interest of making things less confusing
3017 * to the user, let's still inform the user that these snippets should really be updated. */
3018 log_syntax(NULL, LOG_NOTICE, fname, line, 0,
3019 "Line references path below legacy directory /var/run/, updating %s → %s; please update the tmpfiles.d/ drop-in file accordingly.",
3020 *path, n);
3021
3022 free_and_replace(*path, n);
3023
3024 return 0;
3025 }
3026
3027 static int find_uid(const char *user, uid_t *ret_uid, Hashmap **cache) {
3028 int r;
3029
3030 assert(user);
3031 assert(ret_uid);
3032
3033 /* First: parse as numeric UID string */
3034 r = parse_uid(user, ret_uid);
3035 if (r >= 0)
3036 return r;
3037
3038 /* Second: pass to NSS if we are running "online" */
3039 if (!arg_root)
3040 return get_user_creds(&user, ret_uid, NULL, NULL, NULL, 0);
3041
3042 /* Third, synthesize "root" unconditionally */
3043 if (streq(user, "root")) {
3044 *ret_uid = 0;
3045 return 0;
3046 }
3047
3048 /* Fourth: use fgetpwent() to read /etc/passwd directly, if we are "offline" */
3049 return name_to_uid_offline(arg_root, user, ret_uid, cache);
3050 }
3051
3052 static int find_gid(const char *group, gid_t *ret_gid, Hashmap **cache) {
3053 int r;
3054
3055 assert(group);
3056 assert(ret_gid);
3057
3058 /* First: parse as numeric GID string */
3059 r = parse_gid(group, ret_gid);
3060 if (r >= 0)
3061 return r;
3062
3063 /* Second: pass to NSS if we are running "online" */
3064 if (!arg_root)
3065 return get_group_creds(&group, ret_gid, 0);
3066
3067 /* Third, synthesize "root" unconditionally */
3068 if (streq(group, "root")) {
3069 *ret_gid = 0;
3070 return 0;
3071 }
3072
3073 /* Fourth: use fgetgrent() to read /etc/group directly, if we are "offline" */
3074 return name_to_gid_offline(arg_root, group, ret_gid, cache);
3075 }
3076
3077 static int parse_age_by_from_arg(const char *age_by_str, Item *item) {
3078 AgeBy ab_f = 0, ab_d = 0;
3079
3080 static const struct {
3081 char age_by_chr;
3082 AgeBy age_by_flag;
3083 } age_by_types[] = {
3084 { 'a', AGE_BY_ATIME },
3085 { 'b', AGE_BY_BTIME },
3086 { 'c', AGE_BY_CTIME },
3087 { 'm', AGE_BY_MTIME },
3088 };
3089
3090 assert(age_by_str);
3091 assert(item);
3092
3093 if (isempty(age_by_str))
3094 return -EINVAL;
3095
3096 for (const char *s = age_by_str; *s != 0; s++) {
3097 size_t i;
3098
3099 /* Ignore whitespace. */
3100 if (strchr(WHITESPACE, *s))
3101 continue;
3102
3103 for (i = 0; i < ELEMENTSOF(age_by_types); i++) {
3104 /* Check lower-case for files, upper-case for directories. */
3105 if (*s == age_by_types[i].age_by_chr) {
3106 ab_f |= age_by_types[i].age_by_flag;
3107 break;
3108 } else if (*s == ascii_toupper(age_by_types[i].age_by_chr)) {
3109 ab_d |= age_by_types[i].age_by_flag;
3110 break;
3111 }
3112 }
3113
3114 /* Invalid character. */
3115 if (i >= ELEMENTSOF(age_by_types))
3116 return -EINVAL;
3117 }
3118
3119 /* No match. */
3120 if (ab_f == 0 && ab_d == 0)
3121 return -EINVAL;
3122
3123 item->age_by_file = ab_f > 0 ? ab_f : AGE_BY_DEFAULT_FILE;
3124 item->age_by_dir = ab_d > 0 ? ab_d : AGE_BY_DEFAULT_DIR;
3125
3126 return 0;
3127 }
3128
3129 static bool is_duplicated_item(ItemArray *existing, const Item *i) {
3130
3131 assert(existing);
3132 assert(i);
3133
3134 for (size_t n = 0; n < existing->n_items; n++) {
3135 const Item *e = existing->items + n;
3136
3137 if (item_compatible(e, i))
3138 continue;
3139
3140 /* Only multiple 'w+' lines for the same path are allowed. */
3141 if (e->type != WRITE_FILE || !e->append_or_force ||
3142 i->type != WRITE_FILE || !i->append_or_force)
3143 return true;
3144 }
3145
3146 return false;
3147 }
3148
3149 static int parse_line(
3150 const char *fname,
3151 unsigned line,
3152 const char *buffer,
3153 bool *invalid_config,
3154 Hashmap **uid_cache,
3155 Hashmap **gid_cache) {
3156
3157 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
3158 _cleanup_(item_free_contents) Item i = {
3159 /* The "age-by" argument considers all file timestamp types by default. */
3160 .age_by_file = AGE_BY_DEFAULT_FILE,
3161 .age_by_dir = AGE_BY_DEFAULT_DIR,
3162 };
3163 ItemArray *existing;
3164 OrderedHashmap *h;
3165 int r, pos;
3166 bool append_or_force = false, boot = false, allow_failure = false, try_replace = false, unbase64 = false, from_cred = false;
3167
3168 assert(fname);
3169 assert(line >= 1);
3170 assert(buffer);
3171
3172 const Specifier specifier_table[] = {
3173 { 'a', specifier_architecture, NULL },
3174 { 'b', specifier_boot_id, NULL },
3175 { 'B', specifier_os_build_id, NULL },
3176 { 'H', specifier_hostname, NULL },
3177 { 'l', specifier_short_hostname, NULL },
3178 { 'm', specifier_machine_id, NULL },
3179 { 'o', specifier_os_id, NULL },
3180 { 'v', specifier_kernel_release, NULL },
3181 { 'w', specifier_os_version_id, NULL },
3182 { 'W', specifier_os_variant_id, NULL },
3183
3184 { 'h', specifier_user_home, NULL },
3185
3186 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
3187 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
3188 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
3189 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
3190
3191 COMMON_CREDS_SPECIFIERS(arg_user ? LOOKUP_SCOPE_USER : LOOKUP_SCOPE_SYSTEM),
3192 COMMON_TMP_SPECIFIERS,
3193 {}
3194 };
3195
3196 r = extract_many_words(
3197 &buffer,
3198 NULL,
3199 EXTRACT_UNQUOTE,
3200 &action,
3201 &path,
3202 &mode,
3203 &user,
3204 &group,
3205 &age,
3206 NULL);
3207 if (r < 0) {
3208 if (IN_SET(r, -EINVAL, -EBADSLT))
3209 /* invalid quoting and such or an unknown specifier */
3210 *invalid_config = true;
3211 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to parse line: %m");
3212 } else if (r < 2) {
3213 *invalid_config = true;
3214 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Syntax error.");
3215 }
3216
3217 if (!empty_or_dash(buffer)) {
3218 i.argument = strdup(buffer);
3219 if (!i.argument)
3220 return log_oom();
3221 }
3222
3223 if (isempty(action)) {
3224 *invalid_config = true;
3225 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Command too short '%s'.", action);
3226 }
3227
3228 for (pos = 1; action[pos]; pos++) {
3229 if (action[pos] == '!' && !boot)
3230 boot = true;
3231 else if (action[pos] == '+' && !append_or_force)
3232 append_or_force = true;
3233 else if (action[pos] == '-' && !allow_failure)
3234 allow_failure = true;
3235 else if (action[pos] == '=' && !try_replace)
3236 try_replace = true;
3237 else if (action[pos] == '~' && !unbase64)
3238 unbase64 = true;
3239 else if (action[pos] == '^' && !from_cred)
3240 from_cred = true;
3241 else {
3242 *invalid_config = true;
3243 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Unknown modifiers in command '%s'", action);
3244 }
3245 }
3246
3247 if (boot && !arg_boot) {
3248 log_syntax(NULL, LOG_DEBUG, fname, line, 0, "Ignoring entry %s \"%s\" because --boot is not specified.", action, path);
3249 return 0;
3250 }
3251
3252 i.type = action[0];
3253 i.append_or_force = append_or_force;
3254 i.allow_failure = allow_failure;
3255 i.try_replace = try_replace;
3256
3257 r = specifier_printf(path, PATH_MAX-1, specifier_table, arg_root, NULL, &i.path);
3258 if (ERRNO_IS_NOINFO(r))
3259 return log_unresolvable_specifier(fname, line);
3260 if (r < 0) {
3261 if (IN_SET(r, -EINVAL, -EBADSLT))
3262 *invalid_config = true;
3263 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to replace specifiers in '%s': %m", path);
3264 }
3265
3266 r = patch_var_run(fname, line, &i.path);
3267 if (r < 0)
3268 return r;
3269
3270 if (!path_is_absolute(i.path)) {
3271 *invalid_config = true;
3272 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
3273 "Path '%s' not absolute.", i.path);
3274 }
3275
3276 path_simplify(i.path);
3277
3278 switch (i.type) {
3279
3280 case CREATE_DIRECTORY:
3281 case CREATE_SUBVOLUME:
3282 case CREATE_SUBVOLUME_INHERIT_QUOTA:
3283 case CREATE_SUBVOLUME_NEW_QUOTA:
3284 case EMPTY_DIRECTORY:
3285 case TRUNCATE_DIRECTORY:
3286 case CREATE_FIFO:
3287 case IGNORE_PATH:
3288 case IGNORE_DIRECTORY_PATH:
3289 case REMOVE_PATH:
3290 case RECURSIVE_REMOVE_PATH:
3291 case ADJUST_MODE:
3292 case RELABEL_PATH:
3293 case RECURSIVE_RELABEL_PATH:
3294 if (i.argument)
3295 log_syntax(NULL,
3296 LOG_WARNING,
3297 fname,
3298 line,
3299 0,
3300 "%c lines don't take argument fields, ignoring.",
3301 (char) i.type);
3302
3303 break;
3304
3305 case CREATE_FILE:
3306 case TRUNCATE_FILE:
3307 break;
3308
3309 case CREATE_SYMLINK:
3310 if (unbase64) {
3311 *invalid_config = true;
3312 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for symlink targets.");
3313 }
3314
3315 if (!i.argument) {
3316 i.argument = path_join("/usr/share/factory", i.path);
3317 if (!i.argument)
3318 return log_oom();
3319 }
3320 break;
3321
3322 case WRITE_FILE:
3323 if (!i.argument) {
3324 *invalid_config = true;
3325 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Write file requires argument.");
3326 }
3327 break;
3328
3329 case COPY_FILES:
3330 if (unbase64) {
3331 *invalid_config = true;
3332 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for copy sources.");
3333 }
3334
3335 if (!i.argument) {
3336 i.argument = path_join("/usr/share/factory", i.path);
3337 if (!i.argument)
3338 return log_oom();
3339 } else if (!path_is_absolute(i.argument)) {
3340 *invalid_config = true;
3341 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Source path '%s' is not absolute.", i.argument);
3342
3343 }
3344
3345 if (!empty_or_root(arg_root)) {
3346 char *p;
3347
3348 p = path_join(arg_root, i.argument);
3349 if (!p)
3350 return log_oom();
3351 free_and_replace(i.argument, p);
3352 }
3353
3354 path_simplify(i.argument);
3355
3356 if (laccess(i.argument, F_OK) == -ENOENT) {
3357 /* Silently skip over lines where the source file is missing. */
3358 log_syntax(NULL, LOG_DEBUG, fname, line, 0, "Copy source path '%s' does not exist, skipping line.", i.argument);
3359 return 0;
3360 }
3361
3362 break;
3363
3364 case CREATE_CHAR_DEVICE:
3365 case CREATE_BLOCK_DEVICE:
3366 if (unbase64) {
3367 *invalid_config = true;
3368 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for device node creation.");
3369 }
3370
3371 if (!i.argument) {
3372 *invalid_config = true;
3373 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Device file requires argument.");
3374 }
3375
3376 r = parse_devnum(i.argument, &i.major_minor);
3377 if (r < 0) {
3378 *invalid_config = true;
3379 return log_syntax(NULL, LOG_ERR, fname, line, r, "Can't parse device file major/minor '%s'.", i.argument);
3380 }
3381
3382 break;
3383
3384 case SET_XATTR:
3385 case RECURSIVE_SET_XATTR:
3386 if (unbase64) {
3387 *invalid_config = true;
3388 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for extended attributes.");
3389 }
3390 if (!i.argument) {
3391 *invalid_config = true;
3392 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
3393 "Set extended attribute requires argument.");
3394 }
3395 r = parse_xattrs_from_arg(&i);
3396 if (r < 0)
3397 return r;
3398 break;
3399
3400 case SET_ACL:
3401 case RECURSIVE_SET_ACL:
3402 if (unbase64) {
3403 *invalid_config = true;
3404 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for ACLs.");
3405 }
3406 if (!i.argument) {
3407 *invalid_config = true;
3408 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
3409 "Set ACLs requires argument.");
3410 }
3411 r = parse_acls_from_arg(&i);
3412 if (r < 0)
3413 return r;
3414 break;
3415
3416 case SET_ATTRIBUTE:
3417 case RECURSIVE_SET_ATTRIBUTE:
3418 if (unbase64) {
3419 *invalid_config = true;
3420 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "base64 decoding not supported for file attributes.");
3421 }
3422 if (!i.argument) {
3423 *invalid_config = true;
3424 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
3425 "Set file attribute requires argument.");
3426 }
3427 r = parse_attribute_from_arg(&i);
3428 if (IN_SET(r, -EINVAL, -EBADSLT))
3429 *invalid_config = true;
3430 if (r < 0)
3431 return r;
3432 break;
3433
3434 default:
3435 *invalid_config = true;
3436 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
3437 "Unknown command type '%c'.", (char) i.type);
3438 }
3439
3440 if (!should_include_path(i.path))
3441 return 0;
3442
3443 if (!unbase64) {
3444 /* Do specifier expansion except if base64 mode is enabled */
3445 r = specifier_expansion_from_arg(specifier_table, &i);
3446 if (ERRNO_IS_NOINFO(r))
3447 return log_unresolvable_specifier(fname, line);
3448 if (r < 0) {
3449 if (IN_SET(r, -EINVAL, -EBADSLT))
3450 *invalid_config = true;
3451 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to substitute specifiers in argument: %m");
3452 }
3453 }
3454
3455 if (from_cred) {
3456 if (!i.argument)
3457 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EINVAL), "Reading from credential requested, but no credential name specified.");
3458 if (!credential_name_valid(i.argument))
3459 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EINVAL), "Credential name not valid: %s", i.argument);
3460
3461 r = read_credential(i.argument, &i.binary_argument, &i.binary_argument_size);
3462 if (IN_SET(r, -ENXIO, -ENOENT)) {
3463 /* Silently skip over lines that have no credentials passed */
3464 log_syntax(NULL, LOG_DEBUG, fname, line, 0,
3465 "Credential '%s' not specified, skipping line.", i.argument);
3466 return 0;
3467 }
3468 if (r < 0)
3469 return log_error_errno(r, "Failed to read credential '%s': %m", i.argument);
3470 }
3471
3472 /* If base64 decoding is requested, do so now */
3473 if (unbase64 && item_binary_argument(&i)) {
3474 _cleanup_free_ void *data = NULL;
3475 size_t data_size = 0;
3476
3477 r = unbase64mem(item_binary_argument(&i), item_binary_argument_size(&i), &data, &data_size);
3478 if (r < 0)
3479 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to base64 decode specified argument '%s': %m", i.argument);
3480
3481 free_and_replace(i.binary_argument, data);
3482 i.binary_argument_size = data_size;
3483 }
3484
3485 if (!empty_or_root(arg_root)) {
3486 char *p;
3487
3488 p = path_join(arg_root, i.path);
3489 if (!p)
3490 return log_oom();
3491 free_and_replace(i.path, p);
3492 }
3493
3494 if (!empty_or_dash(user)) {
3495 const char *u;
3496
3497 u = startswith(user, ":");
3498 if (u)
3499 i.uid_only_create = true;
3500 else
3501 u = user;
3502
3503 r = find_uid(u, &i.uid, uid_cache);
3504 if (r < 0) {
3505 *invalid_config = true;
3506 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve user '%s': %m", u);
3507 }
3508
3509 i.uid_set = true;
3510 }
3511
3512 if (!empty_or_dash(group)) {
3513 const char *g;
3514
3515 g = startswith(group, ":");
3516 if (g)
3517 i.gid_only_create = true;
3518 else
3519 g = group;
3520
3521 r = find_gid(g, &i.gid, gid_cache);
3522 if (r < 0) {
3523 *invalid_config = true;
3524 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve group '%s'.", g);
3525 }
3526
3527 i.gid_set = true;
3528 }
3529
3530 if (!empty_or_dash(mode)) {
3531 const char *mm;
3532 unsigned m;
3533
3534 for (mm = mode;; mm++) {
3535 if (*mm == '~')
3536 i.mask_perms = true;
3537 else if (*mm == ':')
3538 i.mode_only_create = true;
3539 else
3540 break;
3541 }
3542
3543 r = parse_mode(mm, &m);
3544 if (r < 0) {
3545 *invalid_config = true;
3546 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid mode '%s'.", mode);
3547 }
3548
3549 i.mode = m;
3550 i.mode_set = true;
3551 } else
3552 i.mode = IN_SET(i.type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA) ? 0755 : 0644;
3553
3554 if (!empty_or_dash(age)) {
3555 const char *a = age;
3556 _cleanup_free_ char *seconds = NULL, *age_by = NULL;
3557
3558 if (*a == '~') {
3559 i.keep_first_level = true;
3560 a++;
3561 }
3562
3563 /* Format: "age-by:age"; where age-by is "[abcmABCM]+". */
3564 r = split_pair(a, ":", &age_by, &seconds);
3565 if (r == -ENOMEM)
3566 return log_oom();
3567 if (r < 0 && r != -EINVAL)
3568 return log_error_errno(r, "Failed to parse age-by for '%s': %m", age);
3569 if (r >= 0) {
3570 /* We found a ":", parse the "age-by" part. */
3571 r = parse_age_by_from_arg(age_by, &i);
3572 if (r == -ENOMEM)
3573 return log_oom();
3574 if (r < 0) {
3575 *invalid_config = true;
3576 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age-by '%s'.", age_by);
3577 }
3578
3579 /* For parsing the "age" part, after the ":". */
3580 a = seconds;
3581 }
3582
3583 r = parse_sec(a, &i.age);
3584 if (r < 0) {
3585 *invalid_config = true;
3586 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age '%s'.", a);
3587 }
3588
3589 i.age_set = true;
3590 }
3591
3592 h = needs_glob(i.type) ? globs : items;
3593
3594 existing = ordered_hashmap_get(h, i.path);
3595 if (existing) {
3596 if (is_duplicated_item(existing, &i)) {
3597 log_syntax(NULL, LOG_NOTICE, fname, line, 0,
3598 "Duplicate line for path \"%s\", ignoring.", i.path);
3599 return 0;
3600 }
3601 } else {
3602 existing = new0(ItemArray, 1);
3603 if (!existing)
3604 return log_oom();
3605
3606 r = ordered_hashmap_put(h, i.path, existing);
3607 if (r < 0) {
3608 free(existing);
3609 return log_oom();
3610 }
3611 }
3612
3613 if (!GREEDY_REALLOC(existing->items, existing->n_items + 1))
3614 return log_oom();
3615
3616 existing->items[existing->n_items++] = i;
3617 i = (struct Item) {};
3618
3619 /* Sort item array, to enforce stable ordering of application */
3620 typesafe_qsort(existing->items, existing->n_items, item_compare);
3621
3622 return 0;
3623 }
3624
3625 static int cat_config(char **config_dirs, char **args) {
3626 _cleanup_strv_free_ char **files = NULL;
3627 int r;
3628
3629 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
3630 if (r < 0)
3631 return r;
3632
3633 return cat_files(NULL, files, 0);
3634 }
3635
3636 static int exclude_default_prefixes(void) {
3637 int r;
3638
3639 /* Provide an easy way to exclude virtual/memory file systems from what we do here. Useful in
3640 * combination with --root= where we probably don't want to apply stuff to these dirs as they are
3641 * likely over-mounted if the root directory is actually used, and it wouldbe less than ideal to have
3642 * all kinds of files created/adjusted underneath these mount points. */
3643
3644 r = strv_extend_strv(
3645 &arg_exclude_prefixes,
3646 STRV_MAKE("/dev",
3647 "/proc",
3648 "/run",
3649 "/sys"),
3650 true);
3651 if (r < 0)
3652 return log_oom();
3653
3654 return 0;
3655 }
3656
3657 static int help(void) {
3658 _cleanup_free_ char *link = NULL;
3659 int r;
3660
3661 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
3662 if (r < 0)
3663 return log_oom();
3664
3665 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n"
3666 "\n%sCreates, deletes and cleans up volatile and temporary files and directories.%s\n\n"
3667 " -h --help Show this help\n"
3668 " --user Execute user configuration\n"
3669 " --version Show package version\n"
3670 " --cat-config Show configuration files\n"
3671 " --create Create marked files/directories\n"
3672 " --clean Clean up marked directories\n"
3673 " --remove Remove marked files/directories\n"
3674 " --boot Execute actions only safe at boot\n"
3675 " --prefix=PATH Only apply rules with the specified prefix\n"
3676 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
3677 " -E Ignore rules prefixed with /dev, /proc, /run, /sys\n"
3678 " --root=PATH Operate on an alternate filesystem root\n"
3679 " --image=PATH Operate on disk image as filesystem root\n"
3680 " --replace=PATH Treat arguments as replacement for PATH\n"
3681 " --no-pager Do not pipe output into a pager\n"
3682 "\nSee the %s for details.\n",
3683 program_invocation_short_name,
3684 ansi_highlight(),
3685 ansi_normal(),
3686 link);
3687
3688 return 0;
3689 }
3690
3691 static int parse_argv(int argc, char *argv[]) {
3692
3693 enum {
3694 ARG_VERSION = 0x100,
3695 ARG_CAT_CONFIG,
3696 ARG_USER,
3697 ARG_CREATE,
3698 ARG_CLEAN,
3699 ARG_REMOVE,
3700 ARG_BOOT,
3701 ARG_PREFIX,
3702 ARG_EXCLUDE_PREFIX,
3703 ARG_ROOT,
3704 ARG_IMAGE,
3705 ARG_REPLACE,
3706 ARG_NO_PAGER,
3707 };
3708
3709 static const struct option options[] = {
3710 { "help", no_argument, NULL, 'h' },
3711 { "user", no_argument, NULL, ARG_USER },
3712 { "version", no_argument, NULL, ARG_VERSION },
3713 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
3714 { "create", no_argument, NULL, ARG_CREATE },
3715 { "clean", no_argument, NULL, ARG_CLEAN },
3716 { "remove", no_argument, NULL, ARG_REMOVE },
3717 { "boot", no_argument, NULL, ARG_BOOT },
3718 { "prefix", required_argument, NULL, ARG_PREFIX },
3719 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
3720 { "root", required_argument, NULL, ARG_ROOT },
3721 { "image", required_argument, NULL, ARG_IMAGE },
3722 { "replace", required_argument, NULL, ARG_REPLACE },
3723 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
3724 {}
3725 };
3726
3727 int c, r;
3728
3729 assert(argc >= 0);
3730 assert(argv);
3731
3732 while ((c = getopt_long(argc, argv, "hE", options, NULL)) >= 0)
3733
3734 switch (c) {
3735
3736 case 'h':
3737 return help();
3738
3739 case ARG_VERSION:
3740 return version();
3741
3742 case ARG_CAT_CONFIG:
3743 arg_cat_config = true;
3744 break;
3745
3746 case ARG_USER:
3747 arg_user = true;
3748 break;
3749
3750 case ARG_CREATE:
3751 arg_operation |= OPERATION_CREATE;
3752 break;
3753
3754 case ARG_CLEAN:
3755 arg_operation |= OPERATION_CLEAN;
3756 break;
3757
3758 case ARG_REMOVE:
3759 arg_operation |= OPERATION_REMOVE;
3760 break;
3761
3762 case ARG_BOOT:
3763 arg_boot = true;
3764 break;
3765
3766 case ARG_PREFIX:
3767 if (strv_push(&arg_include_prefixes, optarg) < 0)
3768 return log_oom();
3769 break;
3770
3771 case ARG_EXCLUDE_PREFIX:
3772 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
3773 return log_oom();
3774 break;
3775
3776 case ARG_ROOT:
3777 r = parse_path_argument(optarg, /* suppress_root= */ false, &arg_root);
3778 if (r < 0)
3779 return r;
3780 break;
3781
3782 case ARG_IMAGE:
3783 #ifdef STANDALONE
3784 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
3785 "This systemd-tmpfiles version is compiled without support for --image=.");
3786 #else
3787 r = parse_path_argument(optarg, /* suppress_root= */ false, &arg_image);
3788 if (r < 0)
3789 return r;
3790 #endif
3791 /* Imply -E here since it makes little sense to create files persistently in the /run mountpoint of a disk image */
3792 _fallthrough_;
3793
3794 case 'E':
3795 r = exclude_default_prefixes();
3796 if (r < 0)
3797 return r;
3798
3799 break;
3800
3801 case ARG_REPLACE:
3802 if (!path_is_absolute(optarg) ||
3803 !endswith(optarg, ".conf"))
3804 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3805 "The argument to --replace= must an absolute path to a config file");
3806
3807 arg_replace = optarg;
3808 break;
3809
3810 case ARG_NO_PAGER:
3811 arg_pager_flags |= PAGER_DISABLE;
3812 break;
3813
3814 case '?':
3815 return -EINVAL;
3816
3817 default:
3818 assert_not_reached();
3819 }
3820
3821 if (arg_operation == 0 && !arg_cat_config)
3822 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3823 "You need to specify at least one of --clean, --create or --remove.");
3824
3825 if (arg_replace && arg_cat_config)
3826 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3827 "Option --replace= is not supported with --cat-config");
3828
3829 if (arg_replace && optind >= argc)
3830 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3831 "When --replace= is given, some configuration items must be specified");
3832
3833 if (arg_root && arg_user)
3834 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3835 "Combination of --user and --root= is not supported.");
3836
3837 if (arg_image && arg_root)
3838 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Please specify either --root= or --image=, the combination of both is not supported.");
3839
3840 return 1;
3841 }
3842
3843 static int read_config_file(
3844 char **config_dirs,
3845 const char *fn,
3846 bool ignore_enoent,
3847 bool *invalid_config) {
3848
3849 _cleanup_(hashmap_freep) Hashmap *uid_cache = NULL, *gid_cache = NULL;
3850 _cleanup_fclose_ FILE *_f = NULL;
3851 _cleanup_free_ char *pp = NULL;
3852 unsigned v = 0;
3853 FILE *f;
3854 ItemArray *ia;
3855 int r = 0;
3856
3857 assert(fn);
3858
3859 if (streq(fn, "-")) {
3860 log_debug("Reading config from stdin%s", special_glyph(SPECIAL_GLYPH_ELLIPSIS));
3861 fn = "<stdin>";
3862 f = stdin;
3863 } else {
3864 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f, &pp);
3865 if (r < 0) {
3866 if (ignore_enoent && r == -ENOENT) {
3867 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3868 return 0;
3869 }
3870
3871 return log_error_errno(r, "Failed to open '%s': %m", fn);
3872 }
3873
3874 log_debug("Reading config file \"%s\"%s", pp, special_glyph(SPECIAL_GLYPH_ELLIPSIS));
3875 fn = pp;
3876 f = _f;
3877 }
3878
3879 for (;;) {
3880 _cleanup_free_ char *line = NULL;
3881 bool invalid_line = false;
3882 char *l;
3883 int k;
3884
3885 k = read_line(f, LONG_LINE_MAX, &line);
3886 if (k < 0)
3887 return log_error_errno(k, "Failed to read '%s': %m", fn);
3888 if (k == 0)
3889 break;
3890
3891 v++;
3892
3893 l = strstrip(line);
3894 if (IN_SET(*l, 0, '#'))
3895 continue;
3896
3897 k = parse_line(fn, v, l, &invalid_line, &uid_cache, &gid_cache);
3898 if (k < 0) {
3899 if (invalid_line)
3900 /* Allow reporting with a special code if the caller requested this */
3901 *invalid_config = true;
3902 else if (r == 0)
3903 /* The first error becomes our return value */
3904 r = k;
3905 }
3906 }
3907
3908 /* we have to determine age parameter for each entry of type X */
3909 ORDERED_HASHMAP_FOREACH(ia, globs)
3910 for (size_t ni = 0; ni < ia->n_items; ni++) {
3911 ItemArray *ja;
3912 Item *i = ia->items + ni, *candidate_item = NULL;
3913
3914 if (i->type != IGNORE_DIRECTORY_PATH)
3915 continue;
3916
3917 ORDERED_HASHMAP_FOREACH(ja, items)
3918 for (size_t nj = 0; nj < ja->n_items; nj++) {
3919 Item *j = ja->items + nj;
3920
3921 if (!IN_SET(j->type, CREATE_DIRECTORY,
3922 TRUNCATE_DIRECTORY,
3923 CREATE_SUBVOLUME,
3924 CREATE_SUBVOLUME_INHERIT_QUOTA,
3925 CREATE_SUBVOLUME_NEW_QUOTA))
3926 continue;
3927
3928 if (path_equal(j->path, i->path)) {
3929 candidate_item = j;
3930 break;
3931 }
3932
3933 if (candidate_item
3934 ? (path_startswith(j->path, candidate_item->path) && fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)
3935 : path_startswith(i->path, j->path) != NULL)
3936 candidate_item = j;
3937 }
3938
3939 if (candidate_item && candidate_item->age_set) {
3940 i->age = candidate_item->age;
3941 i->age_set = true;
3942 }
3943 }
3944
3945 if (ferror(f)) {
3946 log_error_errno(errno, "Failed to read from file %s: %m", fn);
3947 if (r == 0)
3948 r = -EIO;
3949 }
3950
3951 return r;
3952 }
3953
3954 static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3955 int r;
3956
3957 STRV_FOREACH(arg, args) {
3958 r = read_config_file(config_dirs, *arg, false, invalid_config);
3959 if (r < 0)
3960 return r;
3961 }
3962
3963 return 0;
3964 }
3965
3966 static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3967 _cleanup_strv_free_ char **files = NULL;
3968 _cleanup_free_ char *p = NULL;
3969 int r;
3970
3971 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
3972 if (r < 0)
3973 return r;
3974
3975 STRV_FOREACH(f, files)
3976 if (p && path_equal(*f, p)) {
3977 log_debug("Parsing arguments at position \"%s\"%s", *f, special_glyph(SPECIAL_GLYPH_ELLIPSIS));
3978
3979 r = parse_arguments(config_dirs, args, invalid_config);
3980 if (r < 0)
3981 return r;
3982 } else
3983 /* Just warn, ignore result otherwise.
3984 * read_config_file() has some debug output, so no need to print anything. */
3985 (void) read_config_file(config_dirs, *f, true, invalid_config);
3986
3987 return 0;
3988 }
3989
3990 static int read_credential_lines(bool *invalid_config) {
3991 _cleanup_free_ char *j = NULL;
3992 const char *d;
3993 int r;
3994
3995 r = get_credentials_dir(&d);
3996 if (r == -ENXIO)
3997 return 0;
3998 if (r < 0)
3999 return log_error_errno(r, "Failed to get credentials directory: %m");
4000
4001 j = path_join(d, "tmpfiles.extra");
4002 if (!j)
4003 return log_oom();
4004
4005 (void) read_config_file(/* config_dirs= */ NULL, j, /* ignore_enoent= */ true, invalid_config);
4006 return 0;
4007 }
4008
4009 static int link_parent(ItemArray *a) {
4010 const char *path;
4011 char *prefix;
4012 int r;
4013
4014 assert(a);
4015
4016 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
4017 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
4018 * before their children, and clean up/remove children before their parents. */
4019
4020 if (a->n_items <= 0)
4021 return 0;
4022
4023 path = a->items[0].path;
4024 prefix = newa(char, strlen(path) + 1);
4025 PATH_FOREACH_PREFIX(prefix, path) {
4026 ItemArray *j;
4027
4028 j = ordered_hashmap_get(items, prefix);
4029 if (!j)
4030 j = ordered_hashmap_get(globs, prefix);
4031 if (j) {
4032 r = set_ensure_put(&j->children, NULL, a);
4033 if (r < 0)
4034 return log_oom();
4035
4036 a->parent = j;
4037 return 1;
4038 }
4039 }
4040
4041 return 0;
4042 }
4043
4044 DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
4045 ItemArray, item_array_free);
4046
4047 static int run(int argc, char *argv[]) {
4048 #ifndef STANDALONE
4049 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
4050 _cleanup_(umount_and_rmdir_and_freep) char *unlink_dir = NULL;
4051 #endif
4052 _cleanup_strv_free_ char **config_dirs = NULL;
4053 bool invalid_config = false;
4054 ItemArray *a;
4055 enum {
4056 PHASE_REMOVE_AND_CLEAN,
4057 PHASE_CREATE,
4058 _PHASE_MAX
4059 } phase;
4060 int r, k;
4061
4062 r = parse_argv(argc, argv);
4063 if (r <= 0)
4064 return r;
4065
4066 log_setup();
4067
4068 /* We require /proc/ for a lot of our operations, i.e. for adjusting access modes, for anything
4069 * SELinux related, for recursive operation, for xattr, acl and chattr handling, for btrfs stuff and
4070 * a lot more. It's probably the majority of invocations where /proc/ is required. Since people
4071 * apparently invoke it without anyway and are surprised about the failures, let's catch this early
4072 * and output a nice and friendly warning. */
4073 if (proc_mounted() == 0)
4074 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
4075 "/proc/ is not mounted, but required for successful operation of systemd-tmpfiles. "
4076 "Please mount /proc/. Alternatively, consider using the --root= or --image= switches.");
4077
4078 /* Descending down file system trees might take a lot of fds */
4079 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
4080
4081 if (arg_user) {
4082 r = user_config_paths(&config_dirs);
4083 if (r < 0)
4084 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
4085 } else {
4086 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
4087 if (!config_dirs)
4088 return log_oom();
4089 }
4090
4091 if (DEBUG_LOGGING) {
4092 _cleanup_free_ char *t = NULL;
4093
4094 STRV_FOREACH(i, config_dirs) {
4095 _cleanup_free_ char *j = NULL;
4096
4097 j = path_join(arg_root, *i);
4098 if (!j)
4099 return log_oom();
4100
4101 if (!strextend(&t, "\n\t", j))
4102 return log_oom();
4103 }
4104
4105 log_debug("Looking for configuration files in (higher priority first):%s", t);
4106 }
4107
4108 if (arg_cat_config) {
4109 pager_open(arg_pager_flags);
4110
4111 return cat_config(config_dirs, argv + optind);
4112 }
4113
4114 umask(0022);
4115
4116 r = mac_selinux_init();
4117 if (r < 0)
4118 return r;
4119
4120 #ifndef STANDALONE
4121 if (arg_image) {
4122 assert(!arg_root);
4123
4124 r = mount_image_privately_interactively(
4125 arg_image,
4126 DISSECT_IMAGE_GENERIC_ROOT |
4127 DISSECT_IMAGE_REQUIRE_ROOT |
4128 DISSECT_IMAGE_VALIDATE_OS |
4129 DISSECT_IMAGE_RELAX_VAR_CHECK |
4130 DISSECT_IMAGE_FSCK |
4131 DISSECT_IMAGE_GROWFS,
4132 &unlink_dir,
4133 &loop_device);
4134 if (r < 0)
4135 return r;
4136
4137 arg_root = strdup(unlink_dir);
4138 if (!arg_root)
4139 return log_oom();
4140 }
4141 #else
4142 assert(!arg_image);
4143 #endif
4144
4145 items = ordered_hashmap_new(&item_array_hash_ops);
4146 globs = ordered_hashmap_new(&item_array_hash_ops);
4147 if (!items || !globs)
4148 return log_oom();
4149
4150 /* If command line arguments are specified along with --replace, read all
4151 * configuration files and insert the positional arguments at the specified
4152 * place. Otherwise, if command line arguments are specified, execute just
4153 * them, and finally, without --replace= or any positional arguments, just
4154 * read configuration and execute it.
4155 */
4156 if (arg_replace || optind >= argc)
4157 r = read_config_files(config_dirs, argv + optind, &invalid_config);
4158 else
4159 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
4160 if (r < 0)
4161 return r;
4162
4163 r = read_credential_lines(&invalid_config);
4164 if (r < 0)
4165 return r;
4166
4167 /* Let's now link up all child/parent relationships */
4168 ORDERED_HASHMAP_FOREACH(a, items) {
4169 r = link_parent(a);
4170 if (r < 0)
4171 return r;
4172 }
4173 ORDERED_HASHMAP_FOREACH(a, globs) {
4174 r = link_parent(a);
4175 if (r < 0)
4176 return r;
4177 }
4178
4179 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
4180 * operations. i.e. that we first clean out the platform we then build on. */
4181 for (phase = 0; phase < _PHASE_MAX; phase++) {
4182 OperationMask op;
4183
4184 if (phase == PHASE_REMOVE_AND_CLEAN)
4185 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
4186 else if (phase == PHASE_CREATE)
4187 op = arg_operation & OPERATION_CREATE;
4188 else
4189 assert_not_reached();
4190
4191 if (op == 0) /* Nothing requested in this phase */
4192 continue;
4193
4194 /* The non-globbing ones usually create things, hence we apply them first */
4195 ORDERED_HASHMAP_FOREACH(a, items) {
4196 k = process_item_array(a, op);
4197 if (k < 0 && r >= 0)
4198 r = k;
4199 }
4200
4201 /* The globbing ones usually alter things, hence we apply them second. */
4202 ORDERED_HASHMAP_FOREACH(a, globs) {
4203 k = process_item_array(a, op);
4204 if (k < 0 && r >= 0)
4205 r = k;
4206 }
4207 }
4208
4209 if (ERRNO_IS_RESOURCE(r))
4210 return r;
4211 if (invalid_config)
4212 return EX_DATAERR;
4213 if (r < 0)
4214 return EX_CANTCREAT;
4215 return 0;
4216 }
4217
4218 DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);