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