]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/tmpfiles/tmpfiles.c
coccinelle: also mark previous synthetic errnos as such
[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
baaa35ad
ZJS
800 if (hardlink_vulnerable(st))
801 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
802 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
803 path);
5579f856 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
baaa35ad
ZJS
855 if (path_equal(path, "/") || !path_is_normalized(path))
856 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
857 "Failed to open parent of '%s': invalid path.",
858 path);
5ec9d065
FB
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
baaa35ad
ZJS
882 if (!path_is_normalized(path))
883 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
884 "Failed to open invalid path '%s'.",
885 path);
addc3e30
FB
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 991#else
886cf317 992 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
f8eeeaf9
ZJS
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
baaa35ad
ZJS
1060 if (hardlink_vulnerable(st))
1061 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1062 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1063 path);
5579f856 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
baaa35ad
ZJS
1171 if (isempty(p) && mode != MODE_SET)
1172 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1173 "Setting file attribute on '%s' needs an attribute specification.",
1174 item->path);
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
baaa35ad
ZJS
1183 if (i >= ELEMENTSOF(attributes))
1184 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1185 "Unknown file attribute '%c' on '%s'.",
1186 *p, item->path);
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. */
baaa35ad
ZJS
1229 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1230 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1231 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1232 path);
88ec4dfa
LP
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);
baaa35ad
ZJS
1660 if (r == 0)
1661 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1662 "'%s' already exists and is not a directory.",
1663 path);
54946021
FB
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 2214
baaa35ad
ZJS
2215 if (!S_ISDIR(s.st_mode))
2216 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2217 "%s is not a directory.", i->path);
78a92a5a 2218
4a62c710
MS
2219 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2220 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
78a92a5a 2221
2bb158c1 2222 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
78a92a5a 2223
582deb84
ZJS
2224 log_debug("Cleanup threshold for %s \"%s\" is %s",
2225 mountpoint ? "mount point" : "directory",
2226 instance,
2227 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2228
2229 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2230 MAX_DEPTH, i->keep_first_level);
78a92a5a
MS
2231}
2232
2233static int clean_item(Item *i) {
78a92a5a
MS
2234 assert(i);
2235
582deb84
ZJS
2236 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2237
78a92a5a
MS
2238 switch (i->type) {
2239 case CREATE_DIRECTORY:
d7b8eec7 2240 case CREATE_SUBVOLUME:
5fb13eb5
LP
2241 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2242 case CREATE_SUBVOLUME_NEW_QUOTA:
78a92a5a
MS
2243 case TRUNCATE_DIRECTORY:
2244 case IGNORE_PATH:
849958d1 2245 case COPY_FILES:
78a92a5a 2246 clean_item_instance(i, i->path);
df8dee85 2247 return 0;
65241c14 2248 case EMPTY_DIRECTORY:
78a92a5a 2249 case IGNORE_DIRECTORY_PATH:
936f6bdb 2250 return glob_item(i, clean_item_instance);
78a92a5a 2251 default:
df8dee85 2252 return 0;
78a92a5a 2253 }
78a92a5a
MS
2254}
2255
599ebe29 2256static int process_item(Item *i, OperationMask operation) {
811a1587
LP
2257 OperationMask todo;
2258 int r, q, p;
3b63d2d3
LP
2259
2260 assert(i);
2261
811a1587
LP
2262 todo = operation & ~i->done;
2263 if (todo == 0) /* Everything already done? */
1910cd0e
LP
2264 return 0;
2265
811a1587 2266 i->done |= operation;
1910cd0e 2267
21af3386
LP
2268 r = chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL);
2269 if (r == -EREMOTE) {
48d96904 2270 log_debug_errno(r, "Item '%s' is below autofs, skipping.", i->path);
811a1587 2271 return 0;
21af3386 2272 } else if (r < 0)
48d96904 2273 log_debug_errno(r, "Failed to determine whether '%s' is below autofs, ignoring: %m", i->path);
655f2da0 2274
599ebe29 2275 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
6d7b5433
WD
2276 /* Failure can only be tolerated for create */
2277 if (i->allow_failure)
2278 r = 0;
3b63d2d3 2279
599ebe29
LP
2280 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2281 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
1a967b6b 2282
811a1587 2283 return r < 0 ? r :
1db50423
ZJS
2284 q < 0 ? q :
2285 p;
3b63d2d3
LP
2286}
2287
599ebe29 2288static int process_item_array(ItemArray *array, OperationMask operation) {
96d10d78
LP
2289 int r = 0;
2290 size_t n;
753615e8 2291
3f93da98
ZJS
2292 assert(array);
2293
811a1587
LP
2294 /* Create any parent first. */
2295 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2296 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2297
2298 /* Clean up all children first */
2299 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2300 Iterator i;
2301 ItemArray *c;
2302
2303 SET_FOREACH(c, array->children, i) {
2304 int k;
2305
2306 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2307 if (k < 0 && r == 0)
2308 r = k;
2309 }
2310 }
2311
96d10d78
LP
2312 for (n = 0; n < array->n_items; n++) {
2313 int k;
2314
599ebe29 2315 k = process_item(array->items + n, operation);
3f93da98
ZJS
2316 if (k < 0 && r == 0)
2317 r = k;
2318 }
2319
2320 return r;
2321}
3b63d2d3 2322
3f93da98
ZJS
2323static void item_free_contents(Item *i) {
2324 assert(i);
3b63d2d3 2325 free(i->path);
468d726b 2326 free(i->argument);
ebf4e801 2327 strv_free(i->xattrs);
f8eeeaf9 2328
349cc4a5 2329#if HAVE_ACL
f8eeeaf9
ZJS
2330 acl_free(i->acl_access);
2331 acl_free(i->acl_default);
2332#endif
3b63d2d3
LP
2333}
2334
3f93da98 2335static void item_array_free(ItemArray *a) {
96d10d78 2336 size_t n;
3f93da98
ZJS
2337
2338 if (!a)
2339 return;
2340
96d10d78 2341 for (n = 0; n < a->n_items; n++)
3f93da98 2342 item_free_contents(a->items + n);
96d10d78 2343
811a1587 2344 set_free(a->children);
3f93da98
ZJS
2345 free(a->items);
2346 free(a);
2347}
e2f2fb78 2348
93bab288 2349static int item_compare(const Item *a, const Item *b) {
17493fa5
LP
2350 /* Make sure that the ownership taking item is put first, so
2351 * that we first create the node, and then can adjust it */
2352
93bab288 2353 if (takes_ownership(a->type) && !takes_ownership(b->type))
17493fa5 2354 return -1;
93bab288 2355 if (!takes_ownership(a->type) && takes_ownership(b->type))
17493fa5
LP
2356 return 1;
2357
93bab288 2358 return CMP(a->type, b->type);
17493fa5
LP
2359}
2360
3f93da98 2361static bool item_compatible(Item *a, Item *b) {
bfe95f35
LP
2362 assert(a);
2363 assert(b);
3f93da98 2364 assert(streq(a->path, b->path));
bfe95f35 2365
3f93da98
ZJS
2366 if (takes_ownership(a->type) && takes_ownership(b->type))
2367 /* check if the items are the same */
2368 return streq_ptr(a->argument, b->argument) &&
bfe95f35 2369
3f93da98
ZJS
2370 a->uid_set == b->uid_set &&
2371 a->uid == b->uid &&
bfe95f35 2372
3f93da98
ZJS
2373 a->gid_set == b->gid_set &&
2374 a->gid == b->gid &&
bfe95f35 2375
3f93da98
ZJS
2376 a->mode_set == b->mode_set &&
2377 a->mode == b->mode &&
bfe95f35 2378
3f93da98
ZJS
2379 a->age_set == b->age_set &&
2380 a->age == b->age &&
bfe95f35 2381
3f93da98 2382 a->mask_perms == b->mask_perms &&
bfe95f35 2383
3f93da98 2384 a->keep_first_level == b->keep_first_level &&
468d726b 2385
3f93da98 2386 a->major_minor == b->major_minor;
468d726b 2387
bfe95f35
LP
2388 return true;
2389}
2390
a2aced4a
DR
2391static bool should_include_path(const char *path) {
2392 char **prefix;
2393
abef3f91 2394 STRV_FOREACH(prefix, arg_exclude_prefixes)
582deb84
ZJS
2395 if (path_startswith(path, *prefix)) {
2396 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2397 path, *prefix);
5c795114 2398 return false;
582deb84 2399 }
a2aced4a 2400
abef3f91 2401 STRV_FOREACH(prefix, arg_include_prefixes)
582deb84
ZJS
2402 if (path_startswith(path, *prefix)) {
2403 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
a2aced4a 2404 return true;
582deb84 2405 }
a2aced4a 2406
5c795114
DR
2407 /* no matches, so we should include this path only if we
2408 * have no whitelist at all */
7b943bb7 2409 if (strv_isempty(arg_include_prefixes))
582deb84
ZJS
2410 return true;
2411
2412 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2413 return false;
a2aced4a
DR
2414}
2415
4cef1923
FB
2416static int specifier_expansion_from_arg(Item *i) {
2417 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2418 char **xattr;
2419 int r;
2420
2421 assert(i);
2422
2423 if (i->argument == NULL)
2424 return 0;
2425
2426 switch (i->type) {
2427 case COPY_FILES:
2428 case CREATE_SYMLINK:
2429 case CREATE_FILE:
2430 case TRUNCATE_FILE:
2431 case WRITE_FILE:
2432 r = cunescape(i->argument, 0, &unescaped);
2433 if (r < 0)
2434 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2435
2436 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2437 if (r < 0)
2438 return r;
2439
2440 free_and_replace(i->argument, resolved);
2441 break;
2442
2443 case SET_XATTR:
2444 case RECURSIVE_SET_XATTR:
2445 assert(i->xattrs);
2446
2447 STRV_FOREACH (xattr, i->xattrs) {
2448 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2449 if (r < 0)
2450 return r;
2451
2452 free_and_replace(*xattr, resolved);
2453 }
2454 break;
2455
2456 default:
2457 break;
2458 }
2459 return 0;
2460}
2461
a2d1fb88
LP
2462static int patch_var_run(const char *fname, unsigned line, char **path) {
2463 const char *k;
2464 char *n;
2465
2466 assert(path);
2467 assert(*path);
2468
2469 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2470 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2471 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2472 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2473 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2474 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2475 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2476 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2477 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2478
2479 k = path_startswith(*path, "/var/run/");
2480 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2481 return 0;
2482
2483 n = strjoin("/run/", k);
2484 if (!n)
2485 return log_oom();
2486
2487 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2488 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2489 * to the user, let's still inform the user that these snippets should really be updated. */
2490
2491 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);
2492
81fa4479 2493 free_and_replace(*path, n);
a2d1fb88
LP
2494
2495 return 0;
2496}
2497
d9daae55 2498static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
1731e34a 2499
cde684a2 2500 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
3f93da98
ZJS
2501 _cleanup_(item_free_contents) Item i = {};
2502 ItemArray *existing;
ef43a391 2503 OrderedHashmap *h;
657cf7f4 2504 int r, pos;
6d7b5433 2505 bool force = false, boot = false, allow_failure = false;
3b63d2d3
LP
2506
2507 assert(fname);
2508 assert(line >= 1);
2509 assert(buffer);
2510
68685607 2511 r = extract_many_words(
4034a06d 2512 &buffer,
68685607 2513 NULL,
12ba2c44 2514 EXTRACT_QUOTES,
4034a06d
LP
2515 &action,
2516 &path,
2517 &mode,
2518 &user,
2519 &group,
2520 &age,
2521 NULL);
d9daae55 2522 if (r < 0) {
751223fe
ZJS
2523 if (IN_SET(r, -EINVAL, -EBADSLT))
2524 /* invalid quoting and such or an unknown specifier */
d9daae55 2525 *invalid_config = true;
657cf7f4 2526 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
4b93699d 2527 } else if (r < 2) {
d9daae55 2528 *invalid_config = true;
3b63d2d3 2529 log_error("[%s:%u] Syntax error.", fname, line);
7f2c1f4d 2530 return -EIO;
5008d581
LP
2531 }
2532
aa5f6817 2533 if (!isempty(buffer) && !streq(buffer, "-")) {
4034a06d
LP
2534 i.argument = strdup(buffer);
2535 if (!i.argument)
2536 return log_oom();
2537 }
2538
2e78fa79 2539 if (isempty(action)) {
d9daae55 2540 *invalid_config = true;
2e78fa79 2541 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
c4708f13 2542 return -EINVAL;
2e78fa79
LP
2543 }
2544
5f255144
ZJS
2545 for (pos = 1; action[pos]; pos++) {
2546 if (action[pos] == '!' && !boot)
2547 boot = true;
2548 else if (action[pos] == '+' && !force)
2549 force = true;
6d7b5433
WD
2550 else if (action[pos] == '-' && !allow_failure)
2551 allow_failure = true;
5f255144 2552 else {
d9daae55 2553 *invalid_config = true;
5f255144
ZJS
2554 log_error("[%s:%u] Unknown modifiers in command '%s'",
2555 fname, line, action);
2556 return -EINVAL;
2557 }
2e78fa79
LP
2558 }
2559
582deb84
ZJS
2560 if (boot && !arg_boot) {
2561 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2562 action, path);
c4708f13 2563 return 0;
582deb84 2564 }
c4708f13 2565
3f93da98
ZJS
2566 i.type = action[0];
2567 i.force = force;
6d7b5433 2568 i.allow_failure = allow_failure;
2e78fa79 2569
3f93da98 2570 r = specifier_printf(path, specifier_table, NULL, &i.path);
5a8575ef 2571 if (r == -ENXIO)
4cef1923 2572 return log_unresolvable_specifier(fname, line);
d9daae55 2573 if (r < 0) {
751223fe
ZJS
2574 if (IN_SET(r, -EINVAL, -EBADSLT))
2575 *invalid_config = true;
4cef1923 2576 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
d9daae55 2577 }
1731e34a 2578
a2d1fb88
LP
2579 r = patch_var_run(fname, line, &i.path);
2580 if (r < 0)
2581 return r;
2582
3f93da98 2583 switch (i.type) {
468d726b 2584
777b87e7 2585 case CREATE_DIRECTORY:
d7b8eec7 2586 case CREATE_SUBVOLUME:
5fb13eb5
LP
2587 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2588 case CREATE_SUBVOLUME_NEW_QUOTA:
df8dee85 2589 case EMPTY_DIRECTORY:
777b87e7
MS
2590 case TRUNCATE_DIRECTORY:
2591 case CREATE_FIFO:
2592 case IGNORE_PATH:
78a92a5a 2593 case IGNORE_DIRECTORY_PATH:
777b87e7
MS
2594 case REMOVE_PATH:
2595 case RECURSIVE_REMOVE_PATH:
e73a03e0 2596 case ADJUST_MODE:
777b87e7
MS
2597 case RELABEL_PATH:
2598 case RECURSIVE_RELABEL_PATH:
c82500c6 2599 if (i.argument)
bd550f78 2600 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
c82500c6
LP
2601
2602 break;
2603
2604 case CREATE_FILE:
2605 case TRUNCATE_FILE:
777b87e7 2606 break;
468d726b
LP
2607
2608 case CREATE_SYMLINK:
3f93da98
ZJS
2609 if (!i.argument) {
2610 i.argument = strappend("/usr/share/factory/", i.path);
2611 if (!i.argument)
2f3b873a 2612 return log_oom();
468d726b
LP
2613 }
2614 break;
2615
31ed59c5 2616 case WRITE_FILE:
3f93da98 2617 if (!i.argument) {
d9daae55 2618 *invalid_config = true;
31ed59c5 2619 log_error("[%s:%u] Write file requires argument.", fname, line);
7f2c1f4d 2620 return -EBADMSG;
31ed59c5
LP
2621 }
2622 break;
2623
849958d1 2624 case COPY_FILES:
3f93da98
ZJS
2625 if (!i.argument) {
2626 i.argument = strappend("/usr/share/factory/", i.path);
2627 if (!i.argument)
2f3b873a 2628 return log_oom();
3f93da98 2629 } else if (!path_is_absolute(i.argument)) {
d9daae55 2630 *invalid_config = true;
849958d1
LP
2631 log_error("[%s:%u] Source path is not absolute.", fname, line);
2632 return -EBADMSG;
2633 }
2634
858d36c1 2635 path_simplify(i.argument, false);
849958d1
LP
2636 break;
2637
468d726b
LP
2638 case CREATE_CHAR_DEVICE:
2639 case CREATE_BLOCK_DEVICE: {
2640 unsigned major, minor;
2641
3f93da98 2642 if (!i.argument) {
d9daae55 2643 *invalid_config = true;
468d726b 2644 log_error("[%s:%u] Device file requires argument.", fname, line);
7f2c1f4d 2645 return -EBADMSG;
468d726b
LP
2646 }
2647
3f93da98 2648 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
d9daae55 2649 *invalid_config = true;
3f93da98 2650 log_error("[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i.argument);
7f2c1f4d 2651 return -EBADMSG;
468d726b
LP
2652 }
2653
3f93da98 2654 i.major_minor = makedev(major, minor);
468d726b
LP
2655 break;
2656 }
2657
ebf4e801 2658 case SET_XATTR:
b705ab6a 2659 case RECURSIVE_SET_XATTR:
3f93da98 2660 if (!i.argument) {
d9daae55 2661 *invalid_config = true;
ebf4e801
MW
2662 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2663 return -EBADMSG;
2664 }
bd550f78 2665 r = parse_xattrs_from_arg(&i);
ebf4e801
MW
2666 if (r < 0)
2667 return r;
2668 break;
2669
f8eeeaf9 2670 case SET_ACL:
b705ab6a 2671 case RECURSIVE_SET_ACL:
f8eeeaf9 2672 if (!i.argument) {
d9daae55 2673 *invalid_config = true;
f8eeeaf9
ZJS
2674 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2675 return -EBADMSG;
2676 }
bd550f78 2677 r = parse_acls_from_arg(&i);
f8eeeaf9
ZJS
2678 if (r < 0)
2679 return r;
2680 break;
2681
88ec4dfa
LP
2682 case SET_ATTRIBUTE:
2683 case RECURSIVE_SET_ATTRIBUTE:
22c3a6ca 2684 if (!i.argument) {
d9daae55 2685 *invalid_config = true;
88ec4dfa 2686 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
22c3a6ca
GB
2687 return -EBADMSG;
2688 }
bd550f78 2689 r = parse_attribute_from_arg(&i);
751223fe 2690 if (IN_SET(r, -EINVAL, -EBADSLT))
d9daae55 2691 *invalid_config = true;
22c3a6ca
GB
2692 if (r < 0)
2693 return r;
2694 break;
2695
777b87e7 2696 default:
582deb84 2697 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
d9daae55 2698 *invalid_config = true;
7f2c1f4d 2699 return -EBADMSG;
3b63d2d3 2700 }
468d726b 2701
3f93da98
ZJS
2702 if (!path_is_absolute(i.path)) {
2703 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
d9daae55 2704 *invalid_config = true;
7f2c1f4d 2705 return -EBADMSG;
3b63d2d3
LP
2706 }
2707
858d36c1 2708 path_simplify(i.path, false);
3b63d2d3 2709
3f93da98 2710 if (!should_include_path(i.path))
7f2c1f4d 2711 return 0;
5008d581 2712
4cef1923 2713 r = specifier_expansion_from_arg(&i);
5a8575ef 2714 if (r == -ENXIO)
4cef1923 2715 return log_unresolvable_specifier(fname, line);
751223fe
ZJS
2716 if (r < 0) {
2717 if (IN_SET(r, -EINVAL, -EBADSLT))
2718 *invalid_config = true;
4cef1923
FB
2719 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2720 fname, line);
751223fe 2721 }
4cef1923 2722
cf9a4abd 2723 if (arg_root) {
cde684a2
LP
2724 char *p;
2725
1d13f648 2726 p = prefix_root(arg_root, i.path);
cf9a4abd
MM
2727 if (!p)
2728 return log_oom();
2729
81fa4479 2730 free_and_replace(i.path, p);
cf9a4abd
MM
2731 }
2732
90937fe3 2733 if (!isempty(user) && !streq(user, "-")) {
4b67834e
LP
2734 const char *u = user;
2735
fafff8f1 2736 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL, USER_CREDS_ALLOW_MISSING);
4b67834e 2737 if (r < 0) {
d9daae55
ZJS
2738 *invalid_config = true;
2739 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
3b63d2d3
LP
2740 }
2741
3f93da98 2742 i.uid_set = true;
3b63d2d3
LP
2743 }
2744
90937fe3 2745 if (!isempty(group) && !streq(group, "-")) {
4b67834e
LP
2746 const char *g = group;
2747
fafff8f1 2748 r = get_group_creds(&g, &i.gid, USER_CREDS_ALLOW_MISSING);
4b67834e 2749 if (r < 0) {
d9daae55 2750 *invalid_config = true;
3b63d2d3 2751 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
7f2c1f4d 2752 return r;
3b63d2d3
LP
2753 }
2754
3f93da98 2755 i.gid_set = true;
3b63d2d3
LP
2756 }
2757
90937fe3 2758 if (!isempty(mode) && !streq(mode, "-")) {
abef3f91 2759 const char *mm = mode;
3b63d2d3
LP
2760 unsigned m;
2761
abef3f91 2762 if (*mm == '~') {
3f93da98 2763 i.mask_perms = true;
abef3f91
LP
2764 mm++;
2765 }
2766
2ff7b0a5 2767 if (parse_mode(mm, &m) < 0) {
d9daae55 2768 *invalid_config = true;
3b63d2d3 2769 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
2ff7b0a5 2770 return -EBADMSG;
3b63d2d3
LP
2771 }
2772
3f93da98
ZJS
2773 i.mode = m;
2774 i.mode_set = true;
3b63d2d3 2775 } else
5fb13eb5 2776 i.mode = IN_SET(i.type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA) ? 0755 : 0644;
3b63d2d3 2777
90937fe3 2778 if (!isempty(age) && !streq(age, "-")) {
24f3a374
LP
2779 const char *a = age;
2780
2781 if (*a == '~') {
3f93da98 2782 i.keep_first_level = true;
24f3a374
LP
2783 a++;
2784 }
2785
3f93da98 2786 if (parse_sec(a, &i.age) < 0) {
d9daae55 2787 *invalid_config = true;
3b63d2d3 2788 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
7f2c1f4d 2789 return -EBADMSG;
3b63d2d3
LP
2790 }
2791
3f93da98 2792 i.age_set = true;
3b63d2d3
LP
2793 }
2794
3f93da98 2795 h = needs_glob(i.type) ? globs : items;
bfe95f35 2796
ef43a391 2797 existing = ordered_hashmap_get(h, i.path);
468d726b 2798 if (existing) {
96d10d78 2799 size_t n;
3f93da98 2800
96d10d78 2801 for (n = 0; n < existing->n_items; n++) {
6487ada8 2802 if (!item_compatible(existing->items + n, &i)) {
e286dbaf
ZJS
2803 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2804 fname, line, i.path);
6487ada8
MP
2805 return 0;
2806 }
ebf4e801
MW
2807 }
2808 } else {
3f93da98 2809 existing = new0(ItemArray, 1);
07982ed1
LP
2810 if (!existing)
2811 return log_oom();
2812
ef43a391 2813 r = ordered_hashmap_put(h, i.path, existing);
ccd114f0
LP
2814 if (r < 0) {
2815 free(existing);
3f93da98 2816 return log_oom();
ccd114f0 2817 }
bfe95f35
LP
2818 }
2819
96d10d78 2820 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
3f93da98 2821 return log_oom();
5008d581 2822
7ab7529d
LP
2823 existing->items[existing->n_items++] = i;
2824 i = (struct Item) {};
dd449aca
ZJS
2825
2826 /* Sort item array, to enforce stable ordering of application */
96d10d78 2827 typesafe_qsort(existing->items, existing->n_items, item_compare);
17493fa5 2828
7f2c1f4d 2829 return 0;
5008d581
LP
2830}
2831
ceaaeb9b
ZJS
2832static int cat_config(char **config_dirs, char **args) {
2833 _cleanup_strv_free_ char **files = NULL;
2834 int r;
2835
2836 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2837 if (r < 0)
2838 return r;
2839
2840 return cat_files(NULL, files, 0);
2841}
2842
37ec0fdd
LP
2843static int help(void) {
2844 _cleanup_free_ char *link = NULL;
2845 int r;
2846
2847 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2848 if (r < 0)
2849 return log_oom();
2850
522d4a49
LP
2851 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2852 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
5c795114 2853 " -h --help Show this help\n"
f2b5ca0e 2854 " --user Execute user configuration\n"
eb9da376 2855 " --version Show package version\n"
ceaaeb9b 2856 " --cat-config Show configuration files\n"
5c795114
DR
2857 " --create Create marked files/directories\n"
2858 " --clean Clean up marked directories\n"
2859 " --remove Remove marked files/directories\n"
81815651 2860 " --boot Execute actions only safe at boot\n"
79ca888f
ZJS
2861 " --prefix=PATH Only apply rules with the specified prefix\n"
2862 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
d9daae55 2863 " --root=PATH Operate on an alternate filesystem root\n"
a6d8474f 2864 " --replace=PATH Treat arguments as replacement for PATH\n"
dcd5c891 2865 " --no-pager Do not pipe output into a pager\n"
37ec0fdd
LP
2866 "\nSee the %s for details.\n"
2867 , program_invocation_short_name
2868 , link
2869 );
2870
2871 return 0;
3b63d2d3
LP
2872}
2873
2874static int parse_argv(int argc, char *argv[]) {
2875
2876 enum {
eb9da376 2877 ARG_VERSION = 0x100,
ceaaeb9b 2878 ARG_CAT_CONFIG,
f2b5ca0e 2879 ARG_USER,
3b63d2d3
LP
2880 ARG_CREATE,
2881 ARG_CLEAN,
fba6e687 2882 ARG_REMOVE,
81815651 2883 ARG_BOOT,
5c795114
DR
2884 ARG_PREFIX,
2885 ARG_EXCLUDE_PREFIX,
cf9a4abd 2886 ARG_ROOT,
a6d8474f 2887 ARG_REPLACE,
dcd5c891 2888 ARG_NO_PAGER,
3b63d2d3
LP
2889 };
2890
2891 static const struct option options[] = {
5c795114 2892 { "help", no_argument, NULL, 'h' },
f2b5ca0e 2893 { "user", no_argument, NULL, ARG_USER },
eb9da376 2894 { "version", no_argument, NULL, ARG_VERSION },
ceaaeb9b 2895 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
5c795114
DR
2896 { "create", no_argument, NULL, ARG_CREATE },
2897 { "clean", no_argument, NULL, ARG_CLEAN },
2898 { "remove", no_argument, NULL, ARG_REMOVE },
81815651 2899 { "boot", no_argument, NULL, ARG_BOOT },
5c795114
DR
2900 { "prefix", required_argument, NULL, ARG_PREFIX },
2901 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
cf9a4abd 2902 { "root", required_argument, NULL, ARG_ROOT },
a6d8474f 2903 { "replace", required_argument, NULL, ARG_REPLACE },
dcd5c891 2904 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
eb9da376 2905 {}
3b63d2d3
LP
2906 };
2907
0f474365 2908 int c, r;
3b63d2d3
LP
2909
2910 assert(argc >= 0);
2911 assert(argv);
2912
601185b4 2913 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
3b63d2d3
LP
2914
2915 switch (c) {
2916
2917 case 'h':
37ec0fdd 2918 return help();
eb9da376
LP
2919
2920 case ARG_VERSION:
3f6fd1ba 2921 return version();
3b63d2d3 2922
ceaaeb9b
ZJS
2923 case ARG_CAT_CONFIG:
2924 arg_cat_config = true;
2925 break;
2926
f2b5ca0e
ZJS
2927 case ARG_USER:
2928 arg_user = true;
2929 break;
2930
3b63d2d3 2931 case ARG_CREATE:
1a967b6b 2932 arg_operation |= OPERATION_CREATE;
3b63d2d3
LP
2933 break;
2934
2935 case ARG_CLEAN:
1a967b6b 2936 arg_operation |= OPERATION_CLEAN;
3b63d2d3
LP
2937 break;
2938
2939 case ARG_REMOVE:
1a967b6b 2940 arg_operation |= OPERATION_REMOVE;
3b63d2d3
LP
2941 break;
2942
81815651
ZJS
2943 case ARG_BOOT:
2944 arg_boot = true;
c4708f13
ZJS
2945 break;
2946
fba6e687 2947 case ARG_PREFIX:
7bc040fa 2948 if (strv_push(&arg_include_prefixes, optarg) < 0)
a2aced4a 2949 return log_oom();
fba6e687
LP
2950 break;
2951
5c795114 2952 case ARG_EXCLUDE_PREFIX:
7bc040fa 2953 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
5c795114
DR
2954 return log_oom();
2955 break;
2956
cf9a4abd 2957 case ARG_ROOT:
0f03c2a4 2958 r = parse_path_argument_and_warn(optarg, true, &arg_root);
0f474365 2959 if (r < 0)
0f03c2a4 2960 return r;
cf9a4abd
MM
2961 break;
2962
a6d8474f
ZJS
2963 case ARG_REPLACE:
2964 if (!path_is_absolute(optarg) ||
baaa35ad
ZJS
2965 !endswith(optarg, ".conf"))
2966 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2967 "The argument to --replace= must an absolute path to a config file");
a6d8474f
ZJS
2968
2969 arg_replace = optarg;
2970 break;
2971
dcd5c891 2972 case ARG_NO_PAGER:
0221d68a 2973 arg_pager_flags |= PAGER_DISABLE;
dcd5c891
LP
2974 break;
2975
3b63d2d3
LP
2976 case '?':
2977 return -EINVAL;
2978
2979 default:
eb9da376 2980 assert_not_reached("Unhandled option");
3b63d2d3 2981 }
3b63d2d3 2982
baaa35ad
ZJS
2983 if (arg_operation == 0 && !arg_cat_config)
2984 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2985 "You need to specify at least one of --clean, --create or --remove.");
3b63d2d3 2986
baaa35ad
ZJS
2987 if (arg_replace && arg_cat_config)
2988 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2989 "Option --replace= is not supported with --cat-config");
ceaaeb9b 2990
baaa35ad
ZJS
2991 if (arg_replace && optind >= argc)
2992 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2993 "When --replace= is given, some configuration items must be specified");
a6d8474f 2994
3b63d2d3
LP
2995 return 1;
2996}
2997
a6d8474f 2998static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
f7ac1ed2 2999 _cleanup_fclose_ FILE *_f = NULL;
78a92a5a 3000 Iterator iterator;
1731e34a 3001 unsigned v = 0;
2a98ae4a 3002 FILE *f;
78a92a5a 3003 Item *i;
4e68ec18 3004 int r = 0;
fba6e687
LP
3005
3006 assert(fn);
3007
f7ac1ed2 3008 if (streq(fn, "-")) {
a6d8474f 3009 log_debug("Reading config from stdin…");
f7ac1ed2
ZJS
3010 fn = "<stdin>";
3011 f = stdin;
3012 } else {
a6d8474f 3013 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
f7ac1ed2
ZJS
3014 if (r < 0) {
3015 if (ignore_enoent && r == -ENOENT) {
3016 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3017 return 0;
3018 }
fba6e687 3019
f7ac1ed2
ZJS
3020 return log_error_errno(r, "Failed to open '%s': %m", fn);
3021 }
a6d8474f 3022 log_debug("Reading config file \"%s\"…", fn);
f7ac1ed2 3023 f = _f;
fba6e687
LP
3024 }
3025
2a98ae4a
LP
3026 for (;;) {
3027 _cleanup_free_ char *line = NULL;
3028 bool invalid_line = false;
1731e34a 3029 char *l;
fba6e687 3030 int k;
2a98ae4a
LP
3031
3032 k = read_line(f, LONG_LINE_MAX, &line);
3033 if (k < 0)
3034 return log_error_errno(k, "Failed to read '%s': %m", fn);
3035 if (k == 0)
3036 break;
fba6e687 3037
fba6e687
LP
3038 v++;
3039
3040 l = strstrip(line);
4c701096 3041 if (IN_SET(*l, 0, '#'))
fba6e687
LP
3042 continue;
3043
d9daae55
ZJS
3044 k = parse_line(fn, v, l, &invalid_line);
3045 if (k < 0) {
3046 if (invalid_line)
3047 /* Allow reporting with a special code if the caller requested this */
3048 *invalid_config = true;
3049 else if (r == 0)
3050 /* The first error becomes our return value */
3051 r = k;
3052 }
fba6e687
LP
3053 }
3054
78a92a5a 3055 /* we have to determine age parameter for each entry of type X */
ef43a391 3056 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
78a92a5a
MS
3057 Iterator iter;
3058 Item *j, *candidate_item = NULL;
3059
3060 if (i->type != IGNORE_DIRECTORY_PATH)
3061 continue;
3062
ef43a391 3063 ORDERED_HASHMAP_FOREACH(j, items, iter) {
5fb13eb5 3064 if (!IN_SET(j->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA))
78a92a5a
MS
3065 continue;
3066
3067 if (path_equal(j->path, i->path)) {
3068 candidate_item = j;
3069 break;
3070 }
3071
3072 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3073 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3074 candidate_item = j;
3075 }
3076
9ed2a35e 3077 if (candidate_item && candidate_item->age_set) {
78a92a5a
MS
3078 i->age = candidate_item->age;
3079 i->age_set = true;
3080 }
3081 }
3082
fba6e687 3083 if (ferror(f)) {
56f64d95 3084 log_error_errno(errno, "Failed to read from file %s: %m", fn);
fba6e687
LP
3085 if (r == 0)
3086 r = -EIO;
3087 }
3088
fba6e687
LP
3089 return r;
3090}
3091
a6d8474f
ZJS
3092static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3093 char **arg;
3094 int r;
3095
3096 STRV_FOREACH(arg, args) {
3097 r = read_config_file(config_dirs, *arg, false, invalid_config);
3098 if (r < 0)
3099 return r;
3100 }
3101
3102 return 0;
3103}
3104
3105static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3106 _cleanup_strv_free_ char **files = NULL;
3107 _cleanup_free_ char *p = NULL;
3108 char **f;
3109 int r;
3110
ceaaeb9b 3111 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
a6d8474f 3112 if (r < 0)
ceaaeb9b 3113 return r;
a6d8474f
ZJS
3114
3115 STRV_FOREACH(f, files)
3116 if (p && path_equal(*f, p)) {
3117 log_debug("Parsing arguments at position \"%s\"…", *f);
3118
3119 r = parse_arguments(config_dirs, args, invalid_config);
3120 if (r < 0)
3121 return r;
3122 } else
3123 /* Just warn, ignore result otherwise.
3124 * read_config_file() has some debug output, so no need to print anything. */
3125 (void) read_config_file(config_dirs, *f, true, invalid_config);
3126
3127 return 0;
3128}
3129
811a1587
LP
3130static int link_parent(ItemArray *a) {
3131 const char *path;
3132 char *prefix;
3133 int r;
3134
3135 assert(a);
3136
09f467ac 3137 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
811a1587
LP
3138 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3139 * before their children, and clean up/remove children before their parents. */
3140
3141 if (a->n_items <= 0)
3142 return 0;
3143
3144 path = a->items[0].path;
3145 prefix = alloca(strlen(path) + 1);
3146 PATH_FOREACH_PREFIX(prefix, path) {
3147 ItemArray *j;
3148
3149 j = ordered_hashmap_get(items, prefix);
bd0ce244
LP
3150 if (!j)
3151 j = ordered_hashmap_get(globs, prefix);
811a1587
LP
3152 if (j) {
3153 r = set_ensure_allocated(&j->children, NULL);
3154 if (r < 0)
3155 return log_oom();
3156
3157 r = set_put(j->children, a);
3158 if (r < 0)
3159 return log_oom();
3160
3161 a->parent = j;
3162 return 1;
3163 }
3164 }
3165
3166 return 0;
3167}
3168
5008d581 3169int main(int argc, char *argv[]) {
f2b5ca0e 3170 _cleanup_strv_free_ char **config_dirs = NULL;
44ac4f88 3171 int r, k, r_process = 0;
d9daae55 3172 bool invalid_config = false;
64adb379
LP
3173 Iterator iterator;
3174 ItemArray *a;
44ac4f88
LP
3175 enum {
3176 PHASE_REMOVE_AND_CLEAN,
3177 PHASE_CREATE,
3178 _PHASE_MAX
3179 } phase;
3b63d2d3 3180
fdcad0c2
LP
3181 r = parse_argv(argc, argv);
3182 if (r <= 0)
753615e8 3183 goto finish;
5008d581 3184
6bf3c61c 3185 log_setup_service();
5008d581 3186
f2b5ca0e
ZJS
3187 if (arg_user) {
3188 r = user_config_paths(&config_dirs);
3189 if (r < 0) {
3190 log_error_errno(r, "Failed to initialize configuration directory list: %m");
3191 goto finish;
3192 }
3193 } else {
3194 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
3195 if (!config_dirs) {
3196 r = log_oom();
3197 goto finish;
3198 }
3199 }
3200
79c91cec 3201 if (DEBUG_LOGGING) {
f2b5ca0e
ZJS
3202 _cleanup_free_ char *t = NULL;
3203
3204 t = strv_join(config_dirs, "\n\t");
3205 if (t)
bb9947be 3206 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
f2b5ca0e
ZJS
3207 }
3208
ceaaeb9b 3209 if (arg_cat_config) {
0221d68a 3210 (void) pager_open(arg_pager_flags);
dcd5c891 3211
ceaaeb9b
ZJS
3212 r = cat_config(config_dirs, argv + optind);
3213 goto finish;
3214 }
3215
3216 umask(0022);
3217
3218 mac_selinux_init();
3219
3220 items = ordered_hashmap_new(&string_hash_ops);
3221 globs = ordered_hashmap_new(&string_hash_ops);
3222
3223 if (!items || !globs) {
3224 r = log_oom();
3225 goto finish;
3226 }
3227
a6d8474f
ZJS
3228 /* If command line arguments are specified along with --replace, read all
3229 * configuration files and insert the positional arguments at the specified
3230 * place. Otherwise, if command line arguments are specified, execute just
3231 * them, and finally, without --replace= or any positional arguments, just
3232 * read configuration and execute it.
3233 */
3234 if (arg_replace || optind >= argc)
3235 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3236 else
3237 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3238 if (r < 0)
3239 goto finish;
5008d581 3240
811a1587 3241 /* Let's now link up all child/parent relationships */
ef43a391 3242 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
811a1587
LP
3243 r = link_parent(a);
3244 if (r < 0)
3245 goto finish;
1db50423 3246 }
ef43a391 3247 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
811a1587
LP
3248 r = link_parent(a);
3249 if (r < 0)
3250 goto finish;
3251 }
3252
64adb379
LP
3253 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3254 * operations. i.e. that we first clean out the platform we then build on. */
44ac4f88 3255 for (phase = 0; phase < _PHASE_MAX; phase++) {
64adb379 3256 OperationMask op;
b8bb3e8f 3257
44ac4f88 3258 if (phase == PHASE_REMOVE_AND_CLEAN)
64adb379 3259 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
44ac4f88 3260 else if (phase == PHASE_CREATE)
64adb379
LP
3261 op = arg_operation & OPERATION_CREATE;
3262 else
3263 assert_not_reached("unexpected phase");
3264
3265 if (op == 0) /* Nothing requested in this phase */
3266 continue;
3267
3268 /* The non-globbing ones usually create things, hence we apply them first */
3269 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3270 k = process_item_array(a, op);
3271 if (k < 0 && r_process == 0)
3272 r_process = k;
3273 }
3274
3275 /* The globbing ones usually alter things, hence we apply them second. */
3276 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3277 k = process_item_array(a, op);
3278 if (k < 0 && r_process == 0)
3279 r_process = k;
3280 }
1db50423 3281 }
3b63d2d3 3282
5008d581 3283finish:
dcd5c891
LP
3284 pager_close();
3285
224b0e7a
ZJS
3286 ordered_hashmap_free_with_destructor(items, item_array_free);
3287 ordered_hashmap_free_with_destructor(globs, item_array_free);
5008d581 3288
7bc040fa
LP
3289 free(arg_include_prefixes);
3290 free(arg_exclude_prefixes);
cf9a4abd 3291 free(arg_root);
a2aced4a 3292
17b90525
LP
3293 set_free_free(unix_sockets);
3294
cc56fafe 3295 mac_selinux_finish();
29003cff 3296
bb9947be 3297 if (r < 0 || ERRNO_IS_RESOURCE(-r_process))
d9daae55
ZJS
3298 return EXIT_FAILURE;
3299 else if (invalid_config)
3300 return EX_DATAERR;
bb9947be
ZJS
3301 else if (r_process < 0)
3302 return EX_CANTCREAT;
d9daae55
ZJS
3303 else
3304 return EXIT_SUCCESS;
5008d581 3305}