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