]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/tmpfiles/tmpfiles.c
tree-wide: some work-arounds for gcc false positives regarding uninitialized variables
[thirdparty/systemd.git] / src / tmpfiles / tmpfiles.c
CommitLineData
5008d581
LP
1/***
2 This file is part of systemd.
3
3b63d2d3 4 Copyright 2010 Lennart Poettering, Kay Sievers
3f93da98 5 Copyright 2015 Zbigniew Jędrzejewski-Szmek
5008d581
LP
6
7 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
5008d581
LP
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 15 Lesser General Public License for more details.
5008d581 16
5430f7f2 17 You should have received a copy of the GNU Lesser General Public License
5008d581
LP
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19***/
20
3f6fd1ba 21#include <dirent.h>
5008d581 22#include <errno.h>
3f6fd1ba
LP
23#include <fcntl.h>
24#include <fnmatch.h>
25#include <getopt.h>
26#include <glob.h>
5008d581 27#include <limits.h>
3f6fd1ba
LP
28#include <linux/fs.h>
29#include <stdbool.h>
30#include <stddef.h>
3b63d2d3
LP
31#include <stdio.h>
32#include <stdlib.h>
3f6fd1ba 33#include <string.h>
505ef0e3 34#include <sys/stat.h>
ebf4e801 35#include <sys/xattr.h>
3f6fd1ba
LP
36#include <time.h>
37#include <unistd.h>
5008d581 38
3f6fd1ba 39#include "acl-util.h"
b5efdb8a 40#include "alloc-util.h"
3f6fd1ba 41#include "btrfs-util.h"
430f0182 42#include "capability-util.h"
c8b3094d 43#include "chattr-util.h"
3f6fd1ba
LP
44#include "conf-files.h"
45#include "copy.h"
a0f29c76 46#include "def.h"
4f5dd394 47#include "escape.h"
3ffd4af2 48#include "fd-util.h"
0d39fa9c 49#include "fileio.h"
3f6fd1ba 50#include "formats-util.h"
f4f15635 51#include "fs-util.h"
7d50b32a 52#include "glob-util.h"
c004493c 53#include "io-util.h"
3f6fd1ba 54#include "label.h"
5008d581 55#include "log.h"
54693d9b 56#include "macro.h"
d39efe74 57#include "missing.h"
49e942b2 58#include "mkdir.h"
4e036b7a 59#include "mount-util.h"
6bedfcbb 60#include "parse-util.h"
9eb977db 61#include "path-util.h"
c6878637 62#include "rm-rf.h"
d7b8eec7 63#include "selinux-util.h"
3f6fd1ba
LP
64#include "set.h"
65#include "specifier.h"
8fcde012 66#include "stat-util.h"
15a5e950 67#include "stdio-util.h"
8b43440b 68#include "string-table.h"
07630cea 69#include "string-util.h"
3f6fd1ba 70#include "strv.h"
affb60b1 71#include "umask-util.h"
b1d4f8e1 72#include "user-util.h"
3f6fd1ba 73#include "util.h"
5008d581 74
01000479 75/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
5008d581 76 * them in the file system. This is intended to be used to create
db019b8d
KS
77 * properly owned directories beneath /tmp, /var/tmp, /run, which are
78 * volatile and hence need to be recreated on bootup. */
5008d581 79
66ccd038 80typedef enum ItemType {
b8bb3e8f 81 /* These ones take file names */
3b63d2d3
LP
82 CREATE_FILE = 'f',
83 TRUNCATE_FILE = 'F',
84 CREATE_DIRECTORY = 'd',
85 TRUNCATE_DIRECTORY = 'D',
d7b8eec7 86 CREATE_SUBVOLUME = 'v',
5fb13eb5
LP
87 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
88 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
ee17ee7c 89 CREATE_FIFO = 'p',
468d726b
LP
90 CREATE_SYMLINK = 'L',
91 CREATE_CHAR_DEVICE = 'c',
92 CREATE_BLOCK_DEVICE = 'b',
849958d1 93 COPY_FILES = 'C',
b8bb3e8f
LP
94
95 /* These ones take globs */
17493fa5 96 WRITE_FILE = 'w',
df8dee85 97 EMPTY_DIRECTORY = 'e',
b705ab6a
ZJS
98 SET_XATTR = 't',
99 RECURSIVE_SET_XATTR = 'T',
100 SET_ACL = 'a',
101 RECURSIVE_SET_ACL = 'A',
17493fa5
LP
102 SET_ATTRIBUTE = 'h',
103 RECURSIVE_SET_ATTRIBUTE = 'H',
3b63d2d3 104 IGNORE_PATH = 'x',
78a92a5a 105 IGNORE_DIRECTORY_PATH = 'X',
3b63d2d3 106 REMOVE_PATH = 'r',
a8d88783 107 RECURSIVE_REMOVE_PATH = 'R',
777b87e7 108 RELABEL_PATH = 'z',
e73a03e0 109 RECURSIVE_RELABEL_PATH = 'Z',
17493fa5 110 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
66ccd038 111} ItemType;
3b63d2d3
LP
112
113typedef struct Item {
66ccd038 114 ItemType type;
3b63d2d3
LP
115
116 char *path;
468d726b 117 char *argument;
ebf4e801 118 char **xattrs;
f8eeeaf9
ZJS
119#ifdef HAVE_ACL
120 acl_t acl_access;
121 acl_t acl_default;
122#endif
5008d581
LP
123 uid_t uid;
124 gid_t gid;
3b63d2d3
LP
125 mode_t mode;
126 usec_t age;
127
468d726b 128 dev_t major_minor;
88ec4dfa
LP
129 unsigned attribute_value;
130 unsigned attribute_mask;
468d726b 131
3b63d2d3
LP
132 bool uid_set:1;
133 bool gid_set:1;
134 bool mode_set:1;
135 bool age_set:1;
abef3f91 136 bool mask_perms:1;
88ec4dfa 137 bool attribute_set:1;
24f3a374
LP
138
139 bool keep_first_level:1;
1910cd0e 140
2e78fa79
LP
141 bool force:1;
142
1910cd0e 143 bool done:1;
3b63d2d3
LP
144} Item;
145
3f93da98
ZJS
146typedef struct ItemArray {
147 Item *items;
148 size_t count;
149 size_t size;
150} ItemArray;
151
3b63d2d3
LP
152static bool arg_create = false;
153static bool arg_clean = false;
154static bool arg_remove = false;
81815651 155static bool arg_boot = false;
3b63d2d3 156
7bc040fa
LP
157static char **arg_include_prefixes = NULL;
158static char **arg_exclude_prefixes = NULL;
cf9a4abd 159static char *arg_root = NULL;
fba6e687 160
75eb6154 161static const char conf_file_dirs[] = CONF_PATHS_NULSTR("tmpfiles.d");
9125670f 162
3b63d2d3
LP
163#define MAX_DEPTH 256
164
ef43a391 165static OrderedHashmap *items = NULL, *globs = NULL;
7bc040fa
LP
166static Set *unix_sockets = NULL;
167
bd550f78
LP
168static const Specifier specifier_table[] = {
169 { 'm', specifier_machine_id, NULL },
170 { 'b', specifier_boot_id, NULL },
171 { 'H', specifier_host_name, NULL },
172 { 'v', specifier_kernel_release, NULL },
173 {}
174};
175
66ccd038 176static bool needs_glob(ItemType t) {
cde684a2
LP
177 return IN_SET(t,
178 WRITE_FILE,
179 IGNORE_PATH,
180 IGNORE_DIRECTORY_PATH,
181 REMOVE_PATH,
182 RECURSIVE_REMOVE_PATH,
df8dee85 183 EMPTY_DIRECTORY,
e73a03e0 184 ADJUST_MODE,
cde684a2 185 RELABEL_PATH,
b705ab6a
ZJS
186 RECURSIVE_RELABEL_PATH,
187 SET_XATTR,
188 RECURSIVE_SET_XATTR,
189 SET_ACL,
34f64536
LP
190 RECURSIVE_SET_ACL,
191 SET_ATTRIBUTE,
192 RECURSIVE_SET_ATTRIBUTE);
b8bb3e8f
LP
193}
194
3f93da98
ZJS
195static bool takes_ownership(ItemType t) {
196 return IN_SET(t,
197 CREATE_FILE,
198 TRUNCATE_FILE,
199 CREATE_DIRECTORY,
df8dee85 200 EMPTY_DIRECTORY,
3f93da98
ZJS
201 TRUNCATE_DIRECTORY,
202 CREATE_SUBVOLUME,
5fb13eb5
LP
203 CREATE_SUBVOLUME_INHERIT_QUOTA,
204 CREATE_SUBVOLUME_NEW_QUOTA,
3f93da98
ZJS
205 CREATE_FIFO,
206 CREATE_SYMLINK,
207 CREATE_CHAR_DEVICE,
208 CREATE_BLOCK_DEVICE,
209 COPY_FILES,
3f93da98
ZJS
210 WRITE_FILE,
211 IGNORE_PATH,
212 IGNORE_DIRECTORY_PATH,
213 REMOVE_PATH,
214 RECURSIVE_REMOVE_PATH);
215}
216
ef43a391 217static struct Item* find_glob(OrderedHashmap *h, const char *match) {
3f93da98 218 ItemArray *j;
b8bb3e8f
LP
219 Iterator i;
220
ef43a391 221 ORDERED_HASHMAP_FOREACH(j, h, i) {
3f93da98
ZJS
222 unsigned n;
223
224 for (n = 0; n < j->count; n++) {
225 Item *item = j->items + n;
226
227 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
228 return item;
229 }
230 }
b8bb3e8f
LP
231
232 return NULL;
233}
234
17b90525 235static void load_unix_sockets(void) {
7fd1b19b 236 _cleanup_fclose_ FILE *f = NULL;
17b90525
LP
237 char line[LINE_MAX];
238
239 if (unix_sockets)
240 return;
241
242 /* We maintain a cache of the sockets we found in
243 * /proc/net/unix to speed things up a little. */
244
d5099efc 245 unix_sockets = set_new(&string_hash_ops);
fdcad0c2 246 if (!unix_sockets)
17b90525
LP
247 return;
248
fdcad0c2
LP
249 f = fopen("/proc/net/unix", "re");
250 if (!f)
17b90525
LP
251 return;
252
fdcad0c2
LP
253 /* Skip header */
254 if (!fgets(line, sizeof(line), f))
17b90525
LP
255 goto fail;
256
257 for (;;) {
258 char *p, *s;
259 int k;
260
fdcad0c2 261 if (!fgets(line, sizeof(line), f))
17b90525
LP
262 break;
263
264 truncate_nl(line);
265
fdcad0c2
LP
266 p = strchr(line, ':');
267 if (!p)
268 continue;
269
270 if (strlen(p) < 37)
17b90525
LP
271 continue;
272
fdcad0c2 273 p += 37;
17b90525 274 p += strspn(p, WHITESPACE);
fdcad0c2 275 p += strcspn(p, WHITESPACE); /* skip one more word */
17b90525
LP
276 p += strspn(p, WHITESPACE);
277
278 if (*p != '/')
279 continue;
280
fdcad0c2
LP
281 s = strdup(p);
282 if (!s)
17b90525
LP
283 goto fail;
284
4ff21d85
LP
285 path_kill_slashes(s);
286
ef42202a
ZJS
287 k = set_consume(unix_sockets, s);
288 if (k < 0 && k != -EEXIST)
289 goto fail;
17b90525
LP
290 }
291
292 return;
293
294fail:
295 set_free_free(unix_sockets);
296 unix_sockets = NULL;
17b90525
LP
297}
298
299static bool unix_socket_alive(const char *fn) {
300 assert(fn);
301
302 load_unix_sockets();
303
304 if (unix_sockets)
305 return !!set_get(unix_sockets, (char*) fn);
306
307 /* We don't know, so assume yes */
308 return true;
309}
310
99d680ac 311static int dir_is_mount_point(DIR *d, const char *subdir) {
cde684a2 312
2695c5c4 313 union file_handle_union h = FILE_HANDLE_INIT;
99d680ac
KS
314 int mount_id_parent, mount_id;
315 int r_p, r;
316
370c860f 317 r_p = name_to_handle_at(dirfd(d), ".", &h.handle, &mount_id_parent, 0);
99d680ac
KS
318 if (r_p < 0)
319 r_p = -errno;
320
370c860f
DR
321 h.handle.handle_bytes = MAX_HANDLE_SZ;
322 r = name_to_handle_at(dirfd(d), subdir, &h.handle, &mount_id, 0);
99d680ac
KS
323 if (r < 0)
324 r = -errno;
325
326 /* got no handle; make no assumptions, return error */
327 if (r_p < 0 && r < 0)
328 return r_p;
329
330 /* got both handles; if they differ, it is a mount point */
331 if (r_p >= 0 && r >= 0)
332 return mount_id_parent != mount_id;
333
334 /* got only one handle; assume different mount points if one
335 * of both queries was not supported by the filesystem */
e7aab541 336 if (r_p == -ENOSYS || r_p == -EOPNOTSUPP || r == -ENOSYS || r == -EOPNOTSUPP)
99d680ac
KS
337 return true;
338
339 /* return error */
340 if (r_p < 0)
341 return r_p;
342 return r;
343}
344
df99a9ef
ZJS
345static DIR* xopendirat_nomod(int dirfd, const char *path) {
346 DIR *dir;
347
348 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
1532227a
LP
349 if (dir)
350 return dir;
351
352 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
353 if (errno != EPERM)
354 return NULL;
355
356 dir = xopendirat(dirfd, path, O_NOFOLLOW);
357 if (!dir)
358 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
df99a9ef
ZJS
359
360 return dir;
361}
362
363static DIR* opendir_nomod(const char *path) {
364 return xopendirat_nomod(AT_FDCWD, path);
365}
366
3b63d2d3 367static int dir_cleanup(
78a92a5a 368 Item *i,
3b63d2d3
LP
369 const char *p,
370 DIR *d,
371 const struct stat *ds,
372 usec_t cutoff,
373 dev_t rootdev,
374 bool mountpoint,
24f3a374 375 int maxdepth,
265ffa1e
LP
376 bool keep_this_level) {
377
3b63d2d3
LP
378 struct dirent *dent;
379 struct timespec times[2];
380 bool deleted = false;
3b63d2d3
LP
381 int r = 0;
382
383 while ((dent = readdir(d))) {
384 struct stat s;
385 usec_t age;
7fd1b19b 386 _cleanup_free_ char *sub_path = NULL;
3b63d2d3 387
7fcb4b9b 388 if (STR_IN_SET(dent->d_name, ".", ".."))
3b63d2d3 389 continue;
5008d581 390
3b63d2d3 391 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
ca2f4176
KS
392 if (errno == ENOENT)
393 continue;
5008d581 394
ca2f4176
KS
395 /* FUSE, NFS mounts, SELinux might return EACCES */
396 if (errno == EACCES)
56f64d95 397 log_debug_errno(errno, "stat(%s/%s) failed: %m", p, dent->d_name);
ca2f4176 398 else
56f64d95 399 log_error_errno(errno, "stat(%s/%s) failed: %m", p, dent->d_name);
ca2f4176 400 r = -errno;
3b63d2d3
LP
401 continue;
402 }
403
404 /* Stay on the same filesystem */
582deb84
ZJS
405 if (s.st_dev != rootdev) {
406 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
3b63d2d3 407 continue;
582deb84 408 }
3b63d2d3 409
99d680ac
KS
410 /* Try to detect bind mounts of the same filesystem instance; they
411 * do not differ in device major/minors. This type of query is not
412 * supported on all kernels or filesystem types though. */
582deb84
ZJS
413 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0) {
414 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.",
415 p, dent->d_name);
99d680ac 416 continue;
582deb84 417 }
99d680ac 418
3b63d2d3 419 /* Do not delete read-only files owned by root */
582deb84
ZJS
420 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR)) {
421 log_debug("Ignoring \"%s/%s\": read-only and owner by root.", p, dent->d_name);
3b63d2d3 422 continue;
582deb84 423 }
3b63d2d3 424
cde684a2
LP
425 sub_path = strjoin(p, "/", dent->d_name, NULL);
426 if (!sub_path) {
0d0f0c50 427 r = log_oom();
3b63d2d3
LP
428 goto finish;
429 }
430
431 /* Is there an item configured for this path? */
ef43a391 432 if (ordered_hashmap_get(items, sub_path)) {
582deb84 433 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
3b63d2d3 434 continue;
582deb84 435 }
3b63d2d3 436
582deb84
ZJS
437 if (find_glob(globs, sub_path)) {
438 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
b8bb3e8f 439 continue;
582deb84 440 }
b8bb3e8f 441
3b63d2d3
LP
442 if (S_ISDIR(s.st_mode)) {
443
444 if (mountpoint &&
445 streq(dent->d_name, "lost+found") &&
582deb84
ZJS
446 s.st_uid == 0) {
447 log_debug("Ignoring \"%s\".", sub_path);
3b63d2d3 448 continue;
582deb84 449 }
3b63d2d3
LP
450
451 if (maxdepth <= 0)
582deb84 452 log_warning("Reached max depth on \"%s\".", sub_path);
3b63d2d3 453 else {
7fd1b19b 454 _cleanup_closedir_ DIR *sub_dir;
3b63d2d3
LP
455 int q;
456
df99a9ef 457 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
cde684a2 458 if (!sub_dir) {
582deb84
ZJS
459 if (errno != ENOENT)
460 r = log_error_errno(errno, "opendir(%s) failed: %m", sub_path);
3b63d2d3
LP
461
462 continue;
463 }
464
78a92a5a 465 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
3b63d2d3
LP
466 if (q < 0)
467 r = q;
468 }
469
24f3a374
LP
470 /* Note: if you are wondering why we don't
471 * support the sticky bit for excluding
472 * directories from cleaning like we do it for
473 * other file system objects: well, the sticky
474 * bit already has a meaning for directories,
475 * so we don't want to overload that. */
476
582deb84
ZJS
477 if (keep_this_level) {
478 log_debug("Keeping \"%s\".", sub_path);
24f3a374 479 continue;
582deb84 480 }
24f3a374 481
3b63d2d3 482 /* Ignore ctime, we change it when deleting */
582deb84
ZJS
483 age = timespec_load(&s.st_mtim);
484 if (age >= cutoff) {
485 char a[FORMAT_TIMESTAMP_MAX];
486 /* Follows spelling in stat(1). */
487 log_debug("Directory \"%s\": modify time %s is too new.",
488 sub_path,
489 format_timestamp_us(a, sizeof(a), age));
3b63d2d3 490 continue;
582deb84
ZJS
491 }
492
493 age = timespec_load(&s.st_atim);
494 if (age >= cutoff) {
495 char a[FORMAT_TIMESTAMP_MAX];
496 log_debug("Directory \"%s\": access time %s is too new.",
497 sub_path,
498 format_timestamp_us(a, sizeof(a), age));
499 continue;
500 }
3b63d2d3 501
61253220
ZJS
502 log_debug("Removing directory \"%s\".", sub_path);
503 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
504 if (errno != ENOENT && errno != ENOTEMPTY) {
505 log_error_errno(errno, "rmdir(%s): %m", sub_path);
506 r = -errno;
3b63d2d3 507 }
3b63d2d3
LP
508
509 } else {
9c73736d
LP
510 /* Skip files for which the sticky bit is
511 * set. These are semantics we define, and are
512 * unknown elsewhere. See XDG_RUNTIME_DIR
513 * specification for details. */
582deb84
ZJS
514 if (s.st_mode & S_ISVTX) {
515 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
9c73736d 516 continue;
582deb84 517 }
9c73736d 518
582deb84 519 if (mountpoint && S_ISREG(s.st_mode))
1542c01b
ZJS
520 if (s.st_uid == 0 && STR_IN_SET(dent->d_name,
521 ".journal",
522 "aquota.user",
523 "aquota.group")) {
582deb84 524 log_debug("Skipping \"%s\".", sub_path);
3b63d2d3 525 continue;
582deb84 526 }
3b63d2d3 527
17b90525 528 /* Ignore sockets that are listed in /proc/net/unix */
582deb84
ZJS
529 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
530 log_debug("Skipping \"%s\": live socket.", sub_path);
17b90525 531 continue;
582deb84 532 }
17b90525 533
78ab08eb 534 /* Ignore device nodes */
582deb84
ZJS
535 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
536 log_debug("Skipping \"%s\": a device.", sub_path);
78ab08eb 537 continue;
582deb84 538 }
78ab08eb 539
24f3a374
LP
540 /* Keep files on this level around if this is
541 * requested */
582deb84
ZJS
542 if (keep_this_level) {
543 log_debug("Keeping \"%s\".", sub_path);
24f3a374 544 continue;
582deb84 545 }
24f3a374 546
582deb84
ZJS
547 age = timespec_load(&s.st_mtim);
548 if (age >= cutoff) {
549 char a[FORMAT_TIMESTAMP_MAX];
550 /* Follows spelling in stat(1). */
551 log_debug("File \"%s\": modify time %s is too new.",
552 sub_path,
553 format_timestamp_us(a, sizeof(a), age));
3b63d2d3 554 continue;
582deb84 555 }
3b63d2d3 556
582deb84
ZJS
557 age = timespec_load(&s.st_atim);
558 if (age >= cutoff) {
559 char a[FORMAT_TIMESTAMP_MAX];
560 log_debug("File \"%s\": access time %s is too new.",
561 sub_path,
562 format_timestamp_us(a, sizeof(a), age));
563 continue;
564 }
3b63d2d3 565
582deb84
ZJS
566 age = timespec_load(&s.st_ctim);
567 if (age >= cutoff) {
568 char a[FORMAT_TIMESTAMP_MAX];
569 log_debug("File \"%s\": change time %s is too new.",
570 sub_path,
571 format_timestamp_us(a, sizeof(a), age));
572 continue;
3b63d2d3
LP
573 }
574
582deb84
ZJS
575 log_debug("unlink \"%s\"", sub_path);
576
577 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
578 if (errno != ENOENT)
579 r = log_error_errno(errno, "unlink(%s): %m", sub_path);
580
3b63d2d3
LP
581 deleted = true;
582 }
583 }
584
585finish:
586 if (deleted) {
582deb84
ZJS
587 usec_t age1, age2;
588 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
589
3b63d2d3
LP
590 /* Restore original directory timestamps */
591 times[0] = ds->st_atim;
592 times[1] = ds->st_mtim;
593
582deb84
ZJS
594 age1 = timespec_load(&ds->st_atim);
595 age2 = timespec_load(&ds->st_mtim);
596 log_debug("Restoring access and modification time on \"%s\": %s, %s",
597 p,
598 format_timestamp_us(a, sizeof(a), age1),
599 format_timestamp_us(b, sizeof(b), age2));
3b63d2d3 600 if (futimens(dirfd(d), times) < 0)
56f64d95 601 log_error_errno(errno, "utimensat(%s): %m", p);
3b63d2d3
LP
602 }
603
3b63d2d3
LP
604 return r;
605}
606
b705ab6a 607static int path_set_perms(Item *i, const char *path) {
48b8aaa8 608 _cleanup_close_ int fd = -1;
1924a97d 609 struct stat st;
1924a97d 610
cde684a2
LP
611 assert(i);
612 assert(path);
613
48b8aaa8
LP
614 /* We open the file with O_PATH here, to make the operation
615 * somewhat atomic. Also there's unfortunately no fchmodat()
616 * with AT_SYMLINK_NOFOLLOW, hence we emulate it here via
617 * O_PATH. */
618
c4b69156 619 fd = open(path, O_NOFOLLOW|O_CLOEXEC|O_PATH);
48b8aaa8
LP
620 if (fd < 0)
621 return log_error_errno(errno, "Adjusting owner and mode for %s failed: %m", path);
622
623 if (fstatat(fd, "", &st, AT_EMPTY_PATH) < 0)
624 return log_error_errno(errno, "Failed to fstat() file %s: %m", path);
1924a97d 625
48b8aaa8
LP
626 if (S_ISLNK(st.st_mode))
627 log_debug("Skipping mode an owner fix for symlink %s.", path);
628 else {
629 char fn[strlen("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
630 xsprintf(fn, "/proc/self/fd/%i", fd);
abef3f91 631
48b8aaa8
LP
632 /* not using i->path directly because it may be a glob */
633 if (i->mode_set) {
634 mode_t m = i->mode;
635
636 if (i->mask_perms) {
637 if (!(st.st_mode & 0111))
638 m &= ~0111;
639 if (!(st.st_mode & 0222))
7d6884b6 640 m &= ~0222;
48b8aaa8
LP
641 if (!(st.st_mode & 0444))
642 m &= ~0444;
643 if (!S_ISDIR(st.st_mode))
644 m &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
645 }
abef3f91 646
48b8aaa8
LP
647 if (m == (st.st_mode & 07777))
648 log_debug("\"%s\" has right mode %o", path, st.st_mode);
649 else {
650 log_debug("chmod \"%s\" to mode %o", path, m);
651 if (chmod(fn, m) < 0)
652 return log_error_errno(errno, "chmod(%s) failed: %m", path);
653 }
062e01bb 654 }
062e01bb 655
48b8aaa8
LP
656 if ((i->uid != st.st_uid || i->gid != st.st_gid) &&
657 (i->uid_set || i->gid_set)) {
658 log_debug("chown \"%s\" to "UID_FMT"."GID_FMT,
659 path,
660 i->uid_set ? i->uid : UID_INVALID,
661 i->gid_set ? i->gid : GID_INVALID);
662 if (chown(fn,
663 i->uid_set ? i->uid : UID_INVALID,
664 i->gid_set ? i->gid : GID_INVALID) < 0)
7d6884b6 665 return log_error_errno(errno, "chown(%s) failed: %m", path);
48b8aaa8 666 }
582deb84 667 }
062e01bb 668
48b8aaa8
LP
669 fd = safe_close(fd);
670
9855d6c7 671 return label_fix(path, false, false);
062e01bb
MS
672}
673
bd550f78 674static int parse_xattrs_from_arg(Item *i) {
ebf4e801
MW
675 const char *p;
676 int r;
677
678 assert(i);
505ef0e3 679 assert(i->argument);
ebf4e801 680
ebf4e801
MW
681 p = i->argument;
682
4034a06d 683 for (;;) {
bd550f78 684 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL, *xattr_replaced = NULL;
4034a06d 685
12ba2c44 686 r = extract_first_word(&p, &xattr, NULL, EXTRACT_QUOTES|EXTRACT_CUNESCAPE);
4034a06d 687 if (r < 0)
bd550f78 688 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
4034a06d
LP
689 if (r <= 0)
690 break;
505ef0e3 691
bd550f78
LP
692 r = specifier_printf(xattr, specifier_table, NULL, &xattr_replaced);
693 if (r < 0)
694 return log_error_errno(r, "Failed to replace specifiers in extended attribute '%s': %m", xattr);
695
696 r = split_pair(xattr_replaced, "=", &name, &value);
ebf4e801 697 if (r < 0) {
4034a06d 698 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
ebf4e801
MW
699 continue;
700 }
505ef0e3 701
4034a06d 702 if (isempty(name) || isempty(value)) {
bd550f78 703 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
ebf4e801
MW
704 continue;
705 }
505ef0e3 706
4034a06d 707 if (strv_push_pair(&i->xattrs, name, value) < 0)
ebf4e801 708 return log_oom();
505ef0e3 709
4034a06d 710 name = value = NULL;
ebf4e801
MW
711 }
712
4034a06d 713 return 0;
ebf4e801
MW
714}
715
b705ab6a 716static int path_set_xattrs(Item *i, const char *path) {
ebf4e801
MW
717 char **name, **value;
718
719 assert(i);
720 assert(path);
721
ebf4e801
MW
722 STRV_FOREACH_PAIR(name, value, i->xattrs) {
723 int n;
505ef0e3 724
ebf4e801 725 n = strlen(*value);
bd550f78 726 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
ebf4e801 727 if (lsetxattr(path, *name, *value, n, 0) < 0) {
bd550f78 728 log_error("Setting extended attribute %s=%s on %s failed: %m", *name, *value, path);
ebf4e801
MW
729 return -errno;
730 }
731 }
732 return 0;
733}
734
bd550f78 735static int parse_acls_from_arg(Item *item) {
f8eeeaf9
ZJS
736#ifdef HAVE_ACL
737 int r;
f8eeeaf9
ZJS
738
739 assert(item);
740
50d9e46d
ZJS
741 /* If force (= modify) is set, we will not modify the acl
742 * afterwards, so the mask can be added now if necessary. */
bd550f78 743
50d9e46d 744 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
f8eeeaf9 745 if (r < 0)
4034a06d 746 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
f8eeeaf9
ZJS
747#else
748 log_warning_errno(ENOSYS, "ACLs are not supported. Ignoring");
749#endif
750
751 return 0;
752}
753
35888b67 754#ifdef HAVE_ACL
48b8aaa8
LP
755static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
756 _cleanup_(acl_free_charpp) char *t = NULL;
dd4105b0 757 _cleanup_(acl_freep) acl_t dup = NULL;
50d9e46d
ZJS
758 int r;
759
d873e877
HPD
760 /* Returns 0 for success, positive error if already warned,
761 * negative error otherwise. */
762
50d9e46d 763 if (modify) {
dd4105b0 764 r = acls_for_file(path, type, acl, &dup);
50d9e46d
ZJS
765 if (r < 0)
766 return r;
50d9e46d 767
dd4105b0
ZJS
768 r = calc_acl_mask_if_needed(&dup);
769 if (r < 0)
770 return r;
771 } else {
772 dup = acl_dup(acl);
773 if (!dup)
774 return -errno;
775
776 /* the mask was already added earlier if needed */
777 }
778
779 r = add_base_acls_if_needed(&dup, path);
780 if (r < 0)
781 return r;
782
582deb84 783 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
48b8aaa8 784 log_debug("Setting %s ACL %s on %s.",
582deb84 785 type == ACL_TYPE_ACCESS ? "access" : "default",
48b8aaa8 786 strna(t), pretty);
50d9e46d 787
582deb84
ZJS
788 r = acl_set_file(path, type, dup);
789 if (r < 0)
3ea40b78
LP
790 /* Return positive to indicate we already warned */
791 return -log_error_errno(errno,
792 "Setting %s ACL \"%s\" on %s failed: %m",
793 type == ACL_TYPE_ACCESS ? "access" : "default",
48b8aaa8 794 strna(t), pretty);
d873e877 795
582deb84 796 return 0;
50d9e46d 797}
35888b67 798#endif
50d9e46d 799
b705ab6a 800static int path_set_acls(Item *item, const char *path) {
d873e877 801 int r = 0;
f8eeeaf9 802#ifdef HAVE_ACL
48b8aaa8
LP
803 char fn[strlen("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
804 _cleanup_close_ int fd = -1;
805 struct stat st;
806
f8eeeaf9
ZJS
807 assert(item);
808 assert(path);
809
c4b69156 810 fd = open(path, O_NOFOLLOW|O_CLOEXEC|O_PATH);
48b8aaa8
LP
811 if (fd < 0)
812 return log_error_errno(errno, "Adjusting ACL of %s failed: %m", path);
813
814 if (fstatat(fd, "", &st, AT_EMPTY_PATH) < 0)
815 return log_error_errno(errno, "Failed to fstat() file %s: %m", path);
816
817 if (S_ISLNK(st.st_mode)) {
818 log_debug("Skipping ACL fix for symlink %s.", path);
819 return 0;
820 }
821
822 xsprintf(fn, "/proc/self/fd/%i", fd);
823
d873e877 824 if (item->acl_access)
48b8aaa8 825 r = path_set_acl(fn, path, ACL_TYPE_ACCESS, item->acl_access, item->force);
f8eeeaf9 826
d873e877 827 if (r == 0 && item->acl_default)
48b8aaa8 828 r = path_set_acl(fn, path, ACL_TYPE_DEFAULT, item->acl_default, item->force);
f8eeeaf9 829
d873e877
HPD
830 if (r > 0)
831 return -r; /* already warned */
15411c0c 832 else if (r == -EOPNOTSUPP) {
d873e877
HPD
833 log_debug_errno(r, "ACLs not supported by file system at %s", path);
834 return 0;
835 } else if (r < 0)
836 log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
837#endif
838 return r;
f8eeeaf9
ZJS
839}
840
88ec4dfa
LP
841#define ATTRIBUTES_ALL \
842 (FS_NOATIME_FL | \
843 FS_SYNC_FL | \
844 FS_DIRSYNC_FL | \
845 FS_APPEND_FL | \
846 FS_COMPR_FL | \
847 FS_NODUMP_FL | \
848 FS_EXTENT_FL | \
849 FS_IMMUTABLE_FL | \
850 FS_JOURNAL_DATA_FL | \
851 FS_SECRM_FL | \
852 FS_UNRM_FL | \
853 FS_NOTAIL_FL | \
854 FS_TOPDIR_FL | \
855 FS_NOCOW_FL)
856
bd550f78 857static int parse_attribute_from_arg(Item *item) {
88ec4dfa
LP
858
859 static const struct {
860 char character;
861 unsigned value;
862 } attributes[] = {
863 { 'A', FS_NOATIME_FL }, /* do not update atime */
864 { 'S', FS_SYNC_FL }, /* Synchronous updates */
865 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
866 { 'a', FS_APPEND_FL }, /* writes to file may only append */
867 { 'c', FS_COMPR_FL }, /* Compress file */
868 { 'd', FS_NODUMP_FL }, /* do not dump file */
8c35b2ca 869 { 'e', FS_EXTENT_FL }, /* Extents */
88ec4dfa
LP
870 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
871 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
872 { 's', FS_SECRM_FL }, /* Secure deletion */
873 { 'u', FS_UNRM_FL }, /* Undelete */
874 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
875 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies*/
876 { 'C', FS_NOCOW_FL }, /* Do not cow file */
22c3a6ca 877 };
88ec4dfa 878
22c3a6ca
GB
879 enum {
880 MODE_ADD,
881 MODE_DEL,
882 MODE_SET
883 } mode = MODE_ADD;
22c3a6ca 884
88ec4dfa
LP
885 unsigned value = 0, mask = 0;
886 const char *p;
22c3a6ca 887
88ec4dfa
LP
888 assert(item);
889
890 p = item->argument;
891 if (p) {
892 if (*p == '+') {
893 mode = MODE_ADD;
894 p++;
895 } else if (*p == '-') {
896 mode = MODE_DEL;
897 p++;
898 } else if (*p == '=') {
899 mode = MODE_SET;
900 p++;
901 }
22c3a6ca
GB
902 }
903
88ec4dfa
LP
904 if (isempty(p) && mode != MODE_SET) {
905 log_error("Setting file attribute on '%s' needs an attribute specification.", item->path);
22c3a6ca
GB
906 return -EINVAL;
907 }
88ec4dfa
LP
908
909 for (; p && *p ; p++) {
910 unsigned i, v;
911
912 for (i = 0; i < ELEMENTSOF(attributes); i++)
913 if (*p == attributes[i].character)
914 break;
915
916 if (i >= ELEMENTSOF(attributes)) {
917 log_error("Unknown file attribute '%c' on '%s'.", *p, item->path);
22c3a6ca
GB
918 return -EINVAL;
919 }
88ec4dfa
LP
920
921 v = attributes[i].value;
922
5883ff60 923 SET_FLAG(value, v, (mode == MODE_ADD || mode == MODE_SET));
88ec4dfa
LP
924
925 mask |= v;
22c3a6ca
GB
926 }
927
928 if (mode == MODE_SET)
88ec4dfa 929 mask |= ATTRIBUTES_ALL;
22c3a6ca 930
88ec4dfa 931 assert(mask != 0);
22c3a6ca 932
88ec4dfa
LP
933 item->attribute_mask = mask;
934 item->attribute_value = value;
935 item->attribute_set = true;
22c3a6ca
GB
936
937 return 0;
22c3a6ca
GB
938}
939
88ec4dfa 940static int path_set_attribute(Item *item, const char *path) {
22c3a6ca 941 _cleanup_close_ int fd = -1;
22c3a6ca 942 struct stat st;
88ec4dfa
LP
943 unsigned f;
944 int r;
22c3a6ca 945
88ec4dfa 946 if (!item->attribute_set || item->attribute_mask == 0)
22c3a6ca 947 return 0;
22c3a6ca 948
48b8aaa8
LP
949 fd = open(path, O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_NOATIME|O_NOFOLLOW);
950 if (fd < 0) {
951 if (errno == ELOOP)
952 return log_error_errno(errno, "Skipping file attributes adjustment on symlink %s.", path);
953
88ec4dfa 954 return log_error_errno(errno, "Cannot open '%s': %m", path);
48b8aaa8 955 }
22c3a6ca 956
88ec4dfa
LP
957 if (fstat(fd, &st) < 0)
958 return log_error_errno(errno, "Cannot stat '%s': %m", path);
959
960 /* Issuing the file attribute ioctls on device nodes is not
961 * safe, as that will be delivered to the drivers, not the
962 * file system containing the device node. */
963 if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode)) {
964 log_error("Setting file flags is only supported on regular files and directories, cannot set on '%s'.", path);
965 return -EINVAL;
966 }
967
968 f = item->attribute_value & item->attribute_mask;
969
970 /* Mask away directory-specific flags */
22c3a6ca
GB
971 if (!S_ISDIR(st.st_mode))
972 f &= ~FS_DIRSYNC_FL;
88ec4dfa
LP
973
974 r = chattr_fd(fd, f, item->attribute_mask);
22c3a6ca 975 if (r < 0)
ad75a97f
LP
976 log_full_errno(r == -ENOTTY ? LOG_DEBUG : LOG_WARNING,
977 r,
978 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x: %m",
979 path, item->attribute_value, item->attribute_mask);
22c3a6ca
GB
980
981 return 0;
982}
983
d4e9eb91 984static int write_one_file(Item *i, const char *path) {
43ad6e31
LP
985 _cleanup_close_ int fd = -1;
986 int flags, r = 0;
d4e9eb91 987 struct stat st;
d4e9eb91 988
874f1947
LP
989 assert(i);
990 assert(path);
991
43ad6e31
LP
992 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND|O_NOFOLLOW :
993 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC|O_NOFOLLOW : 0;
d4e9eb91 994
43ad6e31 995 RUN_WITH_UMASK(0000) {
ecabcf8b 996 mac_selinux_create_file_prepare(path, S_IFREG);
43ad6e31 997 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
ecabcf8b 998 mac_selinux_create_file_clear();
5c0d398d 999 }
d4e9eb91
DR
1000
1001 if (fd < 0) {
582deb84
ZJS
1002 if (i->type == WRITE_FILE && errno == ENOENT) {
1003 log_debug_errno(errno, "Not writing \"%s\": %m", path);
d4e9eb91 1004 return 0;
582deb84 1005 }
d4e9eb91 1006
f44b28fd
MO
1007 r = -errno;
1008 if (!i->argument && errno == EROFS && stat(path, &st) == 0 &&
1009 (i->type == CREATE_FILE || st.st_size == 0))
1010 goto check_mode;
1011
1012 return log_error_errno(r, "Failed to create file %s: %m", path);
d4e9eb91
DR
1013 }
1014
1015 if (i->argument) {
bd550f78 1016 _cleanup_free_ char *unescaped = NULL, *replaced = NULL;
582deb84 1017
4034a06d 1018 log_debug("%s to \"%s\".", i->type == CREATE_FILE ? "Appending" : "Writing", path);
d4e9eb91 1019
527b7a42
LP
1020 r = cunescape(i->argument, 0, &unescaped);
1021 if (r < 0)
1022 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
d4e9eb91 1023
bd550f78
LP
1024 r = specifier_printf(unescaped, specifier_table, NULL, &replaced);
1025 if (r < 0)
1026 return log_error_errno(r, "Failed to replace specifiers in parameter to write '%s': %m", unescaped);
1027
1028 r = loop_write(fd, replaced, strlen(replaced), false);
582deb84
ZJS
1029 if (r < 0)
1030 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1031 } else
1032 log_debug("\"%s\" has been created.", path);
d4e9eb91 1033
43ad6e31 1034 fd = safe_close(fd);
3612fbc1 1035
4a62c710
MS
1036 if (stat(path, &st) < 0)
1037 return log_error_errno(errno, "stat(%s) failed: %m", path);
d4e9eb91 1038
f44b28fd 1039 check_mode:
d4e9eb91
DR
1040 if (!S_ISREG(st.st_mode)) {
1041 log_error("%s is not a file.", path);
1042 return -EEXIST;
1043 }
1044
b705ab6a 1045 r = path_set_perms(i, path);
d4e9eb91
DR
1046 if (r < 0)
1047 return r;
1048
1049 return 0;
1050}
1051
081043cf
ZJS
1052typedef int (*action_t)(Item *, const char *);
1053
1054static int item_do_children(Item *i, const char *path, action_t action) {
7fd1b19b 1055 _cleanup_closedir_ DIR *d;
e73a03e0
LP
1056 int r = 0;
1057
1058 assert(i);
1059 assert(path);
a8d88783
MS
1060
1061 /* This returns the first error we run into, but nevertheless
1062 * tries to go on */
1063
df99a9ef
ZJS
1064 d = opendir_nomod(path);
1065 if (!d)
e73a03e0 1066 return errno == ENOENT || errno == ENOTDIR ? 0 : -errno;
a8d88783
MS
1067
1068 for (;;) {
e73a03e0 1069 _cleanup_free_ char *p = NULL;
7d5e9c0f 1070 struct dirent *de;
e73a03e0 1071 int q;
a8d88783 1072
d78096b3
FW
1073 errno = 0;
1074 de = readdir(d);
e73a03e0 1075 if (!de) {
b3267152 1076 if (errno > 0 && r == 0)
e73a03e0 1077 r = -errno;
a8d88783 1078
a8d88783 1079 break;
e73a03e0 1080 }
a8d88783 1081
7fcb4b9b 1082 if (STR_IN_SET(de->d_name, ".", ".."))
a8d88783
MS
1083 continue;
1084
e73a03e0
LP
1085 p = strjoin(path, "/", de->d_name, NULL);
1086 if (!p)
1087 return -ENOMEM;
a8d88783 1088
081043cf 1089 q = action(i, p);
e73a03e0
LP
1090 if (q < 0 && q != -ENOENT && r == 0)
1091 r = q;
a8d88783 1092
e73a03e0 1093 if (IN_SET(de->d_type, DT_UNKNOWN, DT_DIR)) {
081043cf 1094 q = item_do_children(i, p, action);
e73a03e0
LP
1095 if (q < 0 && r == 0)
1096 r = q;
a8d88783 1097 }
a8d88783
MS
1098 }
1099
e73a03e0 1100 return r;
a8d88783
MS
1101}
1102
081043cf 1103static int glob_item(Item *i, action_t action, bool recursive) {
df99a9ef 1104 _cleanup_globfree_ glob_t g = {
ebf31a1f
ZJS
1105 .gl_closedir = (void (*)(void *)) closedir,
1106 .gl_readdir = (struct dirent *(*)(void *)) readdir,
1107 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
df99a9ef
ZJS
1108 .gl_lstat = lstat,
1109 .gl_stat = stat,
1110 };
e73a03e0 1111 int r = 0, k;
99e68c0b
MS
1112 char **fn;
1113
99e68c0b 1114 errno = 0;
df99a9ef 1115 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE|GLOB_ALTDIRFUNC, NULL, &g);
081043cf
ZJS
1116 if (k != 0 && k != GLOB_NOMATCH)
1117 return log_error_errno(errno ?: EIO, "glob(%s) failed: %m", i->path);
99e68c0b 1118
c84a9488
ZJS
1119 STRV_FOREACH(fn, g.gl_pathv) {
1120 k = action(i, *fn);
e73a03e0 1121 if (k < 0 && r == 0)
99e68c0b 1122 r = k;
081043cf
ZJS
1123
1124 if (recursive) {
1125 k = item_do_children(i, *fn, action);
1126 if (k < 0 && r == 0)
1127 r = k;
1128 }
c84a9488 1129 }
99e68c0b 1130
99e68c0b
MS
1131 return r;
1132}
1133
294929f8
ZJS
1134typedef enum {
1135 CREATION_NORMAL,
1136 CREATION_EXISTING,
1137 CREATION_FORCE,
7a7d5db7
LP
1138 _CREATION_MODE_MAX,
1139 _CREATION_MODE_INVALID = -1
294929f8
ZJS
1140} CreationMode;
1141
7a7d5db7
LP
1142static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1143 [CREATION_NORMAL] = "Created",
1144 [CREATION_EXISTING] = "Found existing",
1145 [CREATION_FORCE] = "Created replacement",
1146};
1147
1148DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
294929f8 1149
3b63d2d3 1150static int create_item(Item *i) {
75c2a9fd 1151 _cleanup_free_ char *resolved = NULL;
3b63d2d3 1152 struct stat st;
df28bc08 1153 int r = 0;
114a17d2 1154 int q = 0;
294929f8 1155 CreationMode creation;
5008d581 1156
3b63d2d3 1157 assert(i);
5008d581 1158
582deb84
ZJS
1159 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1160
3b63d2d3
LP
1161 switch (i->type) {
1162
1163 case IGNORE_PATH:
78a92a5a 1164 case IGNORE_DIRECTORY_PATH:
3b63d2d3
LP
1165 case REMOVE_PATH:
1166 case RECURSIVE_REMOVE_PATH:
1167 return 0;
5008d581 1168
3b63d2d3 1169 case CREATE_FILE:
31ed59c5 1170 case TRUNCATE_FILE:
1845fdd9
DR
1171 r = write_one_file(i, i->path);
1172 if (r < 0)
1173 return r;
1174 break;
265ffa1e 1175
5c5ccf12 1176 case COPY_FILES: {
5c5ccf12
LP
1177 r = specifier_printf(i->argument, specifier_table, NULL, &resolved);
1178 if (r < 0)
1179 return log_error_errno(r, "Failed to substitute specifiers in copy source %s: %m", i->argument);
1180
1181 log_debug("Copying tree \"%s\" to \"%s\".", resolved, i->path);
1182 r = copy_tree(resolved, i->path, false);
f44b28fd
MO
1183
1184 if (r == -EROFS && stat(i->path, &st) == 0)
1185 r = -EEXIST;
1186
849958d1 1187 if (r < 0) {
e156347e
LP
1188 struct stat a, b;
1189
8d3d7072
MS
1190 if (r != -EEXIST)
1191 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
e156347e 1192
5c5ccf12
LP
1193 if (stat(resolved, &a) < 0)
1194 return log_error_errno(errno, "stat(%s) failed: %m", resolved);
e156347e 1195
4a62c710
MS
1196 if (stat(i->path, &b) < 0)
1197 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
e156347e
LP
1198
1199 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1200 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1201 return 0;
1202 }
849958d1
LP
1203 }
1204
b705ab6a 1205 r = path_set_perms(i, i->path);
849958d1
LP
1206 if (r < 0)
1207 return r;
1208
1209 break;
1210
d4e9eb91 1211 case WRITE_FILE:
081043cf 1212 r = glob_item(i, write_one_file, false);
f05bc3f7
MS
1213 if (r < 0)
1214 return r;
5008d581 1215
3b63d2d3
LP
1216 break;
1217
3b63d2d3 1218 case CREATE_DIRECTORY:
d7b8eec7
LP
1219 case TRUNCATE_DIRECTORY:
1220 case CREATE_SUBVOLUME:
5fb13eb5
LP
1221 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1222 case CREATE_SUBVOLUME_NEW_QUOTA:
d7b8eec7 1223 RUN_WITH_UMASK(0000)
5c0d398d 1224 mkdir_parents_label(i->path, 0755);
d7b8eec7 1225
5fb13eb5 1226 if (IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA)) {
2904e949
LP
1227
1228 if (btrfs_is_subvol(isempty(arg_root) ? "/" : arg_root) <= 0)
1229
1230 /* Don't create a subvolume unless the
1231 * root directory is one, too. We do
1232 * this under the assumption that if
1233 * the root directory is just a plain
1234 * directory (i.e. very light-weight),
1235 * we shouldn't try to split it up
1236 * into subvolumes (i.e. more
1237 * heavy-weight). Thus, chroot()
1238 * environments and suchlike will get
1239 * a full brtfs subvolume set up below
1240 * their tree only if they
1241 * specifically set up a btrfs
1242 * subvolume for the root dir too. */
1243
1244 r = -ENOTTY;
1245 else {
1246 RUN_WITH_UMASK((~i->mode) & 0777)
1247 r = btrfs_subvol_make(i->path);
1248 }
5fb13eb5 1249 } else
d7b8eec7
LP
1250 r = 0;
1251
582deb84 1252 if (IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY) || r == -ENOTTY)
d7b8eec7
LP
1253 RUN_WITH_UMASK(0000)
1254 r = mkdir_label(i->path, i->mode);
5008d581 1255
e156347e 1256 if (r < 0) {
7b135a73 1257 int k;
5008d581 1258
7b135a73
LP
1259 if (r != -EEXIST && r != -EROFS)
1260 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", i->path);
5008d581 1261
7b135a73
LP
1262 k = is_dir(i->path, false);
1263 if (k == -ENOENT && r == -EROFS)
1264 return log_error_errno(r, "%s does not exist and cannot be created as the file system is read-only.", i->path);
1265 if (k < 0)
1266 return log_error_errno(k, "Failed to check if %s exists: %m", i->path);
1267 if (!k) {
1268 log_warning("\"%s\" already exists and is not a directory.", i->path);
e156347e
LP
1269 return 0;
1270 }
294929f8
ZJS
1271
1272 creation = CREATION_EXISTING;
1273 } else
1274 creation = CREATION_NORMAL;
7b135a73 1275
7a7d5db7 1276 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(creation), i->path);
5008d581 1277
5fb13eb5
LP
1278 if (IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
1279 r = btrfs_subvol_auto_qgroup(i->path, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
114a17d2 1280 if (r == -ENOTTY)
022ffe4c 1281 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
114a17d2 1282 else if (r == -EROFS)
022ffe4c 1283 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
114a17d2 1284 else if (r == -ENOPROTOOPT)
022ffe4c 1285 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
114a17d2
EV
1286 else if (r < 0)
1287 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1288 else if (r > 0)
5fb13eb5 1289 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
114a17d2 1290 else if (r == 0)
5fb13eb5
LP
1291 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1292 }
1293
df8dee85
ZJS
1294 /* fall through */
1295
1296 case EMPTY_DIRECTORY:
b705ab6a 1297 r = path_set_perms(i, i->path);
114a17d2
EV
1298 if (q < 0)
1299 return q;
f05bc3f7
MS
1300 if (r < 0)
1301 return r;
3b63d2d3
LP
1302
1303 break;
ee17ee7c
LP
1304
1305 case CREATE_FIFO:
5c0d398d 1306 RUN_WITH_UMASK(0000) {
ecabcf8b 1307 mac_selinux_create_file_prepare(i->path, S_IFIFO);
5c0d398d 1308 r = mkfifo(i->path, i->mode);
ecabcf8b 1309 mac_selinux_create_file_clear();
5c0d398d 1310 }
ee17ee7c 1311
1554afae 1312 if (r < 0) {
4a62c710
MS
1313 if (errno != EEXIST)
1314 return log_error_errno(errno, "Failed to create fifo %s: %m", i->path);
ee17ee7c 1315
a542c4dc 1316 if (lstat(i->path, &st) < 0)
4a62c710 1317 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
ee17ee7c 1318
1554afae
LP
1319 if (!S_ISFIFO(st.st_mode)) {
1320
1321 if (i->force) {
1554afae 1322 RUN_WITH_UMASK(0000) {
ecabcf8b 1323 mac_selinux_create_file_prepare(i->path, S_IFIFO);
1554afae 1324 r = mkfifo_atomic(i->path, i->mode);
ecabcf8b 1325 mac_selinux_create_file_clear();
1554afae
LP
1326 }
1327
f647962d
MS
1328 if (r < 0)
1329 return log_error_errno(r, "Failed to create fifo %s: %m", i->path);
294929f8 1330 creation = CREATION_FORCE;
1554afae 1331 } else {
a542c4dc 1332 log_warning("\"%s\" already exists and is not a fifo.", i->path);
1554afae
LP
1333 return 0;
1334 }
294929f8
ZJS
1335 } else
1336 creation = CREATION_EXISTING;
1337 } else
1338 creation = CREATION_NORMAL;
7a7d5db7 1339 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), i->path);
ee17ee7c 1340
b705ab6a 1341 r = path_set_perms(i, i->path);
f05bc3f7
MS
1342 if (r < 0)
1343 return r;
ee17ee7c
LP
1344
1345 break;
5c5ccf12 1346 }
a8d88783 1347
5c5ccf12 1348 case CREATE_SYMLINK: {
5c5ccf12
LP
1349 r = specifier_printf(i->argument, specifier_table, NULL, &resolved);
1350 if (r < 0)
1351 return log_error_errno(r, "Failed to substitute specifiers in symlink target %s: %m", i->argument);
468d726b 1352
ecabcf8b 1353 mac_selinux_create_file_prepare(i->path, S_IFLNK);
5c5ccf12 1354 r = symlink(resolved, i->path);
ecabcf8b 1355 mac_selinux_create_file_clear();
e9a5ef7c 1356
468d726b 1357 if (r < 0) {
2e78fa79 1358 _cleanup_free_ char *x = NULL;
468d726b 1359
4a62c710 1360 if (errno != EEXIST)
5c5ccf12 1361 return log_error_errno(errno, "symlink(%s, %s) failed: %m", resolved, i->path);
2e78fa79
LP
1362
1363 r = readlink_malloc(i->path, &x);
5c5ccf12 1364 if (r < 0 || !streq(resolved, x)) {
2e78fa79
LP
1365
1366 if (i->force) {
ecabcf8b 1367 mac_selinux_create_file_prepare(i->path, S_IFLNK);
5c5ccf12 1368 r = symlink_atomic(resolved, i->path);
ecabcf8b 1369 mac_selinux_create_file_clear();
2e78fa79 1370
f647962d 1371 if (r < 0)
5c5ccf12 1372 return log_error_errno(r, "symlink(%s, %s) failed: %m", resolved, i->path);
a542c4dc 1373
294929f8 1374 creation = CREATION_FORCE;
1554afae 1375 } else {
582deb84 1376 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
1554afae
LP
1377 return 0;
1378 }
294929f8
ZJS
1379 } else
1380 creation = CREATION_EXISTING;
1381 } else
a542c4dc 1382
294929f8 1383 creation = CREATION_NORMAL;
7a7d5db7 1384 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
468d726b 1385 break;
5c5ccf12 1386 }
468d726b
LP
1387
1388 case CREATE_BLOCK_DEVICE:
1389 case CREATE_CHAR_DEVICE: {
cb7ed9df
LP
1390 mode_t file_type;
1391
1392 if (have_effective_cap(CAP_MKNOD) == 0) {
1393 /* In a container we lack CAP_MKNOD. We
ab06eef8 1394 shouldn't attempt to create the device node in
cb7ed9df
LP
1395 that case to avoid noise, and we don't support
1396 virtualized devices in containers anyway. */
1397
1398 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
1399 return 0;
1400 }
1401
1554afae 1402 file_type = i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR;
468d726b 1403
5c0d398d 1404 RUN_WITH_UMASK(0000) {
ecabcf8b 1405 mac_selinux_create_file_prepare(i->path, file_type);
5c0d398d 1406 r = mknod(i->path, i->mode | file_type, i->major_minor);
ecabcf8b 1407 mac_selinux_create_file_clear();
5c0d398d 1408 }
468d726b 1409
6555ad8e
KS
1410 if (r < 0) {
1411 if (errno == EPERM) {
1412 log_debug("We lack permissions, possibly because of cgroup configuration; "
1413 "skipping creation of device node %s.", i->path);
1414 return 0;
1415 }
1416
4a62c710
MS
1417 if (errno != EEXIST)
1418 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
468d726b 1419
a542c4dc 1420 if (lstat(i->path, &st) < 0)
4a62c710 1421 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
468d726b 1422
1554afae
LP
1423 if ((st.st_mode & S_IFMT) != file_type) {
1424
1425 if (i->force) {
1426
1427 RUN_WITH_UMASK(0000) {
ecabcf8b 1428 mac_selinux_create_file_prepare(i->path, file_type);
1554afae 1429 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
ecabcf8b 1430 mac_selinux_create_file_clear();
1554afae
LP
1431 }
1432
f647962d 1433 if (r < 0)
294929f8
ZJS
1434 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1435 creation = CREATION_FORCE;
1554afae
LP
1436 } else {
1437 log_debug("%s is not a device node.", i->path);
1438 return 0;
1439 }
294929f8
ZJS
1440 } else
1441 creation = CREATION_EXISTING;
1442 } else
1443 creation = CREATION_NORMAL;
a542c4dc 1444
294929f8 1445 log_debug("%s %s device node \"%s\" %u:%u.",
7a7d5db7 1446 creation_mode_verb_to_string(creation),
582deb84
ZJS
1447 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1448 i->path, major(i->mode), minor(i->mode));
468d726b 1449
b705ab6a 1450 r = path_set_perms(i, i->path);
468d726b
LP
1451 if (r < 0)
1452 return r;
1453
1454 break;
1455 }
1456
e73a03e0 1457 case ADJUST_MODE:
777b87e7 1458 case RELABEL_PATH:
b705ab6a 1459 r = glob_item(i, path_set_perms, false);
777b87e7 1460 if (r < 0)
96ca8194 1461 return r;
777b87e7
MS
1462 break;
1463
a8d88783 1464 case RECURSIVE_RELABEL_PATH:
b705ab6a 1465 r = glob_item(i, path_set_perms, true);
a8d88783
MS
1466 if (r < 0)
1467 return r;
ebf4e801 1468 break;
e73a03e0 1469
ebf4e801 1470 case SET_XATTR:
b705ab6a
ZJS
1471 r = glob_item(i, path_set_xattrs, false);
1472 if (r < 0)
1473 return r;
1474 break;
1475
1476 case RECURSIVE_SET_XATTR:
1477 r = glob_item(i, path_set_xattrs, true);
ebf4e801
MW
1478 if (r < 0)
1479 return r;
e73a03e0 1480 break;
f8eeeaf9
ZJS
1481
1482 case SET_ACL:
b705ab6a 1483 r = glob_item(i, path_set_acls, false);
f8eeeaf9
ZJS
1484 if (r < 0)
1485 return r;
b705ab6a
ZJS
1486 break;
1487
1488 case RECURSIVE_SET_ACL:
1489 r = glob_item(i, path_set_acls, true);
1490 if (r < 0)
1491 return r;
1492 break;
22c3a6ca 1493
88ec4dfa
LP
1494 case SET_ATTRIBUTE:
1495 r = glob_item(i, path_set_attribute, false);
22c3a6ca
GB
1496 if (r < 0)
1497 return r;
1498 break;
1499
88ec4dfa
LP
1500 case RECURSIVE_SET_ATTRIBUTE:
1501 r = glob_item(i, path_set_attribute, true);
22c3a6ca
GB
1502 if (r < 0)
1503 return r;
1504 break;
3b63d2d3
LP
1505 }
1506
f05bc3f7 1507 return 0;
3b63d2d3
LP
1508}
1509
a0896123 1510static int remove_item_instance(Item *i, const char *instance) {
3b63d2d3
LP
1511 int r;
1512
1513 assert(i);
1514
1515 switch (i->type) {
1516
3b63d2d3 1517 case REMOVE_PATH:
4a62c710 1518 if (remove(instance) < 0 && errno != ENOENT)
3f93da98 1519 return log_error_errno(errno, "rm(%s): %m", instance);
3b63d2d3
LP
1520
1521 break;
1522
1523 case TRUNCATE_DIRECTORY:
1524 case RECURSIVE_REMOVE_PATH:
d139b24a
LP
1525 /* FIXME: we probably should use dir_cleanup() here
1526 * instead of rm_rf() so that 'x' is honoured. */
582deb84 1527 log_debug("rm -rf \"%s\"", instance);
1b26f09e 1528 r = rm_rf(instance, (i->type == RECURSIVE_REMOVE_PATH ? REMOVE_ROOT|REMOVE_SUBVOLUME : 0) | REMOVE_PHYSICAL);
f647962d
MS
1529 if (r < 0 && r != -ENOENT)
1530 return log_error_errno(r, "rm_rf(%s): %m", instance);
3b63d2d3
LP
1531
1532 break;
7fcb4b9b
ZJS
1533
1534 default:
1535 assert_not_reached("wut?");
3b63d2d3
LP
1536 }
1537
1538 return 0;
1539}
1540
a0896123 1541static int remove_item(Item *i) {
b8bb3e8f
LP
1542 assert(i);
1543
582deb84
ZJS
1544 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
1545
b8bb3e8f
LP
1546 switch (i->type) {
1547
b8bb3e8f
LP
1548 case REMOVE_PATH:
1549 case TRUNCATE_DIRECTORY:
99e68c0b 1550 case RECURSIVE_REMOVE_PATH:
df8dee85 1551 return glob_item(i, remove_item_instance, false);
b8bb3e8f 1552
df8dee85
ZJS
1553 default:
1554 return 0;
1555 }
b8bb3e8f
LP
1556}
1557
78a92a5a 1558static int clean_item_instance(Item *i, const char* instance) {
7fd1b19b 1559 _cleanup_closedir_ DIR *d = NULL;
78a92a5a
MS
1560 struct stat s, ps;
1561 bool mountpoint;
78a92a5a 1562 usec_t cutoff, n;
582deb84 1563 char timestamp[FORMAT_TIMESTAMP_MAX];
78a92a5a
MS
1564
1565 assert(i);
1566
1567 if (!i->age_set)
1568 return 0;
1569
1570 n = now(CLOCK_REALTIME);
1571 if (n < i->age)
1572 return 0;
1573
1574 cutoff = n - i->age;
1575
df99a9ef 1576 d = opendir_nomod(instance);
78a92a5a 1577 if (!d) {
582deb84
ZJS
1578 if (errno == ENOENT || errno == ENOTDIR) {
1579 log_debug_errno(errno, "Directory \"%s\": %m", instance);
78a92a5a 1580 return 0;
582deb84 1581 }
78a92a5a 1582
582deb84 1583 log_error_errno(errno, "Failed to open directory %s: %m", instance);
78a92a5a
MS
1584 return -errno;
1585 }
1586
4a62c710
MS
1587 if (fstat(dirfd(d), &s) < 0)
1588 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
78a92a5a
MS
1589
1590 if (!S_ISDIR(s.st_mode)) {
1591 log_error("%s is not a directory.", i->path);
19fbec19 1592 return -ENOTDIR;
78a92a5a
MS
1593 }
1594
4a62c710
MS
1595 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
1596 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
78a92a5a 1597
2bb158c1 1598 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
78a92a5a 1599
582deb84
ZJS
1600 log_debug("Cleanup threshold for %s \"%s\" is %s",
1601 mountpoint ? "mount point" : "directory",
1602 instance,
1603 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
1604
1605 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
1606 MAX_DEPTH, i->keep_first_level);
78a92a5a
MS
1607}
1608
1609static int clean_item(Item *i) {
78a92a5a
MS
1610 assert(i);
1611
582deb84
ZJS
1612 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
1613
78a92a5a
MS
1614 switch (i->type) {
1615 case CREATE_DIRECTORY:
d7b8eec7 1616 case CREATE_SUBVOLUME:
5fb13eb5
LP
1617 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1618 case CREATE_SUBVOLUME_NEW_QUOTA:
df8dee85 1619 case EMPTY_DIRECTORY:
78a92a5a
MS
1620 case TRUNCATE_DIRECTORY:
1621 case IGNORE_PATH:
849958d1 1622 case COPY_FILES:
78a92a5a 1623 clean_item_instance(i, i->path);
df8dee85 1624 return 0;
78a92a5a 1625 case IGNORE_DIRECTORY_PATH:
df8dee85 1626 return glob_item(i, clean_item_instance, false);
78a92a5a 1627 default:
df8dee85 1628 return 0;
78a92a5a 1629 }
78a92a5a
MS
1630}
1631
3f93da98
ZJS
1632static int process_item_array(ItemArray *array);
1633
3b63d2d3 1634static int process_item(Item *i) {
1e95893a 1635 int r, q, p, t = 0;
9348f0e6 1636 _cleanup_free_ char *prefix = NULL;
3b63d2d3
LP
1637
1638 assert(i);
1639
1910cd0e
LP
1640 if (i->done)
1641 return 0;
1642
1643 i->done = true;
1644
9348f0e6
ZJS
1645 prefix = malloc(strlen(i->path) + 1);
1646 if (!prefix)
1647 return log_oom();
1648
1910cd0e 1649 PATH_FOREACH_PREFIX(prefix, i->path) {
3f93da98 1650 ItemArray *j;
1910cd0e 1651
ef43a391 1652 j = ordered_hashmap_get(items, prefix);
1db50423
ZJS
1653 if (j) {
1654 int s;
1655
3f93da98 1656 s = process_item_array(j);
1db50423
ZJS
1657 if (s < 0 && t == 0)
1658 t = s;
1659 }
1910cd0e
LP
1660 }
1661
3b63d2d3 1662 r = arg_create ? create_item(i) : 0;
a0896123 1663 q = arg_remove ? remove_item(i) : 0;
3b63d2d3
LP
1664 p = arg_clean ? clean_item(i) : 0;
1665
1db50423
ZJS
1666 return t < 0 ? t :
1667 r < 0 ? r :
1668 q < 0 ? q :
1669 p;
3b63d2d3
LP
1670}
1671
3f93da98
ZJS
1672static int process_item_array(ItemArray *array) {
1673 unsigned n;
1674 int r = 0, k;
753615e8 1675
3f93da98
ZJS
1676 assert(array);
1677
1678 for (n = 0; n < array->count; n++) {
1679 k = process_item(array->items + n);
1680 if (k < 0 && r == 0)
1681 r = k;
1682 }
1683
1684 return r;
1685}
3b63d2d3 1686
3f93da98
ZJS
1687static void item_free_contents(Item *i) {
1688 assert(i);
3b63d2d3 1689 free(i->path);
468d726b 1690 free(i->argument);
ebf4e801 1691 strv_free(i->xattrs);
f8eeeaf9
ZJS
1692
1693#ifdef HAVE_ACL
1694 acl_free(i->acl_access);
1695 acl_free(i->acl_default);
1696#endif
3b63d2d3
LP
1697}
1698
3f93da98
ZJS
1699static void item_array_free(ItemArray *a) {
1700 unsigned n;
1701
1702 if (!a)
1703 return;
1704
1705 for (n = 0; n < a->count; n++)
1706 item_free_contents(a->items + n);
1707 free(a->items);
1708 free(a);
1709}
e2f2fb78 1710
17493fa5
LP
1711static int item_compare(const void *a, const void *b) {
1712 const Item *x = a, *y = b;
1713
1714 /* Make sure that the ownership taking item is put first, so
1715 * that we first create the node, and then can adjust it */
1716
1717 if (takes_ownership(x->type) && !takes_ownership(y->type))
1718 return -1;
1719 if (!takes_ownership(x->type) && takes_ownership(y->type))
1720 return 1;
1721
1722 return (int) x->type - (int) y->type;
1723}
1724
3f93da98 1725static bool item_compatible(Item *a, Item *b) {
bfe95f35
LP
1726 assert(a);
1727 assert(b);
3f93da98 1728 assert(streq(a->path, b->path));
bfe95f35 1729
3f93da98
ZJS
1730 if (takes_ownership(a->type) && takes_ownership(b->type))
1731 /* check if the items are the same */
1732 return streq_ptr(a->argument, b->argument) &&
bfe95f35 1733
3f93da98
ZJS
1734 a->uid_set == b->uid_set &&
1735 a->uid == b->uid &&
bfe95f35 1736
3f93da98
ZJS
1737 a->gid_set == b->gid_set &&
1738 a->gid == b->gid &&
bfe95f35 1739
3f93da98
ZJS
1740 a->mode_set == b->mode_set &&
1741 a->mode == b->mode &&
bfe95f35 1742
3f93da98
ZJS
1743 a->age_set == b->age_set &&
1744 a->age == b->age &&
bfe95f35 1745
3f93da98 1746 a->mask_perms == b->mask_perms &&
bfe95f35 1747
3f93da98 1748 a->keep_first_level == b->keep_first_level &&
468d726b 1749
3f93da98 1750 a->major_minor == b->major_minor;
468d726b 1751
bfe95f35
LP
1752 return true;
1753}
1754
a2aced4a
DR
1755static bool should_include_path(const char *path) {
1756 char **prefix;
1757
abef3f91 1758 STRV_FOREACH(prefix, arg_exclude_prefixes)
582deb84
ZJS
1759 if (path_startswith(path, *prefix)) {
1760 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
1761 path, *prefix);
5c795114 1762 return false;
582deb84 1763 }
a2aced4a 1764
abef3f91 1765 STRV_FOREACH(prefix, arg_include_prefixes)
582deb84
ZJS
1766 if (path_startswith(path, *prefix)) {
1767 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
a2aced4a 1768 return true;
582deb84 1769 }
a2aced4a 1770
5c795114
DR
1771 /* no matches, so we should include this path only if we
1772 * have no whitelist at all */
582deb84
ZJS
1773 if (strv_length(arg_include_prefixes) == 0)
1774 return true;
1775
1776 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
1777 return false;
a2aced4a
DR
1778}
1779
fba6e687 1780static int parse_line(const char *fname, unsigned line, const char *buffer) {
1731e34a 1781
cde684a2 1782 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
3f93da98
ZJS
1783 _cleanup_(item_free_contents) Item i = {};
1784 ItemArray *existing;
ef43a391 1785 OrderedHashmap *h;
657cf7f4 1786 int r, pos;
5f255144 1787 bool force = false, boot = false;
3b63d2d3
LP
1788
1789 assert(fname);
1790 assert(line >= 1);
1791 assert(buffer);
1792
68685607 1793 r = extract_many_words(
4034a06d 1794 &buffer,
68685607 1795 NULL,
12ba2c44 1796 EXTRACT_QUOTES,
4034a06d
LP
1797 &action,
1798 &path,
1799 &mode,
1800 &user,
1801 &group,
1802 &age,
1803 NULL);
657cf7f4 1804 if (r < 0)
1805 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
1806 else if (r < 2) {
3b63d2d3 1807 log_error("[%s:%u] Syntax error.", fname, line);
7f2c1f4d 1808 return -EIO;
5008d581
LP
1809 }
1810
aa5f6817 1811 if (!isempty(buffer) && !streq(buffer, "-")) {
4034a06d
LP
1812 i.argument = strdup(buffer);
1813 if (!i.argument)
1814 return log_oom();
1815 }
1816
2e78fa79
LP
1817 if (isempty(action)) {
1818 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
c4708f13 1819 return -EINVAL;
2e78fa79
LP
1820 }
1821
5f255144
ZJS
1822 for (pos = 1; action[pos]; pos++) {
1823 if (action[pos] == '!' && !boot)
1824 boot = true;
1825 else if (action[pos] == '+' && !force)
1826 force = true;
1827 else {
1828 log_error("[%s:%u] Unknown modifiers in command '%s'",
1829 fname, line, action);
1830 return -EINVAL;
1831 }
2e78fa79
LP
1832 }
1833
582deb84
ZJS
1834 if (boot && !arg_boot) {
1835 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
1836 action, path);
c4708f13 1837 return 0;
582deb84 1838 }
c4708f13 1839
3f93da98
ZJS
1840 i.type = action[0];
1841 i.force = force;
2e78fa79 1842
3f93da98 1843 r = specifier_printf(path, specifier_table, NULL, &i.path);
1731e34a
LP
1844 if (r < 0) {
1845 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1846 return r;
1847 }
1848
3f93da98 1849 switch (i.type) {
468d726b 1850
777b87e7 1851 case CREATE_DIRECTORY:
d7b8eec7 1852 case CREATE_SUBVOLUME:
5fb13eb5
LP
1853 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1854 case CREATE_SUBVOLUME_NEW_QUOTA:
df8dee85 1855 case EMPTY_DIRECTORY:
777b87e7
MS
1856 case TRUNCATE_DIRECTORY:
1857 case CREATE_FIFO:
1858 case IGNORE_PATH:
78a92a5a 1859 case IGNORE_DIRECTORY_PATH:
777b87e7
MS
1860 case REMOVE_PATH:
1861 case RECURSIVE_REMOVE_PATH:
e73a03e0 1862 case ADJUST_MODE:
777b87e7
MS
1863 case RELABEL_PATH:
1864 case RECURSIVE_RELABEL_PATH:
c82500c6 1865 if (i.argument)
bd550f78 1866 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
c82500c6
LP
1867
1868 break;
1869
1870 case CREATE_FILE:
1871 case TRUNCATE_FILE:
777b87e7 1872 break;
468d726b
LP
1873
1874 case CREATE_SYMLINK:
3f93da98
ZJS
1875 if (!i.argument) {
1876 i.argument = strappend("/usr/share/factory/", i.path);
1877 if (!i.argument)
2f3b873a 1878 return log_oom();
468d726b
LP
1879 }
1880 break;
1881
31ed59c5 1882 case WRITE_FILE:
3f93da98 1883 if (!i.argument) {
31ed59c5 1884 log_error("[%s:%u] Write file requires argument.", fname, line);
7f2c1f4d 1885 return -EBADMSG;
31ed59c5
LP
1886 }
1887 break;
1888
849958d1 1889 case COPY_FILES:
3f93da98
ZJS
1890 if (!i.argument) {
1891 i.argument = strappend("/usr/share/factory/", i.path);
1892 if (!i.argument)
2f3b873a 1893 return log_oom();
3f93da98 1894 } else if (!path_is_absolute(i.argument)) {
849958d1
LP
1895 log_error("[%s:%u] Source path is not absolute.", fname, line);
1896 return -EBADMSG;
1897 }
1898
3f93da98 1899 path_kill_slashes(i.argument);
849958d1
LP
1900 break;
1901
468d726b
LP
1902 case CREATE_CHAR_DEVICE:
1903 case CREATE_BLOCK_DEVICE: {
1904 unsigned major, minor;
1905
3f93da98 1906 if (!i.argument) {
468d726b 1907 log_error("[%s:%u] Device file requires argument.", fname, line);
7f2c1f4d 1908 return -EBADMSG;
468d726b
LP
1909 }
1910
3f93da98
ZJS
1911 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
1912 log_error("[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i.argument);
7f2c1f4d 1913 return -EBADMSG;
468d726b
LP
1914 }
1915
3f93da98 1916 i.major_minor = makedev(major, minor);
468d726b
LP
1917 break;
1918 }
1919
ebf4e801 1920 case SET_XATTR:
b705ab6a 1921 case RECURSIVE_SET_XATTR:
3f93da98 1922 if (!i.argument) {
ebf4e801
MW
1923 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
1924 return -EBADMSG;
1925 }
bd550f78 1926 r = parse_xattrs_from_arg(&i);
ebf4e801
MW
1927 if (r < 0)
1928 return r;
1929 break;
1930
f8eeeaf9 1931 case SET_ACL:
b705ab6a 1932 case RECURSIVE_SET_ACL:
f8eeeaf9
ZJS
1933 if (!i.argument) {
1934 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
1935 return -EBADMSG;
1936 }
bd550f78 1937 r = parse_acls_from_arg(&i);
f8eeeaf9
ZJS
1938 if (r < 0)
1939 return r;
1940 break;
1941
88ec4dfa
LP
1942 case SET_ATTRIBUTE:
1943 case RECURSIVE_SET_ATTRIBUTE:
22c3a6ca 1944 if (!i.argument) {
88ec4dfa 1945 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
22c3a6ca
GB
1946 return -EBADMSG;
1947 }
bd550f78 1948 r = parse_attribute_from_arg(&i);
22c3a6ca
GB
1949 if (r < 0)
1950 return r;
1951 break;
1952
777b87e7 1953 default:
582deb84 1954 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
7f2c1f4d 1955 return -EBADMSG;
3b63d2d3 1956 }
468d726b 1957
3f93da98
ZJS
1958 if (!path_is_absolute(i.path)) {
1959 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
7f2c1f4d 1960 return -EBADMSG;
3b63d2d3
LP
1961 }
1962
3f93da98 1963 path_kill_slashes(i.path);
3b63d2d3 1964
3f93da98 1965 if (!should_include_path(i.path))
7f2c1f4d 1966 return 0;
5008d581 1967
cf9a4abd 1968 if (arg_root) {
cde684a2
LP
1969 char *p;
1970
1d13f648 1971 p = prefix_root(arg_root, i.path);
cf9a4abd
MM
1972 if (!p)
1973 return log_oom();
1974
3f93da98
ZJS
1975 free(i.path);
1976 i.path = p;
cf9a4abd
MM
1977 }
1978
90937fe3 1979 if (!isempty(user) && !streq(user, "-")) {
4b67834e
LP
1980 const char *u = user;
1981
3f93da98 1982 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL);
4b67834e 1983 if (r < 0) {
3b63d2d3 1984 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
7f2c1f4d 1985 return r;
3b63d2d3
LP
1986 }
1987
3f93da98 1988 i.uid_set = true;
3b63d2d3
LP
1989 }
1990
90937fe3 1991 if (!isempty(group) && !streq(group, "-")) {
4b67834e
LP
1992 const char *g = group;
1993
3f93da98 1994 r = get_group_creds(&g, &i.gid);
4b67834e 1995 if (r < 0) {
3b63d2d3 1996 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
7f2c1f4d 1997 return r;
3b63d2d3
LP
1998 }
1999
3f93da98 2000 i.gid_set = true;
3b63d2d3
LP
2001 }
2002
90937fe3 2003 if (!isempty(mode) && !streq(mode, "-")) {
abef3f91 2004 const char *mm = mode;
3b63d2d3
LP
2005 unsigned m;
2006
abef3f91 2007 if (*mm == '~') {
3f93da98 2008 i.mask_perms = true;
abef3f91
LP
2009 mm++;
2010 }
2011
2ff7b0a5 2012 if (parse_mode(mm, &m) < 0) {
3b63d2d3 2013 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
2ff7b0a5 2014 return -EBADMSG;
3b63d2d3
LP
2015 }
2016
3f93da98
ZJS
2017 i.mode = m;
2018 i.mode_set = true;
3b63d2d3 2019 } else
5fb13eb5 2020 i.mode = IN_SET(i.type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA) ? 0755 : 0644;
3b63d2d3 2021
90937fe3 2022 if (!isempty(age) && !streq(age, "-")) {
24f3a374
LP
2023 const char *a = age;
2024
2025 if (*a == '~') {
3f93da98 2026 i.keep_first_level = true;
24f3a374
LP
2027 a++;
2028 }
2029
3f93da98 2030 if (parse_sec(a, &i.age) < 0) {
3b63d2d3 2031 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
7f2c1f4d 2032 return -EBADMSG;
3b63d2d3
LP
2033 }
2034
3f93da98 2035 i.age_set = true;
3b63d2d3
LP
2036 }
2037
3f93da98 2038 h = needs_glob(i.type) ? globs : items;
bfe95f35 2039
ef43a391 2040 existing = ordered_hashmap_get(h, i.path);
468d726b 2041 if (existing) {
3f93da98
ZJS
2042 unsigned n;
2043
2044 for (n = 0; n < existing->count; n++) {
6487ada8 2045 if (!item_compatible(existing->items + n, &i)) {
505ef0e3 2046 log_warning("[%s:%u] Duplicate line for path \"%s\", ignoring.",
3f93da98 2047 fname, line, i.path);
6487ada8
MP
2048 return 0;
2049 }
ebf4e801
MW
2050 }
2051 } else {
3f93da98 2052 existing = new0(ItemArray, 1);
ef43a391 2053 r = ordered_hashmap_put(h, i.path, existing);
3f93da98
ZJS
2054 if (r < 0)
2055 return log_oom();
bfe95f35
LP
2056 }
2057
3f93da98
ZJS
2058 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2059 return log_oom();
5008d581 2060
3f93da98 2061 memcpy(existing->items + existing->count++, &i, sizeof(i));
dd449aca
ZJS
2062
2063 /* Sort item array, to enforce stable ordering of application */
2064 qsort_safe(existing->items, existing->count, sizeof(Item), item_compare);
17493fa5 2065
3f93da98 2066 zero(i);
7f2c1f4d 2067 return 0;
5008d581
LP
2068}
2069
601185b4 2070static void help(void) {
522d4a49
LP
2071 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2072 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
5c795114 2073 " -h --help Show this help\n"
eb9da376 2074 " --version Show package version\n"
5c795114
DR
2075 " --create Create marked files/directories\n"
2076 " --clean Clean up marked directories\n"
2077 " --remove Remove marked files/directories\n"
81815651 2078 " --boot Execute actions only safe at boot\n"
79ca888f
ZJS
2079 " --prefix=PATH Only apply rules with the specified prefix\n"
2080 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
cf9a4abd 2081 " --root=PATH Operate on an alternate filesystem root\n",
3b63d2d3 2082 program_invocation_short_name);
3b63d2d3
LP
2083}
2084
2085static int parse_argv(int argc, char *argv[]) {
2086
2087 enum {
eb9da376 2088 ARG_VERSION = 0x100,
3b63d2d3
LP
2089 ARG_CREATE,
2090 ARG_CLEAN,
fba6e687 2091 ARG_REMOVE,
81815651 2092 ARG_BOOT,
5c795114
DR
2093 ARG_PREFIX,
2094 ARG_EXCLUDE_PREFIX,
cf9a4abd 2095 ARG_ROOT,
3b63d2d3
LP
2096 };
2097
2098 static const struct option options[] = {
5c795114 2099 { "help", no_argument, NULL, 'h' },
eb9da376 2100 { "version", no_argument, NULL, ARG_VERSION },
5c795114
DR
2101 { "create", no_argument, NULL, ARG_CREATE },
2102 { "clean", no_argument, NULL, ARG_CLEAN },
2103 { "remove", no_argument, NULL, ARG_REMOVE },
81815651 2104 { "boot", no_argument, NULL, ARG_BOOT },
5c795114
DR
2105 { "prefix", required_argument, NULL, ARG_PREFIX },
2106 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
cf9a4abd 2107 { "root", required_argument, NULL, ARG_ROOT },
eb9da376 2108 {}
3b63d2d3
LP
2109 };
2110
0f474365 2111 int c, r;
3b63d2d3
LP
2112
2113 assert(argc >= 0);
2114 assert(argv);
2115
601185b4 2116 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
3b63d2d3
LP
2117
2118 switch (c) {
2119
2120 case 'h':
601185b4
ZJS
2121 help();
2122 return 0;
eb9da376
LP
2123
2124 case ARG_VERSION:
3f6fd1ba 2125 return version();
3b63d2d3
LP
2126
2127 case ARG_CREATE:
2128 arg_create = true;
2129 break;
2130
2131 case ARG_CLEAN:
2132 arg_clean = true;
2133 break;
2134
2135 case ARG_REMOVE:
2136 arg_remove = true;
2137 break;
2138
81815651
ZJS
2139 case ARG_BOOT:
2140 arg_boot = true;
c4708f13
ZJS
2141 break;
2142
fba6e687 2143 case ARG_PREFIX:
7bc040fa 2144 if (strv_push(&arg_include_prefixes, optarg) < 0)
a2aced4a 2145 return log_oom();
fba6e687
LP
2146 break;
2147
5c795114 2148 case ARG_EXCLUDE_PREFIX:
7bc040fa 2149 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
5c795114
DR
2150 return log_oom();
2151 break;
2152
cf9a4abd 2153 case ARG_ROOT:
0f03c2a4 2154 r = parse_path_argument_and_warn(optarg, true, &arg_root);
0f474365 2155 if (r < 0)
0f03c2a4 2156 return r;
cf9a4abd
MM
2157 break;
2158
3b63d2d3
LP
2159 case '?':
2160 return -EINVAL;
2161
2162 default:
eb9da376 2163 assert_not_reached("Unhandled option");
3b63d2d3 2164 }
3b63d2d3
LP
2165
2166 if (!arg_clean && !arg_create && !arg_remove) {
35b8ca3a 2167 log_error("You need to specify at least one of --clean, --create or --remove.");
3b63d2d3
LP
2168 return -EINVAL;
2169 }
2170
2171 return 1;
2172}
2173
fba6e687 2174static int read_config_file(const char *fn, bool ignore_enoent) {
f7ac1ed2
ZJS
2175 _cleanup_fclose_ FILE *_f = NULL;
2176 FILE *f;
1731e34a 2177 char line[LINE_MAX];
78a92a5a 2178 Iterator iterator;
1731e34a 2179 unsigned v = 0;
78a92a5a 2180 Item *i;
1731e34a 2181 int r;
fba6e687
LP
2182
2183 assert(fn);
2184
f7ac1ed2
ZJS
2185 if (streq(fn, "-")) {
2186 log_debug("Reading config from stdin.");
2187 fn = "<stdin>";
2188 f = stdin;
2189 } else {
2190 r = search_and_fopen_nulstr(fn, "re", arg_root, conf_file_dirs, &_f);
2191 if (r < 0) {
2192 if (ignore_enoent && r == -ENOENT) {
2193 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
2194 return 0;
2195 }
fba6e687 2196
f7ac1ed2
ZJS
2197 return log_error_errno(r, "Failed to open '%s': %m", fn);
2198 }
2199 log_debug("Reading config file \"%s\".", fn);
2200 f = _f;
fba6e687
LP
2201 }
2202
1731e34a
LP
2203 FOREACH_LINE(line, f, break) {
2204 char *l;
fba6e687
LP
2205 int k;
2206
fba6e687
LP
2207 v++;
2208
2209 l = strstrip(line);
2210 if (*l == '#' || *l == 0)
2211 continue;
2212
1731e34a
LP
2213 k = parse_line(fn, v, l);
2214 if (k < 0 && r == 0)
2215 r = k;
fba6e687
LP
2216 }
2217
78a92a5a 2218 /* we have to determine age parameter for each entry of type X */
ef43a391 2219 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
78a92a5a
MS
2220 Iterator iter;
2221 Item *j, *candidate_item = NULL;
2222
2223 if (i->type != IGNORE_DIRECTORY_PATH)
2224 continue;
2225
ef43a391 2226 ORDERED_HASHMAP_FOREACH(j, items, iter) {
5fb13eb5 2227 if (!IN_SET(j->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA))
78a92a5a
MS
2228 continue;
2229
2230 if (path_equal(j->path, i->path)) {
2231 candidate_item = j;
2232 break;
2233 }
2234
2235 if ((!candidate_item && path_startswith(i->path, j->path)) ||
2236 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
2237 candidate_item = j;
2238 }
2239
9ed2a35e 2240 if (candidate_item && candidate_item->age_set) {
78a92a5a
MS
2241 i->age = candidate_item->age;
2242 i->age_set = true;
2243 }
2244 }
2245
fba6e687 2246 if (ferror(f)) {
56f64d95 2247 log_error_errno(errno, "Failed to read from file %s: %m", fn);
fba6e687
LP
2248 if (r == 0)
2249 r = -EIO;
2250 }
2251
fba6e687
LP
2252 return r;
2253}
2254
5008d581 2255int main(int argc, char *argv[]) {
fabe5c0e 2256 int r, k;
3f93da98 2257 ItemArray *a;
3b63d2d3
LP
2258 Iterator iterator;
2259
fdcad0c2
LP
2260 r = parse_argv(argc, argv);
2261 if (r <= 0)
753615e8 2262 goto finish;
5008d581 2263
eb0ca9eb 2264 log_set_target(LOG_TARGET_AUTO);
5008d581
LP
2265 log_parse_environment();
2266 log_open();
2267
4c12626c
LP
2268 umask(0022);
2269
c3dacc8b 2270 mac_selinux_init();
5008d581 2271
ef43a391
LP
2272 items = ordered_hashmap_new(&string_hash_ops);
2273 globs = ordered_hashmap_new(&string_hash_ops);
b8bb3e8f
LP
2274
2275 if (!items || !globs) {
fabe5c0e 2276 r = log_oom();
3b63d2d3
LP
2277 goto finish;
2278 }
2279
fabe5c0e 2280 r = 0;
5008d581 2281
fba6e687
LP
2282 if (optind < argc) {
2283 int j;
5008d581 2284
9125670f 2285 for (j = optind; j < argc; j++) {
fabe5c0e
LP
2286 k = read_config_file(argv[j], false);
2287 if (k < 0 && r == 0)
2288 r = k;
9125670f 2289 }
5008d581 2290
fba6e687 2291 } else {
fabe5c0e
LP
2292 _cleanup_strv_free_ char **files = NULL;
2293 char **f;
5008d581 2294
cf9a4abd 2295 r = conf_files_list_nulstr(&files, ".conf", arg_root, conf_file_dirs);
44143309 2296 if (r < 0) {
da927ba9 2297 log_error_errno(r, "Failed to enumerate tmpfiles.d files: %m");
44143309
KS
2298 goto finish;
2299 }
3b63d2d3 2300
772f8371 2301 STRV_FOREACH(f, files) {
fabe5c0e
LP
2302 k = read_config_file(*f, true);
2303 if (k < 0 && r == 0)
2304 r = k;
5008d581 2305 }
772f8371 2306 }
5008d581 2307
17493fa5
LP
2308 /* The non-globbing ones usually create things, hence we apply
2309 * them first */
ef43a391 2310 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3f93da98 2311 k = process_item_array(a);
1db50423
ZJS
2312 if (k < 0 && r == 0)
2313 r = k;
2314 }
b8bb3e8f 2315
17493fa5
LP
2316 /* The globbing ones usually alter things, hence we apply them
2317 * second. */
ef43a391 2318 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3f93da98 2319 k = process_item_array(a);
1db50423
ZJS
2320 if (k < 0 && r == 0)
2321 r = k;
2322 }
3b63d2d3 2323
5008d581 2324finish:
ef43a391 2325 while ((a = ordered_hashmap_steal_first(items)))
3f93da98 2326 item_array_free(a);
3b63d2d3 2327
ef43a391 2328 while ((a = ordered_hashmap_steal_first(globs)))
3f93da98 2329 item_array_free(a);
17b90525 2330
ef43a391
LP
2331 ordered_hashmap_free(items);
2332 ordered_hashmap_free(globs);
5008d581 2333
7bc040fa
LP
2334 free(arg_include_prefixes);
2335 free(arg_exclude_prefixes);
cf9a4abd 2336 free(arg_root);
a2aced4a 2337
17b90525
LP
2338 set_free_free(unix_sockets);
2339
cc56fafe 2340 mac_selinux_finish();
29003cff 2341
fabe5c0e 2342 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
5008d581 2343}