blob: bf900fa3d9c458460b2218dffa08e7e32940fe26 [file] [log] [blame]
Lennart Poettering5008d582010-09-28 02:34:02 +02001/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02006 Copyright 2010 Lennart Poettering, Kay Sievers
Lennart Poettering5008d582010-09-28 02:34:02 +02007
8 systemd is free software; you can redistribute it and/or modify it
Lennart Poettering5430f7f2012-04-12 00:20:58 +02009 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
Lennart Poettering5008d582010-09-28 02:34:02 +020011 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lennart Poettering5430f7f2012-04-12 00:20:58 +020016 Lesser General Public License for more details.
Lennart Poettering5008d582010-09-28 02:34:02 +020017
Lennart Poettering5430f7f2012-04-12 00:20:58 +020018 You should have received a copy of the GNU Lesser General Public License
Lennart Poettering5008d582010-09-28 02:34:02 +020019 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include <unistd.h>
23#include <fcntl.h>
24#include <errno.h>
25#include <string.h>
26#include <sys/stat.h>
27#include <limits.h>
28#include <dirent.h>
29#include <grp.h>
30#include <pwd.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020031#include <stdio.h>
32#include <stdlib.h>
33#include <stddef.h>
34#include <getopt.h>
35#include <stdbool.h>
36#include <time.h>
37#include <sys/types.h>
38#include <sys/param.h>
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010039#include <glob.h>
40#include <fnmatch.h>
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -070041#include <sys/capability.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020042
43#include "log.h"
44#include "util.h"
Dave Reisner54693d92012-09-15 12:58:49 -040045#include "macro.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020046#include "mkdir.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020047#include "path-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020048#include "strv.h"
49#include "label.h"
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020050#include "set.h"
Kay Sievers2c210442012-05-07 18:55:45 +020051#include "conf-files.h"
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -070052#include "capability.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020053
Andreas Jaeger01000472010-09-29 10:08:24 +020054/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020055 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020056 * properly owned directories beneath /tmp, /var/tmp, /run, which are
57 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020058
Michal Schmidt66ccd032011-12-15 21:31:14 +010059typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010060 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020061 CREATE_FILE = 'f',
62 TRUNCATE_FILE = 'F',
Lennart Poettering31ed59c2012-01-18 16:39:04 +010063 WRITE_FILE = 'w',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020064 CREATE_DIRECTORY = 'd',
65 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020066 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010067 CREATE_SYMLINK = 'L',
68 CREATE_CHAR_DEVICE = 'c',
69 CREATE_BLOCK_DEVICE = 'b',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010070
71 /* These ones take globs */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020072 IGNORE_PATH = 'x',
73 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010074 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +010075 RELABEL_PATH = 'z',
Michal Schmidta8d88782011-12-15 23:11:07 +010076 RECURSIVE_RELABEL_PATH = 'Z'
Michal Schmidt66ccd032011-12-15 21:31:14 +010077} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020078
79typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +010080 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020081
82 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +010083 char *argument;
Lennart Poettering5008d582010-09-28 02:34:02 +020084 uid_t uid;
85 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020086 mode_t mode;
87 usec_t age;
88
Lennart Poettering468d7262012-01-17 15:04:12 +010089 dev_t major_minor;
90
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020091 bool uid_set:1;
92 bool gid_set:1;
93 bool mode_set:1;
94 bool age_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +020095
96 bool keep_first_level:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020097} Item;
98
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010099static Hashmap *items = NULL, *globs = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100100static Set *unix_sockets = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200101
102static bool arg_create = false;
103static bool arg_clean = false;
104static bool arg_remove = false;
105
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100106static const char *arg_prefix = NULL;
107
Lennart Poettering24f3a372012-06-20 09:05:50 +0200108static const char * const conf_file_dirs[] = {
Dave Reisner91256702012-06-08 22:31:19 -0400109 "/etc/tmpfiles.d",
110 "/run/tmpfiles.d",
111 "/usr/local/lib/tmpfiles.d",
112 "/usr/lib/tmpfiles.d",
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200113#ifdef HAVE_SPLIT_USR
114 "/lib/tmpfiles.d",
115#endif
Dave Reisner91256702012-06-08 22:31:19 -0400116 NULL
117};
118
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200119#define MAX_DEPTH 256
120
Michal Schmidt66ccd032011-12-15 21:31:14 +0100121static bool needs_glob(ItemType t) {
Michal Schmidt777b87e2011-12-16 18:27:35 +0100122 return t == IGNORE_PATH || t == REMOVE_PATH || t == RECURSIVE_REMOVE_PATH || t == RELABEL_PATH || t == RECURSIVE_RELABEL_PATH;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100123}
124
125static struct Item* find_glob(Hashmap *h, const char *match) {
126 Item *j;
127 Iterator i;
128
129 HASHMAP_FOREACH(j, h, i)
130 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
131 return j;
132
133 return NULL;
134}
135
Lennart Poettering17b90522011-02-14 21:55:06 +0100136static void load_unix_sockets(void) {
137 FILE *f = NULL;
138 char line[LINE_MAX];
139
140 if (unix_sockets)
141 return;
142
143 /* We maintain a cache of the sockets we found in
144 * /proc/net/unix to speed things up a little. */
145
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100146 unix_sockets = set_new(string_hash_func, string_compare_func);
147 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100148 return;
149
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100150 f = fopen("/proc/net/unix", "re");
151 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100152 return;
153
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100154 /* Skip header */
155 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100156 goto fail;
157
158 for (;;) {
159 char *p, *s;
160 int k;
161
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100162 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100163 break;
164
165 truncate_nl(line);
166
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100167 p = strchr(line, ':');
168 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100169 continue;
170
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100171 if (strlen(p) < 37)
172 continue;
173
174 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100175 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100176 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100177 p += strspn(p, WHITESPACE);
178
179 if (*p != '/')
180 continue;
181
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100182 s = strdup(p);
183 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100184 goto fail;
185
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100186 path_kill_slashes(s);
187
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100188 k = set_put(unix_sockets, s);
189 if (k < 0) {
Lennart Poettering17b90522011-02-14 21:55:06 +0100190 free(s);
191
192 if (k != -EEXIST)
193 goto fail;
194 }
195 }
196
Thomas Jarosch10d975f2011-10-05 22:30:49 +0200197 fclose(f);
Lennart Poettering17b90522011-02-14 21:55:06 +0100198 return;
199
200fail:
201 set_free_free(unix_sockets);
202 unix_sockets = NULL;
203
204 if (f)
205 fclose(f);
206}
207
208static bool unix_socket_alive(const char *fn) {
209 assert(fn);
210
211 load_unix_sockets();
212
213 if (unix_sockets)
214 return !!set_get(unix_sockets, (char*) fn);
215
216 /* We don't know, so assume yes */
217 return true;
218}
219
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200220static int dir_cleanup(
221 const char *p,
222 DIR *d,
223 const struct stat *ds,
224 usec_t cutoff,
225 dev_t rootdev,
226 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200227 int maxdepth,
228 bool keep_this_level)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200229{
230 struct dirent *dent;
231 struct timespec times[2];
232 bool deleted = false;
233 char *sub_path = NULL;
234 int r = 0;
235
236 while ((dent = readdir(d))) {
237 struct stat s;
238 usec_t age;
239
240 if (streq(dent->d_name, ".") ||
241 streq(dent->d_name, ".."))
242 continue;
243
244 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
245
246 if (errno != ENOENT) {
247 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
248 r = -errno;
249 }
250
251 continue;
252 }
253
254 /* Stay on the same filesystem */
255 if (s.st_dev != rootdev)
256 continue;
257
258 /* Do not delete read-only files owned by root */
259 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
260 continue;
261
262 free(sub_path);
263 sub_path = NULL;
264
265 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700266 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200267 goto finish;
268 }
269
270 /* Is there an item configured for this path? */
271 if (hashmap_get(items, sub_path))
272 continue;
273
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100274 if (find_glob(globs, sub_path))
275 continue;
276
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200277 if (S_ISDIR(s.st_mode)) {
278
279 if (mountpoint &&
280 streq(dent->d_name, "lost+found") &&
281 s.st_uid == 0)
282 continue;
283
284 if (maxdepth <= 0)
285 log_warning("Reached max depth on %s.", sub_path);
286 else {
287 DIR *sub_dir;
288 int q;
289
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200290 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200291 if (sub_dir == NULL) {
292 if (errno != ENOENT) {
293 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
294 r = -errno;
295 }
296
297 continue;
298 }
299
Lennart Poettering24f3a372012-06-20 09:05:50 +0200300 q = dir_cleanup(sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200301 closedir(sub_dir);
302
303 if (q < 0)
304 r = q;
305 }
306
Lennart Poettering24f3a372012-06-20 09:05:50 +0200307 /* Note: if you are wondering why we don't
308 * support the sticky bit for excluding
309 * directories from cleaning like we do it for
310 * other file system objects: well, the sticky
311 * bit already has a meaning for directories,
312 * so we don't want to overload that. */
313
314 if (keep_this_level)
315 continue;
316
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200317 /* Ignore ctime, we change it when deleting */
318 age = MAX(timespec_load(&s.st_mtim),
319 timespec_load(&s.st_atim));
320 if (age >= cutoff)
321 continue;
322
323 log_debug("rmdir '%s'\n", sub_path);
324
325 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
326 if (errno != ENOENT && errno != ENOTEMPTY) {
327 log_error("rmdir(%s): %m", sub_path);
328 r = -errno;
329 }
330 }
331
332 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100333 /* Skip files for which the sticky bit is
334 * set. These are semantics we define, and are
335 * unknown elsewhere. See XDG_RUNTIME_DIR
336 * specification for details. */
337 if (s.st_mode & S_ISVTX)
338 continue;
339
Lennart Poettering17b90522011-02-14 21:55:06 +0100340 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200341 if (streq(dent->d_name, ".journal") &&
342 s.st_uid == 0)
343 continue;
344
345 if (streq(dent->d_name, "aquota.user") ||
346 streq(dent->d_name, "aquota.group"))
347 continue;
348 }
349
Lennart Poettering17b90522011-02-14 21:55:06 +0100350 /* Ignore sockets that are listed in /proc/net/unix */
351 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
352 continue;
353
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100354 /* Ignore device nodes */
355 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
356 continue;
357
Lennart Poettering24f3a372012-06-20 09:05:50 +0200358 /* Keep files on this level around if this is
359 * requested */
360 if (keep_this_level)
361 continue;
362
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200363 age = MAX3(timespec_load(&s.st_mtim),
364 timespec_load(&s.st_atim),
365 timespec_load(&s.st_ctim));
366
367 if (age >= cutoff)
368 continue;
369
370 log_debug("unlink '%s'\n", sub_path);
371
372 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
373 if (errno != ENOENT) {
374 log_error("unlink(%s): %m", sub_path);
375 r = -errno;
376 }
377 }
378
379 deleted = true;
380 }
381 }
382
383finish:
384 if (deleted) {
385 /* Restore original directory timestamps */
386 times[0] = ds->st_atim;
387 times[1] = ds->st_mtim;
388
389 if (futimens(dirfd(d), times) < 0)
390 log_error("utimensat(%s): %m", p);
391 }
392
393 free(sub_path);
394
395 return r;
396}
397
398static int clean_item(Item *i) {
399 DIR *d;
400 struct stat s, ps;
401 bool mountpoint;
402 int r;
403 usec_t cutoff, n;
404
405 assert(i);
406
407 if (i->type != CREATE_DIRECTORY &&
408 i->type != TRUNCATE_DIRECTORY &&
409 i->type != IGNORE_PATH)
410 return 0;
411
412 if (!i->age_set || i->age <= 0)
413 return 0;
414
415 n = now(CLOCK_REALTIME);
416 if (n < i->age)
417 return 0;
418
419 cutoff = n - i->age;
420
421 d = opendir(i->path);
422 if (!d) {
423 if (errno == ENOENT)
424 return 0;
425
426 log_error("Failed to open directory %s: %m", i->path);
427 return -errno;
428 }
429
430 if (fstat(dirfd(d), &s) < 0) {
431 log_error("stat(%s) failed: %m", i->path);
432 r = -errno;
433 goto finish;
434 }
435
436 if (!S_ISDIR(s.st_mode)) {
437 log_error("%s is not a directory.", i->path);
438 r = -ENOTDIR;
439 goto finish;
440 }
441
442 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
443 log_error("stat(%s/..) failed: %m", i->path);
444 r = -errno;
445 goto finish;
446 }
447
448 mountpoint = s.st_dev != ps.st_dev ||
449 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
450
Lennart Poettering24f3a372012-06-20 09:05:50 +0200451 r = dir_cleanup(i->path, d, &s, cutoff, s.st_dev, mountpoint, MAX_DEPTH, i->keep_first_level);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200452
453finish:
454 if (d)
455 closedir(d);
456
457 return r;
458}
459
Michal Schmidt062e01b2011-12-16 18:00:11 +0100460static int item_set_perms(Item *i, const char *path) {
461 /* not using i->path directly because it may be a glob */
462 if (i->mode_set)
463 if (chmod(path, i->mode) < 0) {
464 log_error("chmod(%s) failed: %m", path);
465 return -errno;
466 }
467
468 if (i->uid_set || i->gid_set)
469 if (chown(path,
470 i->uid_set ? i->uid : (uid_t) -1,
471 i->gid_set ? i->gid : (gid_t) -1) < 0) {
472
473 log_error("chown(%s) failed: %m", path);
474 return -errno;
475 }
476
Lennart Poetteringc9bc0762012-07-03 16:25:50 +0200477 return label_fix(path, false, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100478}
479
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400480static int write_one_file(Item *i, const char *path) {
481 int r, e, fd, flags;
482 struct stat st;
483 mode_t u;
484
485 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
486 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
487
488 u = umask(0);
489 label_context_set(path, S_IFREG);
490 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
491 e = errno;
492 label_context_clear();
493 umask(u);
494 errno = e;
495
496 if (fd < 0) {
497 if (i->type == WRITE_FILE && errno == ENOENT)
498 return 0;
499
500 log_error("Failed to create file %s: %m", path);
501 return -errno;
502 }
503
504 if (i->argument) {
505 ssize_t n;
506 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400507 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400508
Dave Reisner54693d92012-09-15 12:58:49 -0400509 unescaped = cunescape(i->argument);
510 if (unescaped == NULL)
511 return log_oom();
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400512
Dave Reisner54693d92012-09-15 12:58:49 -0400513 l = strlen(unescaped);
514 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400515
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400516 if (n < 0 || (size_t) n < l) {
517 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
518 close_nointr_nofail(fd);
519 return n < 0 ? n : -EIO;
520 }
521 }
522
Dave Reisner3612fbc2012-09-12 16:21:00 -0400523 close_nointr_nofail(fd);
524
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400525 if (stat(path, &st) < 0) {
526 log_error("stat(%s) failed: %m", path);
527 return -errno;
528 }
529
530 if (!S_ISREG(st.st_mode)) {
531 log_error("%s is not a file.", path);
532 return -EEXIST;
533 }
534
535 r = item_set_perms(i, path);
536 if (r < 0)
537 return r;
538
539 return 0;
540}
541
Michal Schmidt062e01b2011-12-16 18:00:11 +0100542static int recursive_relabel_children(Item *i, const char *path) {
Michal Schmidta8d88782011-12-15 23:11:07 +0100543 DIR *d;
544 int ret = 0;
545
546 /* This returns the first error we run into, but nevertheless
547 * tries to go on */
548
549 d = opendir(path);
550 if (!d)
551 return errno == ENOENT ? 0 : -errno;
552
553 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200554 struct dirent *de;
555 union dirent_storage buf;
Michal Schmidta8d88782011-12-15 23:11:07 +0100556 bool is_dir;
557 int r;
558 char *entry_path;
559
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200560 r = readdir_r(d, &buf.de, &de);
Michal Schmidta8d88782011-12-15 23:11:07 +0100561 if (r != 0) {
562 if (ret == 0)
563 ret = -r;
564 break;
565 }
566
567 if (!de)
568 break;
569
570 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
571 continue;
572
573 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
574 if (ret == 0)
575 ret = -ENOMEM;
576 continue;
577 }
578
579 if (de->d_type == DT_UNKNOWN) {
580 struct stat st;
581
582 if (lstat(entry_path, &st) < 0) {
583 if (ret == 0 && errno != ENOENT)
584 ret = -errno;
585 free(entry_path);
586 continue;
587 }
588
589 is_dir = S_ISDIR(st.st_mode);
590
591 } else
592 is_dir = de->d_type == DT_DIR;
593
Michal Schmidt062e01b2011-12-16 18:00:11 +0100594 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100595 if (r < 0) {
596 if (ret == 0 && r != -ENOENT)
597 ret = r;
598 free(entry_path);
599 continue;
600 }
601
602 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100603 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100604 if (r < 0 && ret == 0)
605 ret = r;
606 }
607
608 free(entry_path);
609 }
610
611 closedir(d);
612
613 return ret;
614}
615
616static int recursive_relabel(Item *i, const char *path) {
617 int r;
618 struct stat st;
619
Michal Schmidt062e01b2011-12-16 18:00:11 +0100620 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100621 if (r < 0)
622 return r;
623
624 if (lstat(path, &st) < 0)
625 return -errno;
626
627 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100628 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100629
630 return r;
631}
632
Michal Schmidt99e68c02011-12-15 23:45:26 +0100633static int glob_item(Item *i, int (*action)(Item *, const char *)) {
634 int r = 0, k;
635 glob_t g;
636 char **fn;
637
638 zero(g);
639
640 errno = 0;
641 if ((k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g)) != 0) {
642
643 if (k != GLOB_NOMATCH) {
644 if (errno != 0)
645 errno = EIO;
646
647 log_error("glob(%s) failed: %m", i->path);
648 return -errno;
649 }
650 }
651
652 STRV_FOREACH(fn, g.gl_pathv)
653 if ((k = action(i, *fn)) < 0)
654 r = k;
655
656 globfree(&g);
657 return r;
658}
659
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200660static int create_item(Item *i) {
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200661 int r, e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200662 mode_t u;
663 struct stat st;
664
665 assert(i);
666
667 switch (i->type) {
668
669 case IGNORE_PATH:
670 case REMOVE_PATH:
671 case RECURSIVE_REMOVE_PATH:
672 return 0;
673
674 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100675 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400676 r = write_one_file(i, i->path);
677 if (r < 0)
678 return r;
679 break;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400680 case WRITE_FILE:
681 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100682 if (r < 0)
683 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200684
685 break;
686
687 case TRUNCATE_DIRECTORY:
688 case CREATE_DIRECTORY:
689
690 u = umask(0);
Kay Sieversd2e54fa2012-05-31 12:40:20 +0200691 mkdir_parents_label(i->path, 0755);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200692 r = mkdir(i->path, i->mode);
693 umask(u);
694
695 if (r < 0 && errno != EEXIST) {
696 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100697 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200698 }
699
700 if (stat(i->path, &st) < 0) {
701 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100702 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200703 }
704
705 if (!S_ISDIR(st.st_mode)) {
706 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100707 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200708 }
709
Michal Schmidt062e01b2011-12-16 18:00:11 +0100710 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100711 if (r < 0)
712 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200713
714 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200715
716 case CREATE_FIFO:
717
718 u = umask(0);
719 r = mkfifo(i->path, i->mode);
720 umask(u);
721
722 if (r < 0 && errno != EEXIST) {
723 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100724 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200725 }
726
727 if (stat(i->path, &st) < 0) {
728 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100729 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200730 }
731
732 if (!S_ISFIFO(st.st_mode)) {
733 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100734 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200735 }
736
Michal Schmidt062e01b2011-12-16 18:00:11 +0100737 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100738 if (r < 0)
739 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200740
741 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100742
Lennart Poettering468d7262012-01-17 15:04:12 +0100743 case CREATE_SYMLINK: {
744 char *x;
745
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200746 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100747 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200748 e = errno;
749 label_context_clear();
750 errno = e;
751
Lennart Poettering468d7262012-01-17 15:04:12 +0100752 if (r < 0 && errno != EEXIST) {
753 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
754 return -errno;
755 }
756
757 r = readlink_malloc(i->path, &x);
758 if (r < 0) {
759 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
760 return -errno;
761 }
762
763 if (!streq(i->argument, x)) {
764 free(x);
765 log_error("%s is not the right symlinks.", i->path);
766 return -EEXIST;
767 }
768
769 free(x);
770 break;
771 }
772
773 case CREATE_BLOCK_DEVICE:
774 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700775 mode_t file_type;
776
777 if (have_effective_cap(CAP_MKNOD) == 0) {
778 /* In a container we lack CAP_MKNOD. We
779 shouldnt attempt to create the device node in
780 that case to avoid noise, and we don't support
781 virtualized devices in containers anyway. */
782
783 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
784 return 0;
785 }
786
787 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100788
789 u = umask(0);
Michal Schmidte7aee752012-06-14 16:01:19 +0200790 label_context_set(i->path, file_type);
791 r = mknod(i->path, i->mode | file_type, i->major_minor);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200792 e = errno;
793 label_context_clear();
Lennart Poettering468d7262012-01-17 15:04:12 +0100794 umask(u);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200795 errno = e;
Lennart Poettering468d7262012-01-17 15:04:12 +0100796
797 if (r < 0 && errno != EEXIST) {
798 log_error("Failed to create device node %s: %m", i->path);
799 return -errno;
800 }
801
802 if (stat(i->path, &st) < 0) {
803 log_error("stat(%s) failed: %m", i->path);
804 return -errno;
805 }
806
Michal Schmidte7aee752012-06-14 16:01:19 +0200807 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100808 log_error("%s is not a device node.", i->path);
809 return -EEXIST;
810 }
811
812 r = item_set_perms(i, i->path);
813 if (r < 0)
814 return r;
815
816 break;
817 }
818
Michal Schmidt777b87e2011-12-16 18:27:35 +0100819 case RELABEL_PATH:
820
821 r = glob_item(i, item_set_perms);
822 if (r < 0)
823 return 0;
824 break;
825
Michal Schmidta8d88782011-12-15 23:11:07 +0100826 case RECURSIVE_RELABEL_PATH:
827
828 r = glob_item(i, recursive_relabel);
829 if (r < 0)
830 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200831 }
832
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200833 log_debug("%s created successfully.", i->path);
834
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100835 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200836}
837
Michal Schmidta0896122011-12-15 21:32:50 +0100838static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200839 int r;
840
841 assert(i);
842
843 switch (i->type) {
844
845 case CREATE_FILE:
846 case TRUNCATE_FILE:
847 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200848 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100849 case CREATE_SYMLINK:
850 case CREATE_BLOCK_DEVICE:
851 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200852 case IGNORE_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100853 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100854 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100855 case WRITE_FILE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200856 break;
857
858 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100859 if (remove(instance) < 0 && errno != ENOENT) {
860 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200861 return -errno;
862 }
863
864 break;
865
866 case TRUNCATE_DIRECTORY:
867 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200868 /* FIXME: we probably should use dir_cleanup() here
869 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200870 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100871 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100872 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200873 return r;
874 }
875
876 break;
877 }
878
879 return 0;
880}
881
Michal Schmidta0896122011-12-15 21:32:50 +0100882static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100883 int r = 0;
884
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100885 assert(i);
886
887 switch (i->type) {
888
889 case CREATE_FILE:
890 case TRUNCATE_FILE:
891 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200892 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100893 case CREATE_SYMLINK:
894 case CREATE_CHAR_DEVICE:
895 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100896 case IGNORE_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100897 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100898 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100899 case WRITE_FILE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100900 break;
901
902 case REMOVE_PATH:
903 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100904 case RECURSIVE_REMOVE_PATH:
905 r = glob_item(i, remove_item_instance);
906 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100907 }
908
Michal Schmidt99e68c02011-12-15 23:45:26 +0100909 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100910}
911
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200912static int process_item(Item *i) {
913 int r, q, p;
914
915 assert(i);
916
917 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100918 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200919 p = arg_clean ? clean_item(i) : 0;
920
921 if (r < 0)
922 return r;
923
924 if (q < 0)
925 return q;
926
927 return p;
928}
929
930static void item_free(Item *i) {
931 assert(i);
932
933 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +0100934 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200935 free(i);
936}
937
Lennart Poetteringbfe95f32011-04-08 04:49:43 +0200938static bool item_equal(Item *a, Item *b) {
939 assert(a);
940 assert(b);
941
942 if (!streq_ptr(a->path, b->path))
943 return false;
944
945 if (a->type != b->type)
946 return false;
947
948 if (a->uid_set != b->uid_set ||
949 (a->uid_set && a->uid != b->uid))
950 return false;
951
952 if (a->gid_set != b->gid_set ||
953 (a->gid_set && a->gid != b->gid))
954 return false;
955
956 if (a->mode_set != b->mode_set ||
957 (a->mode_set && a->mode != b->mode))
958 return false;
959
960 if (a->age_set != b->age_set ||
961 (a->age_set && a->age != b->age))
962 return false;
963
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100964 if ((a->type == CREATE_FILE ||
965 a->type == TRUNCATE_FILE ||
966 a->type == WRITE_FILE ||
967 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +0100968 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +0100969 return false;
970
971 if ((a->type == CREATE_CHAR_DEVICE ||
972 a->type == CREATE_BLOCK_DEVICE) &&
973 a->major_minor != b->major_minor)
974 return false;
975
Lennart Poetteringbfe95f32011-04-08 04:49:43 +0200976 return true;
977}
978
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100979static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +0200980 Item *i, *existing;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200981 char *mode = NULL, *user = NULL, *group = NULL, *age = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +0100982 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +0200983 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100984 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +0200985
986 assert(fname);
987 assert(line >= 1);
988 assert(buffer);
989
Lennart Poettering468d7262012-01-17 15:04:12 +0100990 i = new0(Item, 1);
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700991 if (!i)
992 return log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200993
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +0100994 if (sscanf(buffer,
995 "%c "
996 "%ms "
997 "%ms "
998 "%ms "
999 "%ms "
Lennart Poettering468d7262012-01-17 15:04:12 +01001000 "%ms "
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001001 "%n",
Michal Schmidt66ccd032011-12-15 21:31:14 +01001002 &type,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001003 &i->path,
1004 &mode,
1005 &user,
1006 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001007 &age,
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001008 &n) < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001009 log_error("[%s:%u] Syntax error.", fname, line);
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001010 r = -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001011 goto finish;
1012 }
1013
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001014 if (n >= 0) {
1015 n += strspn(buffer+n, WHITESPACE);
1016 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1017 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001018 if (!i->argument)
1019 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001020 }
1021 }
1022
Michal Schmidt777b87e2011-12-16 18:27:35 +01001023 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001024
Michal Schmidt777b87e2011-12-16 18:27:35 +01001025 case CREATE_FILE:
1026 case TRUNCATE_FILE:
1027 case CREATE_DIRECTORY:
1028 case TRUNCATE_DIRECTORY:
1029 case CREATE_FIFO:
1030 case IGNORE_PATH:
1031 case REMOVE_PATH:
1032 case RECURSIVE_REMOVE_PATH:
1033 case RELABEL_PATH:
1034 case RECURSIVE_RELABEL_PATH:
1035 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001036
1037 case CREATE_SYMLINK:
1038 if (!i->argument) {
1039 log_error("[%s:%u] Symlink file requires argument.", fname, line);
1040 r = -EBADMSG;
1041 goto finish;
1042 }
1043 break;
1044
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001045 case WRITE_FILE:
1046 if (!i->argument) {
1047 log_error("[%s:%u] Write file requires argument.", fname, line);
1048 r = -EBADMSG;
1049 goto finish;
1050 }
1051 break;
1052
Lennart Poettering468d7262012-01-17 15:04:12 +01001053 case CREATE_CHAR_DEVICE:
1054 case CREATE_BLOCK_DEVICE: {
1055 unsigned major, minor;
1056
1057 if (!i->argument) {
1058 log_error("[%s:%u] Device file requires argument.", fname, line);
1059 r = -EBADMSG;
1060 goto finish;
1061 }
1062
1063 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1064 log_error("[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i->argument);
1065 r = -EBADMSG;
1066 goto finish;
1067 }
1068
1069 i->major_minor = makedev(major, minor);
1070 break;
1071 }
1072
Michal Schmidt777b87e2011-12-16 18:27:35 +01001073 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001074 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001075 r = -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001076 goto finish;
1077 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001078
Michal Schmidta8d88782011-12-15 23:11:07 +01001079 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001080
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001081 if (!path_is_absolute(i->path)) {
1082 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
1083 r = -EBADMSG;
1084 goto finish;
1085 }
1086
1087 path_kill_slashes(i->path);
1088
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001089 if (arg_prefix && !path_startswith(i->path, arg_prefix)) {
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001090 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001091 goto finish;
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001092 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001093
1094 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001095 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001096
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001097 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001098 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001099 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
1100 goto finish;
1101 }
1102
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001103 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001104 }
1105
1106 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001107 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001108
Lennart Poettering4b678342011-07-23 01:17:59 +02001109 r = get_group_creds(&g, &i->gid);
1110 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001111 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
1112 goto finish;
1113 }
1114
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001115 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001116 }
1117
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001118 if (mode && !streq(mode, "-")) {
1119 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001120
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001121 if (sscanf(mode, "%o", &m) != 1) {
1122 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
1123 r = -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001124 goto finish;
1125 }
1126
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001127 i->mode = m;
1128 i->mode_set = true;
1129 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001130 i->mode =
1131 i->type == CREATE_DIRECTORY ||
1132 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001133
1134 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001135 const char *a = age;
1136
1137 if (*a == '~') {
1138 i->keep_first_level = true;
1139 a++;
1140 }
1141
1142 if (parse_usec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001143 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
1144 r = -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001145 goto finish;
1146 }
1147
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001148 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001149 }
1150
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001151 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001152
Lennart Poettering468d7262012-01-17 15:04:12 +01001153 existing = hashmap_get(h, i->path);
1154 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001155
1156 /* Two identical items are fine */
1157 if (!item_equal(existing, i))
1158 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1159
1160 r = 0;
1161 goto finish;
1162 }
1163
Lennart Poettering468d7262012-01-17 15:04:12 +01001164 r = hashmap_put(h, i->path, i);
1165 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001166 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001167 goto finish;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001168 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001169
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001170 i = NULL;
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001171 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001172
1173finish:
Lennart Poettering5008d582010-09-28 02:34:02 +02001174 free(user);
1175 free(group);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001176 free(mode);
1177 free(age);
Lennart Poettering5008d582010-09-28 02:34:02 +02001178
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001179 if (i)
1180 item_free(i);
Lennart Poettering4aa8b152010-09-28 22:32:05 +02001181
1182 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001183}
1184
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001185static int help(void) {
1186
Lennart Poettering522d4a42011-02-13 15:08:15 +01001187 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1188 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001189 " -h --help Show this help\n"
1190 " --create Create marked files/directories\n"
1191 " --clean Clean up marked directories\n"
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001192 " --remove Remove marked files/directories\n"
Lennart Poettering522d4a42011-02-13 15:08:15 +01001193 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001194 program_invocation_short_name);
1195
1196 return 0;
1197}
1198
1199static int parse_argv(int argc, char *argv[]) {
1200
1201 enum {
1202 ARG_CREATE,
1203 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001204 ARG_REMOVE,
1205 ARG_PREFIX
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001206 };
1207
1208 static const struct option options[] = {
1209 { "help", no_argument, NULL, 'h' },
1210 { "create", no_argument, NULL, ARG_CREATE },
1211 { "clean", no_argument, NULL, ARG_CLEAN },
1212 { "remove", no_argument, NULL, ARG_REMOVE },
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001213 { "prefix", required_argument, NULL, ARG_PREFIX },
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001214 { NULL, 0, NULL, 0 }
1215 };
1216
1217 int c;
1218
1219 assert(argc >= 0);
1220 assert(argv);
1221
1222 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1223
1224 switch (c) {
1225
1226 case 'h':
1227 help();
1228 return 0;
1229
1230 case ARG_CREATE:
1231 arg_create = true;
1232 break;
1233
1234 case ARG_CLEAN:
1235 arg_clean = true;
1236 break;
1237
1238 case ARG_REMOVE:
1239 arg_remove = true;
1240 break;
1241
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001242 case ARG_PREFIX:
1243 arg_prefix = optarg;
1244 break;
1245
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001246 case '?':
1247 return -EINVAL;
1248
1249 default:
1250 log_error("Unknown option code %c", c);
1251 return -EINVAL;
1252 }
1253 }
1254
1255 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001256 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001257 return -EINVAL;
1258 }
1259
1260 return 1;
1261}
1262
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001263static int read_config_file(const char *fn, bool ignore_enoent) {
1264 FILE *f;
1265 unsigned v = 0;
1266 int r = 0;
1267
1268 assert(fn);
1269
Lennart Poettering468d7262012-01-17 15:04:12 +01001270 f = fopen(fn, "re");
1271 if (!f) {
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001272
1273 if (ignore_enoent && errno == ENOENT)
1274 return 0;
1275
1276 log_error("Failed to open %s: %m", fn);
1277 return -errno;
1278 }
1279
Kay Sievers772f8372011-04-25 21:38:21 +02001280 log_debug("apply: %s\n", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001281 for (;;) {
1282 char line[LINE_MAX], *l;
1283 int k;
1284
1285 if (!(fgets(line, sizeof(line), f)))
1286 break;
1287
1288 v++;
1289
1290 l = strstrip(line);
1291 if (*l == '#' || *l == 0)
1292 continue;
1293
1294 if ((k = parse_line(fn, v, l)) < 0)
1295 if (r == 0)
1296 r = k;
1297 }
1298
1299 if (ferror(f)) {
1300 log_error("Failed to read from file %s: %m", fn);
1301 if (r == 0)
1302 r = -EIO;
1303 }
1304
1305 fclose(f);
1306
1307 return r;
1308}
1309
Dave Reisner91256702012-06-08 22:31:19 -04001310static char *resolve_fragment(const char *fragment, const char **search_paths) {
1311 const char **p;
1312 char *resolved_path;
1313
1314 if (is_path(fragment))
1315 return strdup(fragment);
1316
1317 STRV_FOREACH(p, search_paths) {
Lennart Poetteringb7def682012-07-13 13:41:01 +02001318 resolved_path = strjoin(*p, "/", fragment, NULL);
Dave Reisner91256702012-06-08 22:31:19 -04001319 if (resolved_path == NULL) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001320 log_oom();
Dave Reisner91256702012-06-08 22:31:19 -04001321 return NULL;
1322 }
1323
1324 if (access(resolved_path, F_OK) == 0)
1325 return resolved_path;
1326
1327 free(resolved_path);
1328 }
1329
Kay Sieversca2e8942012-06-10 19:21:50 +02001330 errno = ENOENT;
Dave Reisner91256702012-06-08 22:31:19 -04001331 return NULL;
1332}
1333
Lennart Poettering5008d582010-09-28 02:34:02 +02001334int main(int argc, char *argv[]) {
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001335 int r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001336 Item *i;
1337 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001338
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001339 r = parse_argv(argc, argv);
1340 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001341 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1342
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001343 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001344 log_parse_environment();
1345 log_open();
1346
Lennart Poettering4c126262011-08-01 20:52:18 +02001347 umask(0022);
1348
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001349 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001350
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001351 items = hashmap_new(string_hash_func, string_compare_func);
1352 globs = hashmap_new(string_hash_func, string_compare_func);
1353
1354 if (!items || !globs) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001355 log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001356 r = EXIT_FAILURE;
1357 goto finish;
1358 }
1359
Lennart Poettering5008d582010-09-28 02:34:02 +02001360 r = EXIT_SUCCESS;
1361
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001362 if (optind < argc) {
1363 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001364
Dave Reisner91256702012-06-08 22:31:19 -04001365 for (j = optind; j < argc; j++) {
Kay Sieversca2e8942012-06-10 19:21:50 +02001366 char *fragment;
1367
Lennart Poettering24f3a372012-06-20 09:05:50 +02001368 fragment = resolve_fragment(argv[j], (const char**) conf_file_dirs);
Kay Sieversca2e8942012-06-10 19:21:50 +02001369 if (!fragment) {
Kay Sievers94f7a712012-06-10 19:31:39 +02001370 log_error("Failed to find a %s file: %m", argv[j]);
Kay Sieversca2e8942012-06-10 19:21:50 +02001371 r = EXIT_FAILURE;
1372 goto finish;
1373 }
Dave Reisner91256702012-06-08 22:31:19 -04001374 if (read_config_file(fragment, false) < 0)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001375 r = EXIT_FAILURE;
Dave Reisner91256702012-06-08 22:31:19 -04001376 free(fragment);
1377 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001378
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001379 } else {
Kay Sievers772f8372011-04-25 21:38:21 +02001380 char **files, **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001381
Dave Reisner91256702012-06-08 22:31:19 -04001382 r = conf_files_list_strv(&files, ".conf",
Lennart Poettering24f3a372012-06-20 09:05:50 +02001383 (const char **) conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001384 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001385 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
Michal Schmidta48f3d12012-04-17 22:53:35 +02001386 r = EXIT_FAILURE;
Kay Sievers44143302011-04-28 23:51:24 +02001387 goto finish;
1388 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001389
Kay Sievers772f8372011-04-25 21:38:21 +02001390 STRV_FOREACH(f, files) {
1391 if (read_config_file(*f, true) < 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001392 r = EXIT_FAILURE;
Lennart Poettering5008d582010-09-28 02:34:02 +02001393 }
1394
Kay Sievers772f8372011-04-25 21:38:21 +02001395 strv_free(files);
Lennart Poettering5008d582010-09-28 02:34:02 +02001396 }
1397
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001398 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001399 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001400
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001401 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001402 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001403
Lennart Poettering5008d582010-09-28 02:34:02 +02001404finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001405 while ((i = hashmap_steal_first(items)))
1406 item_free(i);
1407
Lennart Poettering17b90522011-02-14 21:55:06 +01001408 while ((i = hashmap_steal_first(globs)))
1409 item_free(i);
1410
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001411 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001412 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001413
Lennart Poettering17b90522011-02-14 21:55:06 +01001414 set_free_free(unix_sockets);
1415
Lennart Poettering29003cf2010-10-19 19:36:45 +02001416 label_finish();
1417
Lennart Poettering5008d582010-09-28 02:34:02 +02001418 return r;
1419}