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