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