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