blob: 42cc34d6c41576ece05a1a9242cd7a22daaa67c2 [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 Poettering5008d582010-09-28 02:34:02 +020055
Andreas Jaeger01000472010-09-29 10:08:24 +020056/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020057 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020058 * properly owned directories beneath /tmp, /var/tmp, /run, which are
59 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020060
Michal Schmidt66ccd032011-12-15 21:31:14 +010061typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010062 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020063 CREATE_FILE = 'f',
64 TRUNCATE_FILE = 'F',
Lennart Poettering31ed59c2012-01-18 16:39:04 +010065 WRITE_FILE = 'w',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020066 CREATE_DIRECTORY = 'd',
67 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020068 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010069 CREATE_SYMLINK = 'L',
70 CREATE_CHAR_DEVICE = 'c',
71 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering265ffa12013-09-17 16:33:30 -050072 ADJUST_MODE = 'm',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010073
74 /* These ones take globs */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020075 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010076 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020077 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010078 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +010079 RELABEL_PATH = 'z',
Michal Schmidta8d88782011-12-15 23:11:07 +010080 RECURSIVE_RELABEL_PATH = 'Z'
Michal Schmidt66ccd032011-12-15 21:31:14 +010081} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020082
83typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +010084 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020085
86 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +010087 char *argument;
Lennart Poettering5008d582010-09-28 02:34:02 +020088 uid_t uid;
89 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020090 mode_t mode;
91 usec_t age;
92
Lennart Poettering468d7262012-01-17 15:04:12 +010093 dev_t major_minor;
94
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020095 bool uid_set:1;
96 bool gid_set:1;
97 bool mode_set:1;
98 bool age_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +020099
100 bool keep_first_level:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200101} Item;
102
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100103static Hashmap *items = NULL, *globs = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100104static Set *unix_sockets = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200105
106static bool arg_create = false;
107static bool arg_clean = false;
108static bool arg_remove = false;
109
Dave Reisnera2aced42013-07-24 11:10:05 -0400110static char **include_prefixes = NULL;
Dave Reisner5c795112013-07-24 11:19:24 -0400111static char **exclude_prefixes = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100112
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100113static const char conf_file_dirs[] =
114 "/etc/tmpfiles.d\0"
115 "/run/tmpfiles.d\0"
116 "/usr/local/lib/tmpfiles.d\0"
117 "/usr/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200118#ifdef HAVE_SPLIT_USR
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100119 "/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200120#endif
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100121 ;
Dave Reisner91256702012-06-08 22:31:19 -0400122
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200123#define MAX_DEPTH 256
124
Michal Schmidt66ccd032011-12-15 21:31:14 +0100125static bool needs_glob(ItemType t) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100126 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 +0100127}
128
129static struct Item* find_glob(Hashmap *h, const char *match) {
130 Item *j;
131 Iterator i;
132
133 HASHMAP_FOREACH(j, h, i)
134 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
135 return j;
136
137 return NULL;
138}
139
Lennart Poettering17b90522011-02-14 21:55:06 +0100140static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200141 _cleanup_fclose_ FILE *f = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100142 char line[LINE_MAX];
143
144 if (unix_sockets)
145 return;
146
147 /* We maintain a cache of the sockets we found in
148 * /proc/net/unix to speed things up a little. */
149
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100150 unix_sockets = set_new(string_hash_func, string_compare_func);
151 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100152 return;
153
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100154 f = fopen("/proc/net/unix", "re");
155 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100156 return;
157
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100158 /* Skip header */
159 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100160 goto fail;
161
162 for (;;) {
163 char *p, *s;
164 int k;
165
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100166 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100167 break;
168
169 truncate_nl(line);
170
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100171 p = strchr(line, ':');
172 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100173 continue;
174
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100175 if (strlen(p) < 37)
176 continue;
177
178 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100179 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100180 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100181 p += strspn(p, WHITESPACE);
182
183 if (*p != '/')
184 continue;
185
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100186 s = strdup(p);
187 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100188 goto fail;
189
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100190 path_kill_slashes(s);
191
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400192 k = set_consume(unix_sockets, s);
193 if (k < 0 && k != -EEXIST)
194 goto fail;
Lennart Poettering17b90522011-02-14 21:55:06 +0100195 }
196
197 return;
198
199fail:
200 set_free_free(unix_sockets);
201 unix_sockets = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100202}
203
204static bool unix_socket_alive(const char *fn) {
205 assert(fn);
206
207 load_unix_sockets();
208
209 if (unix_sockets)
210 return !!set_get(unix_sockets, (char*) fn);
211
212 /* We don't know, so assume yes */
213 return true;
214}
215
Kay Sievers99d680a2013-03-13 13:12:36 +0100216static int dir_is_mount_point(DIR *d, const char *subdir) {
217 struct file_handle *h;
218 int mount_id_parent, mount_id;
219 int r_p, r;
220
221 h = alloca(MAX_HANDLE_SZ);
222
223 h->handle_bytes = MAX_HANDLE_SZ;
224 r_p = name_to_handle_at(dirfd(d), ".", h, &mount_id_parent, 0);
225 if (r_p < 0)
226 r_p = -errno;
227
228 h->handle_bytes = MAX_HANDLE_SZ;
229 r = name_to_handle_at(dirfd(d), subdir, h, &mount_id, 0);
230 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) {
278
279 if (errno != ENOENT) {
280 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
281 r = -errno;
282 }
283
284 continue;
285 }
286
287 /* Stay on the same filesystem */
288 if (s.st_dev != rootdev)
289 continue;
290
Kay Sievers99d680a2013-03-13 13:12:36 +0100291 /* Try to detect bind mounts of the same filesystem instance; they
292 * do not differ in device major/minors. This type of query is not
293 * supported on all kernels or filesystem types though. */
294 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
295 continue;
296
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200297 /* Do not delete read-only files owned by root */
298 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
299 continue;
300
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200301 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700302 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200303 goto finish;
304 }
305
306 /* Is there an item configured for this path? */
307 if (hashmap_get(items, sub_path))
308 continue;
309
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100310 if (find_glob(globs, sub_path))
311 continue;
312
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200313 if (S_ISDIR(s.st_mode)) {
314
315 if (mountpoint &&
316 streq(dent->d_name, "lost+found") &&
317 s.st_uid == 0)
318 continue;
319
320 if (maxdepth <= 0)
321 log_warning("Reached max depth on %s.", sub_path);
322 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200323 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200324 int q;
325
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200326 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200327 if (sub_dir == NULL) {
328 if (errno != ENOENT) {
329 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
330 r = -errno;
331 }
332
333 continue;
334 }
335
Michal Sekletar78a92a52013-01-18 16:13:08 +0100336 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200337
338 if (q < 0)
339 r = q;
340 }
341
Lennart Poettering24f3a372012-06-20 09:05:50 +0200342 /* Note: if you are wondering why we don't
343 * support the sticky bit for excluding
344 * directories from cleaning like we do it for
345 * other file system objects: well, the sticky
346 * bit already has a meaning for directories,
347 * so we don't want to overload that. */
348
349 if (keep_this_level)
350 continue;
351
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200352 /* Ignore ctime, we change it when deleting */
353 age = MAX(timespec_load(&s.st_mtim),
354 timespec_load(&s.st_atim));
355 if (age >= cutoff)
356 continue;
357
Lukas Nykryna6187d42013-03-01 18:29:59 +0100358 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100359 log_debug("rmdir '%s'\n", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200360
Michal Sekletar78a92a52013-01-18 16:13:08 +0100361 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
362 if (errno != ENOENT && errno != ENOTEMPTY) {
363 log_error("rmdir(%s): %m", sub_path);
364 r = -errno;
365 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200366 }
367 }
368
369 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100370 /* Skip files for which the sticky bit is
371 * set. These are semantics we define, and are
372 * unknown elsewhere. See XDG_RUNTIME_DIR
373 * specification for details. */
374 if (s.st_mode & S_ISVTX)
375 continue;
376
Lennart Poettering17b90522011-02-14 21:55:06 +0100377 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200378 if (streq(dent->d_name, ".journal") &&
379 s.st_uid == 0)
380 continue;
381
382 if (streq(dent->d_name, "aquota.user") ||
383 streq(dent->d_name, "aquota.group"))
384 continue;
385 }
386
Lennart Poettering17b90522011-02-14 21:55:06 +0100387 /* Ignore sockets that are listed in /proc/net/unix */
388 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
389 continue;
390
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100391 /* Ignore device nodes */
392 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
393 continue;
394
Lennart Poettering24f3a372012-06-20 09:05:50 +0200395 /* Keep files on this level around if this is
396 * requested */
397 if (keep_this_level)
398 continue;
399
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200400 age = MAX3(timespec_load(&s.st_mtim),
401 timespec_load(&s.st_atim),
402 timespec_load(&s.st_ctim));
403
404 if (age >= cutoff)
405 continue;
406
407 log_debug("unlink '%s'\n", sub_path);
408
409 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
410 if (errno != ENOENT) {
411 log_error("unlink(%s): %m", sub_path);
412 r = -errno;
413 }
414 }
415
416 deleted = true;
417 }
418 }
419
420finish:
421 if (deleted) {
422 /* Restore original directory timestamps */
423 times[0] = ds->st_atim;
424 times[1] = ds->st_mtim;
425
426 if (futimens(dirfd(d), times) < 0)
427 log_error("utimensat(%s): %m", p);
428 }
429
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200430 return r;
431}
432
Lennart Poettering265ffa12013-09-17 16:33:30 -0500433static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
434 int r;
435
Michal Schmidt062e01b2011-12-16 18:00:11 +0100436 /* not using i->path directly because it may be a glob */
437 if (i->mode_set)
438 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500439 if (errno != ENOENT || !ignore_enoent) {
440 log_error("chmod(%s) failed: %m", path);
441 return -errno;
442 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100443 }
444
445 if (i->uid_set || i->gid_set)
446 if (chown(path,
447 i->uid_set ? i->uid : (uid_t) -1,
448 i->gid_set ? i->gid : (gid_t) -1) < 0) {
449
Lennart Poettering265ffa12013-09-17 16:33:30 -0500450 if (errno != ENOENT || !ignore_enoent) {
451 log_error("chown(%s) failed: %m", path);
452 return -errno;
453 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100454 }
455
Lennart Poettering265ffa12013-09-17 16:33:30 -0500456 r = label_fix(path, false, false);
457 return r == -ENOENT && ignore_enoent ? 0 : r;
458}
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) {
465 int r, e, fd, flags;
466 struct stat st;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400467
468 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
469 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
470
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200471 RUN_WITH_UMASK(0) {
472 label_context_set(path, S_IFREG);
473 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
474 e = errno;
475 label_context_clear();
476 errno = e;
477 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400478
479 if (fd < 0) {
480 if (i->type == WRITE_FILE && errno == ENOENT)
481 return 0;
482
483 log_error("Failed to create file %s: %m", path);
484 return -errno;
485 }
486
487 if (i->argument) {
488 ssize_t n;
489 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400490 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400491
Dave Reisner54693d92012-09-15 12:58:49 -0400492 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100493 if (unescaped == NULL) {
494 close_nointr_nofail(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400495 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100496 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400497
Dave Reisner54693d92012-09-15 12:58:49 -0400498 l = strlen(unescaped);
499 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400500
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400501 if (n < 0 || (size_t) n < l) {
502 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
503 close_nointr_nofail(fd);
504 return n < 0 ? n : -EIO;
505 }
506 }
507
Dave Reisner3612fbc2012-09-12 16:21:00 -0400508 close_nointr_nofail(fd);
509
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400510 if (stat(path, &st) < 0) {
511 log_error("stat(%s) failed: %m", path);
512 return -errno;
513 }
514
515 if (!S_ISREG(st.st_mode)) {
516 log_error("%s is not a file.", path);
517 return -EEXIST;
518 }
519
520 r = item_set_perms(i, path);
521 if (r < 0)
522 return r;
523
524 return 0;
525}
526
Michal Schmidt062e01b2011-12-16 18:00:11 +0100527static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200528 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100529 int ret = 0;
530
531 /* This returns the first error we run into, but nevertheless
532 * tries to go on */
533
534 d = opendir(path);
535 if (!d)
536 return errno == ENOENT ? 0 : -errno;
537
538 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200539 struct dirent *de;
540 union dirent_storage buf;
Michal Schmidta8d88782011-12-15 23:11:07 +0100541 bool is_dir;
542 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200543 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100544
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200545 r = readdir_r(d, &buf.de, &de);
Michal Schmidta8d88782011-12-15 23:11:07 +0100546 if (r != 0) {
547 if (ret == 0)
548 ret = -r;
549 break;
550 }
551
552 if (!de)
553 break;
554
555 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
556 continue;
557
558 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
559 if (ret == 0)
560 ret = -ENOMEM;
561 continue;
562 }
563
564 if (de->d_type == DT_UNKNOWN) {
565 struct stat st;
566
567 if (lstat(entry_path, &st) < 0) {
568 if (ret == 0 && errno != ENOENT)
569 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100570 continue;
571 }
572
573 is_dir = S_ISDIR(st.st_mode);
574
575 } else
576 is_dir = de->d_type == DT_DIR;
577
Michal Schmidt062e01b2011-12-16 18:00:11 +0100578 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100579 if (r < 0) {
580 if (ret == 0 && r != -ENOENT)
581 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100582 continue;
583 }
584
585 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100586 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100587 if (r < 0 && ret == 0)
588 ret = r;
589 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100590 }
591
Michal Schmidta8d88782011-12-15 23:11:07 +0100592 return ret;
593}
594
595static int recursive_relabel(Item *i, const char *path) {
596 int r;
597 struct stat st;
598
Michal Schmidt062e01b2011-12-16 18:00:11 +0100599 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100600 if (r < 0)
601 return r;
602
603 if (lstat(path, &st) < 0)
604 return -errno;
605
606 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100607 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100608
609 return r;
610}
611
Michal Schmidt99e68c02011-12-15 23:45:26 +0100612static int glob_item(Item *i, int (*action)(Item *, const char *)) {
613 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200614 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100615 char **fn;
616
Michal Schmidt99e68c02011-12-15 23:45:26 +0100617 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400618 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
619 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100620 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400621 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100622 errno = EIO;
623
624 log_error("glob(%s) failed: %m", i->path);
625 return -errno;
626 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400627
628 STRV_FOREACH(fn, g.gl_pathv) {
629 k = action(i, *fn);
630 if (k < 0)
631 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100632 }
633
Michal Schmidt99e68c02011-12-15 23:45:26 +0100634 return r;
635}
636
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200637static int create_item(Item *i) {
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200638 int r, e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200639 struct stat st;
640
641 assert(i);
642
643 switch (i->type) {
644
645 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100646 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200647 case REMOVE_PATH:
648 case RECURSIVE_REMOVE_PATH:
649 return 0;
650
651 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100652 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400653 r = write_one_file(i, i->path);
654 if (r < 0)
655 return r;
656 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500657
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400658 case WRITE_FILE:
659 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100660 if (r < 0)
661 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200662
663 break;
664
Lennart Poettering265ffa12013-09-17 16:33:30 -0500665 case ADJUST_MODE:
666 r = item_set_perms_full(i, i->path, true);
667 if (r < 0)
668 return r;
669
670 break;
671
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200672 case TRUNCATE_DIRECTORY:
673 case CREATE_DIRECTORY:
674
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200675 RUN_WITH_UMASK(0000) {
676 mkdir_parents_label(i->path, 0755);
677 r = mkdir(i->path, i->mode);
678 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200679
680 if (r < 0 && errno != EEXIST) {
681 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100682 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200683 }
684
685 if (stat(i->path, &st) < 0) {
686 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100687 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200688 }
689
690 if (!S_ISDIR(st.st_mode)) {
691 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100692 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200693 }
694
Michal Schmidt062e01b2011-12-16 18:00:11 +0100695 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100696 if (r < 0)
697 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200698
699 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200700
701 case CREATE_FIFO:
702
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200703 RUN_WITH_UMASK(0000) {
704 r = mkfifo(i->path, i->mode);
705 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200706
707 if (r < 0 && errno != EEXIST) {
708 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100709 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200710 }
711
712 if (stat(i->path, &st) < 0) {
713 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100714 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200715 }
716
717 if (!S_ISFIFO(st.st_mode)) {
718 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100719 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200720 }
721
Michal Schmidt062e01b2011-12-16 18:00:11 +0100722 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100723 if (r < 0)
724 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200725
726 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100727
Lennart Poettering468d7262012-01-17 15:04:12 +0100728 case CREATE_SYMLINK: {
729 char *x;
730
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200731 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100732 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200733 e = errno;
734 label_context_clear();
735 errno = e;
736
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)) {
749 free(x);
750 log_error("%s is not the right symlinks.", i->path);
751 return -EEXIST;
752 }
753
754 free(x);
755 break;
756 }
757
758 case CREATE_BLOCK_DEVICE:
759 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700760 mode_t file_type;
761
762 if (have_effective_cap(CAP_MKNOD) == 0) {
763 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700764 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700765 that case to avoid noise, and we don't support
766 virtualized devices in containers anyway. */
767
768 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
769 return 0;
770 }
771
772 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100773
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200774 RUN_WITH_UMASK(0000) {
775 label_context_set(i->path, file_type);
776 r = mknod(i->path, i->mode | file_type, i->major_minor);
777 e = errno;
778 label_context_clear();
779 errno = e;
780 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100781
782 if (r < 0 && errno != EEXIST) {
783 log_error("Failed to create device node %s: %m", i->path);
784 return -errno;
785 }
786
787 if (stat(i->path, &st) < 0) {
788 log_error("stat(%s) failed: %m", i->path);
789 return -errno;
790 }
791
Michal Schmidte7aee752012-06-14 16:01:19 +0200792 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100793 log_error("%s is not a device node.", i->path);
794 return -EEXIST;
795 }
796
797 r = item_set_perms(i, i->path);
798 if (r < 0)
799 return r;
800
801 break;
802 }
803
Michal Schmidt777b87e2011-12-16 18:27:35 +0100804 case RELABEL_PATH:
805
806 r = glob_item(i, item_set_perms);
807 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200808 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100809 break;
810
Michal Schmidta8d88782011-12-15 23:11:07 +0100811 case RECURSIVE_RELABEL_PATH:
812
813 r = glob_item(i, recursive_relabel);
814 if (r < 0)
815 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200816 }
817
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200818 log_debug("%s created successfully.", i->path);
819
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100820 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200821}
822
Michal Schmidta0896122011-12-15 21:32:50 +0100823static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200824 int r;
825
826 assert(i);
827
828 switch (i->type) {
829
830 case CREATE_FILE:
831 case TRUNCATE_FILE:
832 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200833 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100834 case CREATE_SYMLINK:
835 case CREATE_BLOCK_DEVICE:
836 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200837 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100838 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100839 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100840 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100841 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500842 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200843 break;
844
845 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100846 if (remove(instance) < 0 && errno != ENOENT) {
847 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200848 return -errno;
849 }
850
851 break;
852
853 case TRUNCATE_DIRECTORY:
854 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200855 /* FIXME: we probably should use dir_cleanup() here
856 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200857 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100858 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100859 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200860 return r;
861 }
862
863 break;
864 }
865
866 return 0;
867}
868
Michal Schmidta0896122011-12-15 21:32:50 +0100869static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100870 int r = 0;
871
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100872 assert(i);
873
874 switch (i->type) {
875
876 case CREATE_FILE:
877 case TRUNCATE_FILE:
878 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200879 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100880 case CREATE_SYMLINK:
881 case CREATE_CHAR_DEVICE:
882 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100883 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100884 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100885 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100886 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100887 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500888 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100889 break;
890
891 case REMOVE_PATH:
892 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100893 case RECURSIVE_REMOVE_PATH:
894 r = glob_item(i, remove_item_instance);
895 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100896 }
897
Michal Schmidt99e68c02011-12-15 23:45:26 +0100898 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100899}
900
Michal Sekletar78a92a52013-01-18 16:13:08 +0100901static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200902 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100903 struct stat s, ps;
904 bool mountpoint;
905 int r;
906 usec_t cutoff, n;
907
908 assert(i);
909
910 if (!i->age_set)
911 return 0;
912
913 n = now(CLOCK_REALTIME);
914 if (n < i->age)
915 return 0;
916
917 cutoff = n - i->age;
918
919 d = opendir(instance);
920 if (!d) {
921 if (errno == ENOENT || errno == ENOTDIR)
922 return 0;
923
924 log_error("Failed to open directory %s: %m", i->path);
925 return -errno;
926 }
927
928 if (fstat(dirfd(d), &s) < 0) {
929 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500930 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100931 }
932
933 if (!S_ISDIR(s.st_mode)) {
934 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500935 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100936 }
937
938 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
939 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500940 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100941 }
942
943 mountpoint = s.st_dev != ps.st_dev ||
944 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
945
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500946 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
947 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100948 return r;
949}
950
951static int clean_item(Item *i) {
952 int r = 0;
953
954 assert(i);
955
956 switch (i->type) {
957 case CREATE_DIRECTORY:
958 case TRUNCATE_DIRECTORY:
959 case IGNORE_PATH:
960 clean_item_instance(i, i->path);
961 break;
962 case IGNORE_DIRECTORY_PATH:
963 r = glob_item(i, clean_item_instance);
964 break;
965 default:
966 break;
967 }
968
969 return r;
970}
971
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200972static int process_item(Item *i) {
973 int r, q, p;
974
975 assert(i);
976
977 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100978 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200979 p = arg_clean ? clean_item(i) : 0;
980
981 if (r < 0)
982 return r;
983
984 if (q < 0)
985 return q;
986
987 return p;
988}
989
990static void item_free(Item *i) {
991 assert(i);
992
993 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +0100994 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200995 free(i);
996}
997
Zbigniew Jędrzejewski-Szmek1ca208f2013-10-12 20:28:21 -0400998define_trivial_cleanup_func(Item*, item_free)
Maciej Wereskie2f2fb72013-07-19 15:43:12 +0200999#define _cleanup_item_free_ _cleanup_(item_freep)
1000
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001001static bool item_equal(Item *a, Item *b) {
1002 assert(a);
1003 assert(b);
1004
1005 if (!streq_ptr(a->path, b->path))
1006 return false;
1007
1008 if (a->type != b->type)
1009 return false;
1010
1011 if (a->uid_set != b->uid_set ||
1012 (a->uid_set && a->uid != b->uid))
1013 return false;
1014
1015 if (a->gid_set != b->gid_set ||
1016 (a->gid_set && a->gid != b->gid))
1017 return false;
1018
1019 if (a->mode_set != b->mode_set ||
1020 (a->mode_set && a->mode != b->mode))
1021 return false;
1022
1023 if (a->age_set != b->age_set ||
1024 (a->age_set && a->age != b->age))
1025 return false;
1026
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001027 if ((a->type == CREATE_FILE ||
1028 a->type == TRUNCATE_FILE ||
1029 a->type == WRITE_FILE ||
1030 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001031 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001032 return false;
1033
1034 if ((a->type == CREATE_CHAR_DEVICE ||
1035 a->type == CREATE_BLOCK_DEVICE) &&
1036 a->major_minor != b->major_minor)
1037 return false;
1038
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001039 return true;
1040}
1041
Dave Reisnera2aced42013-07-24 11:10:05 -04001042static bool should_include_path(const char *path) {
1043 char **prefix;
1044
Dave Reisner5c795112013-07-24 11:19:24 -04001045 STRV_FOREACH(prefix, exclude_prefixes) {
1046 if (path_startswith(path, *prefix))
1047 return false;
1048 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001049
1050 STRV_FOREACH(prefix, include_prefixes) {
1051 if (path_startswith(path, *prefix))
1052 return true;
1053 }
1054
Dave Reisner5c795112013-07-24 11:19:24 -04001055 /* no matches, so we should include this path only if we
1056 * have no whitelist at all */
1057 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001058}
1059
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001060static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001061
1062 static const Specifier specifier_table[] = {
1063 { 'm', specifier_machine_id, NULL },
1064 { 'b', specifier_boot_id, NULL },
1065 { 'H', specifier_host_name, NULL },
1066 { 'v', specifier_kernel_release, NULL },
1067 {}
1068 };
1069
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001070 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001071 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001072 _cleanup_free_ char
Lennart Poettering1731e342013-09-17 11:02:02 -05001073 *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001074 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001075 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001076 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001077
1078 assert(fname);
1079 assert(line >= 1);
1080 assert(buffer);
1081
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001082 r = sscanf(buffer,
1083 "%c %ms %ms %ms %ms %ms %n",
Michal Schmidt66ccd032011-12-15 21:31:14 +01001084 &type,
Lennart Poettering1731e342013-09-17 11:02:02 -05001085 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001086 &mode,
1087 &user,
1088 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001089 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001090 &n);
1091 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001092 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001093 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001094 }
1095
Lennart Poettering1731e342013-09-17 11:02:02 -05001096 i = new0(Item, 1);
1097 if (!i)
1098 return log_oom();
1099
1100 r = specifier_printf(path, specifier_table, NULL, &i->path);
1101 if (r < 0) {
1102 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1103 return r;
1104 }
1105
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001106 if (n >= 0) {
1107 n += strspn(buffer+n, WHITESPACE);
1108 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1109 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001110 if (!i->argument)
1111 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001112 }
1113 }
1114
Michal Schmidt777b87e2011-12-16 18:27:35 +01001115 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001116
Michal Schmidt777b87e2011-12-16 18:27:35 +01001117 case CREATE_FILE:
1118 case TRUNCATE_FILE:
1119 case CREATE_DIRECTORY:
1120 case TRUNCATE_DIRECTORY:
1121 case CREATE_FIFO:
1122 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001123 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001124 case REMOVE_PATH:
1125 case RECURSIVE_REMOVE_PATH:
1126 case RELABEL_PATH:
1127 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001128 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001129 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001130
1131 case CREATE_SYMLINK:
1132 if (!i->argument) {
1133 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001134 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001135 }
1136 break;
1137
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001138 case WRITE_FILE:
1139 if (!i->argument) {
1140 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001141 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001142 }
1143 break;
1144
Lennart Poettering468d7262012-01-17 15:04:12 +01001145 case CREATE_CHAR_DEVICE:
1146 case CREATE_BLOCK_DEVICE: {
1147 unsigned major, minor;
1148
1149 if (!i->argument) {
1150 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001151 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001152 }
1153
1154 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1155 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 -04001156 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001157 }
1158
1159 i->major_minor = makedev(major, minor);
1160 break;
1161 }
1162
Michal Schmidt777b87e2011-12-16 18:27:35 +01001163 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001164 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001165 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001166 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001167
Michal Schmidta8d88782011-12-15 23:11:07 +01001168 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001169
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001170 if (!path_is_absolute(i->path)) {
1171 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001172 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001173 }
1174
1175 path_kill_slashes(i->path);
1176
Dave Reisnera2aced42013-07-24 11:10:05 -04001177 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001178 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001179
1180 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001181 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001182
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001183 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001184 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001185 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001186 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001187 }
1188
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001189 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001190 }
1191
1192 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001193 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001194
Lennart Poettering4b678342011-07-23 01:17:59 +02001195 r = get_group_creds(&g, &i->gid);
1196 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001197 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001198 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001199 }
1200
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001201 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001202 }
1203
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001204 if (mode && !streq(mode, "-")) {
1205 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001206
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001207 if (sscanf(mode, "%o", &m) != 1) {
1208 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001209 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001210 }
1211
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001212 i->mode = m;
1213 i->mode_set = true;
1214 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001215 i->mode =
1216 i->type == CREATE_DIRECTORY ||
1217 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001218
1219 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001220 const char *a = age;
1221
1222 if (*a == '~') {
1223 i->keep_first_level = true;
1224 a++;
1225 }
1226
Lennart Poettering7f602782013-04-02 20:38:16 +02001227 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001228 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001229 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001230 }
1231
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001232 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001233 }
1234
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001235 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001236
Lennart Poettering468d7262012-01-17 15:04:12 +01001237 existing = hashmap_get(h, i->path);
1238 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001239
1240 /* Two identical items are fine */
1241 if (!item_equal(existing, i))
1242 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1243
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001244 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001245 }
1246
Lennart Poettering468d7262012-01-17 15:04:12 +01001247 r = hashmap_put(h, i->path, i);
1248 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001249 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001250 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001251 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001252
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001253 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001254
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001255 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001256}
1257
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001258static int help(void) {
1259
Lennart Poettering522d4a42011-02-13 15:08:15 +01001260 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1261 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001262 " -h --help Show this help\n"
1263 " --create Create marked files/directories\n"
1264 " --clean Clean up marked directories\n"
1265 " --remove Remove marked files/directories\n"
1266 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
1267 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001268 program_invocation_short_name);
1269
1270 return 0;
1271}
1272
1273static int parse_argv(int argc, char *argv[]) {
1274
1275 enum {
1276 ARG_CREATE,
1277 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001278 ARG_REMOVE,
Dave Reisner5c795112013-07-24 11:19:24 -04001279 ARG_PREFIX,
1280 ARG_EXCLUDE_PREFIX,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001281 };
1282
1283 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001284 { "help", no_argument, NULL, 'h' },
1285 { "create", no_argument, NULL, ARG_CREATE },
1286 { "clean", no_argument, NULL, ARG_CLEAN },
1287 { "remove", no_argument, NULL, ARG_REMOVE },
1288 { "prefix", required_argument, NULL, ARG_PREFIX },
1289 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
1290 { NULL, 0, NULL, 0 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001291 };
1292
1293 int c;
1294
1295 assert(argc >= 0);
1296 assert(argv);
1297
1298 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1299
1300 switch (c) {
1301
1302 case 'h':
1303 help();
1304 return 0;
1305
1306 case ARG_CREATE:
1307 arg_create = true;
1308 break;
1309
1310 case ARG_CLEAN:
1311 arg_clean = true;
1312 break;
1313
1314 case ARG_REMOVE:
1315 arg_remove = true;
1316 break;
1317
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001318 case ARG_PREFIX:
Dave Reisnera2aced42013-07-24 11:10:05 -04001319 if (strv_extend(&include_prefixes, optarg) < 0)
1320 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001321 break;
1322
Dave Reisner5c795112013-07-24 11:19:24 -04001323 case ARG_EXCLUDE_PREFIX:
1324 if (strv_extend(&exclude_prefixes, optarg) < 0)
1325 return log_oom();
1326 break;
1327
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001328 case '?':
1329 return -EINVAL;
1330
1331 default:
1332 log_error("Unknown option code %c", c);
1333 return -EINVAL;
1334 }
1335 }
1336
1337 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001338 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001339 return -EINVAL;
1340 }
1341
1342 return 1;
1343}
1344
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001345static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001346 _cleanup_fclose_ FILE *f = NULL;
1347 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001348 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001349 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001350 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001351 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001352
1353 assert(fn);
1354
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001355 r = search_and_fopen_nulstr(fn, "re", conf_file_dirs, &f);
1356 if (r < 0) {
1357 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001358 return 0;
1359
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001360 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1361 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001362 }
1363
Lennart Poettering1731e342013-09-17 11:02:02 -05001364 FOREACH_LINE(line, f, break) {
1365 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001366 int k;
1367
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001368 v++;
1369
1370 l = strstrip(line);
1371 if (*l == '#' || *l == 0)
1372 continue;
1373
Lennart Poettering1731e342013-09-17 11:02:02 -05001374 k = parse_line(fn, v, l);
1375 if (k < 0 && r == 0)
1376 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001377 }
1378
Michal Sekletar78a92a52013-01-18 16:13:08 +01001379 /* we have to determine age parameter for each entry of type X */
1380 HASHMAP_FOREACH(i, globs, iterator) {
1381 Iterator iter;
1382 Item *j, *candidate_item = NULL;
1383
1384 if (i->type != IGNORE_DIRECTORY_PATH)
1385 continue;
1386
1387 HASHMAP_FOREACH(j, items, iter) {
1388 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1389 continue;
1390
1391 if (path_equal(j->path, i->path)) {
1392 candidate_item = j;
1393 break;
1394 }
1395
1396 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1397 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1398 candidate_item = j;
1399 }
1400
1401 if (candidate_item) {
1402 i->age = candidate_item->age;
1403 i->age_set = true;
1404 }
1405 }
1406
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001407 if (ferror(f)) {
1408 log_error("Failed to read from file %s: %m", fn);
1409 if (r == 0)
1410 r = -EIO;
1411 }
1412
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001413 return r;
1414}
1415
Lennart Poettering5008d582010-09-28 02:34:02 +02001416int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001417 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001418 Item *i;
1419 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001420
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001421 r = parse_argv(argc, argv);
1422 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001423 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1424
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001425 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001426 log_parse_environment();
1427 log_open();
1428
Lennart Poettering4c126262011-08-01 20:52:18 +02001429 umask(0022);
1430
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001431 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001432
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001433 items = hashmap_new(string_hash_func, string_compare_func);
1434 globs = hashmap_new(string_hash_func, string_compare_func);
1435
1436 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001437 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001438 goto finish;
1439 }
1440
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001441 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001442
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001443 if (optind < argc) {
1444 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001445
Dave Reisner91256702012-06-08 22:31:19 -04001446 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001447 k = read_config_file(argv[j], false);
1448 if (k < 0 && r == 0)
1449 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001450 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001451
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001452 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001453 _cleanup_strv_free_ char **files = NULL;
1454 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001455
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001456 r = conf_files_list_nulstr(&files, ".conf", NULL, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001457 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001458 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1459 goto finish;
1460 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001461
Kay Sievers772f8372011-04-25 21:38:21 +02001462 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001463 k = read_config_file(*f, true);
1464 if (k < 0 && r == 0)
1465 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001466 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001467 }
1468
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001469 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001470 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001471
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001472 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001473 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001474
Lennart Poettering5008d582010-09-28 02:34:02 +02001475finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001476 while ((i = hashmap_steal_first(items)))
1477 item_free(i);
1478
Lennart Poettering17b90522011-02-14 21:55:06 +01001479 while ((i = hashmap_steal_first(globs)))
1480 item_free(i);
1481
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001482 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001483 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001484
Dave Reisnera2aced42013-07-24 11:10:05 -04001485 strv_free(include_prefixes);
1486
Lennart Poettering17b90522011-02-14 21:55:06 +01001487 set_free_free(unix_sockets);
1488
Lennart Poettering29003cf2010-10-19 19:36:45 +02001489 label_finish();
1490
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001491 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001492}