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