blob: dde7d33f9ef2c2e8ae6330114d067429df8579f0 [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;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100114
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100115static const char conf_file_dirs[] =
116 "/etc/tmpfiles.d\0"
117 "/run/tmpfiles.d\0"
118 "/usr/local/lib/tmpfiles.d\0"
119 "/usr/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200120#ifdef HAVE_SPLIT_USR
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100121 "/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200122#endif
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100123 ;
Dave Reisner91256702012-06-08 22:31:19 -0400124
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200125#define MAX_DEPTH 256
126
Michal Schmidt66ccd032011-12-15 21:31:14 +0100127static bool needs_glob(ItemType t) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100128 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 +0100129}
130
131static struct Item* find_glob(Hashmap *h, const char *match) {
132 Item *j;
133 Iterator i;
134
135 HASHMAP_FOREACH(j, h, i)
136 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
137 return j;
138
139 return NULL;
140}
141
Lennart Poettering17b90522011-02-14 21:55:06 +0100142static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200143 _cleanup_fclose_ FILE *f = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100144 char line[LINE_MAX];
145
146 if (unix_sockets)
147 return;
148
149 /* We maintain a cache of the sockets we found in
150 * /proc/net/unix to speed things up a little. */
151
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100152 unix_sockets = set_new(string_hash_func, string_compare_func);
153 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100154 return;
155
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100156 f = fopen("/proc/net/unix", "re");
157 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100158 return;
159
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100160 /* Skip header */
161 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100162 goto fail;
163
164 for (;;) {
165 char *p, *s;
166 int k;
167
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100168 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100169 break;
170
171 truncate_nl(line);
172
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100173 p = strchr(line, ':');
174 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100175 continue;
176
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100177 if (strlen(p) < 37)
178 continue;
179
180 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100181 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100182 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100183 p += strspn(p, WHITESPACE);
184
185 if (*p != '/')
186 continue;
187
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100188 s = strdup(p);
189 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100190 goto fail;
191
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100192 path_kill_slashes(s);
193
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400194 k = set_consume(unix_sockets, s);
195 if (k < 0 && k != -EEXIST)
196 goto fail;
Lennart Poettering17b90522011-02-14 21:55:06 +0100197 }
198
199 return;
200
201fail:
202 set_free_free(unix_sockets);
203 unix_sockets = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100204}
205
206static bool unix_socket_alive(const char *fn) {
207 assert(fn);
208
209 load_unix_sockets();
210
211 if (unix_sockets)
212 return !!set_get(unix_sockets, (char*) fn);
213
214 /* We don't know, so assume yes */
215 return true;
216}
217
Kay Sievers99d680a2013-03-13 13:12:36 +0100218static int dir_is_mount_point(DIR *d, const char *subdir) {
219 struct file_handle *h;
220 int mount_id_parent, mount_id;
221 int r_p, r;
222
223 h = alloca(MAX_HANDLE_SZ);
224
225 h->handle_bytes = MAX_HANDLE_SZ;
226 r_p = name_to_handle_at(dirfd(d), ".", h, &mount_id_parent, 0);
227 if (r_p < 0)
228 r_p = -errno;
229
230 h->handle_bytes = MAX_HANDLE_SZ;
231 r = name_to_handle_at(dirfd(d), subdir, h, &mount_id, 0);
232 if (r < 0)
233 r = -errno;
234
235 /* got no handle; make no assumptions, return error */
236 if (r_p < 0 && r < 0)
237 return r_p;
238
239 /* got both handles; if they differ, it is a mount point */
240 if (r_p >= 0 && r >= 0)
241 return mount_id_parent != mount_id;
242
243 /* got only one handle; assume different mount points if one
244 * of both queries was not supported by the filesystem */
245 if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP)
246 return true;
247
248 /* return error */
249 if (r_p < 0)
250 return r_p;
251 return r;
252}
253
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200254static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100255 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200256 const char *p,
257 DIR *d,
258 const struct stat *ds,
259 usec_t cutoff,
260 dev_t rootdev,
261 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200262 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500263 bool keep_this_level) {
264
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200265 struct dirent *dent;
266 struct timespec times[2];
267 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200268 int r = 0;
269
270 while ((dent = readdir(d))) {
271 struct stat s;
272 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200273 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200274
275 if (streq(dent->d_name, ".") ||
276 streq(dent->d_name, ".."))
277 continue;
278
279 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200280 if (errno == ENOENT)
281 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200282
Kay Sieversca2f4172013-10-17 03:20:46 +0200283 /* FUSE, NFS mounts, SELinux might return EACCES */
284 if (errno == EACCES)
285 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
286 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200287 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200288 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200289 continue;
290 }
291
292 /* Stay on the same filesystem */
293 if (s.st_dev != rootdev)
294 continue;
295
Kay Sievers99d680a2013-03-13 13:12:36 +0100296 /* Try to detect bind mounts of the same filesystem instance; they
297 * do not differ in device major/minors. This type of query is not
298 * supported on all kernels or filesystem types though. */
299 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
300 continue;
301
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200302 /* Do not delete read-only files owned by root */
303 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
304 continue;
305
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200306 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700307 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200308 goto finish;
309 }
310
311 /* Is there an item configured for this path? */
312 if (hashmap_get(items, sub_path))
313 continue;
314
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100315 if (find_glob(globs, sub_path))
316 continue;
317
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200318 if (S_ISDIR(s.st_mode)) {
319
320 if (mountpoint &&
321 streq(dent->d_name, "lost+found") &&
322 s.st_uid == 0)
323 continue;
324
325 if (maxdepth <= 0)
326 log_warning("Reached max depth on %s.", sub_path);
327 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200328 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200329 int q;
330
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200331 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200332 if (sub_dir == NULL) {
333 if (errno != ENOENT) {
334 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
335 r = -errno;
336 }
337
338 continue;
339 }
340
Michal Sekletar78a92a52013-01-18 16:13:08 +0100341 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200342
343 if (q < 0)
344 r = q;
345 }
346
Lennart Poettering24f3a372012-06-20 09:05:50 +0200347 /* Note: if you are wondering why we don't
348 * support the sticky bit for excluding
349 * directories from cleaning like we do it for
350 * other file system objects: well, the sticky
351 * bit already has a meaning for directories,
352 * so we don't want to overload that. */
353
354 if (keep_this_level)
355 continue;
356
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200357 /* Ignore ctime, we change it when deleting */
358 age = MAX(timespec_load(&s.st_mtim),
359 timespec_load(&s.st_atim));
360 if (age >= cutoff)
361 continue;
362
Lukas Nykryna6187d42013-03-01 18:29:59 +0100363 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100364 log_debug("rmdir '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200365
Michal Sekletar78a92a52013-01-18 16:13:08 +0100366 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
367 if (errno != ENOENT && errno != ENOTEMPTY) {
368 log_error("rmdir(%s): %m", sub_path);
369 r = -errno;
370 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200371 }
372 }
373
374 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100375 /* Skip files for which the sticky bit is
376 * set. These are semantics we define, and are
377 * unknown elsewhere. See XDG_RUNTIME_DIR
378 * specification for details. */
379 if (s.st_mode & S_ISVTX)
380 continue;
381
Lennart Poettering17b90522011-02-14 21:55:06 +0100382 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200383 if (streq(dent->d_name, ".journal") &&
384 s.st_uid == 0)
385 continue;
386
387 if (streq(dent->d_name, "aquota.user") ||
388 streq(dent->d_name, "aquota.group"))
389 continue;
390 }
391
Lennart Poettering17b90522011-02-14 21:55:06 +0100392 /* Ignore sockets that are listed in /proc/net/unix */
393 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
394 continue;
395
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100396 /* Ignore device nodes */
397 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
398 continue;
399
Lennart Poettering24f3a372012-06-20 09:05:50 +0200400 /* Keep files on this level around if this is
401 * requested */
402 if (keep_this_level)
403 continue;
404
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200405 age = MAX3(timespec_load(&s.st_mtim),
406 timespec_load(&s.st_atim),
407 timespec_load(&s.st_ctim));
408
409 if (age >= cutoff)
410 continue;
411
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100412 log_debug("unlink '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200413
414 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
415 if (errno != ENOENT) {
416 log_error("unlink(%s): %m", sub_path);
417 r = -errno;
418 }
419 }
420
421 deleted = true;
422 }
423 }
424
425finish:
426 if (deleted) {
427 /* Restore original directory timestamps */
428 times[0] = ds->st_atim;
429 times[1] = ds->st_mtim;
430
431 if (futimens(dirfd(d), times) < 0)
432 log_error("utimensat(%s): %m", p);
433 }
434
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200435 return r;
436}
437
Lennart Poettering265ffa12013-09-17 16:33:30 -0500438static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
439 int r;
440
Michal Schmidt062e01b2011-12-16 18:00:11 +0100441 /* not using i->path directly because it may be a glob */
442 if (i->mode_set)
443 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500444 if (errno != ENOENT || !ignore_enoent) {
445 log_error("chmod(%s) failed: %m", path);
446 return -errno;
447 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100448 }
449
450 if (i->uid_set || i->gid_set)
451 if (chown(path,
452 i->uid_set ? i->uid : (uid_t) -1,
453 i->gid_set ? i->gid : (gid_t) -1) < 0) {
454
Lennart Poettering265ffa12013-09-17 16:33:30 -0500455 if (errno != ENOENT || !ignore_enoent) {
456 log_error("chown(%s) failed: %m", path);
457 return -errno;
458 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100459 }
460
Lennart Poettering265ffa12013-09-17 16:33:30 -0500461 r = label_fix(path, false, false);
462 return r == -ENOENT && ignore_enoent ? 0 : r;
463}
464
465static int item_set_perms(Item *i, const char *path) {
466 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100467}
468
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400469static int write_one_file(Item *i, const char *path) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200470 int e, flags;
471 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400472 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200473 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400474
475 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
476 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
477
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200478 RUN_WITH_UMASK(0) {
479 label_context_set(path, S_IFREG);
480 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
481 e = errno;
482 label_context_clear();
483 errno = e;
484 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400485
486 if (fd < 0) {
487 if (i->type == WRITE_FILE && errno == ENOENT)
488 return 0;
489
490 log_error("Failed to create file %s: %m", path);
491 return -errno;
492 }
493
494 if (i->argument) {
495 ssize_t n;
496 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400497 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400498
Dave Reisner54693d92012-09-15 12:58:49 -0400499 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100500 if (unescaped == NULL) {
501 close_nointr_nofail(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400502 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100503 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400504
Dave Reisner54693d92012-09-15 12:58:49 -0400505 l = strlen(unescaped);
506 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400507
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400508 if (n < 0 || (size_t) n < l) {
509 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
510 close_nointr_nofail(fd);
511 return n < 0 ? n : -EIO;
512 }
513 }
514
Dave Reisner3612fbc2012-09-12 16:21:00 -0400515 close_nointr_nofail(fd);
516
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400517 if (stat(path, &st) < 0) {
518 log_error("stat(%s) failed: %m", path);
519 return -errno;
520 }
521
522 if (!S_ISREG(st.st_mode)) {
523 log_error("%s is not a file.", path);
524 return -EEXIST;
525 }
526
527 r = item_set_perms(i, path);
528 if (r < 0)
529 return r;
530
531 return 0;
532}
533
Michal Schmidt062e01b2011-12-16 18:00:11 +0100534static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200535 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100536 int ret = 0;
537
538 /* This returns the first error we run into, but nevertheless
539 * tries to go on */
540
541 d = opendir(path);
542 if (!d)
543 return errno == ENOENT ? 0 : -errno;
544
545 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200546 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +0100547 bool is_dir;
548 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200549 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100550
Florian Weimerd78096b2013-12-19 12:26:07 +0100551 errno = 0;
552 de = readdir(d);
553 if (!de && errno != 0) {
Michal Schmidta8d88782011-12-15 23:11:07 +0100554 if (ret == 0)
Florian Weimerd78096b2013-12-19 12:26:07 +0100555 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100556 break;
557 }
558
559 if (!de)
560 break;
561
562 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
563 continue;
564
565 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
566 if (ret == 0)
567 ret = -ENOMEM;
568 continue;
569 }
570
571 if (de->d_type == DT_UNKNOWN) {
572 struct stat st;
573
574 if (lstat(entry_path, &st) < 0) {
575 if (ret == 0 && errno != ENOENT)
576 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100577 continue;
578 }
579
580 is_dir = S_ISDIR(st.st_mode);
581
582 } else
583 is_dir = de->d_type == DT_DIR;
584
Michal Schmidt062e01b2011-12-16 18:00:11 +0100585 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100586 if (r < 0) {
587 if (ret == 0 && r != -ENOENT)
588 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100589 continue;
590 }
591
592 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100593 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100594 if (r < 0 && ret == 0)
595 ret = r;
596 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100597 }
598
Michal Schmidta8d88782011-12-15 23:11:07 +0100599 return ret;
600}
601
602static int recursive_relabel(Item *i, const char *path) {
603 int r;
604 struct stat st;
605
Michal Schmidt062e01b2011-12-16 18:00:11 +0100606 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100607 if (r < 0)
608 return r;
609
610 if (lstat(path, &st) < 0)
611 return -errno;
612
613 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100614 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100615
616 return r;
617}
618
Michal Schmidt99e68c02011-12-15 23:45:26 +0100619static int glob_item(Item *i, int (*action)(Item *, const char *)) {
620 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200621 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100622 char **fn;
623
Michal Schmidt99e68c02011-12-15 23:45:26 +0100624 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400625 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
626 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100627 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400628 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100629 errno = EIO;
630
631 log_error("glob(%s) failed: %m", i->path);
632 return -errno;
633 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400634
635 STRV_FOREACH(fn, g.gl_pathv) {
636 k = action(i, *fn);
637 if (k < 0)
638 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100639 }
640
Michal Schmidt99e68c02011-12-15 23:45:26 +0100641 return r;
642}
643
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200644static int create_item(Item *i) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200645 int e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200646 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200647 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200648
649 assert(i);
650
651 switch (i->type) {
652
653 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100654 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200655 case REMOVE_PATH:
656 case RECURSIVE_REMOVE_PATH:
657 return 0;
658
659 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100660 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400661 r = write_one_file(i, i->path);
662 if (r < 0)
663 return r;
664 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500665
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400666 case WRITE_FILE:
667 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100668 if (r < 0)
669 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200670
671 break;
672
Lennart Poettering265ffa12013-09-17 16:33:30 -0500673 case ADJUST_MODE:
674 r = item_set_perms_full(i, i->path, true);
675 if (r < 0)
676 return r;
677
678 break;
679
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200680 case TRUNCATE_DIRECTORY:
681 case CREATE_DIRECTORY:
682
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200683 RUN_WITH_UMASK(0000) {
684 mkdir_parents_label(i->path, 0755);
685 r = mkdir(i->path, i->mode);
686 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200687
688 if (r < 0 && errno != EEXIST) {
689 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100690 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200691 }
692
693 if (stat(i->path, &st) < 0) {
694 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100695 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200696 }
697
698 if (!S_ISDIR(st.st_mode)) {
699 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100700 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200701 }
702
Michal Schmidt062e01b2011-12-16 18:00:11 +0100703 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100704 if (r < 0)
705 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200706
707 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200708
709 case CREATE_FIFO:
710
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200711 RUN_WITH_UMASK(0000) {
712 r = mkfifo(i->path, i->mode);
713 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200714
715 if (r < 0 && errno != EEXIST) {
716 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100717 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200718 }
719
720 if (stat(i->path, &st) < 0) {
721 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100722 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200723 }
724
725 if (!S_ISFIFO(st.st_mode)) {
726 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100727 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200728 }
729
Michal Schmidt062e01b2011-12-16 18:00:11 +0100730 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100731 if (r < 0)
732 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200733
734 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100735
Lennart Poettering468d7262012-01-17 15:04:12 +0100736 case CREATE_SYMLINK: {
737 char *x;
738
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200739 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100740 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200741 e = errno;
742 label_context_clear();
743 errno = e;
744
Lennart Poettering468d7262012-01-17 15:04:12 +0100745 if (r < 0 && errno != EEXIST) {
746 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
747 return -errno;
748 }
749
750 r = readlink_malloc(i->path, &x);
751 if (r < 0) {
752 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
753 return -errno;
754 }
755
756 if (!streq(i->argument, x)) {
757 free(x);
758 log_error("%s is not the right symlinks.", i->path);
759 return -EEXIST;
760 }
761
762 free(x);
763 break;
764 }
765
766 case CREATE_BLOCK_DEVICE:
767 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700768 mode_t file_type;
769
770 if (have_effective_cap(CAP_MKNOD) == 0) {
771 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700772 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700773 that case to avoid noise, and we don't support
774 virtualized devices in containers anyway. */
775
776 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
777 return 0;
778 }
779
780 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100781
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200782 RUN_WITH_UMASK(0000) {
783 label_context_set(i->path, file_type);
784 r = mknod(i->path, i->mode | file_type, i->major_minor);
785 e = errno;
786 label_context_clear();
787 errno = e;
788 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100789
790 if (r < 0 && errno != EEXIST) {
791 log_error("Failed to create device node %s: %m", i->path);
792 return -errno;
793 }
794
795 if (stat(i->path, &st) < 0) {
796 log_error("stat(%s) failed: %m", i->path);
797 return -errno;
798 }
799
Michal Schmidte7aee752012-06-14 16:01:19 +0200800 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100801 log_error("%s is not a device node.", i->path);
802 return -EEXIST;
803 }
804
805 r = item_set_perms(i, i->path);
806 if (r < 0)
807 return r;
808
809 break;
810 }
811
Michal Schmidt777b87e2011-12-16 18:27:35 +0100812 case RELABEL_PATH:
813
814 r = glob_item(i, item_set_perms);
815 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200816 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100817 break;
818
Michal Schmidta8d88782011-12-15 23:11:07 +0100819 case RECURSIVE_RELABEL_PATH:
820
821 r = glob_item(i, recursive_relabel);
822 if (r < 0)
823 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200824 }
825
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200826 log_debug("%s created successfully.", i->path);
827
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100828 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200829}
830
Michal Schmidta0896122011-12-15 21:32:50 +0100831static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200832 int r;
833
834 assert(i);
835
836 switch (i->type) {
837
838 case CREATE_FILE:
839 case TRUNCATE_FILE:
840 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200841 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100842 case CREATE_SYMLINK:
843 case CREATE_BLOCK_DEVICE:
844 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200845 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100846 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100847 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100848 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100849 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500850 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200851 break;
852
853 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100854 if (remove(instance) < 0 && errno != ENOENT) {
855 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200856 return -errno;
857 }
858
859 break;
860
861 case TRUNCATE_DIRECTORY:
862 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200863 /* FIXME: we probably should use dir_cleanup() here
864 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200865 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100866 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100867 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200868 return r;
869 }
870
871 break;
872 }
873
874 return 0;
875}
876
Michal Schmidta0896122011-12-15 21:32:50 +0100877static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100878 int r = 0;
879
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100880 assert(i);
881
882 switch (i->type) {
883
884 case CREATE_FILE:
885 case TRUNCATE_FILE:
886 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200887 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100888 case CREATE_SYMLINK:
889 case CREATE_CHAR_DEVICE:
890 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100891 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100892 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100893 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100894 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100895 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500896 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100897 break;
898
899 case REMOVE_PATH:
900 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100901 case RECURSIVE_REMOVE_PATH:
902 r = glob_item(i, remove_item_instance);
903 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100904 }
905
Michal Schmidt99e68c02011-12-15 23:45:26 +0100906 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100907}
908
Michal Sekletar78a92a52013-01-18 16:13:08 +0100909static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200910 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100911 struct stat s, ps;
912 bool mountpoint;
913 int r;
914 usec_t cutoff, n;
915
916 assert(i);
917
918 if (!i->age_set)
919 return 0;
920
921 n = now(CLOCK_REALTIME);
922 if (n < i->age)
923 return 0;
924
925 cutoff = n - i->age;
926
927 d = opendir(instance);
928 if (!d) {
929 if (errno == ENOENT || errno == ENOTDIR)
930 return 0;
931
932 log_error("Failed to open directory %s: %m", i->path);
933 return -errno;
934 }
935
936 if (fstat(dirfd(d), &s) < 0) {
937 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500938 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100939 }
940
941 if (!S_ISDIR(s.st_mode)) {
942 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500943 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100944 }
945
946 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
947 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500948 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100949 }
950
951 mountpoint = s.st_dev != ps.st_dev ||
952 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
953
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500954 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
955 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100956 return r;
957}
958
959static int clean_item(Item *i) {
960 int r = 0;
961
962 assert(i);
963
964 switch (i->type) {
965 case CREATE_DIRECTORY:
966 case TRUNCATE_DIRECTORY:
967 case IGNORE_PATH:
968 clean_item_instance(i, i->path);
969 break;
970 case IGNORE_DIRECTORY_PATH:
971 r = glob_item(i, clean_item_instance);
972 break;
973 default:
974 break;
975 }
976
977 return r;
978}
979
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200980static int process_item(Item *i) {
981 int r, q, p;
982
983 assert(i);
984
985 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100986 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200987 p = arg_clean ? clean_item(i) : 0;
988
989 if (r < 0)
990 return r;
991
992 if (q < 0)
993 return q;
994
995 return p;
996}
997
998static void item_free(Item *i) {
999 assert(i);
1000
1001 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001002 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001003 free(i);
1004}
1005
Lennart Poettering14bf2c92013-10-14 04:59:26 +02001006DEFINE_TRIVIAL_CLEANUP_FUNC(Item*, item_free);
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001007#define _cleanup_item_free_ _cleanup_(item_freep)
1008
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001009static bool item_equal(Item *a, Item *b) {
1010 assert(a);
1011 assert(b);
1012
1013 if (!streq_ptr(a->path, b->path))
1014 return false;
1015
1016 if (a->type != b->type)
1017 return false;
1018
1019 if (a->uid_set != b->uid_set ||
1020 (a->uid_set && a->uid != b->uid))
1021 return false;
1022
1023 if (a->gid_set != b->gid_set ||
1024 (a->gid_set && a->gid != b->gid))
1025 return false;
1026
1027 if (a->mode_set != b->mode_set ||
1028 (a->mode_set && a->mode != b->mode))
1029 return false;
1030
1031 if (a->age_set != b->age_set ||
1032 (a->age_set && a->age != b->age))
1033 return false;
1034
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001035 if ((a->type == CREATE_FILE ||
1036 a->type == TRUNCATE_FILE ||
1037 a->type == WRITE_FILE ||
1038 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001039 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001040 return false;
1041
1042 if ((a->type == CREATE_CHAR_DEVICE ||
1043 a->type == CREATE_BLOCK_DEVICE) &&
1044 a->major_minor != b->major_minor)
1045 return false;
1046
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001047 return true;
1048}
1049
Dave Reisnera2aced42013-07-24 11:10:05 -04001050static bool should_include_path(const char *path) {
1051 char **prefix;
1052
Dave Reisner5c795112013-07-24 11:19:24 -04001053 STRV_FOREACH(prefix, exclude_prefixes) {
1054 if (path_startswith(path, *prefix))
1055 return false;
1056 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001057
1058 STRV_FOREACH(prefix, include_prefixes) {
1059 if (path_startswith(path, *prefix))
1060 return true;
1061 }
1062
Dave Reisner5c795112013-07-24 11:19:24 -04001063 /* no matches, so we should include this path only if we
1064 * have no whitelist at all */
1065 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001066}
1067
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001068static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001069
1070 static const Specifier specifier_table[] = {
1071 { 'm', specifier_machine_id, NULL },
1072 { 'b', specifier_boot_id, NULL },
1073 { 'H', specifier_host_name, NULL },
1074 { 'v', specifier_kernel_release, NULL },
1075 {}
1076 };
1077
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001078 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001079 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001080 _cleanup_free_ char
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001081 *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001082 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001083 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001084 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001085
1086 assert(fname);
1087 assert(line >= 1);
1088 assert(buffer);
1089
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001090 r = sscanf(buffer,
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001091 "%ms %ms %ms %ms %ms %ms %n",
1092 &action,
Lennart Poettering1731e342013-09-17 11:02:02 -05001093 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001094 &mode,
1095 &user,
1096 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001097 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001098 &n);
1099 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001100 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001101 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001102 }
1103
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001104 if (strlen(action) > 2 || (strlen(action) > 1 && action[1] != '!')) {
1105 log_error("[%s:%u] Unknown modifier '%s'", fname, line, action);
1106 return -EINVAL;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001107 } else if (strlen(action) > 1 && !arg_boot)
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001108 return 0;
1109
1110 type = action[0];
1111
Lennart Poettering1731e342013-09-17 11:02:02 -05001112 i = new0(Item, 1);
1113 if (!i)
1114 return log_oom();
1115
1116 r = specifier_printf(path, specifier_table, NULL, &i->path);
1117 if (r < 0) {
1118 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1119 return r;
1120 }
1121
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001122 if (n >= 0) {
1123 n += strspn(buffer+n, WHITESPACE);
1124 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1125 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001126 if (!i->argument)
1127 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001128 }
1129 }
1130
Michal Schmidt777b87e2011-12-16 18:27:35 +01001131 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001132
Michal Schmidt777b87e2011-12-16 18:27:35 +01001133 case CREATE_FILE:
1134 case TRUNCATE_FILE:
1135 case CREATE_DIRECTORY:
1136 case TRUNCATE_DIRECTORY:
1137 case CREATE_FIFO:
1138 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001139 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001140 case REMOVE_PATH:
1141 case RECURSIVE_REMOVE_PATH:
1142 case RELABEL_PATH:
1143 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001144 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001145 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001146
1147 case CREATE_SYMLINK:
1148 if (!i->argument) {
1149 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001150 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001151 }
1152 break;
1153
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001154 case WRITE_FILE:
1155 if (!i->argument) {
1156 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001157 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001158 }
1159 break;
1160
Lennart Poettering468d7262012-01-17 15:04:12 +01001161 case CREATE_CHAR_DEVICE:
1162 case CREATE_BLOCK_DEVICE: {
1163 unsigned major, minor;
1164
1165 if (!i->argument) {
1166 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001167 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001168 }
1169
1170 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1171 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 -04001172 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001173 }
1174
1175 i->major_minor = makedev(major, minor);
1176 break;
1177 }
1178
Michal Schmidt777b87e2011-12-16 18:27:35 +01001179 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001180 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001181 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001182 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001183
Michal Schmidta8d88782011-12-15 23:11:07 +01001184 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001185
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001186 if (!path_is_absolute(i->path)) {
1187 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001188 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001189 }
1190
1191 path_kill_slashes(i->path);
1192
Dave Reisnera2aced42013-07-24 11:10:05 -04001193 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001194 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001195
1196 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001197 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001198
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001199 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001200 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001201 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001202 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001203 }
1204
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001205 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001206 }
1207
1208 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001209 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001210
Lennart Poettering4b678342011-07-23 01:17:59 +02001211 r = get_group_creds(&g, &i->gid);
1212 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001213 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001214 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001215 }
1216
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001217 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001218 }
1219
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001220 if (mode && !streq(mode, "-")) {
1221 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001222
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001223 if (sscanf(mode, "%o", &m) != 1) {
1224 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001225 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001226 }
1227
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001228 i->mode = m;
1229 i->mode_set = true;
1230 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001231 i->mode =
1232 i->type == CREATE_DIRECTORY ||
1233 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001234
1235 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001236 const char *a = age;
1237
1238 if (*a == '~') {
1239 i->keep_first_level = true;
1240 a++;
1241 }
1242
Lennart Poettering7f602782013-04-02 20:38:16 +02001243 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001244 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001245 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001246 }
1247
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001248 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001249 }
1250
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001251 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001252
Lennart Poettering468d7262012-01-17 15:04:12 +01001253 existing = hashmap_get(h, i->path);
1254 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001255
1256 /* Two identical items are fine */
1257 if (!item_equal(existing, i))
1258 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1259
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001260 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001261 }
1262
Lennart Poettering468d7262012-01-17 15:04:12 +01001263 r = hashmap_put(h, i->path, i);
1264 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001265 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001266 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001267 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001268
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001269 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001270
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001271 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001272}
1273
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001274static int help(void) {
1275
Lennart Poettering522d4a42011-02-13 15:08:15 +01001276 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1277 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001278 " -h --help Show this help\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001279 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001280 " --create Create marked files/directories\n"
1281 " --clean Clean up marked directories\n"
1282 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001283 " --boot Execute actions only safe at boot\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001284 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
1285 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001286 program_invocation_short_name);
1287
1288 return 0;
1289}
1290
1291static int parse_argv(int argc, char *argv[]) {
1292
1293 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001294 ARG_VERSION = 0x100,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001295 ARG_CREATE,
1296 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001297 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001298 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04001299 ARG_PREFIX,
1300 ARG_EXCLUDE_PREFIX,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001301 };
1302
1303 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001304 { "help", no_argument, NULL, 'h' },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001305 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04001306 { "create", no_argument, NULL, ARG_CREATE },
1307 { "clean", no_argument, NULL, ARG_CLEAN },
1308 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001309 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04001310 { "prefix", required_argument, NULL, ARG_PREFIX },
1311 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
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:
Dave Reisnera2aced42013-07-24 11:10:05 -04001349 if (strv_extend(&include_prefixes, optarg) < 0)
1350 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:
1354 if (strv_extend(&exclude_prefixes, optarg) < 0)
1355 return log_oom();
1356 break;
1357
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001358 case '?':
1359 return -EINVAL;
1360
1361 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001362 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001363 }
1364 }
1365
1366 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001367 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001368 return -EINVAL;
1369 }
1370
1371 return 1;
1372}
1373
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001374static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001375 _cleanup_fclose_ FILE *f = NULL;
1376 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001377 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001378 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001379 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001380 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001381
1382 assert(fn);
1383
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001384 r = search_and_fopen_nulstr(fn, "re", conf_file_dirs, &f);
1385 if (r < 0) {
1386 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001387 return 0;
1388
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001389 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1390 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001391 }
1392
Lennart Poettering1731e342013-09-17 11:02:02 -05001393 FOREACH_LINE(line, f, break) {
1394 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001395 int k;
1396
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001397 v++;
1398
1399 l = strstrip(line);
1400 if (*l == '#' || *l == 0)
1401 continue;
1402
Lennart Poettering1731e342013-09-17 11:02:02 -05001403 k = parse_line(fn, v, l);
1404 if (k < 0 && r == 0)
1405 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001406 }
1407
Michal Sekletar78a92a52013-01-18 16:13:08 +01001408 /* we have to determine age parameter for each entry of type X */
1409 HASHMAP_FOREACH(i, globs, iterator) {
1410 Iterator iter;
1411 Item *j, *candidate_item = NULL;
1412
1413 if (i->type != IGNORE_DIRECTORY_PATH)
1414 continue;
1415
1416 HASHMAP_FOREACH(j, items, iter) {
1417 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1418 continue;
1419
1420 if (path_equal(j->path, i->path)) {
1421 candidate_item = j;
1422 break;
1423 }
1424
1425 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1426 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1427 candidate_item = j;
1428 }
1429
1430 if (candidate_item) {
1431 i->age = candidate_item->age;
1432 i->age_set = true;
1433 }
1434 }
1435
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001436 if (ferror(f)) {
1437 log_error("Failed to read from file %s: %m", fn);
1438 if (r == 0)
1439 r = -EIO;
1440 }
1441
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001442 return r;
1443}
1444
Lennart Poettering5008d582010-09-28 02:34:02 +02001445int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001446 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001447 Item *i;
1448 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001449
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001450 r = parse_argv(argc, argv);
1451 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001452 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1453
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001454 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001455 log_parse_environment();
1456 log_open();
1457
Lennart Poettering4c126262011-08-01 20:52:18 +02001458 umask(0022);
1459
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001460 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001461
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001462 items = hashmap_new(string_hash_func, string_compare_func);
1463 globs = hashmap_new(string_hash_func, string_compare_func);
1464
1465 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001466 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001467 goto finish;
1468 }
1469
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001470 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001471
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001472 if (optind < argc) {
1473 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001474
Dave Reisner91256702012-06-08 22:31:19 -04001475 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001476 k = read_config_file(argv[j], false);
1477 if (k < 0 && r == 0)
1478 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001479 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001480
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001481 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001482 _cleanup_strv_free_ char **files = NULL;
1483 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001484
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001485 r = conf_files_list_nulstr(&files, ".conf", NULL, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001486 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001487 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1488 goto finish;
1489 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001490
Kay Sievers772f8372011-04-25 21:38:21 +02001491 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001492 k = read_config_file(*f, true);
1493 if (k < 0 && r == 0)
1494 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001495 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001496 }
1497
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001498 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001499 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001500
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001501 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001502 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001503
Lennart Poettering5008d582010-09-28 02:34:02 +02001504finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001505 while ((i = hashmap_steal_first(items)))
1506 item_free(i);
1507
Lennart Poettering17b90522011-02-14 21:55:06 +01001508 while ((i = hashmap_steal_first(globs)))
1509 item_free(i);
1510
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001511 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001512 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001513
Dave Reisnera2aced42013-07-24 11:10:05 -04001514 strv_free(include_prefixes);
1515
Lennart Poettering17b90522011-02-14 21:55:06 +01001516 set_free_free(unix_sockets);
1517
Lennart Poettering29003cf2010-10-19 19:36:45 +02001518 label_finish();
1519
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001520 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001521}