blob: 8051cb36ec6fd6fc0768e871b4aab0d6dca124a5 [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) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200278 if (errno == ENOENT)
279 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200280
Kay Sieversca2f4172013-10-17 03:20:46 +0200281 /* FUSE, NFS mounts, SELinux might return EACCES */
282 if (errno == EACCES)
283 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
284 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200285 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200286 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200287 continue;
288 }
289
290 /* Stay on the same filesystem */
291 if (s.st_dev != rootdev)
292 continue;
293
Kay Sievers99d680a2013-03-13 13:12:36 +0100294 /* Try to detect bind mounts of the same filesystem instance; they
295 * do not differ in device major/minors. This type of query is not
296 * supported on all kernels or filesystem types though. */
297 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
298 continue;
299
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200300 /* Do not delete read-only files owned by root */
301 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
302 continue;
303
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200304 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700305 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200306 goto finish;
307 }
308
309 /* Is there an item configured for this path? */
310 if (hashmap_get(items, sub_path))
311 continue;
312
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100313 if (find_glob(globs, sub_path))
314 continue;
315
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200316 if (S_ISDIR(s.st_mode)) {
317
318 if (mountpoint &&
319 streq(dent->d_name, "lost+found") &&
320 s.st_uid == 0)
321 continue;
322
323 if (maxdepth <= 0)
324 log_warning("Reached max depth on %s.", sub_path);
325 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200326 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200327 int q;
328
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200329 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200330 if (sub_dir == NULL) {
331 if (errno != ENOENT) {
332 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
333 r = -errno;
334 }
335
336 continue;
337 }
338
Michal Sekletar78a92a52013-01-18 16:13:08 +0100339 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200340
341 if (q < 0)
342 r = q;
343 }
344
Lennart Poettering24f3a372012-06-20 09:05:50 +0200345 /* Note: if you are wondering why we don't
346 * support the sticky bit for excluding
347 * directories from cleaning like we do it for
348 * other file system objects: well, the sticky
349 * bit already has a meaning for directories,
350 * so we don't want to overload that. */
351
352 if (keep_this_level)
353 continue;
354
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200355 /* Ignore ctime, we change it when deleting */
356 age = MAX(timespec_load(&s.st_mtim),
357 timespec_load(&s.st_atim));
358 if (age >= cutoff)
359 continue;
360
Lukas Nykryna6187d42013-03-01 18:29:59 +0100361 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100362 log_debug("rmdir '%s'\n", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200363
Michal Sekletar78a92a52013-01-18 16:13:08 +0100364 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
365 if (errno != ENOENT && errno != ENOTEMPTY) {
366 log_error("rmdir(%s): %m", sub_path);
367 r = -errno;
368 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200369 }
370 }
371
372 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100373 /* Skip files for which the sticky bit is
374 * set. These are semantics we define, and are
375 * unknown elsewhere. See XDG_RUNTIME_DIR
376 * specification for details. */
377 if (s.st_mode & S_ISVTX)
378 continue;
379
Lennart Poettering17b90522011-02-14 21:55:06 +0100380 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200381 if (streq(dent->d_name, ".journal") &&
382 s.st_uid == 0)
383 continue;
384
385 if (streq(dent->d_name, "aquota.user") ||
386 streq(dent->d_name, "aquota.group"))
387 continue;
388 }
389
Lennart Poettering17b90522011-02-14 21:55:06 +0100390 /* Ignore sockets that are listed in /proc/net/unix */
391 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
392 continue;
393
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100394 /* Ignore device nodes */
395 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
396 continue;
397
Lennart Poettering24f3a372012-06-20 09:05:50 +0200398 /* Keep files on this level around if this is
399 * requested */
400 if (keep_this_level)
401 continue;
402
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200403 age = MAX3(timespec_load(&s.st_mtim),
404 timespec_load(&s.st_atim),
405 timespec_load(&s.st_ctim));
406
407 if (age >= cutoff)
408 continue;
409
410 log_debug("unlink '%s'\n", sub_path);
411
412 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
413 if (errno != ENOENT) {
414 log_error("unlink(%s): %m", sub_path);
415 r = -errno;
416 }
417 }
418
419 deleted = true;
420 }
421 }
422
423finish:
424 if (deleted) {
425 /* Restore original directory timestamps */
426 times[0] = ds->st_atim;
427 times[1] = ds->st_mtim;
428
429 if (futimens(dirfd(d), times) < 0)
430 log_error("utimensat(%s): %m", p);
431 }
432
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200433 return r;
434}
435
Lennart Poettering265ffa12013-09-17 16:33:30 -0500436static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
437 int r;
438
Michal Schmidt062e01b2011-12-16 18:00:11 +0100439 /* not using i->path directly because it may be a glob */
440 if (i->mode_set)
441 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500442 if (errno != ENOENT || !ignore_enoent) {
443 log_error("chmod(%s) failed: %m", path);
444 return -errno;
445 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100446 }
447
448 if (i->uid_set || i->gid_set)
449 if (chown(path,
450 i->uid_set ? i->uid : (uid_t) -1,
451 i->gid_set ? i->gid : (gid_t) -1) < 0) {
452
Lennart Poettering265ffa12013-09-17 16:33:30 -0500453 if (errno != ENOENT || !ignore_enoent) {
454 log_error("chown(%s) failed: %m", path);
455 return -errno;
456 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100457 }
458
Lennart Poettering265ffa12013-09-17 16:33:30 -0500459 r = label_fix(path, false, false);
460 return r == -ENOENT && ignore_enoent ? 0 : r;
461}
462
463static int item_set_perms(Item *i, const char *path) {
464 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100465}
466
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400467static int write_one_file(Item *i, const char *path) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200468 int e, flags;
469 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400470 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200471 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400472
473 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
474 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
475
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200476 RUN_WITH_UMASK(0) {
477 label_context_set(path, S_IFREG);
478 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
479 e = errno;
480 label_context_clear();
481 errno = e;
482 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400483
484 if (fd < 0) {
485 if (i->type == WRITE_FILE && errno == ENOENT)
486 return 0;
487
488 log_error("Failed to create file %s: %m", path);
489 return -errno;
490 }
491
492 if (i->argument) {
493 ssize_t n;
494 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400495 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400496
Dave Reisner54693d92012-09-15 12:58:49 -0400497 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100498 if (unescaped == NULL) {
499 close_nointr_nofail(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400500 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100501 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400502
Dave Reisner54693d92012-09-15 12:58:49 -0400503 l = strlen(unescaped);
504 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400505
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400506 if (n < 0 || (size_t) n < l) {
507 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
508 close_nointr_nofail(fd);
509 return n < 0 ? n : -EIO;
510 }
511 }
512
Dave Reisner3612fbc2012-09-12 16:21:00 -0400513 close_nointr_nofail(fd);
514
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400515 if (stat(path, &st) < 0) {
516 log_error("stat(%s) failed: %m", path);
517 return -errno;
518 }
519
520 if (!S_ISREG(st.st_mode)) {
521 log_error("%s is not a file.", path);
522 return -EEXIST;
523 }
524
525 r = item_set_perms(i, path);
526 if (r < 0)
527 return r;
528
529 return 0;
530}
531
Michal Schmidt062e01b2011-12-16 18:00:11 +0100532static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200533 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100534 int ret = 0;
535
536 /* This returns the first error we run into, but nevertheless
537 * tries to go on */
538
539 d = opendir(path);
540 if (!d)
541 return errno == ENOENT ? 0 : -errno;
542
543 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200544 struct dirent *de;
545 union dirent_storage buf;
Michal Schmidta8d88782011-12-15 23:11:07 +0100546 bool is_dir;
547 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200548 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100549
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200550 r = readdir_r(d, &buf.de, &de);
Michal Schmidta8d88782011-12-15 23:11:07 +0100551 if (r != 0) {
552 if (ret == 0)
553 ret = -r;
554 break;
555 }
556
557 if (!de)
558 break;
559
560 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
561 continue;
562
563 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
564 if (ret == 0)
565 ret = -ENOMEM;
566 continue;
567 }
568
569 if (de->d_type == DT_UNKNOWN) {
570 struct stat st;
571
572 if (lstat(entry_path, &st) < 0) {
573 if (ret == 0 && errno != ENOENT)
574 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100575 continue;
576 }
577
578 is_dir = S_ISDIR(st.st_mode);
579
580 } else
581 is_dir = de->d_type == DT_DIR;
582
Michal Schmidt062e01b2011-12-16 18:00:11 +0100583 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100584 if (r < 0) {
585 if (ret == 0 && r != -ENOENT)
586 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100587 continue;
588 }
589
590 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100591 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100592 if (r < 0 && ret == 0)
593 ret = r;
594 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100595 }
596
Michal Schmidta8d88782011-12-15 23:11:07 +0100597 return ret;
598}
599
600static int recursive_relabel(Item *i, const char *path) {
601 int r;
602 struct stat st;
603
Michal Schmidt062e01b2011-12-16 18:00:11 +0100604 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100605 if (r < 0)
606 return r;
607
608 if (lstat(path, &st) < 0)
609 return -errno;
610
611 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100612 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100613
614 return r;
615}
616
Michal Schmidt99e68c02011-12-15 23:45:26 +0100617static int glob_item(Item *i, int (*action)(Item *, const char *)) {
618 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200619 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100620 char **fn;
621
Michal Schmidt99e68c02011-12-15 23:45:26 +0100622 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400623 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
624 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100625 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400626 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100627 errno = EIO;
628
629 log_error("glob(%s) failed: %m", i->path);
630 return -errno;
631 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400632
633 STRV_FOREACH(fn, g.gl_pathv) {
634 k = action(i, *fn);
635 if (k < 0)
636 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100637 }
638
Michal Schmidt99e68c02011-12-15 23:45:26 +0100639 return r;
640}
641
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200642static int create_item(Item *i) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200643 int e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200644 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200645 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200646
647 assert(i);
648
649 switch (i->type) {
650
651 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100652 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200653 case REMOVE_PATH:
654 case RECURSIVE_REMOVE_PATH:
655 return 0;
656
657 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100658 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400659 r = write_one_file(i, i->path);
660 if (r < 0)
661 return r;
662 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500663
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400664 case WRITE_FILE:
665 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100666 if (r < 0)
667 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200668
669 break;
670
Lennart Poettering265ffa12013-09-17 16:33:30 -0500671 case ADJUST_MODE:
672 r = item_set_perms_full(i, i->path, true);
673 if (r < 0)
674 return r;
675
676 break;
677
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200678 case TRUNCATE_DIRECTORY:
679 case CREATE_DIRECTORY:
680
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200681 RUN_WITH_UMASK(0000) {
682 mkdir_parents_label(i->path, 0755);
683 r = mkdir(i->path, i->mode);
684 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200685
686 if (r < 0 && errno != EEXIST) {
687 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100688 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200689 }
690
691 if (stat(i->path, &st) < 0) {
692 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100693 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200694 }
695
696 if (!S_ISDIR(st.st_mode)) {
697 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100698 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200699 }
700
Michal Schmidt062e01b2011-12-16 18:00:11 +0100701 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100702 if (r < 0)
703 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200704
705 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200706
707 case CREATE_FIFO:
708
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200709 RUN_WITH_UMASK(0000) {
710 r = mkfifo(i->path, i->mode);
711 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200712
713 if (r < 0 && errno != EEXIST) {
714 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100715 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200716 }
717
718 if (stat(i->path, &st) < 0) {
719 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100720 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200721 }
722
723 if (!S_ISFIFO(st.st_mode)) {
724 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100725 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200726 }
727
Michal Schmidt062e01b2011-12-16 18:00:11 +0100728 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100729 if (r < 0)
730 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200731
732 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100733
Lennart Poettering468d7262012-01-17 15:04:12 +0100734 case CREATE_SYMLINK: {
735 char *x;
736
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200737 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100738 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200739 e = errno;
740 label_context_clear();
741 errno = e;
742
Lennart Poettering468d7262012-01-17 15:04:12 +0100743 if (r < 0 && errno != EEXIST) {
744 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
745 return -errno;
746 }
747
748 r = readlink_malloc(i->path, &x);
749 if (r < 0) {
750 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
751 return -errno;
752 }
753
754 if (!streq(i->argument, x)) {
755 free(x);
756 log_error("%s is not the right symlinks.", i->path);
757 return -EEXIST;
758 }
759
760 free(x);
761 break;
762 }
763
764 case CREATE_BLOCK_DEVICE:
765 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700766 mode_t file_type;
767
768 if (have_effective_cap(CAP_MKNOD) == 0) {
769 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700770 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700771 that case to avoid noise, and we don't support
772 virtualized devices in containers anyway. */
773
774 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
775 return 0;
776 }
777
778 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100779
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200780 RUN_WITH_UMASK(0000) {
781 label_context_set(i->path, file_type);
782 r = mknod(i->path, i->mode | file_type, i->major_minor);
783 e = errno;
784 label_context_clear();
785 errno = e;
786 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100787
788 if (r < 0 && errno != EEXIST) {
789 log_error("Failed to create device node %s: %m", i->path);
790 return -errno;
791 }
792
793 if (stat(i->path, &st) < 0) {
794 log_error("stat(%s) failed: %m", i->path);
795 return -errno;
796 }
797
Michal Schmidte7aee752012-06-14 16:01:19 +0200798 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100799 log_error("%s is not a device node.", i->path);
800 return -EEXIST;
801 }
802
803 r = item_set_perms(i, i->path);
804 if (r < 0)
805 return r;
806
807 break;
808 }
809
Michal Schmidt777b87e2011-12-16 18:27:35 +0100810 case RELABEL_PATH:
811
812 r = glob_item(i, item_set_perms);
813 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200814 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100815 break;
816
Michal Schmidta8d88782011-12-15 23:11:07 +0100817 case RECURSIVE_RELABEL_PATH:
818
819 r = glob_item(i, recursive_relabel);
820 if (r < 0)
821 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200822 }
823
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200824 log_debug("%s created successfully.", i->path);
825
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100826 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200827}
828
Michal Schmidta0896122011-12-15 21:32:50 +0100829static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200830 int r;
831
832 assert(i);
833
834 switch (i->type) {
835
836 case CREATE_FILE:
837 case TRUNCATE_FILE:
838 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200839 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100840 case CREATE_SYMLINK:
841 case CREATE_BLOCK_DEVICE:
842 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200843 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100844 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100845 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100846 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100847 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500848 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200849 break;
850
851 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100852 if (remove(instance) < 0 && errno != ENOENT) {
853 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200854 return -errno;
855 }
856
857 break;
858
859 case TRUNCATE_DIRECTORY:
860 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200861 /* FIXME: we probably should use dir_cleanup() here
862 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200863 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100864 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100865 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200866 return r;
867 }
868
869 break;
870 }
871
872 return 0;
873}
874
Michal Schmidta0896122011-12-15 21:32:50 +0100875static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100876 int r = 0;
877
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100878 assert(i);
879
880 switch (i->type) {
881
882 case CREATE_FILE:
883 case TRUNCATE_FILE:
884 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200885 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100886 case CREATE_SYMLINK:
887 case CREATE_CHAR_DEVICE:
888 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100889 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100890 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100891 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100892 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100893 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500894 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100895 break;
896
897 case REMOVE_PATH:
898 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100899 case RECURSIVE_REMOVE_PATH:
900 r = glob_item(i, remove_item_instance);
901 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100902 }
903
Michal Schmidt99e68c02011-12-15 23:45:26 +0100904 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100905}
906
Michal Sekletar78a92a52013-01-18 16:13:08 +0100907static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200908 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100909 struct stat s, ps;
910 bool mountpoint;
911 int r;
912 usec_t cutoff, n;
913
914 assert(i);
915
916 if (!i->age_set)
917 return 0;
918
919 n = now(CLOCK_REALTIME);
920 if (n < i->age)
921 return 0;
922
923 cutoff = n - i->age;
924
925 d = opendir(instance);
926 if (!d) {
927 if (errno == ENOENT || errno == ENOTDIR)
928 return 0;
929
930 log_error("Failed to open directory %s: %m", i->path);
931 return -errno;
932 }
933
934 if (fstat(dirfd(d), &s) < 0) {
935 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500936 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100937 }
938
939 if (!S_ISDIR(s.st_mode)) {
940 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500941 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100942 }
943
944 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
945 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500946 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100947 }
948
949 mountpoint = s.st_dev != ps.st_dev ||
950 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
951
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500952 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
953 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100954 return r;
955}
956
957static int clean_item(Item *i) {
958 int r = 0;
959
960 assert(i);
961
962 switch (i->type) {
963 case CREATE_DIRECTORY:
964 case TRUNCATE_DIRECTORY:
965 case IGNORE_PATH:
966 clean_item_instance(i, i->path);
967 break;
968 case IGNORE_DIRECTORY_PATH:
969 r = glob_item(i, clean_item_instance);
970 break;
971 default:
972 break;
973 }
974
975 return r;
976}
977
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200978static int process_item(Item *i) {
979 int r, q, p;
980
981 assert(i);
982
983 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100984 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200985 p = arg_clean ? clean_item(i) : 0;
986
987 if (r < 0)
988 return r;
989
990 if (q < 0)
991 return q;
992
993 return p;
994}
995
996static void item_free(Item *i) {
997 assert(i);
998
999 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001000 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001001 free(i);
1002}
1003
Lennart Poettering14bf2c92013-10-14 04:59:26 +02001004DEFINE_TRIVIAL_CLEANUP_FUNC(Item*, item_free);
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001005#define _cleanup_item_free_ _cleanup_(item_freep)
1006
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001007static bool item_equal(Item *a, Item *b) {
1008 assert(a);
1009 assert(b);
1010
1011 if (!streq_ptr(a->path, b->path))
1012 return false;
1013
1014 if (a->type != b->type)
1015 return false;
1016
1017 if (a->uid_set != b->uid_set ||
1018 (a->uid_set && a->uid != b->uid))
1019 return false;
1020
1021 if (a->gid_set != b->gid_set ||
1022 (a->gid_set && a->gid != b->gid))
1023 return false;
1024
1025 if (a->mode_set != b->mode_set ||
1026 (a->mode_set && a->mode != b->mode))
1027 return false;
1028
1029 if (a->age_set != b->age_set ||
1030 (a->age_set && a->age != b->age))
1031 return false;
1032
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001033 if ((a->type == CREATE_FILE ||
1034 a->type == TRUNCATE_FILE ||
1035 a->type == WRITE_FILE ||
1036 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001037 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001038 return false;
1039
1040 if ((a->type == CREATE_CHAR_DEVICE ||
1041 a->type == CREATE_BLOCK_DEVICE) &&
1042 a->major_minor != b->major_minor)
1043 return false;
1044
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001045 return true;
1046}
1047
Dave Reisnera2aced42013-07-24 11:10:05 -04001048static bool should_include_path(const char *path) {
1049 char **prefix;
1050
Dave Reisner5c795112013-07-24 11:19:24 -04001051 STRV_FOREACH(prefix, exclude_prefixes) {
1052 if (path_startswith(path, *prefix))
1053 return false;
1054 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001055
1056 STRV_FOREACH(prefix, include_prefixes) {
1057 if (path_startswith(path, *prefix))
1058 return true;
1059 }
1060
Dave Reisner5c795112013-07-24 11:19:24 -04001061 /* no matches, so we should include this path only if we
1062 * have no whitelist at all */
1063 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001064}
1065
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001066static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001067
1068 static const Specifier specifier_table[] = {
1069 { 'm', specifier_machine_id, NULL },
1070 { 'b', specifier_boot_id, NULL },
1071 { 'H', specifier_host_name, NULL },
1072 { 'v', specifier_kernel_release, NULL },
1073 {}
1074 };
1075
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001076 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001077 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001078 _cleanup_free_ char
Lennart Poettering1731e342013-09-17 11:02:02 -05001079 *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001080 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001081 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001082 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001083
1084 assert(fname);
1085 assert(line >= 1);
1086 assert(buffer);
1087
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001088 r = sscanf(buffer,
1089 "%c %ms %ms %ms %ms %ms %n",
Michal Schmidt66ccd032011-12-15 21:31:14 +01001090 &type,
Lennart Poettering1731e342013-09-17 11:02:02 -05001091 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001092 &mode,
1093 &user,
1094 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001095 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001096 &n);
1097 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001098 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001099 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001100 }
1101
Lennart Poettering1731e342013-09-17 11:02:02 -05001102 i = new0(Item, 1);
1103 if (!i)
1104 return log_oom();
1105
1106 r = specifier_printf(path, specifier_table, NULL, &i->path);
1107 if (r < 0) {
1108 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1109 return r;
1110 }
1111
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001112 if (n >= 0) {
1113 n += strspn(buffer+n, WHITESPACE);
1114 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1115 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001116 if (!i->argument)
1117 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001118 }
1119 }
1120
Michal Schmidt777b87e2011-12-16 18:27:35 +01001121 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001122
Michal Schmidt777b87e2011-12-16 18:27:35 +01001123 case CREATE_FILE:
1124 case TRUNCATE_FILE:
1125 case CREATE_DIRECTORY:
1126 case TRUNCATE_DIRECTORY:
1127 case CREATE_FIFO:
1128 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001129 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001130 case REMOVE_PATH:
1131 case RECURSIVE_REMOVE_PATH:
1132 case RELABEL_PATH:
1133 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001134 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001135 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001136
1137 case CREATE_SYMLINK:
1138 if (!i->argument) {
1139 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001140 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001141 }
1142 break;
1143
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001144 case WRITE_FILE:
1145 if (!i->argument) {
1146 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001147 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001148 }
1149 break;
1150
Lennart Poettering468d7262012-01-17 15:04:12 +01001151 case CREATE_CHAR_DEVICE:
1152 case CREATE_BLOCK_DEVICE: {
1153 unsigned major, minor;
1154
1155 if (!i->argument) {
1156 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001157 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001158 }
1159
1160 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1161 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 -04001162 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001163 }
1164
1165 i->major_minor = makedev(major, minor);
1166 break;
1167 }
1168
Michal Schmidt777b87e2011-12-16 18:27:35 +01001169 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001170 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001171 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001172 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001173
Michal Schmidta8d88782011-12-15 23:11:07 +01001174 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001175
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001176 if (!path_is_absolute(i->path)) {
1177 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001178 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001179 }
1180
1181 path_kill_slashes(i->path);
1182
Dave Reisnera2aced42013-07-24 11:10:05 -04001183 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001184 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001185
1186 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001187 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001188
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001189 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001190 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001191 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001192 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001193 }
1194
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001195 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001196 }
1197
1198 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001199 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001200
Lennart Poettering4b678342011-07-23 01:17:59 +02001201 r = get_group_creds(&g, &i->gid);
1202 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001203 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001204 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001205 }
1206
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001207 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001208 }
1209
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001210 if (mode && !streq(mode, "-")) {
1211 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001212
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001213 if (sscanf(mode, "%o", &m) != 1) {
1214 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001215 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001216 }
1217
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001218 i->mode = m;
1219 i->mode_set = true;
1220 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001221 i->mode =
1222 i->type == CREATE_DIRECTORY ||
1223 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001224
1225 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001226 const char *a = age;
1227
1228 if (*a == '~') {
1229 i->keep_first_level = true;
1230 a++;
1231 }
1232
Lennart Poettering7f602782013-04-02 20:38:16 +02001233 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001234 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001235 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001236 }
1237
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001238 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001239 }
1240
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001241 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001242
Lennart Poettering468d7262012-01-17 15:04:12 +01001243 existing = hashmap_get(h, i->path);
1244 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001245
1246 /* Two identical items are fine */
1247 if (!item_equal(existing, i))
1248 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1249
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001250 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001251 }
1252
Lennart Poettering468d7262012-01-17 15:04:12 +01001253 r = hashmap_put(h, i->path, i);
1254 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001255 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001256 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001257 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001258
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001259 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001260
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001261 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001262}
1263
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001264static int help(void) {
1265
Lennart Poettering522d4a42011-02-13 15:08:15 +01001266 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1267 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001268 " -h --help Show this help\n"
1269 " --create Create marked files/directories\n"
1270 " --clean Clean up marked directories\n"
1271 " --remove Remove marked files/directories\n"
1272 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
1273 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001274 program_invocation_short_name);
1275
1276 return 0;
1277}
1278
1279static int parse_argv(int argc, char *argv[]) {
1280
1281 enum {
1282 ARG_CREATE,
1283 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001284 ARG_REMOVE,
Dave Reisner5c795112013-07-24 11:19:24 -04001285 ARG_PREFIX,
1286 ARG_EXCLUDE_PREFIX,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001287 };
1288
1289 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001290 { "help", no_argument, NULL, 'h' },
1291 { "create", no_argument, NULL, ARG_CREATE },
1292 { "clean", no_argument, NULL, ARG_CLEAN },
1293 { "remove", no_argument, NULL, ARG_REMOVE },
1294 { "prefix", required_argument, NULL, ARG_PREFIX },
1295 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
1296 { NULL, 0, NULL, 0 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001297 };
1298
1299 int c;
1300
1301 assert(argc >= 0);
1302 assert(argv);
1303
1304 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1305
1306 switch (c) {
1307
1308 case 'h':
1309 help();
1310 return 0;
1311
1312 case ARG_CREATE:
1313 arg_create = true;
1314 break;
1315
1316 case ARG_CLEAN:
1317 arg_clean = true;
1318 break;
1319
1320 case ARG_REMOVE:
1321 arg_remove = true;
1322 break;
1323
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001324 case ARG_PREFIX:
Dave Reisnera2aced42013-07-24 11:10:05 -04001325 if (strv_extend(&include_prefixes, optarg) < 0)
1326 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001327 break;
1328
Dave Reisner5c795112013-07-24 11:19:24 -04001329 case ARG_EXCLUDE_PREFIX:
1330 if (strv_extend(&exclude_prefixes, optarg) < 0)
1331 return log_oom();
1332 break;
1333
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001334 case '?':
1335 return -EINVAL;
1336
1337 default:
1338 log_error("Unknown option code %c", c);
1339 return -EINVAL;
1340 }
1341 }
1342
1343 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001344 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001345 return -EINVAL;
1346 }
1347
1348 return 1;
1349}
1350
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001351static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001352 _cleanup_fclose_ FILE *f = NULL;
1353 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001354 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001355 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001356 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001357 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001358
1359 assert(fn);
1360
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001361 r = search_and_fopen_nulstr(fn, "re", conf_file_dirs, &f);
1362 if (r < 0) {
1363 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001364 return 0;
1365
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001366 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1367 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001368 }
1369
Lennart Poettering1731e342013-09-17 11:02:02 -05001370 FOREACH_LINE(line, f, break) {
1371 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001372 int k;
1373
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001374 v++;
1375
1376 l = strstrip(line);
1377 if (*l == '#' || *l == 0)
1378 continue;
1379
Lennart Poettering1731e342013-09-17 11:02:02 -05001380 k = parse_line(fn, v, l);
1381 if (k < 0 && r == 0)
1382 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001383 }
1384
Michal Sekletar78a92a52013-01-18 16:13:08 +01001385 /* we have to determine age parameter for each entry of type X */
1386 HASHMAP_FOREACH(i, globs, iterator) {
1387 Iterator iter;
1388 Item *j, *candidate_item = NULL;
1389
1390 if (i->type != IGNORE_DIRECTORY_PATH)
1391 continue;
1392
1393 HASHMAP_FOREACH(j, items, iter) {
1394 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1395 continue;
1396
1397 if (path_equal(j->path, i->path)) {
1398 candidate_item = j;
1399 break;
1400 }
1401
1402 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1403 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1404 candidate_item = j;
1405 }
1406
1407 if (candidate_item) {
1408 i->age = candidate_item->age;
1409 i->age_set = true;
1410 }
1411 }
1412
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001413 if (ferror(f)) {
1414 log_error("Failed to read from file %s: %m", fn);
1415 if (r == 0)
1416 r = -EIO;
1417 }
1418
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001419 return r;
1420}
1421
Lennart Poettering5008d582010-09-28 02:34:02 +02001422int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001423 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001424 Item *i;
1425 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001426
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001427 r = parse_argv(argc, argv);
1428 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001429 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1430
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001431 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001432 log_parse_environment();
1433 log_open();
1434
Lennart Poettering4c126262011-08-01 20:52:18 +02001435 umask(0022);
1436
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001437 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001438
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001439 items = hashmap_new(string_hash_func, string_compare_func);
1440 globs = hashmap_new(string_hash_func, string_compare_func);
1441
1442 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001443 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001444 goto finish;
1445 }
1446
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001447 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001448
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001449 if (optind < argc) {
1450 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001451
Dave Reisner91256702012-06-08 22:31:19 -04001452 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001453 k = read_config_file(argv[j], false);
1454 if (k < 0 && r == 0)
1455 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001456 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001457
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001458 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001459 _cleanup_strv_free_ char **files = NULL;
1460 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001461
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001462 r = conf_files_list_nulstr(&files, ".conf", NULL, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001463 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001464 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1465 goto finish;
1466 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001467
Kay Sievers772f8372011-04-25 21:38:21 +02001468 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001469 k = read_config_file(*f, true);
1470 if (k < 0 && r == 0)
1471 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001472 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001473 }
1474
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001475 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001476 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001477
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001478 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001479 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001480
Lennart Poettering5008d582010-09-28 02:34:02 +02001481finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001482 while ((i = hashmap_steal_first(items)))
1483 item_free(i);
1484
Lennart Poettering17b90522011-02-14 21:55:06 +01001485 while ((i = hashmap_steal_first(globs)))
1486 item_free(i);
1487
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001488 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001489 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001490
Dave Reisnera2aced42013-07-24 11:10:05 -04001491 strv_free(include_prefixes);
1492
Lennart Poettering17b90522011-02-14 21:55:06 +01001493 set_free_free(unix_sockets);
1494
Lennart Poettering29003cf2010-10-19 19:36:45 +02001495 label_finish();
1496
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001497 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001498}