blob: 52f80379e38e86fcd203bbf1405d18f848fd46b6 [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"
Zbigniew Jędrzejewski-Szmekd39efe72013-03-13 20:20:54 -040046#include "missing.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020047#include "mkdir.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020048#include "path-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020049#include "strv.h"
50#include "label.h"
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020051#include "set.h"
Kay Sievers2c210442012-05-07 18:55:45 +020052#include "conf-files.h"
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -070053#include "capability.h"
Lennart Poettering1731e342013-09-17 11:02:02 -050054#include "specifier.h"
Lennart Poetteringeb9da372013-11-06 18:28:39 +010055#include "build.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020056
Andreas Jaeger01000472010-09-29 10:08:24 +020057/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020058 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020059 * properly owned directories beneath /tmp, /var/tmp, /run, which are
60 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020061
Michal Schmidt66ccd032011-12-15 21:31:14 +010062typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010063 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020064 CREATE_FILE = 'f',
65 TRUNCATE_FILE = 'F',
Lennart Poettering31ed59c2012-01-18 16:39:04 +010066 WRITE_FILE = 'w',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020067 CREATE_DIRECTORY = 'd',
68 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020069 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010070 CREATE_SYMLINK = 'L',
71 CREATE_CHAR_DEVICE = 'c',
72 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering265ffa12013-09-17 16:33:30 -050073 ADJUST_MODE = 'm',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010074
75 /* These ones take globs */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020076 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010077 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020078 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010079 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +010080 RELABEL_PATH = 'z',
Michal Schmidta8d88782011-12-15 23:11:07 +010081 RECURSIVE_RELABEL_PATH = 'Z'
Michal Schmidt66ccd032011-12-15 21:31:14 +010082} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020083
84typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +010085 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020086
87 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +010088 char *argument;
Lennart Poettering5008d582010-09-28 02:34:02 +020089 uid_t uid;
90 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020091 mode_t mode;
92 usec_t age;
93
Lennart Poettering468d7262012-01-17 15:04:12 +010094 dev_t major_minor;
95
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020096 bool uid_set:1;
97 bool gid_set:1;
98 bool mode_set:1;
99 bool age_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200100
101 bool keep_first_level:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200102} Item;
103
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100104static Hashmap *items = NULL, *globs = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100105static Set *unix_sockets = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200106
107static bool arg_create = false;
108static bool arg_clean = false;
109static bool arg_remove = false;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500110static bool arg_boot = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200111
Dave Reisnera2aced42013-07-24 11:10:05 -0400112static char **include_prefixes = NULL;
Dave Reisner5c795112013-07-24 11:19:24 -0400113static char **exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700114static char *arg_root = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100115
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100116static const char conf_file_dirs[] =
117 "/etc/tmpfiles.d\0"
118 "/run/tmpfiles.d\0"
119 "/usr/local/lib/tmpfiles.d\0"
120 "/usr/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200121#ifdef HAVE_SPLIT_USR
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100122 "/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200123#endif
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100124 ;
Dave Reisner91256702012-06-08 22:31:19 -0400125
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200126#define MAX_DEPTH 256
127
Michal Schmidt66ccd032011-12-15 21:31:14 +0100128static bool needs_glob(ItemType t) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100129 return t == IGNORE_PATH || t == IGNORE_DIRECTORY_PATH || t == REMOVE_PATH || t == RECURSIVE_REMOVE_PATH || t == RELABEL_PATH || t == RECURSIVE_RELABEL_PATH;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100130}
131
132static struct Item* find_glob(Hashmap *h, const char *match) {
133 Item *j;
134 Iterator i;
135
136 HASHMAP_FOREACH(j, h, i)
137 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
138 return j;
139
140 return NULL;
141}
142
Lennart Poettering17b90522011-02-14 21:55:06 +0100143static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200144 _cleanup_fclose_ FILE *f = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100145 char line[LINE_MAX];
146
147 if (unix_sockets)
148 return;
149
150 /* We maintain a cache of the sockets we found in
151 * /proc/net/unix to speed things up a little. */
152
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100153 unix_sockets = set_new(string_hash_func, string_compare_func);
154 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100155 return;
156
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100157 f = fopen("/proc/net/unix", "re");
158 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100159 return;
160
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100161 /* Skip header */
162 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100163 goto fail;
164
165 for (;;) {
166 char *p, *s;
167 int k;
168
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100169 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100170 break;
171
172 truncate_nl(line);
173
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100174 p = strchr(line, ':');
175 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100176 continue;
177
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100178 if (strlen(p) < 37)
179 continue;
180
181 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100182 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100183 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100184 p += strspn(p, WHITESPACE);
185
186 if (*p != '/')
187 continue;
188
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100189 s = strdup(p);
190 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100191 goto fail;
192
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100193 path_kill_slashes(s);
194
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400195 k = set_consume(unix_sockets, s);
196 if (k < 0 && k != -EEXIST)
197 goto fail;
Lennart Poettering17b90522011-02-14 21:55:06 +0100198 }
199
200 return;
201
202fail:
203 set_free_free(unix_sockets);
204 unix_sockets = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100205}
206
207static bool unix_socket_alive(const char *fn) {
208 assert(fn);
209
210 load_unix_sockets();
211
212 if (unix_sockets)
213 return !!set_get(unix_sockets, (char*) fn);
214
215 /* We don't know, so assume yes */
216 return true;
217}
218
Kay Sievers99d680a2013-03-13 13:12:36 +0100219static int dir_is_mount_point(DIR *d, const char *subdir) {
220 struct file_handle *h;
221 int mount_id_parent, mount_id;
222 int r_p, r;
223
224 h = alloca(MAX_HANDLE_SZ);
225
226 h->handle_bytes = MAX_HANDLE_SZ;
227 r_p = name_to_handle_at(dirfd(d), ".", h, &mount_id_parent, 0);
228 if (r_p < 0)
229 r_p = -errno;
230
231 h->handle_bytes = MAX_HANDLE_SZ;
232 r = name_to_handle_at(dirfd(d), subdir, h, &mount_id, 0);
233 if (r < 0)
234 r = -errno;
235
236 /* got no handle; make no assumptions, return error */
237 if (r_p < 0 && r < 0)
238 return r_p;
239
240 /* got both handles; if they differ, it is a mount point */
241 if (r_p >= 0 && r >= 0)
242 return mount_id_parent != mount_id;
243
244 /* got only one handle; assume different mount points if one
245 * of both queries was not supported by the filesystem */
246 if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP)
247 return true;
248
249 /* return error */
250 if (r_p < 0)
251 return r_p;
252 return r;
253}
254
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200255static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100256 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200257 const char *p,
258 DIR *d,
259 const struct stat *ds,
260 usec_t cutoff,
261 dev_t rootdev,
262 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200263 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500264 bool keep_this_level) {
265
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200266 struct dirent *dent;
267 struct timespec times[2];
268 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200269 int r = 0;
270
271 while ((dent = readdir(d))) {
272 struct stat s;
273 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200274 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200275
276 if (streq(dent->d_name, ".") ||
277 streq(dent->d_name, ".."))
278 continue;
279
280 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200281 if (errno == ENOENT)
282 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200283
Kay Sieversca2f4172013-10-17 03:20:46 +0200284 /* FUSE, NFS mounts, SELinux might return EACCES */
285 if (errno == EACCES)
286 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
287 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200288 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200289 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200290 continue;
291 }
292
293 /* Stay on the same filesystem */
294 if (s.st_dev != rootdev)
295 continue;
296
Kay Sievers99d680a2013-03-13 13:12:36 +0100297 /* Try to detect bind mounts of the same filesystem instance; they
298 * do not differ in device major/minors. This type of query is not
299 * supported on all kernels or filesystem types though. */
300 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
301 continue;
302
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200303 /* Do not delete read-only files owned by root */
304 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
305 continue;
306
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200307 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700308 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200309 goto finish;
310 }
311
312 /* Is there an item configured for this path? */
313 if (hashmap_get(items, sub_path))
314 continue;
315
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100316 if (find_glob(globs, sub_path))
317 continue;
318
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200319 if (S_ISDIR(s.st_mode)) {
320
321 if (mountpoint &&
322 streq(dent->d_name, "lost+found") &&
323 s.st_uid == 0)
324 continue;
325
326 if (maxdepth <= 0)
327 log_warning("Reached max depth on %s.", sub_path);
328 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200329 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200330 int q;
331
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200332 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200333 if (sub_dir == NULL) {
334 if (errno != ENOENT) {
335 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
336 r = -errno;
337 }
338
339 continue;
340 }
341
Michal Sekletar78a92a52013-01-18 16:13:08 +0100342 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200343
344 if (q < 0)
345 r = q;
346 }
347
Lennart Poettering24f3a372012-06-20 09:05:50 +0200348 /* Note: if you are wondering why we don't
349 * support the sticky bit for excluding
350 * directories from cleaning like we do it for
351 * other file system objects: well, the sticky
352 * bit already has a meaning for directories,
353 * so we don't want to overload that. */
354
355 if (keep_this_level)
356 continue;
357
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200358 /* Ignore ctime, we change it when deleting */
359 age = MAX(timespec_load(&s.st_mtim),
360 timespec_load(&s.st_atim));
361 if (age >= cutoff)
362 continue;
363
Lukas Nykryna6187d42013-03-01 18:29:59 +0100364 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100365 log_debug("rmdir '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200366
Michal Sekletar78a92a52013-01-18 16:13:08 +0100367 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
368 if (errno != ENOENT && errno != ENOTEMPTY) {
369 log_error("rmdir(%s): %m", sub_path);
370 r = -errno;
371 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200372 }
373 }
374
375 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100376 /* Skip files for which the sticky bit is
377 * set. These are semantics we define, and are
378 * unknown elsewhere. See XDG_RUNTIME_DIR
379 * specification for details. */
380 if (s.st_mode & S_ISVTX)
381 continue;
382
Lennart Poettering17b90522011-02-14 21:55:06 +0100383 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200384 if (streq(dent->d_name, ".journal") &&
385 s.st_uid == 0)
386 continue;
387
388 if (streq(dent->d_name, "aquota.user") ||
389 streq(dent->d_name, "aquota.group"))
390 continue;
391 }
392
Lennart Poettering17b90522011-02-14 21:55:06 +0100393 /* Ignore sockets that are listed in /proc/net/unix */
394 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
395 continue;
396
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100397 /* Ignore device nodes */
398 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
399 continue;
400
Lennart Poettering24f3a372012-06-20 09:05:50 +0200401 /* Keep files on this level around if this is
402 * requested */
403 if (keep_this_level)
404 continue;
405
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200406 age = MAX3(timespec_load(&s.st_mtim),
407 timespec_load(&s.st_atim),
408 timespec_load(&s.st_ctim));
409
410 if (age >= cutoff)
411 continue;
412
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100413 log_debug("unlink '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200414
415 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
416 if (errno != ENOENT) {
417 log_error("unlink(%s): %m", sub_path);
418 r = -errno;
419 }
420 }
421
422 deleted = true;
423 }
424 }
425
426finish:
427 if (deleted) {
428 /* Restore original directory timestamps */
429 times[0] = ds->st_atim;
430 times[1] = ds->st_mtim;
431
432 if (futimens(dirfd(d), times) < 0)
433 log_error("utimensat(%s): %m", p);
434 }
435
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200436 return r;
437}
438
Lennart Poettering265ffa12013-09-17 16:33:30 -0500439static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100440 /* not using i->path directly because it may be a glob */
441 if (i->mode_set)
442 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500443 if (errno != ENOENT || !ignore_enoent) {
444 log_error("chmod(%s) failed: %m", path);
445 return -errno;
446 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100447 }
448
449 if (i->uid_set || i->gid_set)
450 if (chown(path,
451 i->uid_set ? i->uid : (uid_t) -1,
452 i->gid_set ? i->gid : (gid_t) -1) < 0) {
453
Lennart Poettering265ffa12013-09-17 16:33:30 -0500454 if (errno != ENOENT || !ignore_enoent) {
455 log_error("chown(%s) failed: %m", path);
456 return -errno;
457 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100458 }
459
Lukas Nykrynf58ceb22014-01-09 18:00:50 +0100460 return label_fix(path, ignore_enoent, false);
Lennart Poettering265ffa12013-09-17 16:33:30 -0500461}
462
463static int item_set_perms(Item *i, const char *path) {
464 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100465}
466
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400467static int write_one_file(Item *i, const char *path) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200468 int e, flags;
469 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400470 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200471 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400472
473 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
474 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
475
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200476 RUN_WITH_UMASK(0) {
477 label_context_set(path, S_IFREG);
478 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
479 e = errno;
480 label_context_clear();
481 errno = e;
482 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400483
484 if (fd < 0) {
485 if (i->type == WRITE_FILE && errno == ENOENT)
486 return 0;
487
488 log_error("Failed to create file %s: %m", path);
489 return -errno;
490 }
491
492 if (i->argument) {
493 ssize_t n;
494 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400495 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400496
Dave Reisner54693d92012-09-15 12:58:49 -0400497 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100498 if (unescaped == NULL) {
499 close_nointr_nofail(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400500 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100501 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400502
Dave Reisner54693d92012-09-15 12:58:49 -0400503 l = strlen(unescaped);
504 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400505
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400506 if (n < 0 || (size_t) n < l) {
507 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
508 close_nointr_nofail(fd);
509 return n < 0 ? n : -EIO;
510 }
511 }
512
Dave Reisner3612fbc2012-09-12 16:21:00 -0400513 close_nointr_nofail(fd);
514
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400515 if (stat(path, &st) < 0) {
516 log_error("stat(%s) failed: %m", path);
517 return -errno;
518 }
519
520 if (!S_ISREG(st.st_mode)) {
521 log_error("%s is not a file.", path);
522 return -EEXIST;
523 }
524
525 r = item_set_perms(i, path);
526 if (r < 0)
527 return r;
528
529 return 0;
530}
531
Michal Schmidt062e01b2011-12-16 18:00:11 +0100532static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200533 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100534 int ret = 0;
535
536 /* This returns the first error we run into, but nevertheless
537 * tries to go on */
538
539 d = opendir(path);
540 if (!d)
541 return errno == ENOENT ? 0 : -errno;
542
543 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200544 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +0100545 bool is_dir;
546 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200547 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100548
Florian Weimerd78096b2013-12-19 12:26:07 +0100549 errno = 0;
550 de = readdir(d);
551 if (!de && errno != 0) {
Michal Schmidta8d88782011-12-15 23:11:07 +0100552 if (ret == 0)
Florian Weimerd78096b2013-12-19 12:26:07 +0100553 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100554 break;
555 }
556
557 if (!de)
558 break;
559
560 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
561 continue;
562
563 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
564 if (ret == 0)
565 ret = -ENOMEM;
566 continue;
567 }
568
569 if (de->d_type == DT_UNKNOWN) {
570 struct stat st;
571
572 if (lstat(entry_path, &st) < 0) {
573 if (ret == 0 && errno != ENOENT)
574 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100575 continue;
576 }
577
578 is_dir = S_ISDIR(st.st_mode);
579
580 } else
581 is_dir = de->d_type == DT_DIR;
582
Michal Schmidt062e01b2011-12-16 18:00:11 +0100583 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100584 if (r < 0) {
585 if (ret == 0 && r != -ENOENT)
586 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100587 continue;
588 }
589
590 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100591 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100592 if (r < 0 && ret == 0)
593 ret = r;
594 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100595 }
596
Michal Schmidta8d88782011-12-15 23:11:07 +0100597 return ret;
598}
599
600static int recursive_relabel(Item *i, const char *path) {
601 int r;
602 struct stat st;
603
Michal Schmidt062e01b2011-12-16 18:00:11 +0100604 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100605 if (r < 0)
606 return r;
607
608 if (lstat(path, &st) < 0)
609 return -errno;
610
611 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100612 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100613
614 return r;
615}
616
Michal Schmidt99e68c02011-12-15 23:45:26 +0100617static int glob_item(Item *i, int (*action)(Item *, const char *)) {
618 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200619 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100620 char **fn;
621
Michal Schmidt99e68c02011-12-15 23:45:26 +0100622 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400623 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
624 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100625 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400626 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100627 errno = EIO;
628
629 log_error("glob(%s) failed: %m", i->path);
630 return -errno;
631 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400632
633 STRV_FOREACH(fn, g.gl_pathv) {
634 k = action(i, *fn);
635 if (k < 0)
636 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100637 }
638
Michal Schmidt99e68c02011-12-15 23:45:26 +0100639 return r;
640}
641
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200642static int create_item(Item *i) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200643 int e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200644 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200645 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200646
647 assert(i);
648
649 switch (i->type) {
650
651 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100652 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200653 case REMOVE_PATH:
654 case RECURSIVE_REMOVE_PATH:
655 return 0;
656
657 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100658 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400659 r = write_one_file(i, i->path);
660 if (r < 0)
661 return r;
662 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500663
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400664 case WRITE_FILE:
665 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100666 if (r < 0)
667 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200668
669 break;
670
Lennart Poettering265ffa12013-09-17 16:33:30 -0500671 case ADJUST_MODE:
672 r = item_set_perms_full(i, i->path, true);
673 if (r < 0)
674 return r;
675
676 break;
677
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200678 case TRUNCATE_DIRECTORY:
679 case CREATE_DIRECTORY:
680
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200681 RUN_WITH_UMASK(0000) {
682 mkdir_parents_label(i->path, 0755);
683 r = mkdir(i->path, i->mode);
684 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200685
686 if (r < 0 && errno != EEXIST) {
687 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100688 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200689 }
690
691 if (stat(i->path, &st) < 0) {
692 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100693 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200694 }
695
696 if (!S_ISDIR(st.st_mode)) {
697 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100698 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200699 }
700
Michal Schmidt062e01b2011-12-16 18:00:11 +0100701 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100702 if (r < 0)
703 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200704
705 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200706
707 case CREATE_FIFO:
708
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200709 RUN_WITH_UMASK(0000) {
710 r = mkfifo(i->path, i->mode);
711 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200712
713 if (r < 0 && errno != EEXIST) {
714 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100715 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200716 }
717
718 if (stat(i->path, &st) < 0) {
719 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100720 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200721 }
722
723 if (!S_ISFIFO(st.st_mode)) {
724 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100725 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200726 }
727
Michal Schmidt062e01b2011-12-16 18:00:11 +0100728 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100729 if (r < 0)
730 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200731
732 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100733
Lennart Poettering468d7262012-01-17 15:04:12 +0100734 case CREATE_SYMLINK: {
Lennart Poetteringe26da2d2014-02-19 17:52:41 +0100735 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +0100736
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200737 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100738 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200739 e = errno;
740 label_context_clear();
741 errno = e;
742
Lennart Poettering468d7262012-01-17 15:04:12 +0100743 if (r < 0 && errno != EEXIST) {
744 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
745 return -errno;
746 }
747
748 r = readlink_malloc(i->path, &x);
749 if (r < 0) {
750 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
751 return -errno;
752 }
753
754 if (!streq(i->argument, x)) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100755 log_error("%s is not the right symlinks.", i->path);
756 return -EEXIST;
757 }
758
Lennart Poettering468d7262012-01-17 15:04:12 +0100759 break;
760 }
761
762 case CREATE_BLOCK_DEVICE:
763 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700764 mode_t file_type;
765
766 if (have_effective_cap(CAP_MKNOD) == 0) {
767 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700768 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700769 that case to avoid noise, and we don't support
770 virtualized devices in containers anyway. */
771
772 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
773 return 0;
774 }
775
776 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100777
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200778 RUN_WITH_UMASK(0000) {
779 label_context_set(i->path, file_type);
780 r = mknod(i->path, i->mode | file_type, i->major_minor);
781 e = errno;
782 label_context_clear();
783 errno = e;
784 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100785
786 if (r < 0 && errno != EEXIST) {
787 log_error("Failed to create device node %s: %m", i->path);
788 return -errno;
789 }
790
791 if (stat(i->path, &st) < 0) {
792 log_error("stat(%s) failed: %m", i->path);
793 return -errno;
794 }
795
Michal Schmidte7aee752012-06-14 16:01:19 +0200796 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100797 log_error("%s is not a device node.", i->path);
798 return -EEXIST;
799 }
800
801 r = item_set_perms(i, i->path);
802 if (r < 0)
803 return r;
804
805 break;
806 }
807
Michal Schmidt777b87e2011-12-16 18:27:35 +0100808 case RELABEL_PATH:
809
810 r = glob_item(i, item_set_perms);
811 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200812 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100813 break;
814
Michal Schmidta8d88782011-12-15 23:11:07 +0100815 case RECURSIVE_RELABEL_PATH:
816
817 r = glob_item(i, recursive_relabel);
818 if (r < 0)
819 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200820 }
821
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200822 log_debug("%s created successfully.", i->path);
823
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100824 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200825}
826
Michal Schmidta0896122011-12-15 21:32:50 +0100827static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200828 int r;
829
830 assert(i);
831
832 switch (i->type) {
833
834 case CREATE_FILE:
835 case TRUNCATE_FILE:
836 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200837 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100838 case CREATE_SYMLINK:
839 case CREATE_BLOCK_DEVICE:
840 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200841 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100842 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100843 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100844 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100845 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500846 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200847 break;
848
849 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100850 if (remove(instance) < 0 && errno != ENOENT) {
851 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200852 return -errno;
853 }
854
855 break;
856
857 case TRUNCATE_DIRECTORY:
858 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200859 /* FIXME: we probably should use dir_cleanup() here
860 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200861 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100862 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100863 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200864 return r;
865 }
866
867 break;
868 }
869
870 return 0;
871}
872
Michal Schmidta0896122011-12-15 21:32:50 +0100873static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100874 int r = 0;
875
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100876 assert(i);
877
878 switch (i->type) {
879
880 case CREATE_FILE:
881 case TRUNCATE_FILE:
882 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200883 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100884 case CREATE_SYMLINK:
885 case CREATE_CHAR_DEVICE:
886 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100887 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100888 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100889 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100890 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100891 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500892 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100893 break;
894
895 case REMOVE_PATH:
896 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100897 case RECURSIVE_REMOVE_PATH:
898 r = glob_item(i, remove_item_instance);
899 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100900 }
901
Michal Schmidt99e68c02011-12-15 23:45:26 +0100902 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100903}
904
Michal Sekletar78a92a52013-01-18 16:13:08 +0100905static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200906 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100907 struct stat s, ps;
908 bool mountpoint;
909 int r;
910 usec_t cutoff, n;
911
912 assert(i);
913
914 if (!i->age_set)
915 return 0;
916
917 n = now(CLOCK_REALTIME);
918 if (n < i->age)
919 return 0;
920
921 cutoff = n - i->age;
922
923 d = opendir(instance);
924 if (!d) {
925 if (errno == ENOENT || errno == ENOTDIR)
926 return 0;
927
928 log_error("Failed to open directory %s: %m", i->path);
929 return -errno;
930 }
931
932 if (fstat(dirfd(d), &s) < 0) {
933 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500934 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100935 }
936
937 if (!S_ISDIR(s.st_mode)) {
938 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500939 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100940 }
941
942 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
943 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500944 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100945 }
946
947 mountpoint = s.st_dev != ps.st_dev ||
948 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
949
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500950 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
951 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100952 return r;
953}
954
955static int clean_item(Item *i) {
956 int r = 0;
957
958 assert(i);
959
960 switch (i->type) {
961 case CREATE_DIRECTORY:
962 case TRUNCATE_DIRECTORY:
963 case IGNORE_PATH:
964 clean_item_instance(i, i->path);
965 break;
966 case IGNORE_DIRECTORY_PATH:
967 r = glob_item(i, clean_item_instance);
968 break;
969 default:
970 break;
971 }
972
973 return r;
974}
975
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200976static int process_item(Item *i) {
977 int r, q, p;
978
979 assert(i);
980
981 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100982 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200983 p = arg_clean ? clean_item(i) : 0;
984
985 if (r < 0)
986 return r;
987
988 if (q < 0)
989 return q;
990
991 return p;
992}
993
994static void item_free(Item *i) {
995 assert(i);
996
997 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +0100998 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200999 free(i);
1000}
1001
Lennart Poettering14bf2c92013-10-14 04:59:26 +02001002DEFINE_TRIVIAL_CLEANUP_FUNC(Item*, item_free);
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001003#define _cleanup_item_free_ _cleanup_(item_freep)
1004
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001005static bool item_equal(Item *a, Item *b) {
1006 assert(a);
1007 assert(b);
1008
1009 if (!streq_ptr(a->path, b->path))
1010 return false;
1011
1012 if (a->type != b->type)
1013 return false;
1014
1015 if (a->uid_set != b->uid_set ||
1016 (a->uid_set && a->uid != b->uid))
1017 return false;
1018
1019 if (a->gid_set != b->gid_set ||
1020 (a->gid_set && a->gid != b->gid))
1021 return false;
1022
1023 if (a->mode_set != b->mode_set ||
1024 (a->mode_set && a->mode != b->mode))
1025 return false;
1026
1027 if (a->age_set != b->age_set ||
1028 (a->age_set && a->age != b->age))
1029 return false;
1030
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001031 if ((a->type == CREATE_FILE ||
1032 a->type == TRUNCATE_FILE ||
1033 a->type == WRITE_FILE ||
1034 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001035 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001036 return false;
1037
1038 if ((a->type == CREATE_CHAR_DEVICE ||
1039 a->type == CREATE_BLOCK_DEVICE) &&
1040 a->major_minor != b->major_minor)
1041 return false;
1042
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001043 return true;
1044}
1045
Dave Reisnera2aced42013-07-24 11:10:05 -04001046static bool should_include_path(const char *path) {
1047 char **prefix;
1048
Dave Reisner5c795112013-07-24 11:19:24 -04001049 STRV_FOREACH(prefix, exclude_prefixes) {
1050 if (path_startswith(path, *prefix))
1051 return false;
1052 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001053
1054 STRV_FOREACH(prefix, include_prefixes) {
1055 if (path_startswith(path, *prefix))
1056 return true;
1057 }
1058
Dave Reisner5c795112013-07-24 11:19:24 -04001059 /* no matches, so we should include this path only if we
1060 * have no whitelist at all */
1061 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001062}
1063
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001064static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001065
1066 static const Specifier specifier_table[] = {
1067 { 'm', specifier_machine_id, NULL },
1068 { 'b', specifier_boot_id, NULL },
1069 { 'H', specifier_host_name, NULL },
1070 { 'v', specifier_kernel_release, NULL },
1071 {}
1072 };
1073
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001074 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001075 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001076 _cleanup_free_ char
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001077 *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001078 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001079 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001080 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001081
1082 assert(fname);
1083 assert(line >= 1);
1084 assert(buffer);
1085
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001086 r = sscanf(buffer,
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001087 "%ms %ms %ms %ms %ms %ms %n",
1088 &action,
Lennart Poettering1731e342013-09-17 11:02:02 -05001089 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001090 &mode,
1091 &user,
1092 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001093 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001094 &n);
1095 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001096 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001097 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001098 }
1099
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001100 if (strlen(action) > 2 || (strlen(action) > 1 && action[1] != '!')) {
1101 log_error("[%s:%u] Unknown modifier '%s'", fname, line, action);
1102 return -EINVAL;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001103 } else if (strlen(action) > 1 && !arg_boot)
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001104 return 0;
1105
1106 type = action[0];
1107
Lennart Poettering1731e342013-09-17 11:02:02 -05001108 i = new0(Item, 1);
1109 if (!i)
1110 return log_oom();
1111
1112 r = specifier_printf(path, specifier_table, NULL, &i->path);
1113 if (r < 0) {
1114 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1115 return r;
1116 }
1117
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001118 if (n >= 0) {
1119 n += strspn(buffer+n, WHITESPACE);
1120 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1121 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001122 if (!i->argument)
1123 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001124 }
1125 }
1126
Michal Schmidt777b87e2011-12-16 18:27:35 +01001127 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001128
Michal Schmidt777b87e2011-12-16 18:27:35 +01001129 case CREATE_FILE:
1130 case TRUNCATE_FILE:
1131 case CREATE_DIRECTORY:
1132 case TRUNCATE_DIRECTORY:
1133 case CREATE_FIFO:
1134 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001135 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001136 case REMOVE_PATH:
1137 case RECURSIVE_REMOVE_PATH:
1138 case RELABEL_PATH:
1139 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001140 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001141 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001142
1143 case CREATE_SYMLINK:
1144 if (!i->argument) {
1145 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001146 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001147 }
1148 break;
1149
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001150 case WRITE_FILE:
1151 if (!i->argument) {
1152 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001153 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001154 }
1155 break;
1156
Lennart Poettering468d7262012-01-17 15:04:12 +01001157 case CREATE_CHAR_DEVICE:
1158 case CREATE_BLOCK_DEVICE: {
1159 unsigned major, minor;
1160
1161 if (!i->argument) {
1162 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001163 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001164 }
1165
1166 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1167 log_error("[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i->argument);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001168 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001169 }
1170
1171 i->major_minor = makedev(major, minor);
1172 break;
1173 }
1174
Michal Schmidt777b87e2011-12-16 18:27:35 +01001175 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001176 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001177 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001178 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001179
Michal Schmidta8d88782011-12-15 23:11:07 +01001180 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001181
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001182 if (!path_is_absolute(i->path)) {
1183 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001184 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001185 }
1186
1187 path_kill_slashes(i->path);
1188
Dave Reisnera2aced42013-07-24 11:10:05 -04001189 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001190 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001191
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001192 if (arg_root) {
1193 char *p = strappend(arg_root, i->path);
1194 if (!p)
1195 return log_oom();
1196
1197 free(i->path);
1198 i->path = p;
1199 }
1200
Lennart Poettering5008d582010-09-28 02:34:02 +02001201 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001202 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001203
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001204 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001205 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001206 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001207 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001208 }
1209
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001210 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001211 }
1212
1213 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001214 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001215
Lennart Poettering4b678342011-07-23 01:17:59 +02001216 r = get_group_creds(&g, &i->gid);
1217 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001218 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001219 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001220 }
1221
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001222 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001223 }
1224
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001225 if (mode && !streq(mode, "-")) {
1226 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001227
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001228 if (sscanf(mode, "%o", &m) != 1) {
1229 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001230 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001231 }
1232
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001233 i->mode = m;
1234 i->mode_set = true;
1235 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001236 i->mode =
1237 i->type == CREATE_DIRECTORY ||
1238 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001239
1240 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001241 const char *a = age;
1242
1243 if (*a == '~') {
1244 i->keep_first_level = true;
1245 a++;
1246 }
1247
Lennart Poettering7f602782013-04-02 20:38:16 +02001248 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001249 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001250 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001251 }
1252
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001253 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001254 }
1255
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001256 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001257
Lennart Poettering468d7262012-01-17 15:04:12 +01001258 existing = hashmap_get(h, i->path);
1259 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001260
1261 /* Two identical items are fine */
1262 if (!item_equal(existing, i))
1263 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1264
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001265 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001266 }
1267
Lennart Poettering468d7262012-01-17 15:04:12 +01001268 r = hashmap_put(h, i->path, i);
1269 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001270 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001271 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001272 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001273
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001274 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001275
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001276 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001277}
1278
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001279static int help(void) {
1280
Lennart Poettering522d4a42011-02-13 15:08:15 +01001281 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1282 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001283 " -h --help Show this help\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001284 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001285 " --create Create marked files/directories\n"
1286 " --clean Clean up marked directories\n"
1287 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001288 " --boot Execute actions only safe at boot\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001289 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001290 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n"
1291 " --root=PATH Operate on an alternate filesystem root\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001292 program_invocation_short_name);
1293
1294 return 0;
1295}
1296
1297static int parse_argv(int argc, char *argv[]) {
1298
1299 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001300 ARG_VERSION = 0x100,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001301 ARG_CREATE,
1302 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001303 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001304 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04001305 ARG_PREFIX,
1306 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001307 ARG_ROOT,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001308 };
1309
1310 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001311 { "help", no_argument, NULL, 'h' },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001312 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04001313 { "create", no_argument, NULL, ARG_CREATE },
1314 { "clean", no_argument, NULL, ARG_CLEAN },
1315 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001316 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04001317 { "prefix", required_argument, NULL, ARG_PREFIX },
1318 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001319 { "root", required_argument, NULL, ARG_ROOT },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001320 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001321 };
1322
1323 int c;
1324
1325 assert(argc >= 0);
1326 assert(argv);
1327
1328 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1329
1330 switch (c) {
1331
1332 case 'h':
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001333 return help();
1334
1335 case ARG_VERSION:
1336 puts(PACKAGE_STRING);
1337 puts(SYSTEMD_FEATURES);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001338 return 0;
1339
1340 case ARG_CREATE:
1341 arg_create = true;
1342 break;
1343
1344 case ARG_CLEAN:
1345 arg_clean = true;
1346 break;
1347
1348 case ARG_REMOVE:
1349 arg_remove = true;
1350 break;
1351
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001352 case ARG_BOOT:
1353 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001354 break;
1355
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001356 case ARG_PREFIX:
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001357 if (strv_push(&include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04001358 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001359 break;
1360
Dave Reisner5c795112013-07-24 11:19:24 -04001361 case ARG_EXCLUDE_PREFIX:
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001362 if (strv_push(&exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04001363 return log_oom();
1364 break;
1365
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001366 case ARG_ROOT:
1367 arg_root = path_make_absolute_cwd(optarg);
1368 if (!arg_root)
1369 return log_oom();
1370 path_kill_slashes(arg_root);
1371 break;
1372
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001373 case '?':
1374 return -EINVAL;
1375
1376 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001377 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001378 }
1379 }
1380
1381 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001382 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001383 return -EINVAL;
1384 }
1385
1386 return 1;
1387}
1388
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001389static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001390 _cleanup_fclose_ FILE *f = NULL;
1391 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001392 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001393 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001394 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001395 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001396
1397 assert(fn);
1398
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001399 r = search_and_fopen_nulstr(fn, "re", arg_root, conf_file_dirs, &f);
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001400 if (r < 0) {
1401 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001402 return 0;
1403
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001404 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1405 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001406 }
1407
Lennart Poettering1731e342013-09-17 11:02:02 -05001408 FOREACH_LINE(line, f, break) {
1409 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001410 int k;
1411
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001412 v++;
1413
1414 l = strstrip(line);
1415 if (*l == '#' || *l == 0)
1416 continue;
1417
Lennart Poettering1731e342013-09-17 11:02:02 -05001418 k = parse_line(fn, v, l);
1419 if (k < 0 && r == 0)
1420 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001421 }
1422
Michal Sekletar78a92a52013-01-18 16:13:08 +01001423 /* we have to determine age parameter for each entry of type X */
1424 HASHMAP_FOREACH(i, globs, iterator) {
1425 Iterator iter;
1426 Item *j, *candidate_item = NULL;
1427
1428 if (i->type != IGNORE_DIRECTORY_PATH)
1429 continue;
1430
1431 HASHMAP_FOREACH(j, items, iter) {
1432 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1433 continue;
1434
1435 if (path_equal(j->path, i->path)) {
1436 candidate_item = j;
1437 break;
1438 }
1439
1440 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1441 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1442 candidate_item = j;
1443 }
1444
1445 if (candidate_item) {
1446 i->age = candidate_item->age;
1447 i->age_set = true;
1448 }
1449 }
1450
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001451 if (ferror(f)) {
1452 log_error("Failed to read from file %s: %m", fn);
1453 if (r == 0)
1454 r = -EIO;
1455 }
1456
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001457 return r;
1458}
1459
Lennart Poettering5008d582010-09-28 02:34:02 +02001460int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001461 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001462 Item *i;
1463 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001464
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001465 r = parse_argv(argc, argv);
1466 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001467 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1468
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001469 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001470 log_parse_environment();
1471 log_open();
1472
Lennart Poettering4c126262011-08-01 20:52:18 +02001473 umask(0022);
1474
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001475 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001476
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001477 items = hashmap_new(string_hash_func, string_compare_func);
1478 globs = hashmap_new(string_hash_func, string_compare_func);
1479
1480 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001481 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001482 goto finish;
1483 }
1484
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001485 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001486
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001487 if (optind < argc) {
1488 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001489
Dave Reisner91256702012-06-08 22:31:19 -04001490 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001491 k = read_config_file(argv[j], false);
1492 if (k < 0 && r == 0)
1493 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001494 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001495
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001496 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001497 _cleanup_strv_free_ char **files = NULL;
1498 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001499
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001500 r = conf_files_list_nulstr(&files, ".conf", arg_root, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001501 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001502 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1503 goto finish;
1504 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001505
Kay Sievers772f8372011-04-25 21:38:21 +02001506 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001507 k = read_config_file(*f, true);
1508 if (k < 0 && r == 0)
1509 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001510 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001511 }
1512
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001513 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001514 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001515
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001516 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001517 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001518
Lennart Poettering5008d582010-09-28 02:34:02 +02001519finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001520 while ((i = hashmap_steal_first(items)))
1521 item_free(i);
1522
Lennart Poettering17b90522011-02-14 21:55:06 +01001523 while ((i = hashmap_steal_first(globs)))
1524 item_free(i);
1525
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001526 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001527 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001528
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001529 free(include_prefixes);
1530 free(exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001531 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04001532
Lennart Poettering17b90522011-02-14 21:55:06 +01001533 set_free_free(unix_sockets);
1534
Lennart Poettering29003cf2010-10-19 19:36:45 +02001535 label_finish();
1536
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001537 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001538}