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