blob: b7f6a2e058bcdcf539c5aaa7e06c7cf69b60b710 [file] [log] [blame]
Lennart Poettering5008d582010-09-28 02:34:02 +02001/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02006 Copyright 2010 Lennart Poettering, Kay Sievers
Lennart Poettering5008d582010-09-28 02:34:02 +02007
8 systemd is free software; you can redistribute it and/or modify it
Lennart Poettering5430f7f2012-04-12 00:20:58 +02009 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
Lennart Poettering5008d582010-09-28 02:34:02 +020011 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lennart Poettering5430f7f2012-04-12 00:20:58 +020016 Lesser General Public License for more details.
Lennart Poettering5008d582010-09-28 02:34:02 +020017
Lennart Poettering5430f7f2012-04-12 00:20:58 +020018 You should have received a copy of the GNU Lesser General Public License
Lennart Poettering5008d582010-09-28 02:34:02 +020019 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include <unistd.h>
23#include <fcntl.h>
24#include <errno.h>
25#include <string.h>
26#include <sys/stat.h>
27#include <limits.h>
28#include <dirent.h>
29#include <grp.h>
30#include <pwd.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020031#include <stdio.h>
32#include <stdlib.h>
33#include <stddef.h>
34#include <getopt.h>
35#include <stdbool.h>
36#include <time.h>
37#include <sys/types.h>
38#include <sys/param.h>
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010039#include <glob.h>
40#include <fnmatch.h>
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -070041#include <sys/capability.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020042
43#include "log.h"
44#include "util.h"
Dave Reisner54693d92012-09-15 12:58:49 -040045#include "macro.h"
Zbigniew Jędrzejewski-Szmekd39efe72013-03-13 20:20:54 -040046#include "missing.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020047#include "mkdir.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020048#include "path-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020049#include "strv.h"
50#include "label.h"
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020051#include "set.h"
Kay Sievers2c210442012-05-07 18:55:45 +020052#include "conf-files.h"
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -070053#include "capability.h"
Lennart Poettering1731e342013-09-17 11:02:02 -050054#include "specifier.h"
Lennart Poetteringeb9da372013-11-06 18:28:39 +010055#include "build.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020056
Andreas Jaeger01000472010-09-29 10:08:24 +020057/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020058 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020059 * properly owned directories beneath /tmp, /var/tmp, /run, which are
60 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020061
Michal Schmidt66ccd032011-12-15 21:31:14 +010062typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010063 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020064 CREATE_FILE = 'f',
65 TRUNCATE_FILE = 'F',
Lennart Poettering31ed59c2012-01-18 16:39:04 +010066 WRITE_FILE = 'w',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020067 CREATE_DIRECTORY = 'd',
68 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020069 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010070 CREATE_SYMLINK = 'L',
71 CREATE_CHAR_DEVICE = 'c',
72 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering265ffa12013-09-17 16:33:30 -050073 ADJUST_MODE = 'm',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010074
75 /* These ones take globs */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020076 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010077 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020078 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010079 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +010080 RELABEL_PATH = 'z',
Michal Schmidta8d88782011-12-15 23:11:07 +010081 RECURSIVE_RELABEL_PATH = 'Z'
Michal Schmidt66ccd032011-12-15 21:31:14 +010082} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020083
84typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +010085 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020086
87 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +010088 char *argument;
Lennart Poettering5008d582010-09-28 02:34:02 +020089 uid_t uid;
90 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020091 mode_t mode;
92 usec_t age;
93
Lennart Poettering468d7262012-01-17 15:04:12 +010094 dev_t major_minor;
95
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020096 bool uid_set:1;
97 bool gid_set:1;
98 bool mode_set:1;
99 bool age_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200100
101 bool keep_first_level:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200102} Item;
103
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100104static Hashmap *items = NULL, *globs = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100105static Set *unix_sockets = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200106
107static bool arg_create = false;
108static bool arg_clean = false;
109static bool arg_remove = false;
110
Dave Reisnera2aced42013-07-24 11:10:05 -0400111static char **include_prefixes = NULL;
Dave Reisner5c795112013-07-24 11:19:24 -0400112static char **exclude_prefixes = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100113
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100114static const char conf_file_dirs[] =
115 "/etc/tmpfiles.d\0"
116 "/run/tmpfiles.d\0"
117 "/usr/local/lib/tmpfiles.d\0"
118 "/usr/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200119#ifdef HAVE_SPLIT_USR
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100120 "/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200121#endif
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100122 ;
Dave Reisner91256702012-06-08 22:31:19 -0400123
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200124#define MAX_DEPTH 256
125
Michal Schmidt66ccd032011-12-15 21:31:14 +0100126static bool needs_glob(ItemType t) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100127 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 +0100128}
129
130static struct Item* find_glob(Hashmap *h, const char *match) {
131 Item *j;
132 Iterator i;
133
134 HASHMAP_FOREACH(j, h, i)
135 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
136 return j;
137
138 return NULL;
139}
140
Lennart Poettering17b90522011-02-14 21:55:06 +0100141static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200142 _cleanup_fclose_ FILE *f = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100143 char line[LINE_MAX];
144
145 if (unix_sockets)
146 return;
147
148 /* We maintain a cache of the sockets we found in
149 * /proc/net/unix to speed things up a little. */
150
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100151 unix_sockets = set_new(string_hash_func, string_compare_func);
152 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100153 return;
154
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100155 f = fopen("/proc/net/unix", "re");
156 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100157 return;
158
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100159 /* Skip header */
160 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100161 goto fail;
162
163 for (;;) {
164 char *p, *s;
165 int k;
166
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100167 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100168 break;
169
170 truncate_nl(line);
171
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100172 p = strchr(line, ':');
173 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100174 continue;
175
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100176 if (strlen(p) < 37)
177 continue;
178
179 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100180 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100181 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100182 p += strspn(p, WHITESPACE);
183
184 if (*p != '/')
185 continue;
186
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100187 s = strdup(p);
188 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100189 goto fail;
190
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100191 path_kill_slashes(s);
192
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400193 k = set_consume(unix_sockets, s);
194 if (k < 0 && k != -EEXIST)
195 goto fail;
Lennart Poettering17b90522011-02-14 21:55:06 +0100196 }
197
198 return;
199
200fail:
201 set_free_free(unix_sockets);
202 unix_sockets = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100203}
204
205static bool unix_socket_alive(const char *fn) {
206 assert(fn);
207
208 load_unix_sockets();
209
210 if (unix_sockets)
211 return !!set_get(unix_sockets, (char*) fn);
212
213 /* We don't know, so assume yes */
214 return true;
215}
216
Kay Sievers99d680a2013-03-13 13:12:36 +0100217static int dir_is_mount_point(DIR *d, const char *subdir) {
218 struct file_handle *h;
219 int mount_id_parent, mount_id;
220 int r_p, r;
221
222 h = alloca(MAX_HANDLE_SZ);
223
224 h->handle_bytes = MAX_HANDLE_SZ;
225 r_p = name_to_handle_at(dirfd(d), ".", h, &mount_id_parent, 0);
226 if (r_p < 0)
227 r_p = -errno;
228
229 h->handle_bytes = MAX_HANDLE_SZ;
230 r = name_to_handle_at(dirfd(d), subdir, h, &mount_id, 0);
231 if (r < 0)
232 r = -errno;
233
234 /* got no handle; make no assumptions, return error */
235 if (r_p < 0 && r < 0)
236 return r_p;
237
238 /* got both handles; if they differ, it is a mount point */
239 if (r_p >= 0 && r >= 0)
240 return mount_id_parent != mount_id;
241
242 /* got only one handle; assume different mount points if one
243 * of both queries was not supported by the filesystem */
244 if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP)
245 return true;
246
247 /* return error */
248 if (r_p < 0)
249 return r_p;
250 return r;
251}
252
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200253static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100254 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200255 const char *p,
256 DIR *d,
257 const struct stat *ds,
258 usec_t cutoff,
259 dev_t rootdev,
260 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200261 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500262 bool keep_this_level) {
263
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200264 struct dirent *dent;
265 struct timespec times[2];
266 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200267 int r = 0;
268
269 while ((dent = readdir(d))) {
270 struct stat s;
271 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200272 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200273
274 if (streq(dent->d_name, ".") ||
275 streq(dent->d_name, ".."))
276 continue;
277
278 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200279 if (errno == ENOENT)
280 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200281
Kay Sieversca2f4172013-10-17 03:20:46 +0200282 /* FUSE, NFS mounts, SELinux might return EACCES */
283 if (errno == EACCES)
284 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
285 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200286 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200287 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200288 continue;
289 }
290
291 /* Stay on the same filesystem */
292 if (s.st_dev != rootdev)
293 continue;
294
Kay Sievers99d680a2013-03-13 13:12:36 +0100295 /* Try to detect bind mounts of the same filesystem instance; they
296 * do not differ in device major/minors. This type of query is not
297 * supported on all kernels or filesystem types though. */
298 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
299 continue;
300
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200301 /* Do not delete read-only files owned by root */
302 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
303 continue;
304
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200305 if (asprintf(&sub_path, "%s/%s", p, dent->d_name) < 0) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700306 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200307 goto finish;
308 }
309
310 /* Is there an item configured for this path? */
311 if (hashmap_get(items, sub_path))
312 continue;
313
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100314 if (find_glob(globs, sub_path))
315 continue;
316
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200317 if (S_ISDIR(s.st_mode)) {
318
319 if (mountpoint &&
320 streq(dent->d_name, "lost+found") &&
321 s.st_uid == 0)
322 continue;
323
324 if (maxdepth <= 0)
325 log_warning("Reached max depth on %s.", sub_path);
326 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200327 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200328 int q;
329
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200330 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200331 if (sub_dir == NULL) {
332 if (errno != ENOENT) {
333 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
334 r = -errno;
335 }
336
337 continue;
338 }
339
Michal Sekletar78a92a52013-01-18 16:13:08 +0100340 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200341
342 if (q < 0)
343 r = q;
344 }
345
Lennart Poettering24f3a372012-06-20 09:05:50 +0200346 /* Note: if you are wondering why we don't
347 * support the sticky bit for excluding
348 * directories from cleaning like we do it for
349 * other file system objects: well, the sticky
350 * bit already has a meaning for directories,
351 * so we don't want to overload that. */
352
353 if (keep_this_level)
354 continue;
355
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200356 /* Ignore ctime, we change it when deleting */
357 age = MAX(timespec_load(&s.st_mtim),
358 timespec_load(&s.st_atim));
359 if (age >= cutoff)
360 continue;
361
Lukas Nykryna6187d42013-03-01 18:29:59 +0100362 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Michal Sekletar78a92a52013-01-18 16:13:08 +0100363 log_debug("rmdir '%s'\n", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200364
Michal Sekletar78a92a52013-01-18 16:13:08 +0100365 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
366 if (errno != ENOENT && errno != ENOTEMPTY) {
367 log_error("rmdir(%s): %m", sub_path);
368 r = -errno;
369 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200370 }
371 }
372
373 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100374 /* Skip files for which the sticky bit is
375 * set. These are semantics we define, and are
376 * unknown elsewhere. See XDG_RUNTIME_DIR
377 * specification for details. */
378 if (s.st_mode & S_ISVTX)
379 continue;
380
Lennart Poettering17b90522011-02-14 21:55:06 +0100381 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200382 if (streq(dent->d_name, ".journal") &&
383 s.st_uid == 0)
384 continue;
385
386 if (streq(dent->d_name, "aquota.user") ||
387 streq(dent->d_name, "aquota.group"))
388 continue;
389 }
390
Lennart Poettering17b90522011-02-14 21:55:06 +0100391 /* Ignore sockets that are listed in /proc/net/unix */
392 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
393 continue;
394
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100395 /* Ignore device nodes */
396 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
397 continue;
398
Lennart Poettering24f3a372012-06-20 09:05:50 +0200399 /* Keep files on this level around if this is
400 * requested */
401 if (keep_this_level)
402 continue;
403
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200404 age = MAX3(timespec_load(&s.st_mtim),
405 timespec_load(&s.st_atim),
406 timespec_load(&s.st_ctim));
407
408 if (age >= cutoff)
409 continue;
410
411 log_debug("unlink '%s'\n", sub_path);
412
413 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
414 if (errno != ENOENT) {
415 log_error("unlink(%s): %m", sub_path);
416 r = -errno;
417 }
418 }
419
420 deleted = true;
421 }
422 }
423
424finish:
425 if (deleted) {
426 /* Restore original directory timestamps */
427 times[0] = ds->st_atim;
428 times[1] = ds->st_mtim;
429
430 if (futimens(dirfd(d), times) < 0)
431 log_error("utimensat(%s): %m", p);
432 }
433
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200434 return r;
435}
436
Lennart Poettering265ffa12013-09-17 16:33:30 -0500437static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
438 int r;
439
Michal Schmidt062e01b2011-12-16 18:00:11 +0100440 /* not using i->path directly because it may be a glob */
441 if (i->mode_set)
442 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500443 if (errno != ENOENT || !ignore_enoent) {
444 log_error("chmod(%s) failed: %m", path);
445 return -errno;
446 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100447 }
448
449 if (i->uid_set || i->gid_set)
450 if (chown(path,
451 i->uid_set ? i->uid : (uid_t) -1,
452 i->gid_set ? i->gid : (gid_t) -1) < 0) {
453
Lennart Poettering265ffa12013-09-17 16:33:30 -0500454 if (errno != ENOENT || !ignore_enoent) {
455 log_error("chown(%s) failed: %m", path);
456 return -errno;
457 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100458 }
459
Lennart Poettering265ffa12013-09-17 16:33:30 -0500460 r = label_fix(path, false, false);
461 return r == -ENOENT && ignore_enoent ? 0 : r;
462}
463
464static int item_set_perms(Item *i, const char *path) {
465 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100466}
467
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400468static int write_one_file(Item *i, const char *path) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200469 int e, flags;
470 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400471 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200472 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400473
474 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
475 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
476
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200477 RUN_WITH_UMASK(0) {
478 label_context_set(path, S_IFREG);
479 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
480 e = errno;
481 label_context_clear();
482 errno = e;
483 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400484
485 if (fd < 0) {
486 if (i->type == WRITE_FILE && errno == ENOENT)
487 return 0;
488
489 log_error("Failed to create file %s: %m", path);
490 return -errno;
491 }
492
493 if (i->argument) {
494 ssize_t n;
495 size_t l;
Dave Reisner54693d92012-09-15 12:58:49 -0400496 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400497
Dave Reisner54693d92012-09-15 12:58:49 -0400498 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100499 if (unescaped == NULL) {
500 close_nointr_nofail(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400501 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100502 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400503
Dave Reisner54693d92012-09-15 12:58:49 -0400504 l = strlen(unescaped);
505 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400506
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400507 if (n < 0 || (size_t) n < l) {
508 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
509 close_nointr_nofail(fd);
510 return n < 0 ? n : -EIO;
511 }
512 }
513
Dave Reisner3612fbc2012-09-12 16:21:00 -0400514 close_nointr_nofail(fd);
515
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400516 if (stat(path, &st) < 0) {
517 log_error("stat(%s) failed: %m", path);
518 return -errno;
519 }
520
521 if (!S_ISREG(st.st_mode)) {
522 log_error("%s is not a file.", path);
523 return -EEXIST;
524 }
525
526 r = item_set_perms(i, path);
527 if (r < 0)
528 return r;
529
530 return 0;
531}
532
Michal Schmidt062e01b2011-12-16 18:00:11 +0100533static int recursive_relabel_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200534 _cleanup_closedir_ DIR *d;
Michal Schmidta8d88782011-12-15 23:11:07 +0100535 int ret = 0;
536
537 /* This returns the first error we run into, but nevertheless
538 * tries to go on */
539
540 d = opendir(path);
541 if (!d)
542 return errno == ENOENT ? 0 : -errno;
543
544 for (;;) {
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200545 struct dirent *de;
546 union dirent_storage buf;
Michal Schmidta8d88782011-12-15 23:11:07 +0100547 bool is_dir;
548 int r;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200549 _cleanup_free_ char *entry_path = NULL;
Michal Schmidta8d88782011-12-15 23:11:07 +0100550
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200551 r = readdir_r(d, &buf.de, &de);
Michal Schmidta8d88782011-12-15 23:11:07 +0100552 if (r != 0) {
553 if (ret == 0)
554 ret = -r;
555 break;
556 }
557
558 if (!de)
559 break;
560
561 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
562 continue;
563
564 if (asprintf(&entry_path, "%s/%s", path, de->d_name) < 0) {
565 if (ret == 0)
566 ret = -ENOMEM;
567 continue;
568 }
569
570 if (de->d_type == DT_UNKNOWN) {
571 struct stat st;
572
573 if (lstat(entry_path, &st) < 0) {
574 if (ret == 0 && errno != ENOENT)
575 ret = -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100576 continue;
577 }
578
579 is_dir = S_ISDIR(st.st_mode);
580
581 } else
582 is_dir = de->d_type == DT_DIR;
583
Michal Schmidt062e01b2011-12-16 18:00:11 +0100584 r = item_set_perms(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100585 if (r < 0) {
586 if (ret == 0 && r != -ENOENT)
587 ret = r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100588 continue;
589 }
590
591 if (is_dir) {
Michal Schmidt062e01b2011-12-16 18:00:11 +0100592 r = recursive_relabel_children(i, entry_path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100593 if (r < 0 && ret == 0)
594 ret = r;
595 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100596 }
597
Michal Schmidta8d88782011-12-15 23:11:07 +0100598 return ret;
599}
600
601static int recursive_relabel(Item *i, const char *path) {
602 int r;
603 struct stat st;
604
Michal Schmidt062e01b2011-12-16 18:00:11 +0100605 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100606 if (r < 0)
607 return r;
608
609 if (lstat(path, &st) < 0)
610 return -errno;
611
612 if (S_ISDIR(st.st_mode))
Michal Schmidt062e01b2011-12-16 18:00:11 +0100613 r = recursive_relabel_children(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100614
615 return r;
616}
617
Michal Schmidt99e68c02011-12-15 23:45:26 +0100618static int glob_item(Item *i, int (*action)(Item *, const char *)) {
619 int r = 0, k;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200620 _cleanup_globfree_ glob_t g = {};
Michal Schmidt99e68c02011-12-15 23:45:26 +0100621 char **fn;
622
Michal Schmidt99e68c02011-12-15 23:45:26 +0100623 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400624 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
625 if (k != 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100626 if (k != GLOB_NOMATCH) {
Zbigniew Jędrzejewski-Szmek8333c772013-03-28 09:24:15 -0400627 if (errno > 0)
Michal Schmidt99e68c02011-12-15 23:45:26 +0100628 errno = EIO;
629
630 log_error("glob(%s) failed: %m", i->path);
631 return -errno;
632 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400633
634 STRV_FOREACH(fn, g.gl_pathv) {
635 k = action(i, *fn);
636 if (k < 0)
637 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100638 }
639
Michal Schmidt99e68c02011-12-15 23:45:26 +0100640 return r;
641}
642
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200643static int create_item(Item *i) {
Kay Sieversdf28bc02013-10-21 15:24:18 +0200644 int e;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200645 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200646 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200647
648 assert(i);
649
650 switch (i->type) {
651
652 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100653 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200654 case REMOVE_PATH:
655 case RECURSIVE_REMOVE_PATH:
656 return 0;
657
658 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100659 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400660 r = write_one_file(i, i->path);
661 if (r < 0)
662 return r;
663 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500664
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400665 case WRITE_FILE:
666 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100667 if (r < 0)
668 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200669
670 break;
671
Lennart Poettering265ffa12013-09-17 16:33:30 -0500672 case ADJUST_MODE:
673 r = item_set_perms_full(i, i->path, true);
674 if (r < 0)
675 return r;
676
677 break;
678
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200679 case TRUNCATE_DIRECTORY:
680 case CREATE_DIRECTORY:
681
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200682 RUN_WITH_UMASK(0000) {
683 mkdir_parents_label(i->path, 0755);
684 r = mkdir(i->path, i->mode);
685 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200686
687 if (r < 0 && errno != EEXIST) {
688 log_error("Failed to create directory %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100689 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200690 }
691
692 if (stat(i->path, &st) < 0) {
693 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100694 return -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200695 }
696
697 if (!S_ISDIR(st.st_mode)) {
698 log_error("%s is not a directory.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100699 return -EEXIST;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200700 }
701
Michal Schmidt062e01b2011-12-16 18:00:11 +0100702 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100703 if (r < 0)
704 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200705
706 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200707
708 case CREATE_FIFO:
709
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200710 RUN_WITH_UMASK(0000) {
711 r = mkfifo(i->path, i->mode);
712 }
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200713
714 if (r < 0 && errno != EEXIST) {
715 log_error("Failed to create fifo %s: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100716 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200717 }
718
719 if (stat(i->path, &st) < 0) {
720 log_error("stat(%s) failed: %m", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100721 return -errno;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200722 }
723
724 if (!S_ISFIFO(st.st_mode)) {
725 log_error("%s is not a fifo.", i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100726 return -EEXIST;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200727 }
728
Michal Schmidt062e01b2011-12-16 18:00:11 +0100729 r = item_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100730 if (r < 0)
731 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200732
733 break;
Michal Schmidta8d88782011-12-15 23:11:07 +0100734
Lennart Poettering468d7262012-01-17 15:04:12 +0100735 case CREATE_SYMLINK: {
736 char *x;
737
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200738 label_context_set(i->path, S_IFLNK);
Lennart Poettering468d7262012-01-17 15:04:12 +0100739 r = symlink(i->argument, i->path);
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200740 e = errno;
741 label_context_clear();
742 errno = e;
743
Lennart Poettering468d7262012-01-17 15:04:12 +0100744 if (r < 0 && errno != EEXIST) {
745 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
746 return -errno;
747 }
748
749 r = readlink_malloc(i->path, &x);
750 if (r < 0) {
751 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
752 return -errno;
753 }
754
755 if (!streq(i->argument, x)) {
756 free(x);
757 log_error("%s is not the right symlinks.", i->path);
758 return -EEXIST;
759 }
760
761 free(x);
762 break;
763 }
764
765 case CREATE_BLOCK_DEVICE:
766 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700767 mode_t file_type;
768
769 if (have_effective_cap(CAP_MKNOD) == 0) {
770 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700771 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700772 that case to avoid noise, and we don't support
773 virtualized devices in containers anyway. */
774
775 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
776 return 0;
777 }
778
779 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100780
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200781 RUN_WITH_UMASK(0000) {
782 label_context_set(i->path, file_type);
783 r = mknod(i->path, i->mode | file_type, i->major_minor);
784 e = errno;
785 label_context_clear();
786 errno = e;
787 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100788
789 if (r < 0 && errno != EEXIST) {
790 log_error("Failed to create device node %s: %m", i->path);
791 return -errno;
792 }
793
794 if (stat(i->path, &st) < 0) {
795 log_error("stat(%s) failed: %m", i->path);
796 return -errno;
797 }
798
Michal Schmidte7aee752012-06-14 16:01:19 +0200799 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100800 log_error("%s is not a device node.", i->path);
801 return -EEXIST;
802 }
803
804 r = item_set_perms(i, i->path);
805 if (r < 0)
806 return r;
807
808 break;
809 }
810
Michal Schmidt777b87e2011-12-16 18:27:35 +0100811 case RELABEL_PATH:
812
813 r = glob_item(i, item_set_perms);
814 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200815 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100816 break;
817
Michal Schmidta8d88782011-12-15 23:11:07 +0100818 case RECURSIVE_RELABEL_PATH:
819
820 r = glob_item(i, recursive_relabel);
821 if (r < 0)
822 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200823 }
824
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200825 log_debug("%s created successfully.", i->path);
826
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100827 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200828}
829
Michal Schmidta0896122011-12-15 21:32:50 +0100830static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200831 int r;
832
833 assert(i);
834
835 switch (i->type) {
836
837 case CREATE_FILE:
838 case TRUNCATE_FILE:
839 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200840 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100841 case CREATE_SYMLINK:
842 case CREATE_BLOCK_DEVICE:
843 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200844 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100845 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100846 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100847 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100848 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500849 case ADJUST_MODE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200850 break;
851
852 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100853 if (remove(instance) < 0 && errno != ENOENT) {
854 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200855 return -errno;
856 }
857
858 break;
859
860 case TRUNCATE_DIRECTORY:
861 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200862 /* FIXME: we probably should use dir_cleanup() here
863 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200864 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100865 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100866 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200867 return r;
868 }
869
870 break;
871 }
872
873 return 0;
874}
875
Michal Schmidta0896122011-12-15 21:32:50 +0100876static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100877 int r = 0;
878
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100879 assert(i);
880
881 switch (i->type) {
882
883 case CREATE_FILE:
884 case TRUNCATE_FILE:
885 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200886 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100887 case CREATE_SYMLINK:
888 case CREATE_CHAR_DEVICE:
889 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100890 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100891 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100892 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100893 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100894 case WRITE_FILE:
Lennart Poettering265ffa12013-09-17 16:33:30 -0500895 case ADJUST_MODE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100896 break;
897
898 case REMOVE_PATH:
899 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100900 case RECURSIVE_REMOVE_PATH:
901 r = glob_item(i, remove_item_instance);
902 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100903 }
904
Michal Schmidt99e68c02011-12-15 23:45:26 +0100905 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100906}
907
Michal Sekletar78a92a52013-01-18 16:13:08 +0100908static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200909 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100910 struct stat s, ps;
911 bool mountpoint;
912 int r;
913 usec_t cutoff, n;
914
915 assert(i);
916
917 if (!i->age_set)
918 return 0;
919
920 n = now(CLOCK_REALTIME);
921 if (n < i->age)
922 return 0;
923
924 cutoff = n - i->age;
925
926 d = opendir(instance);
927 if (!d) {
928 if (errno == ENOENT || errno == ENOTDIR)
929 return 0;
930
931 log_error("Failed to open directory %s: %m", i->path);
932 return -errno;
933 }
934
935 if (fstat(dirfd(d), &s) < 0) {
936 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500937 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100938 }
939
940 if (!S_ISDIR(s.st_mode)) {
941 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500942 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100943 }
944
945 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
946 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500947 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100948 }
949
950 mountpoint = s.st_dev != ps.st_dev ||
951 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
952
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500953 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
954 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100955 return r;
956}
957
958static int clean_item(Item *i) {
959 int r = 0;
960
961 assert(i);
962
963 switch (i->type) {
964 case CREATE_DIRECTORY:
965 case TRUNCATE_DIRECTORY:
966 case IGNORE_PATH:
967 clean_item_instance(i, i->path);
968 break;
969 case IGNORE_DIRECTORY_PATH:
970 r = glob_item(i, clean_item_instance);
971 break;
972 default:
973 break;
974 }
975
976 return r;
977}
978
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200979static int process_item(Item *i) {
980 int r, q, p;
981
982 assert(i);
983
984 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +0100985 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200986 p = arg_clean ? clean_item(i) : 0;
987
988 if (r < 0)
989 return r;
990
991 if (q < 0)
992 return q;
993
994 return p;
995}
996
997static void item_free(Item *i) {
998 assert(i);
999
1000 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001001 free(i->argument);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001002 free(i);
1003}
1004
Lennart Poettering14bf2c92013-10-14 04:59:26 +02001005DEFINE_TRIVIAL_CLEANUP_FUNC(Item*, item_free);
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001006#define _cleanup_item_free_ _cleanup_(item_freep)
1007
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001008static bool item_equal(Item *a, Item *b) {
1009 assert(a);
1010 assert(b);
1011
1012 if (!streq_ptr(a->path, b->path))
1013 return false;
1014
1015 if (a->type != b->type)
1016 return false;
1017
1018 if (a->uid_set != b->uid_set ||
1019 (a->uid_set && a->uid != b->uid))
1020 return false;
1021
1022 if (a->gid_set != b->gid_set ||
1023 (a->gid_set && a->gid != b->gid))
1024 return false;
1025
1026 if (a->mode_set != b->mode_set ||
1027 (a->mode_set && a->mode != b->mode))
1028 return false;
1029
1030 if (a->age_set != b->age_set ||
1031 (a->age_set && a->age != b->age))
1032 return false;
1033
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001034 if ((a->type == CREATE_FILE ||
1035 a->type == TRUNCATE_FILE ||
1036 a->type == WRITE_FILE ||
1037 a->type == CREATE_SYMLINK) &&
Lennart Poettering1733ca52012-01-22 18:19:24 +01001038 !streq_ptr(a->argument, b->argument))
Lennart Poettering468d7262012-01-17 15:04:12 +01001039 return false;
1040
1041 if ((a->type == CREATE_CHAR_DEVICE ||
1042 a->type == CREATE_BLOCK_DEVICE) &&
1043 a->major_minor != b->major_minor)
1044 return false;
1045
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001046 return true;
1047}
1048
Dave Reisnera2aced42013-07-24 11:10:05 -04001049static bool should_include_path(const char *path) {
1050 char **prefix;
1051
Dave Reisner5c795112013-07-24 11:19:24 -04001052 STRV_FOREACH(prefix, exclude_prefixes) {
1053 if (path_startswith(path, *prefix))
1054 return false;
1055 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001056
1057 STRV_FOREACH(prefix, include_prefixes) {
1058 if (path_startswith(path, *prefix))
1059 return true;
1060 }
1061
Dave Reisner5c795112013-07-24 11:19:24 -04001062 /* no matches, so we should include this path only if we
1063 * have no whitelist at all */
1064 return strv_length(include_prefixes) == 0;
Dave Reisnera2aced42013-07-24 11:10:05 -04001065}
1066
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001067static int parse_line(const char *fname, unsigned line, const char *buffer) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001068
1069 static const Specifier specifier_table[] = {
1070 { 'm', specifier_machine_id, NULL },
1071 { 'b', specifier_boot_id, NULL },
1072 { 'H', specifier_host_name, NULL },
1073 { 'v', specifier_kernel_release, NULL },
1074 {}
1075 };
1076
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02001077 _cleanup_item_free_ Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001078 Item *existing;
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001079 _cleanup_free_ char
Lennart Poettering1731e342013-09-17 11:02:02 -05001080 *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001081 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001082 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001083 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001084
1085 assert(fname);
1086 assert(line >= 1);
1087 assert(buffer);
1088
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001089 r = sscanf(buffer,
1090 "%c %ms %ms %ms %ms %ms %n",
Michal Schmidt66ccd032011-12-15 21:31:14 +01001091 &type,
Lennart Poettering1731e342013-09-17 11:02:02 -05001092 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001093 &mode,
1094 &user,
1095 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001096 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001097 &n);
1098 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001099 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001100 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001101 }
1102
Lennart Poettering1731e342013-09-17 11:02:02 -05001103 i = new0(Item, 1);
1104 if (!i)
1105 return log_oom();
1106
1107 r = specifier_printf(path, specifier_table, NULL, &i->path);
1108 if (r < 0) {
1109 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1110 return r;
1111 }
1112
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001113 if (n >= 0) {
1114 n += strspn(buffer+n, WHITESPACE);
1115 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1116 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001117 if (!i->argument)
1118 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001119 }
1120 }
1121
Michal Schmidt777b87e2011-12-16 18:27:35 +01001122 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001123
Michal Schmidt777b87e2011-12-16 18:27:35 +01001124 case CREATE_FILE:
1125 case TRUNCATE_FILE:
1126 case CREATE_DIRECTORY:
1127 case TRUNCATE_DIRECTORY:
1128 case CREATE_FIFO:
1129 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001130 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001131 case REMOVE_PATH:
1132 case RECURSIVE_REMOVE_PATH:
1133 case RELABEL_PATH:
1134 case RECURSIVE_RELABEL_PATH:
Lennart Poettering265ffa12013-09-17 16:33:30 -05001135 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001136 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001137
1138 case CREATE_SYMLINK:
1139 if (!i->argument) {
1140 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001141 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001142 }
1143 break;
1144
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001145 case WRITE_FILE:
1146 if (!i->argument) {
1147 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001148 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001149 }
1150 break;
1151
Lennart Poettering468d7262012-01-17 15:04:12 +01001152 case CREATE_CHAR_DEVICE:
1153 case CREATE_BLOCK_DEVICE: {
1154 unsigned major, minor;
1155
1156 if (!i->argument) {
1157 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001158 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001159 }
1160
1161 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1162 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 -04001163 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001164 }
1165
1166 i->major_minor = makedev(major, minor);
1167 break;
1168 }
1169
Michal Schmidt777b87e2011-12-16 18:27:35 +01001170 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001171 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001172 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001173 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001174
Michal Schmidta8d88782011-12-15 23:11:07 +01001175 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001176
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001177 if (!path_is_absolute(i->path)) {
1178 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001179 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001180 }
1181
1182 path_kill_slashes(i->path);
1183
Dave Reisnera2aced42013-07-24 11:10:05 -04001184 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001185 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001186
1187 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001188 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001189
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001190 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001191 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001192 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001193 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001194 }
1195
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001196 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001197 }
1198
1199 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001200 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001201
Lennart Poettering4b678342011-07-23 01:17:59 +02001202 r = get_group_creds(&g, &i->gid);
1203 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001204 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001205 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001206 }
1207
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001208 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001209 }
1210
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001211 if (mode && !streq(mode, "-")) {
1212 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001213
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001214 if (sscanf(mode, "%o", &m) != 1) {
1215 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001216 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001217 }
1218
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001219 i->mode = m;
1220 i->mode_set = true;
1221 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001222 i->mode =
1223 i->type == CREATE_DIRECTORY ||
1224 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001225
1226 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001227 const char *a = age;
1228
1229 if (*a == '~') {
1230 i->keep_first_level = true;
1231 a++;
1232 }
1233
Lennart Poettering7f602782013-04-02 20:38:16 +02001234 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001235 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001236 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001237 }
1238
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001239 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001240 }
1241
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001242 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001243
Lennart Poettering468d7262012-01-17 15:04:12 +01001244 existing = hashmap_get(h, i->path);
1245 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001246
1247 /* Two identical items are fine */
1248 if (!item_equal(existing, i))
1249 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1250
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001251 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001252 }
1253
Lennart Poettering468d7262012-01-17 15:04:12 +01001254 r = hashmap_put(h, i->path, i);
1255 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001256 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001257 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001258 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001259
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001260 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001261
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001262 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001263}
1264
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001265static int help(void) {
1266
Lennart Poettering522d4a42011-02-13 15:08:15 +01001267 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1268 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001269 " -h --help Show this help\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001270 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001271 " --create Create marked files/directories\n"
1272 " --clean Clean up marked directories\n"
1273 " --remove Remove marked files/directories\n"
1274 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
1275 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001276 program_invocation_short_name);
1277
1278 return 0;
1279}
1280
1281static int parse_argv(int argc, char *argv[]) {
1282
1283 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001284 ARG_VERSION = 0x100,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001285 ARG_CREATE,
1286 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001287 ARG_REMOVE,
Dave Reisner5c795112013-07-24 11:19:24 -04001288 ARG_PREFIX,
1289 ARG_EXCLUDE_PREFIX,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001290 };
1291
1292 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001293 { "help", no_argument, NULL, 'h' },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001294 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04001295 { "create", no_argument, NULL, ARG_CREATE },
1296 { "clean", no_argument, NULL, ARG_CLEAN },
1297 { "remove", no_argument, NULL, ARG_REMOVE },
1298 { "prefix", required_argument, NULL, ARG_PREFIX },
1299 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001300 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001301 };
1302
1303 int c;
1304
1305 assert(argc >= 0);
1306 assert(argv);
1307
1308 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1309
1310 switch (c) {
1311
1312 case 'h':
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001313 return help();
1314
1315 case ARG_VERSION:
1316 puts(PACKAGE_STRING);
1317 puts(SYSTEMD_FEATURES);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001318 return 0;
1319
1320 case ARG_CREATE:
1321 arg_create = true;
1322 break;
1323
1324 case ARG_CLEAN:
1325 arg_clean = true;
1326 break;
1327
1328 case ARG_REMOVE:
1329 arg_remove = true;
1330 break;
1331
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001332 case ARG_PREFIX:
Dave Reisnera2aced42013-07-24 11:10:05 -04001333 if (strv_extend(&include_prefixes, optarg) < 0)
1334 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001335 break;
1336
Dave Reisner5c795112013-07-24 11:19:24 -04001337 case ARG_EXCLUDE_PREFIX:
1338 if (strv_extend(&exclude_prefixes, optarg) < 0)
1339 return log_oom();
1340 break;
1341
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001342 case '?':
1343 return -EINVAL;
1344
1345 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001346 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001347 }
1348 }
1349
1350 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001351 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001352 return -EINVAL;
1353 }
1354
1355 return 1;
1356}
1357
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001358static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001359 _cleanup_fclose_ FILE *f = NULL;
1360 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001361 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001362 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001363 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001364 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001365
1366 assert(fn);
1367
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001368 r = search_and_fopen_nulstr(fn, "re", conf_file_dirs, &f);
1369 if (r < 0) {
1370 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001371 return 0;
1372
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001373 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1374 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001375 }
1376
Lennart Poettering1731e342013-09-17 11:02:02 -05001377 FOREACH_LINE(line, f, break) {
1378 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001379 int k;
1380
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001381 v++;
1382
1383 l = strstrip(line);
1384 if (*l == '#' || *l == 0)
1385 continue;
1386
Lennart Poettering1731e342013-09-17 11:02:02 -05001387 k = parse_line(fn, v, l);
1388 if (k < 0 && r == 0)
1389 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001390 }
1391
Michal Sekletar78a92a52013-01-18 16:13:08 +01001392 /* we have to determine age parameter for each entry of type X */
1393 HASHMAP_FOREACH(i, globs, iterator) {
1394 Iterator iter;
1395 Item *j, *candidate_item = NULL;
1396
1397 if (i->type != IGNORE_DIRECTORY_PATH)
1398 continue;
1399
1400 HASHMAP_FOREACH(j, items, iter) {
1401 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1402 continue;
1403
1404 if (path_equal(j->path, i->path)) {
1405 candidate_item = j;
1406 break;
1407 }
1408
1409 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1410 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1411 candidate_item = j;
1412 }
1413
1414 if (candidate_item) {
1415 i->age = candidate_item->age;
1416 i->age_set = true;
1417 }
1418 }
1419
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001420 if (ferror(f)) {
1421 log_error("Failed to read from file %s: %m", fn);
1422 if (r == 0)
1423 r = -EIO;
1424 }
1425
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001426 return r;
1427}
1428
Lennart Poettering5008d582010-09-28 02:34:02 +02001429int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001430 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001431 Item *i;
1432 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001433
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001434 r = parse_argv(argc, argv);
1435 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001436 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1437
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001438 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001439 log_parse_environment();
1440 log_open();
1441
Lennart Poettering4c126262011-08-01 20:52:18 +02001442 umask(0022);
1443
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001444 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001445
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001446 items = hashmap_new(string_hash_func, string_compare_func);
1447 globs = hashmap_new(string_hash_func, string_compare_func);
1448
1449 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001450 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001451 goto finish;
1452 }
1453
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001454 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001455
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001456 if (optind < argc) {
1457 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001458
Dave Reisner91256702012-06-08 22:31:19 -04001459 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001460 k = read_config_file(argv[j], false);
1461 if (k < 0 && r == 0)
1462 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001463 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001464
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001465 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001466 _cleanup_strv_free_ char **files = NULL;
1467 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001468
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001469 r = conf_files_list_nulstr(&files, ".conf", NULL, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001470 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001471 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1472 goto finish;
1473 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001474
Kay Sievers772f8372011-04-25 21:38:21 +02001475 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001476 k = read_config_file(*f, true);
1477 if (k < 0 && r == 0)
1478 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001479 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001480 }
1481
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001482 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001483 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001484
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001485 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001486 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001487
Lennart Poettering5008d582010-09-28 02:34:02 +02001488finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001489 while ((i = hashmap_steal_first(items)))
1490 item_free(i);
1491
Lennart Poettering17b90522011-02-14 21:55:06 +01001492 while ((i = hashmap_steal_first(globs)))
1493 item_free(i);
1494
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001495 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001496 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001497
Dave Reisnera2aced42013-07-24 11:10:05 -04001498 strv_free(include_prefixes);
1499
Lennart Poettering17b90522011-02-14 21:55:06 +01001500 set_free_free(unix_sockets);
1501
Lennart Poettering29003cf2010-10-19 19:36:45 +02001502 label_finish();
1503
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001504 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001505}