blob: 68f0a5cf7846bf9d29a9eb398a0e04852c7e9a66 [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) {
Dave Reisner370c8602014-04-19 13:22:35 -0400220 union file_handle_union h = { .handle.handle_bytes = MAX_HANDLE_SZ };
Kay Sievers99d680a2013-03-13 13:12:36 +0100221 int mount_id_parent, mount_id;
222 int r_p, r;
223
Dave Reisner370c8602014-04-19 13:22:35 -0400224 r_p = name_to_handle_at(dirfd(d), ".", &h.handle, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100225 if (r_p < 0)
226 r_p = -errno;
227
Dave Reisner370c8602014-04-19 13:22:35 -0400228 h.handle.handle_bytes = MAX_HANDLE_SZ;
229 r = name_to_handle_at(dirfd(d), subdir, &h.handle, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100230 if (r < 0)
231 r = -errno;
232
233 /* got no handle; make no assumptions, return error */
234 if (r_p < 0 && r < 0)
235 return r_p;
236
237 /* got both handles; if they differ, it is a mount point */
238 if (r_p >= 0 && r >= 0)
239 return mount_id_parent != mount_id;
240
241 /* got only one handle; assume different mount points if one
242 * of both queries was not supported by the filesystem */
243 if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP)
244 return true;
245
246 /* return error */
247 if (r_p < 0)
248 return r_p;
249 return r;
250}
251
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200252static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100253 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200254 const char *p,
255 DIR *d,
256 const struct stat *ds,
257 usec_t cutoff,
258 dev_t rootdev,
259 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200260 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500261 bool keep_this_level) {
262
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200263 struct dirent *dent;
264 struct timespec times[2];
265 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200266 int r = 0;
267
268 while ((dent = readdir(d))) {
269 struct stat s;
270 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200271 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200272
273 if (streq(dent->d_name, ".") ||
274 streq(dent->d_name, ".."))
275 continue;
276
277 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200278 if (errno == ENOENT)
279 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200280
Kay Sieversca2f4172013-10-17 03:20:46 +0200281 /* FUSE, NFS mounts, SELinux might return EACCES */
282 if (errno == EACCES)
283 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
284 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200285 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200286 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200287 continue;
288 }
289
290 /* Stay on the same filesystem */
291 if (s.st_dev != rootdev)
292 continue;
293
Kay Sievers99d680a2013-03-13 13:12:36 +0100294 /* Try to detect bind mounts of the same filesystem instance; they
295 * do not differ in device major/minors. This type of query is not
296 * supported on all kernels or filesystem types though. */
297 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
298 continue;
299
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200300 /* Do not delete read-only files owned by root */
301 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
302 continue;
303
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200304 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700305 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200306 goto finish;
307 }
308
309 /* Is there an item configured for this path? */
310 if (hashmap_get(items, sub_path))
311 continue;
312
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100313 if (find_glob(globs, sub_path))
314 continue;
315
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200316 if (S_ISDIR(s.st_mode)) {
317
318 if (mountpoint &&
319 streq(dent->d_name, "lost+found") &&
320 s.st_uid == 0)
321 continue;
322
323 if (maxdepth <= 0)
324 log_warning("Reached max depth on %s.", sub_path);
325 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200326 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200327 int q;
328
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200329 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200330 if (sub_dir == NULL) {
331 if (errno != ENOENT) {
332 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
333 r = -errno;
334 }
335
336 continue;
337 }
338
Michal Sekletar78a92a52013-01-18 16:13:08 +0100339 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200340
341 if (q < 0)
342 r = q;
343 }
344
Lennart Poettering24f3a372012-06-20 09:05:50 +0200345 /* Note: if you are wondering why we don't
346 * support the sticky bit for excluding
347 * directories from cleaning like we do it for
348 * other file system objects: well, the sticky
349 * bit already has a meaning for directories,
350 * so we don't want to overload that. */
351
352 if (keep_this_level)
353 continue;
354
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200355 /* Ignore ctime, we change it when deleting */
356 age = MAX(timespec_load(&s.st_mtim),
357 timespec_load(&s.st_atim));
358 if (age >= cutoff)
359 continue;
360
Lukas Nykryna6187d42013-03-01 18:29:59 +0100361 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100362 log_debug("rmdir '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200363
Michal Sekletar78a92a52013-01-18 16:13:08 +0100364 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
365 if (errno != ENOENT && errno != ENOTEMPTY) {
366 log_error("rmdir(%s): %m", sub_path);
367 r = -errno;
368 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200369 }
370 }
371
372 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100373 /* Skip files for which the sticky bit is
374 * set. These are semantics we define, and are
375 * unknown elsewhere. See XDG_RUNTIME_DIR
376 * specification for details. */
377 if (s.st_mode & S_ISVTX)
378 continue;
379
Lennart Poettering17b90522011-02-14 21:55:06 +0100380 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200381 if (streq(dent->d_name, ".journal") &&
382 s.st_uid == 0)
383 continue;
384
385 if (streq(dent->d_name, "aquota.user") ||
386 streq(dent->d_name, "aquota.group"))
387 continue;
388 }
389
Lennart Poettering17b90522011-02-14 21:55:06 +0100390 /* Ignore sockets that are listed in /proc/net/unix */
391 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
392 continue;
393
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100394 /* Ignore device nodes */
395 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
396 continue;
397
Lennart Poettering24f3a372012-06-20 09:05:50 +0200398 /* Keep files on this level around if this is
399 * requested */
400 if (keep_this_level)
401 continue;
402
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200403 age = MAX3(timespec_load(&s.st_mtim),
404 timespec_load(&s.st_atim),
405 timespec_load(&s.st_ctim));
406
407 if (age >= cutoff)
408 continue;
409
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100410 log_debug("unlink '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200411
412 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
413 if (errno != ENOENT) {
414 log_error("unlink(%s): %m", sub_path);
415 r = -errno;
416 }
417 }
418
419 deleted = true;
420 }
421 }
422
423finish:
424 if (deleted) {
425 /* Restore original directory timestamps */
426 times[0] = ds->st_atim;
427 times[1] = ds->st_mtim;
428
429 if (futimens(dirfd(d), times) < 0)
430 log_error("utimensat(%s): %m", p);
431 }
432
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200433 return r;
434}
435
Lennart Poettering265ffa12013-09-17 16:33:30 -0500436static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100437 /* not using i->path directly because it may be a glob */
438 if (i->mode_set)
439 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500440 if (errno != ENOENT || !ignore_enoent) {
441 log_error("chmod(%s) failed: %m", path);
442 return -errno;
443 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100444 }
445
446 if (i->uid_set || i->gid_set)
447 if (chown(path,
448 i->uid_set ? i->uid : (uid_t) -1,
449 i->gid_set ? i->gid : (gid_t) -1) < 0) {
450
Lennart Poettering265ffa12013-09-17 16:33:30 -0500451 if (errno != ENOENT || !ignore_enoent) {
452 log_error("chown(%s) failed: %m", path);
453 return -errno;
454 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100455 }
456
Lukas Nykrynf58ceb22014-01-09 18:00:50 +0100457 return label_fix(path, ignore_enoent, false);
Lennart Poettering265ffa12013-09-17 16:33:30 -0500458}
459
460static int item_set_perms(Item *i, const char *path) {
461 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100462}
463
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400464static int write_one_file(Item *i, const char *path) {
Lennart Poettering874f1942014-06-10 22:48:56 +0200465 int flags;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200466 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400467 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200468 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400469
Lennart Poettering874f1942014-06-10 22:48:56 +0200470 assert(i);
471 assert(path);
472
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400473 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);
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200479 label_context_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200480 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400481
482 if (fd < 0) {
483 if (i->type == WRITE_FILE && errno == ENOENT)
484 return 0;
485
486 log_error("Failed to create file %s: %m", path);
487 return -errno;
488 }
489
490 if (i->argument) {
491 ssize_t n;
492 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400493 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400494
Dave Reisner54693d92012-09-15 12:58:49 -0400495 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100496 if (unescaped == NULL) {
Lennart Poettering03e334a2014-03-18 19:22:43 +0100497 safe_close(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400498 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100499 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400500
Dave Reisner54693d92012-09-15 12:58:49 -0400501 l = strlen(unescaped);
502 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400503
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400504 if (n < 0 || (size_t) n < l) {
505 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
Lennart Poettering03e334a2014-03-18 19:22:43 +0100506 safe_close(fd);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400507 return n < 0 ? n : -EIO;
508 }
509 }
510
Lennart Poettering03e334a2014-03-18 19:22:43 +0100511 safe_close(fd);
Dave Reisner3612fbc2012-09-12 16:21:00 -0400512
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400513 if (stat(path, &st) < 0) {
514 log_error("stat(%s) failed: %m", path);
515 return -errno;
516 }
517
518 if (!S_ISREG(st.st_mode)) {
519 log_error("%s is not a file.", path);
520 return -EEXIST;
521 }
522
523 r = item_set_perms(i, path);
524 if (r < 0)
525 return r;
526
527 return 0;
528}
529
Michal Schmidt062e01b2011-12-16 18:00:11 +0100530static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200531 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100532 int ret = 0;
533
534 /* This returns the first error we run into, but nevertheless
535 * tries to go on */
536
537 d = opendir(path);
538 if (!d)
539 return errno == ENOENT ? 0 : -errno;
540
541 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200542 struct dirent *de;
Zbigniew Jędrzejewski-Szmek6cf487a2012-11-02 15:05:31 +0100543 bool dir;
Michal Schmidta8d88782011-12-15 23:11:07 +0100544 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200545 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100546
Florian Weimerd78096b2013-12-19 12:26:07 +0100547 errno = 0;
548 de = readdir(d);
549 if (!de && errno != 0) {
Michal Schmidta8d88782011-12-15 23:11:07 +0100550 if (ret == 0)
Florian Weimerd78096b2013-12-19 12:26:07 +0100551 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100552 break;
553 }
554
555 if (!de)
556 break;
557
558 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
559 continue;
560
561 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
562 if (ret == 0)
563 ret = -ENOMEM;
564 continue;
565 }
566
567 if (de->d_type == DT_UNKNOWN) {
Zbigniew Jędrzejewski-Szmek6cf487a2012-11-02 15:05:31 +0100568 r = is_dir(entry_path);
569 if (r < 0) {
Michal Schmidta8d88782011-12-15 23:11:07 +0100570 if (ret == 0 && errno != ENOENT)
571 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100572 continue;
573 }
574
Zbigniew Jędrzejewski-Szmek6cf487a2012-11-02 15:05:31 +0100575 dir = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100576
577 } else
Zbigniew Jędrzejewski-Szmek6cf487a2012-11-02 15:05:31 +0100578 dir = de->d_type == DT_DIR;
Michal Schmidta8d88782011-12-15 23:11:07 +0100579
Michal Schmidt062e01b2011-12-16 18:00:11 +0100580 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100581 if (r < 0) {
582 if (ret == 0 && r != -ENOENT)
583 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100584 continue;
585 }
586
Zbigniew Jędrzejewski-Szmek6cf487a2012-11-02 15:05:31 +0100587 if (dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100588 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100589 if (r < 0 && ret == 0)
590 ret = r;
591 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100592 }
593
Michal Schmidta8d88782011-12-15 23:11:07 +0100594 return ret;
595}
596
597static int recursive_relabel(Item *i, const char *path) {
598 int r;
599 struct stat st;
600
Michal Schmidt062e01b2011-12-16 18:00:11 +0100601 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100602 if (r < 0)
603 return r;
604
605 if (lstat(path, &st) < 0)
606 return -errno;
607
608 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100609 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100610
611 return r;
612}
613
Michal Schmidt99e68c02011-12-15 23:45:26 +0100614static int glob_item(Item *i, int (*action)(Item *, const char *)) {
615 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200616 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100617 char **fn;
618
Michal Schmidt99e68c02011-12-15 23:45:26 +0100619 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400620 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
621 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100622 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400623 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100624 errno = EIO;
625
626 log_error("glob(%s) failed: %m", i->path);
627 return -errno;
628 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400629
630 STRV_FOREACH(fn, g.gl_pathv) {
631 k = action(i, *fn);
632 if (k < 0)
633 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100634 }
635
Michal Schmidt99e68c02011-12-15 23:45:26 +0100636 return r;
637}
638
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200639static int create_item(Item *i) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200640 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200641 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200642
643 assert(i);
644
645 switch (i->type) {
646
647 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100648 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200649 case REMOVE_PATH:
650 case RECURSIVE_REMOVE_PATH:
651 return 0;
652
653 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100654 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400655 r = write_one_file(i, i->path);
656 if (r < 0)
657 return r;
658 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500659
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400660 case WRITE_FILE:
661 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100662 if (r < 0)
663 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200664
665 break;
666
Lennart Poettering265ffa12013-09-17 16:33:30 -0500667 case ADJUST_MODE:
668 r = item_set_perms_full(i, i->path, true);
669 if (r < 0)
670 return r;
671
672 break;
673
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200674 case TRUNCATE_DIRECTORY:
675 case CREATE_DIRECTORY:
676
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200677 RUN_WITH_UMASK(0000) {
678 mkdir_parents_label(i->path, 0755);
679 r = mkdir(i->path, i->mode);
680 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200681
682 if (r < 0 && errno != EEXIST) {
683 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100684 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200685 }
686
687 if (stat(i->path, &st) < 0) {
688 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100689 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200690 }
691
692 if (!S_ISDIR(st.st_mode)) {
693 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100694 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200695 }
696
Michal Schmidt062e01b2011-12-16 18:00:11 +0100697 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100698 if (r < 0)
699 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200700
701 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200702
703 case CREATE_FIFO:
704
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200705 RUN_WITH_UMASK(0000) {
706 r = mkfifo(i->path, i->mode);
707 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200708
709 if (r < 0 && errno != EEXIST) {
710 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100711 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200712 }
713
714 if (stat(i->path, &st) < 0) {
715 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100716 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200717 }
718
719 if (!S_ISFIFO(st.st_mode)) {
720 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100721 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200722 }
723
Michal Schmidt062e01b2011-12-16 18:00:11 +0100724 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100725 if (r < 0)
726 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200727
728 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100729
Lennart Poettering468d7262012-01-17 15:04:12 +0100730 case CREATE_SYMLINK: {
Lennart Poetteringe26da2d2014-02-19 17:52:41 +0100731 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +0100732
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200733 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100734 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200735 label_context_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200736
Lennart Poettering468d7262012-01-17 15:04:12 +0100737 if (r < 0 && errno != EEXIST) {
738 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
739 return -errno;
740 }
741
742 r = readlink_malloc(i->path, &x);
743 if (r < 0) {
744 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
745 return -errno;
746 }
747
748 if (!streq(i->argument, x)) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100749 log_error("%s is not the right symlinks.", i->path);
750 return -EEXIST;
751 }
752
Lennart Poettering468d7262012-01-17 15:04:12 +0100753 break;
754 }
755
756 case CREATE_BLOCK_DEVICE:
757 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700758 mode_t file_type;
759
760 if (have_effective_cap(CAP_MKNOD) == 0) {
761 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700762 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700763 that case to avoid noise, and we don't support
764 virtualized devices in containers anyway. */
765
766 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
767 return 0;
768 }
769
770 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100771
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200772 RUN_WITH_UMASK(0000) {
773 label_context_set(i->path, file_type);
774 r = mknod(i->path, i->mode | file_type, i->major_minor);
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200775 label_context_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200776 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100777
778 if (r < 0 && errno != EEXIST) {
779 log_error("Failed to create device node %s: %m", i->path);
780 return -errno;
781 }
782
783 if (stat(i->path, &st) < 0) {
784 log_error("stat(%s) failed: %m", i->path);
785 return -errno;
786 }
787
Michal Schmidte7aee752012-06-14 16:01:19 +0200788 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100789 log_error("%s is not a device node.", i->path);
790 return -EEXIST;
791 }
792
793 r = item_set_perms(i, i->path);
794 if (r < 0)
795 return r;
796
797 break;
798 }
799
Michal Schmidt777b87e2011-12-16 18:27:35 +0100800 case RELABEL_PATH:
801
802 r = glob_item(i, item_set_perms);
803 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200804 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100805 break;
806
Michal Schmidta8d88782011-12-15 23:11:07 +0100807 case RECURSIVE_RELABEL_PATH:
808
809 r = glob_item(i, recursive_relabel);
810 if (r < 0)
811 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200812 }
813
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200814 log_debug("%s created successfully.", i->path);
815
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100816 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200817}
818
Michal Schmidta0896122011-12-15 21:32:50 +0100819static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200820 int r;
821
822 assert(i);
823
824 switch (i->type) {
825
826 case CREATE_FILE:
827 case TRUNCATE_FILE:
828 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200829 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100830 case CREATE_SYMLINK:
831 case CREATE_BLOCK_DEVICE:
832 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200833 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100834 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100835 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100836 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100837 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500838 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200839 break;
840
841 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100842 if (remove(instance) < 0 && errno != ENOENT) {
843 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200844 return -errno;
845 }
846
847 break;
848
849 case TRUNCATE_DIRECTORY:
850 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200851 /* FIXME: we probably should use dir_cleanup() here
852 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200853 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100854 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100855 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200856 return r;
857 }
858
859 break;
860 }
861
862 return 0;
863}
864
Michal Schmidta0896122011-12-15 21:32:50 +0100865static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100866 int r = 0;
867
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100868 assert(i);
869
870 switch (i->type) {
871
872 case CREATE_FILE:
873 case TRUNCATE_FILE:
874 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200875 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100876 case CREATE_SYMLINK:
877 case CREATE_CHAR_DEVICE:
878 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100879 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100880 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100881 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100882 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100883 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500884 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100885 break;
886
887 case REMOVE_PATH:
888 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100889 case RECURSIVE_REMOVE_PATH:
890 r = glob_item(i, remove_item_instance);
891 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100892 }
893
Michal Schmidt99e68c02011-12-15 23:45:26 +0100894 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100895}
896
Michal Sekletar78a92a52013-01-18 16:13:08 +0100897static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200898 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100899 struct stat s, ps;
900 bool mountpoint;
901 int r;
902 usec_t cutoff, n;
903
904 assert(i);
905
906 if (!i->age_set)
907 return 0;
908
909 n = now(CLOCK_REALTIME);
910 if (n < i->age)
911 return 0;
912
913 cutoff = n - i->age;
914
915 d = opendir(instance);
916 if (!d) {
917 if (errno == ENOENT || errno == ENOTDIR)
918 return 0;
919
920 log_error("Failed to open directory %s: %m", i->path);
921 return -errno;
922 }
923
924 if (fstat(dirfd(d), &s) < 0) {
925 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500926 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100927 }
928
929 if (!S_ISDIR(s.st_mode)) {
930 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500931 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100932 }
933
934 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
935 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500936 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100937 }
938
939 mountpoint = s.st_dev != ps.st_dev ||
940 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
941
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500942 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
943 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100944 return r;
945}
946
947static int clean_item(Item *i) {
948 int r = 0;
949
950 assert(i);
951
952 switch (i->type) {
953 case CREATE_DIRECTORY:
954 case TRUNCATE_DIRECTORY:
955 case IGNORE_PATH:
956 clean_item_instance(i, i->path);
957 break;
958 case IGNORE_DIRECTORY_PATH:
959 r = glob_item(i, clean_item_instance);
960 break;
961 default:
962 break;
963 }
964
965 return r;
966}
967
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200968static int process_item(Item *i) {
969 int r, q, p;
970
971 assert(i);
972
973 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100974 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200975 p = arg_clean ? clean_item(i) : 0;
976
977 if (r < 0)
978 return r;
979
980 if (q < 0)
981 return q;
982
983 return p;
984}
985
986static void item_free(Item *i) {
987 assert(i);
988
989 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +0100990 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200991 free(i);
992}
993
Lennart Poettering14bf2c92013-10-14 04:59:26 +0200994DEFINE_TRIVIAL_CLEANUP_FUNC(Item*, item_free);
Maciej Wereskie2f2fb72013-07-19 15:43:12 +0200995#define _cleanup_item_free_ _cleanup_(item_freep)
996
Lennart Poetteringbfe95f32011-04-08 04:49:43 +0200997static bool item_equal(Item *a, Item *b) {
998 assert(a);
999 assert(b);
1000
1001 if (!streq_ptr(a->path, b->path))
1002 return false;
1003
1004 if (a->type != b->type)
1005 return false;
1006
1007 if (a->uid_set != b->uid_set ||
1008 (a->uid_set && a->uid != b->uid))
1009 return false;
1010
1011 if (a->gid_set != b->gid_set ||
1012 (a->gid_set && a->gid != b->gid))
1013 return false;
1014
1015 if (a->mode_set != b->mode_set ||
1016 (a->mode_set && a->mode != b->mode))
1017 return false;
1018
1019 if (a->age_set != b->age_set ||
1020 (a->age_set && a->age != b->age))
1021 return false;
1022
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001023 if ((a->type == CREATE_FILE ||
1024 a->type == TRUNCATE_FILE ||
1025 a->type == WRITE_FILE ||
1026 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001027 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001028 return false;
1029
1030 if ((a->type == CREATE_CHAR_DEVICE ||
1031 a->type == CREATE_BLOCK_DEVICE) &&
1032 a->major_minor != b->major_minor)
1033 return false;
1034
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001035 return true;
1036}
1037
Dave Reisnera2aced42013-07-24 11:10:05 -04001038static bool should_include_path(const char *path) {
1039 char **prefix;
1040
Dave Reisner5c795112013-07-24 11:19:24 -04001041 STRV_FOREACH(prefix, exclude_prefixes) {
1042 if (path_startswith(path, *prefix))
1043 return false;
1044 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001045
1046 STRV_FOREACH(prefix, include_prefixes) {
1047 if (path_startswith(path, *prefix))
1048 return true;
1049 }
1050
Dave Reisner5c795112013-07-24 11:19:24 -04001051 /* no matches, so we should include this path only if we
1052 * have no whitelist at all */
1053 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001054}
1055
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001056static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001057
1058 static const Specifier specifier_table[] = {
1059 { 'm', specifier_machine_id, NULL },
1060 { 'b', specifier_boot_id, NULL },
1061 { 'H', specifier_host_name, NULL },
1062 { 'v', specifier_kernel_release, NULL },
1063 {}
1064 };
1065
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001066 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001067 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001068 _cleanup_free_ char
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001069 *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001070 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001071 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001072 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001073
1074 assert(fname);
1075 assert(line >= 1);
1076 assert(buffer);
1077
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001078 r = sscanf(buffer,
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001079 "%ms %ms %ms %ms %ms %ms %n",
1080 &action,
Lennart Poettering1731e342013-09-17 11:02:02 -05001081 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001082 &mode,
1083 &user,
1084 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001085 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001086 &n);
1087 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001088 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001089 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001090 }
1091
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001092 if (strlen(action) > 2 || (strlen(action) > 1 && action[1] != '!')) {
1093 log_error("[%s:%u] Unknown modifier '%s'", fname, line, action);
1094 return -EINVAL;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001095 } else if (strlen(action) > 1 && !arg_boot)
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001096 return 0;
1097
1098 type = action[0];
1099
Lennart Poettering1731e342013-09-17 11:02:02 -05001100 i = new0(Item, 1);
1101 if (!i)
1102 return log_oom();
1103
1104 r = specifier_printf(path, specifier_table, NULL, &i->path);
1105 if (r < 0) {
1106 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1107 return r;
1108 }
1109
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001110 if (n >= 0) {
1111 n += strspn(buffer+n, WHITESPACE);
1112 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1113 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001114 if (!i->argument)
1115 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001116 }
1117 }
1118
Michal Schmidt777b87e2011-12-16 18:27:35 +01001119 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001120
Michal Schmidt777b87e2011-12-16 18:27:35 +01001121 case CREATE_FILE:
1122 case TRUNCATE_FILE:
1123 case CREATE_DIRECTORY:
1124 case TRUNCATE_DIRECTORY:
1125 case CREATE_FIFO:
1126 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001127 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001128 case REMOVE_PATH:
1129 case RECURSIVE_REMOVE_PATH:
1130 case RELABEL_PATH:
1131 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001132 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001133 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001134
1135 case CREATE_SYMLINK:
1136 if (!i->argument) {
1137 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001138 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001139 }
1140 break;
1141
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001142 case WRITE_FILE:
1143 if (!i->argument) {
1144 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001145 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001146 }
1147 break;
1148
Lennart Poettering468d7262012-01-17 15:04:12 +01001149 case CREATE_CHAR_DEVICE:
1150 case CREATE_BLOCK_DEVICE: {
1151 unsigned major, minor;
1152
1153 if (!i->argument) {
1154 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001155 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001156 }
1157
1158 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1159 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 -04001160 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001161 }
1162
1163 i->major_minor = makedev(major, minor);
1164 break;
1165 }
1166
Michal Schmidt777b87e2011-12-16 18:27:35 +01001167 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001168 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001169 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001170 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001171
Michal Schmidta8d88782011-12-15 23:11:07 +01001172 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001173
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001174 if (!path_is_absolute(i->path)) {
1175 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001176 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001177 }
1178
1179 path_kill_slashes(i->path);
1180
Dave Reisnera2aced42013-07-24 11:10:05 -04001181 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001182 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001183
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001184 if (arg_root) {
1185 char *p = strappend(arg_root, i->path);
1186 if (!p)
1187 return log_oom();
1188
1189 free(i->path);
1190 i->path = p;
1191 }
1192
Lennart Poettering5008d582010-09-28 02:34:02 +02001193 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001194 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001195
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001196 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001197 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001198 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001199 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001200 }
1201
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001202 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001203 }
1204
1205 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001206 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001207
Lennart Poettering4b678342011-07-23 01:17:59 +02001208 r = get_group_creds(&g, &i->gid);
1209 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001210 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001211 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001212 }
1213
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001214 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001215 }
1216
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001217 if (mode && !streq(mode, "-")) {
1218 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001219
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001220 if (sscanf(mode, "%o", &m) != 1) {
1221 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001222 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001223 }
1224
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001225 i->mode = m;
1226 i->mode_set = true;
1227 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001228 i->mode =
1229 i->type == CREATE_DIRECTORY ||
1230 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001231
1232 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001233 const char *a = age;
1234
1235 if (*a == '~') {
1236 i->keep_first_level = true;
1237 a++;
1238 }
1239
Lennart Poettering7f602782013-04-02 20:38:16 +02001240 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001241 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001242 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001243 }
1244
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001245 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001246 }
1247
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001248 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001249
Lennart Poettering468d7262012-01-17 15:04:12 +01001250 existing = hashmap_get(h, i->path);
1251 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001252
1253 /* Two identical items are fine */
1254 if (!item_equal(existing, i))
1255 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1256
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001257 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001258 }
1259
Lennart Poettering468d7262012-01-17 15:04:12 +01001260 r = hashmap_put(h, i->path, i);
1261 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001262 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001263 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001264 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001265
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001266 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001267
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001268 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001269}
1270
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001271static int help(void) {
1272
Lennart Poettering522d4a42011-02-13 15:08:15 +01001273 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1274 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001275 " -h --help Show this help\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001276 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001277 " --create Create marked files/directories\n"
1278 " --clean Clean up marked directories\n"
1279 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001280 " --boot Execute actions only safe at boot\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001281 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001282 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n"
1283 " --root=PATH Operate on an alternate filesystem root\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001284 program_invocation_short_name);
1285
1286 return 0;
1287}
1288
1289static int parse_argv(int argc, char *argv[]) {
1290
1291 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001292 ARG_VERSION = 0x100,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001293 ARG_CREATE,
1294 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001295 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001296 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04001297 ARG_PREFIX,
1298 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001299 ARG_ROOT,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001300 };
1301
1302 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001303 { "help", no_argument, NULL, 'h' },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001304 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04001305 { "create", no_argument, NULL, ARG_CREATE },
1306 { "clean", no_argument, NULL, ARG_CLEAN },
1307 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001308 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04001309 { "prefix", required_argument, NULL, ARG_PREFIX },
1310 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001311 { "root", required_argument, NULL, ARG_ROOT },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001312 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001313 };
1314
1315 int c;
1316
1317 assert(argc >= 0);
1318 assert(argv);
1319
1320 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1321
1322 switch (c) {
1323
1324 case 'h':
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001325 return help();
1326
1327 case ARG_VERSION:
1328 puts(PACKAGE_STRING);
1329 puts(SYSTEMD_FEATURES);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001330 return 0;
1331
1332 case ARG_CREATE:
1333 arg_create = true;
1334 break;
1335
1336 case ARG_CLEAN:
1337 arg_clean = true;
1338 break;
1339
1340 case ARG_REMOVE:
1341 arg_remove = true;
1342 break;
1343
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001344 case ARG_BOOT:
1345 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001346 break;
1347
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001348 case ARG_PREFIX:
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001349 if (strv_push(&include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04001350 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001351 break;
1352
Dave Reisner5c795112013-07-24 11:19:24 -04001353 case ARG_EXCLUDE_PREFIX:
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001354 if (strv_push(&exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04001355 return log_oom();
1356 break;
1357
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001358 case ARG_ROOT:
1359 arg_root = path_make_absolute_cwd(optarg);
1360 if (!arg_root)
1361 return log_oom();
1362 path_kill_slashes(arg_root);
1363 break;
1364
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001365 case '?':
1366 return -EINVAL;
1367
1368 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001369 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001370 }
1371 }
1372
1373 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001374 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001375 return -EINVAL;
1376 }
1377
1378 return 1;
1379}
1380
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001381static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001382 _cleanup_fclose_ FILE *f = NULL;
1383 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001384 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001385 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001386 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001387 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001388
1389 assert(fn);
1390
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001391 r = search_and_fopen_nulstr(fn, "re", arg_root, conf_file_dirs, &f);
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001392 if (r < 0) {
1393 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001394 return 0;
1395
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001396 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1397 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001398 }
1399
Lennart Poettering1731e342013-09-17 11:02:02 -05001400 FOREACH_LINE(line, f, break) {
1401 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001402 int k;
1403
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001404 v++;
1405
1406 l = strstrip(line);
1407 if (*l == '#' || *l == 0)
1408 continue;
1409
Lennart Poettering1731e342013-09-17 11:02:02 -05001410 k = parse_line(fn, v, l);
1411 if (k < 0 && r == 0)
1412 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001413 }
1414
Michal Sekletar78a92a52013-01-18 16:13:08 +01001415 /* we have to determine age parameter for each entry of type X */
1416 HASHMAP_FOREACH(i, globs, iterator) {
1417 Iterator iter;
1418 Item *j, *candidate_item = NULL;
1419
1420 if (i->type != IGNORE_DIRECTORY_PATH)
1421 continue;
1422
1423 HASHMAP_FOREACH(j, items, iter) {
1424 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1425 continue;
1426
1427 if (path_equal(j->path, i->path)) {
1428 candidate_item = j;
1429 break;
1430 }
1431
1432 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1433 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1434 candidate_item = j;
1435 }
1436
1437 if (candidate_item) {
1438 i->age = candidate_item->age;
1439 i->age_set = true;
1440 }
1441 }
1442
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001443 if (ferror(f)) {
1444 log_error("Failed to read from file %s: %m", fn);
1445 if (r == 0)
1446 r = -EIO;
1447 }
1448
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001449 return r;
1450}
1451
Lennart Poettering5008d582010-09-28 02:34:02 +02001452int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001453 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001454 Item *i;
1455 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001456
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001457 r = parse_argv(argc, argv);
1458 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001459 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1460
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001461 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001462 log_parse_environment();
1463 log_open();
1464
Lennart Poettering4c126262011-08-01 20:52:18 +02001465 umask(0022);
1466
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001467 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001468
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001469 items = hashmap_new(string_hash_func, string_compare_func);
1470 globs = hashmap_new(string_hash_func, string_compare_func);
1471
1472 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001473 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001474 goto finish;
1475 }
1476
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001477 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001478
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001479 if (optind < argc) {
1480 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001481
Dave Reisner91256702012-06-08 22:31:19 -04001482 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001483 k = read_config_file(argv[j], false);
1484 if (k < 0 && r == 0)
1485 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001486 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001487
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001488 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001489 _cleanup_strv_free_ char **files = NULL;
1490 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001491
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001492 r = conf_files_list_nulstr(&files, ".conf", arg_root, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001493 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001494 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1495 goto finish;
1496 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001497
Kay Sievers772f8372011-04-25 21:38:21 +02001498 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001499 k = read_config_file(*f, true);
1500 if (k < 0 && r == 0)
1501 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001502 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001503 }
1504
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001505 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001506 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001507
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001508 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001509 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001510
Lennart Poettering5008d582010-09-28 02:34:02 +02001511finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001512 while ((i = hashmap_steal_first(items)))
1513 item_free(i);
1514
Lennart Poettering17b90522011-02-14 21:55:06 +01001515 while ((i = hashmap_steal_first(globs)))
1516 item_free(i);
1517
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001518 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001519 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001520
Zbigniew Jędrzejewski-Szmek498f8a32014-01-30 21:40:27 -05001521 free(include_prefixes);
1522 free(exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001523 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04001524
Lennart Poettering17b90522011-02-14 21:55:06 +01001525 set_free_free(unix_sockets);
1526
Lennart Poettering29003cf2010-10-19 19:36:45 +02001527 label_finish();
1528
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001529 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001530}