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