blob: d68693f829589d9c8b1c9596cc1a1221ef35e68f [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 Poettering849958d2014-06-10 23:02:40 +020056#include "copy.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020057
Andreas Jaeger01000472010-09-29 10:08:24 +020058/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020059 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020060 * properly owned directories beneath /tmp, /var/tmp, /run, which are
61 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020062
Michal Schmidt66ccd032011-12-15 21:31:14 +010063typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010064 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020065 CREATE_FILE = 'f',
66 TRUNCATE_FILE = 'F',
67 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 Poettering849958d2014-06-10 23:02:40 +020073 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010074
75 /* These ones take globs */
Lennart Poetteringcde684a2014-06-10 22:50:46 +020076 WRITE_FILE = 'w',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020077 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010078 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020079 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010080 RECURSIVE_REMOVE_PATH = 'R',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +020081 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt777b87e2011-12-16 18:27:35 +010082 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +020083 RECURSIVE_RELABEL_PATH = 'Z',
Michal Schmidt66ccd032011-12-15 21:31:14 +010084} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020085
86typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +010087 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020088
89 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +010090 char *argument;
Lennart Poettering5008d582010-09-28 02:34:02 +020091 uid_t uid;
92 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020093 mode_t mode;
94 usec_t age;
95
Lennart Poettering468d7262012-01-17 15:04:12 +010096 dev_t major_minor;
97
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020098 bool uid_set:1;
99 bool gid_set:1;
100 bool mode_set:1;
101 bool age_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200102
103 bool keep_first_level:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200104} Item;
105
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200106static bool arg_create = false;
107static bool arg_clean = false;
108static bool arg_remove = false;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500109static bool arg_boot = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200110
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200111static char **arg_include_prefixes = NULL;
112static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700113static char *arg_root = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100114
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100115static const char conf_file_dirs[] =
116 "/etc/tmpfiles.d\0"
117 "/run/tmpfiles.d\0"
118 "/usr/local/lib/tmpfiles.d\0"
119 "/usr/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200120#ifdef HAVE_SPLIT_USR
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100121 "/lib/tmpfiles.d\0"
Lennart Poettering3f2afb22012-07-20 16:24:55 +0200122#endif
Lennart Poetteringfabe5c02013-02-11 23:48:36 +0100123 ;
Dave Reisner91256702012-06-08 22:31:19 -0400124
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200125#define MAX_DEPTH 256
126
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200127static Hashmap *items = NULL, *globs = NULL;
128static Set *unix_sockets = NULL;
129
Michal Schmidt66ccd032011-12-15 21:31:14 +0100130static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200131 return IN_SET(t,
132 WRITE_FILE,
133 IGNORE_PATH,
134 IGNORE_DIRECTORY_PATH,
135 REMOVE_PATH,
136 RECURSIVE_REMOVE_PATH,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200137 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200138 RELABEL_PATH,
139 RECURSIVE_RELABEL_PATH);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100140}
141
142static struct Item* find_glob(Hashmap *h, const char *match) {
143 Item *j;
144 Iterator i;
145
146 HASHMAP_FOREACH(j, h, i)
147 if (fnmatch(j->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
148 return j;
149
150 return NULL;
151}
152
Lennart Poettering17b90522011-02-14 21:55:06 +0100153static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200154 _cleanup_fclose_ FILE *f = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100155 char line[LINE_MAX];
156
157 if (unix_sockets)
158 return;
159
160 /* We maintain a cache of the sockets we found in
161 * /proc/net/unix to speed things up a little. */
162
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100163 unix_sockets = set_new(string_hash_func, string_compare_func);
164 if (!unix_sockets)
Lennart Poettering17b90522011-02-14 21:55:06 +0100165 return;
166
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100167 f = fopen("/proc/net/unix", "re");
168 if (!f)
Lennart Poettering17b90522011-02-14 21:55:06 +0100169 return;
170
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100171 /* Skip header */
172 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100173 goto fail;
174
175 for (;;) {
176 char *p, *s;
177 int k;
178
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100179 if (!fgets(line, sizeof(line), f))
Lennart Poettering17b90522011-02-14 21:55:06 +0100180 break;
181
182 truncate_nl(line);
183
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100184 p = strchr(line, ':');
185 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100186 continue;
187
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100188 if (strlen(p) < 37)
189 continue;
190
191 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100192 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100193 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100194 p += strspn(p, WHITESPACE);
195
196 if (*p != '/')
197 continue;
198
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100199 s = strdup(p);
200 if (!s)
Lennart Poettering17b90522011-02-14 21:55:06 +0100201 goto fail;
202
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100203 path_kill_slashes(s);
204
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400205 k = set_consume(unix_sockets, s);
206 if (k < 0 && k != -EEXIST)
207 goto fail;
Lennart Poettering17b90522011-02-14 21:55:06 +0100208 }
209
210 return;
211
212fail:
213 set_free_free(unix_sockets);
214 unix_sockets = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100215}
216
217static bool unix_socket_alive(const char *fn) {
218 assert(fn);
219
220 load_unix_sockets();
221
222 if (unix_sockets)
223 return !!set_get(unix_sockets, (char*) fn);
224
225 /* We don't know, so assume yes */
226 return true;
227}
228
Kay Sievers99d680a2013-03-13 13:12:36 +0100229static int dir_is_mount_point(DIR *d, const char *subdir) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200230
231 union file_handle_union h = {
232 .handle.handle_bytes = MAX_HANDLE_SZ
233 };
234
Kay Sievers99d680a2013-03-13 13:12:36 +0100235 int mount_id_parent, mount_id;
236 int r_p, r;
237
Dave Reisner370c8602014-04-19 13:22:35 -0400238 r_p = name_to_handle_at(dirfd(d), ".", &h.handle, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100239 if (r_p < 0)
240 r_p = -errno;
241
Dave Reisner370c8602014-04-19 13:22:35 -0400242 h.handle.handle_bytes = MAX_HANDLE_SZ;
243 r = name_to_handle_at(dirfd(d), subdir, &h.handle, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100244 if (r < 0)
245 r = -errno;
246
247 /* got no handle; make no assumptions, return error */
248 if (r_p < 0 && r < 0)
249 return r_p;
250
251 /* got both handles; if they differ, it is a mount point */
252 if (r_p >= 0 && r >= 0)
253 return mount_id_parent != mount_id;
254
255 /* got only one handle; assume different mount points if one
256 * of both queries was not supported by the filesystem */
257 if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP)
258 return true;
259
260 /* return error */
261 if (r_p < 0)
262 return r_p;
263 return r;
264}
265
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200266static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100267 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200268 const char *p,
269 DIR *d,
270 const struct stat *ds,
271 usec_t cutoff,
272 dev_t rootdev,
273 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200274 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500275 bool keep_this_level) {
276
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200277 struct dirent *dent;
278 struct timespec times[2];
279 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200280 int r = 0;
281
282 while ((dent = readdir(d))) {
283 struct stat s;
284 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200285 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200286
287 if (streq(dent->d_name, ".") ||
288 streq(dent->d_name, ".."))
289 continue;
290
291 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200292 if (errno == ENOENT)
293 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200294
Kay Sieversca2f4172013-10-17 03:20:46 +0200295 /* FUSE, NFS mounts, SELinux might return EACCES */
296 if (errno == EACCES)
297 log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
298 else
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200299 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
Kay Sieversca2f4172013-10-17 03:20:46 +0200300 r = -errno;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200301 continue;
302 }
303
304 /* Stay on the same filesystem */
305 if (s.st_dev != rootdev)
306 continue;
307
Kay Sievers99d680a2013-03-13 13:12:36 +0100308 /* Try to detect bind mounts of the same filesystem instance; they
309 * do not differ in device major/minors. This type of query is not
310 * supported on all kernels or filesystem types though. */
311 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0)
312 continue;
313
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200314 /* Do not delete read-only files owned by root */
315 if (s.st_uid == 0 && !(s.st_mode & S_IWUSR))
316 continue;
317
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200318 sub_path = strjoin(p, "/", dent->d_name, NULL);
319 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700320 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200321 goto finish;
322 }
323
324 /* Is there an item configured for this path? */
325 if (hashmap_get(items, sub_path))
326 continue;
327
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100328 if (find_glob(globs, sub_path))
329 continue;
330
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200331 if (S_ISDIR(s.st_mode)) {
332
333 if (mountpoint &&
334 streq(dent->d_name, "lost+found") &&
335 s.st_uid == 0)
336 continue;
337
338 if (maxdepth <= 0)
339 log_warning("Reached max depth on %s.", sub_path);
340 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200341 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200342 int q;
343
Kay Sieverse5f3d1b2012-04-11 21:33:12 +0200344 sub_dir = xopendirat(dirfd(d), dent->d_name, O_NOFOLLOW|O_NOATIME);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200345 if (!sub_dir) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200346 if (errno != ENOENT) {
347 log_error("opendir(%s/%s) failed: %m", p, dent->d_name);
348 r = -errno;
349 }
350
351 continue;
352 }
353
Michal Sekletar78a92a52013-01-18 16:13:08 +0100354 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200355 if (q < 0)
356 r = q;
357 }
358
Lennart Poettering24f3a372012-06-20 09:05:50 +0200359 /* Note: if you are wondering why we don't
360 * support the sticky bit for excluding
361 * directories from cleaning like we do it for
362 * other file system objects: well, the sticky
363 * bit already has a meaning for directories,
364 * so we don't want to overload that. */
365
366 if (keep_this_level)
367 continue;
368
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200369 /* Ignore ctime, we change it when deleting */
370 age = MAX(timespec_load(&s.st_mtim),
371 timespec_load(&s.st_atim));
372 if (age >= cutoff)
373 continue;
374
Lukas Nykryna6187d42013-03-01 18:29:59 +0100375 if (i->type != IGNORE_DIRECTORY_PATH || !streq(dent->d_name, p)) {
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100376 log_debug("rmdir '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200377
Michal Sekletar78a92a52013-01-18 16:13:08 +0100378 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0) {
379 if (errno != ENOENT && errno != ENOTEMPTY) {
380 log_error("rmdir(%s): %m", sub_path);
381 r = -errno;
382 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200383 }
384 }
385
386 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100387 /* Skip files for which the sticky bit is
388 * set. These are semantics we define, and are
389 * unknown elsewhere. See XDG_RUNTIME_DIR
390 * specification for details. */
391 if (s.st_mode & S_ISVTX)
392 continue;
393
Lennart Poettering17b90522011-02-14 21:55:06 +0100394 if (mountpoint && S_ISREG(s.st_mode)) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200395 if (streq(dent->d_name, ".journal") &&
396 s.st_uid == 0)
397 continue;
398
399 if (streq(dent->d_name, "aquota.user") ||
400 streq(dent->d_name, "aquota.group"))
401 continue;
402 }
403
Lennart Poettering17b90522011-02-14 21:55:06 +0100404 /* Ignore sockets that are listed in /proc/net/unix */
405 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path))
406 continue;
407
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100408 /* Ignore device nodes */
409 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode))
410 continue;
411
Lennart Poettering24f3a372012-06-20 09:05:50 +0200412 /* Keep files on this level around if this is
413 * requested */
414 if (keep_this_level)
415 continue;
416
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200417 age = MAX3(timespec_load(&s.st_mtim),
418 timespec_load(&s.st_atim),
419 timespec_load(&s.st_ctim));
420
421 if (age >= cutoff)
422 continue;
423
Lennart Poettering9f6445e32013-12-24 16:39:37 +0100424 log_debug("unlink '%s'", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200425
426 if (unlinkat(dirfd(d), dent->d_name, 0) < 0) {
427 if (errno != ENOENT) {
428 log_error("unlink(%s): %m", sub_path);
429 r = -errno;
430 }
431 }
432
433 deleted = true;
434 }
435 }
436
437finish:
438 if (deleted) {
439 /* Restore original directory timestamps */
440 times[0] = ds->st_atim;
441 times[1] = ds->st_mtim;
442
443 if (futimens(dirfd(d), times) < 0)
444 log_error("utimensat(%s): %m", p);
445 }
446
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200447 return r;
448}
449
Lennart Poettering265ffa12013-09-17 16:33:30 -0500450static int item_set_perms_full(Item *i, const char *path, bool ignore_enoent) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200451 assert(i);
452 assert(path);
453
Michal Schmidt062e01b2011-12-16 18:00:11 +0100454 /* not using i->path directly because it may be a glob */
455 if (i->mode_set)
456 if (chmod(path, i->mode) < 0) {
Lennart Poettering265ffa12013-09-17 16:33:30 -0500457 if (errno != ENOENT || !ignore_enoent) {
458 log_error("chmod(%s) failed: %m", path);
459 return -errno;
460 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100461 }
462
463 if (i->uid_set || i->gid_set)
464 if (chown(path,
465 i->uid_set ? i->uid : (uid_t) -1,
466 i->gid_set ? i->gid : (gid_t) -1) < 0) {
467
Lennart Poettering265ffa12013-09-17 16:33:30 -0500468 if (errno != ENOENT || !ignore_enoent) {
469 log_error("chown(%s) failed: %m", path);
470 return -errno;
471 }
Michal Schmidt062e01b2011-12-16 18:00:11 +0100472 }
473
Lukas Nykrynf58ceb22014-01-09 18:00:50 +0100474 return label_fix(path, ignore_enoent, false);
Lennart Poettering265ffa12013-09-17 16:33:30 -0500475}
476
477static int item_set_perms(Item *i, const char *path) {
478 return item_set_perms_full(i, path, false);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100479}
480
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400481static int write_one_file(Item *i, const char *path) {
Lennart Poettering874f1942014-06-10 22:48:56 +0200482 int flags;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200483 int fd = -1;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400484 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200485 int r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400486
Lennart Poettering874f1942014-06-10 22:48:56 +0200487 assert(i);
488 assert(path);
489
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400490 flags = i->type == CREATE_FILE ? O_CREAT|O_APPEND :
491 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC : 0;
492
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200493 RUN_WITH_UMASK(0) {
494 label_context_set(path, S_IFREG);
495 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY|O_NOFOLLOW, i->mode);
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200496 label_context_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200497 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400498
499 if (fd < 0) {
500 if (i->type == WRITE_FILE && errno == ENOENT)
501 return 0;
502
503 log_error("Failed to create file %s: %m", path);
504 return -errno;
505 }
506
507 if (i->argument) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200508 _cleanup_free_ char *unescaped;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400509 ssize_t n;
510 size_t l;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400511
Dave Reisner54693d92012-09-15 12:58:49 -0400512 unescaped = cunescape(i->argument);
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100513 if (unescaped == NULL) {
Lennart Poettering03e334a2014-03-18 19:22:43 +0100514 safe_close(fd);
Dave Reisner54693d92012-09-15 12:58:49 -0400515 return log_oom();
Thomas Jarosch3785ba62012-12-25 13:46:46 +0100516 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400517
Dave Reisner54693d92012-09-15 12:58:49 -0400518 l = strlen(unescaped);
519 n = write(fd, unescaped, l);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400520
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400521 if (n < 0 || (size_t) n < l) {
522 log_error("Failed to write file %s: %s", path, n < 0 ? strerror(-n) : "Short write");
Lennart Poettering03e334a2014-03-18 19:22:43 +0100523 safe_close(fd);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400524 return n < 0 ? n : -EIO;
525 }
526 }
527
Lennart Poettering03e334a2014-03-18 19:22:43 +0100528 safe_close(fd);
Dave Reisner3612fbc2012-09-12 16:21:00 -0400529
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400530 if (stat(path, &st) < 0) {
531 log_error("stat(%s) failed: %m", path);
532 return -errno;
533 }
534
535 if (!S_ISREG(st.st_mode)) {
536 log_error("%s is not a file.", path);
537 return -EEXIST;
538 }
539
540 r = item_set_perms(i, path);
541 if (r < 0)
542 return r;
543
544 return 0;
545}
546
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200547static int item_set_perms_children(Item *i, const char *path) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200548 _cleanup_closedir_ DIR *d;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200549 int r = 0;
550
551 assert(i);
552 assert(path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100553
554 /* This returns the first error we run into, but nevertheless
555 * tries to go on */
556
557 d = opendir(path);
558 if (!d)
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200559 return errno == ENOENT || errno == ENOTDIR ? 0 : -errno;
Michal Schmidta8d88782011-12-15 23:11:07 +0100560
561 for (;;) {
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200562 _cleanup_free_ char *p = NULL;
Lennart Poettering7d5e9c02012-09-19 22:21:09 +0200563 struct dirent *de;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200564 int q;
Michal Schmidta8d88782011-12-15 23:11:07 +0100565
Florian Weimerd78096b2013-12-19 12:26:07 +0100566 errno = 0;
567 de = readdir(d);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200568 if (!de) {
569 if (errno != 0 && r == 0)
570 r = -errno;
571
Michal Schmidta8d88782011-12-15 23:11:07 +0100572 break;
573 }
574
Michal Schmidta8d88782011-12-15 23:11:07 +0100575 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
576 continue;
577
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200578 p = strjoin(path, "/", de->d_name, NULL);
579 if (!p)
580 return -ENOMEM;
Michal Schmidta8d88782011-12-15 23:11:07 +0100581
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200582 q = item_set_perms(i, p);
583 if (q < 0 && q != -ENOENT && r == 0)
584 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +0100585
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200586 if (IN_SET(de->d_type, DT_UNKNOWN, DT_DIR)) {
587 q = item_set_perms_children(i, p);
588 if (q < 0 && r == 0)
589 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +0100590 }
Michal Schmidta8d88782011-12-15 23:11:07 +0100591 }
592
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200593 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +0100594}
595
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200596static int item_set_perms_recursive(Item *i, const char *path) {
597 int r, q;
598
599 assert(i);
600 assert(path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100601
Michal Schmidt062e01b2011-12-16 18:00:11 +0100602 r = item_set_perms(i, path);
Michal Schmidta8d88782011-12-15 23:11:07 +0100603 if (r < 0)
604 return r;
605
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200606 q = item_set_perms_children(i, path);
607 if (q < 0 && r == 0)
608 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +0100609
610 return r;
611}
612
Michal Schmidt99e68c02011-12-15 23:45:26 +0100613static int glob_item(Item *i, int (*action)(Item *, const char *)) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200614 _cleanup_globfree_ glob_t g = {};
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200615 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100616 char **fn;
617
Michal Schmidt99e68c02011-12-15 23:45:26 +0100618 errno = 0;
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400619 k = glob(i->path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200620 if (k != 0 && k != GLOB_NOMATCH) {
621 if (errno == 0)
622 errno = EIO;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100623
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200624 log_error("glob(%s) failed: %m", i->path);
625 return -errno;
626 }
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400627
628 STRV_FOREACH(fn, g.gl_pathv) {
629 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200630 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -0400631 r = k;
Michal Schmidt99e68c02011-12-15 23:45:26 +0100632 }
633
Michal Schmidt99e68c02011-12-15 23:45:26 +0100634 return r;
635}
636
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200637static int create_item(Item *i) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200638 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +0200639 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200640
641 assert(i);
642
643 switch (i->type) {
644
645 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100646 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200647 case REMOVE_PATH:
648 case RECURSIVE_REMOVE_PATH:
649 return 0;
650
651 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100652 case TRUNCATE_FILE:
Dave Reisner1845fdd2012-09-27 20:48:13 -0400653 r = write_one_file(i, i->path);
654 if (r < 0)
655 return r;
656 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -0500657
Lennart Poettering849958d2014-06-10 23:02:40 +0200658 case COPY_FILES:
659 r = copy_tree(i->argument, i->path);
660 if (r < 0) {
661 log_error("Failed to copy files: %s", strerror(-r));
662 return r;
663 }
664
665 r = item_set_perms(i, i->path);
666 if (r < 0)
667 return r;
668
669 break;
670
Dave Reisnerd4e9eb92012-09-03 17:13:18 -0400671 case WRITE_FILE:
672 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100673 if (r < 0)
674 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200675
676 break;
677
678 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: {
Lennart Poetteringe26da2d2014-02-19 17:52:41 +0100735 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +0100736
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 label_context_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +0200740
Lennart Poettering468d7262012-01-17 15:04:12 +0100741 if (r < 0 && errno != EEXIST) {
742 log_error("symlink(%s, %s) failed: %m", i->argument, i->path);
743 return -errno;
744 }
745
746 r = readlink_malloc(i->path, &x);
747 if (r < 0) {
748 log_error("readlink(%s) failed: %s", i->path, strerror(-r));
749 return -errno;
750 }
751
752 if (!streq(i->argument, x)) {
Lennart Poettering9339db72014-06-11 00:12:21 +0200753 log_error("%s is not the right symlink.", i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +0100754 return -EEXIST;
755 }
756
Lennart Poettering468d7262012-01-17 15:04:12 +0100757 break;
758 }
759
760 case CREATE_BLOCK_DEVICE:
761 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700762 mode_t file_type;
763
764 if (have_effective_cap(CAP_MKNOD) == 0) {
765 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -0700766 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -0700767 that case to avoid noise, and we don't support
768 virtualized devices in containers anyway. */
769
770 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
771 return 0;
772 }
773
774 file_type = (i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +0100775
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200776 RUN_WITH_UMASK(0000) {
777 label_context_set(i->path, file_type);
778 r = mknod(i->path, i->mode | file_type, i->major_minor);
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200779 label_context_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +0200780 }
Lennart Poettering468d7262012-01-17 15:04:12 +0100781
782 if (r < 0 && errno != EEXIST) {
783 log_error("Failed to create device node %s: %m", i->path);
784 return -errno;
785 }
786
787 if (stat(i->path, &st) < 0) {
788 log_error("stat(%s) failed: %m", i->path);
789 return -errno;
790 }
791
Michal Schmidte7aee752012-06-14 16:01:19 +0200792 if ((st.st_mode & S_IFMT) != file_type) {
Lennart Poettering468d7262012-01-17 15:04:12 +0100793 log_error("%s is not a device node.", i->path);
794 return -EEXIST;
795 }
796
797 r = item_set_perms(i, i->path);
798 if (r < 0)
799 return r;
800
801 break;
802 }
803
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200804 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100805 case RELABEL_PATH:
806
807 r = glob_item(i, item_set_perms);
808 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +0200809 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +0100810 break;
811
Michal Schmidta8d88782011-12-15 23:11:07 +0100812 case RECURSIVE_RELABEL_PATH:
813
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200814 r = glob_item(i, item_set_perms_recursive);
Michal Schmidta8d88782011-12-15 23:11:07 +0100815 if (r < 0)
816 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200817
818 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200819 }
820
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200821 log_debug("%s created successfully.", i->path);
822
Michal Schmidtf05bc3f2011-12-15 23:44:23 +0100823 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200824}
825
Michal Schmidta0896122011-12-15 21:32:50 +0100826static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200827 int r;
828
829 assert(i);
830
831 switch (i->type) {
832
833 case CREATE_FILE:
834 case TRUNCATE_FILE:
835 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200836 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100837 case CREATE_SYMLINK:
838 case CREATE_BLOCK_DEVICE:
839 case CREATE_CHAR_DEVICE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200840 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100841 case IGNORE_DIRECTORY_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200842 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100843 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100844 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100845 case WRITE_FILE:
Lennart Poettering849958d2014-06-10 23:02:40 +0200846 case COPY_FILES:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200847 break;
848
849 case REMOVE_PATH:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100850 if (remove(instance) < 0 && errno != ENOENT) {
851 log_error("remove(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200852 return -errno;
853 }
854
855 break;
856
857 case TRUNCATE_DIRECTORY:
858 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +0200859 /* FIXME: we probably should use dir_cleanup() here
860 * instead of rm_rf() so that 'x' is honoured. */
Lennart Poetteringf56d5db2012-07-10 19:05:58 +0200861 r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
Lennart Poettering468d7262012-01-17 15:04:12 +0100862 if (r < 0 && r != -ENOENT) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100863 log_error("rm_rf(%s): %s", instance, strerror(-r));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200864 return r;
865 }
866
867 break;
868 }
869
870 return 0;
871}
872
Michal Schmidta0896122011-12-15 21:32:50 +0100873static int remove_item(Item *i) {
Michal Schmidt99e68c02011-12-15 23:45:26 +0100874 int r = 0;
875
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100876 assert(i);
877
878 switch (i->type) {
879
880 case CREATE_FILE:
881 case TRUNCATE_FILE:
882 case CREATE_DIRECTORY:
Lennart Poetteringee17ee72011-07-12 03:56:56 +0200883 case CREATE_FIFO:
Lennart Poettering468d7262012-01-17 15:04:12 +0100884 case CREATE_SYMLINK:
885 case CREATE_CHAR_DEVICE:
886 case CREATE_BLOCK_DEVICE:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100887 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100888 case IGNORE_DIRECTORY_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200889 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +0100890 case RELABEL_PATH:
Michal Schmidta8d88782011-12-15 23:11:07 +0100891 case RECURSIVE_RELABEL_PATH:
Lennart Poettering31ed59c2012-01-18 16:39:04 +0100892 case WRITE_FILE:
Lennart Poettering849958d2014-06-10 23:02:40 +0200893 case COPY_FILES:
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100894 break;
895
896 case REMOVE_PATH:
897 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +0100898 case RECURSIVE_REMOVE_PATH:
899 r = glob_item(i, remove_item_instance);
900 break;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100901 }
902
Michal Schmidt99e68c02011-12-15 23:45:26 +0100903 return r;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100904}
905
Michal Sekletar78a92a52013-01-18 16:13:08 +0100906static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200907 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100908 struct stat s, ps;
909 bool mountpoint;
910 int r;
911 usec_t cutoff, n;
912
913 assert(i);
914
915 if (!i->age_set)
916 return 0;
917
918 n = now(CLOCK_REALTIME);
919 if (n < i->age)
920 return 0;
921
922 cutoff = n - i->age;
923
924 d = opendir(instance);
925 if (!d) {
926 if (errno == ENOENT || errno == ENOTDIR)
927 return 0;
928
929 log_error("Failed to open directory %s: %m", i->path);
930 return -errno;
931 }
932
933 if (fstat(dirfd(d), &s) < 0) {
934 log_error("stat(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500935 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100936 }
937
938 if (!S_ISDIR(s.st_mode)) {
939 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500940 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100941 }
942
943 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0) {
944 log_error("stat(%s/..) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500945 return -errno;
Michal Sekletar78a92a52013-01-18 16:13:08 +0100946 }
947
948 mountpoint = s.st_dev != ps.st_dev ||
949 (s.st_dev == ps.st_dev && s.st_ino == ps.st_ino);
950
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -0500951 r = dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
952 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +0100953 return r;
954}
955
956static int clean_item(Item *i) {
957 int r = 0;
958
959 assert(i);
960
961 switch (i->type) {
962 case CREATE_DIRECTORY:
963 case TRUNCATE_DIRECTORY:
964 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +0200965 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +0100966 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
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001006static bool item_equal(Item *a, Item *b) {
1007 assert(a);
1008 assert(b);
1009
1010 if (!streq_ptr(a->path, b->path))
1011 return false;
1012
1013 if (a->type != b->type)
1014 return false;
1015
1016 if (a->uid_set != b->uid_set ||
1017 (a->uid_set && a->uid != b->uid))
1018 return false;
1019
1020 if (a->gid_set != b->gid_set ||
1021 (a->gid_set && a->gid != b->gid))
1022 return false;
1023
1024 if (a->mode_set != b->mode_set ||
1025 (a->mode_set && a->mode != b->mode))
1026 return false;
1027
1028 if (a->age_set != b->age_set ||
1029 (a->age_set && a->age != b->age))
1030 return false;
1031
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001032 if ((a->type == CREATE_FILE ||
1033 a->type == TRUNCATE_FILE ||
1034 a->type == WRITE_FILE ||
Lennart Poettering849958d2014-06-10 23:02:40 +02001035 a->type == CREATE_SYMLINK ||
1036 a->type == COPY_FILES) &&
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
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001051 STRV_FOREACH(prefix, arg_exclude_prefixes) {
Dave Reisner5c795112013-07-24 11:19:24 -04001052 if (path_startswith(path, *prefix))
1053 return false;
1054 }
Dave Reisnera2aced42013-07-24 11:10:05 -04001055
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001056 STRV_FOREACH(prefix, arg_include_prefixes) {
Dave Reisnera2aced42013-07-24 11:10:05 -04001057 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 */
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001063 return strv_length(arg_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
Lennart Poetteringcde684a2014-06-10 22:50:46 +02001076 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
1077 _cleanup_(item_freep) Item *i = NULL;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001078 Item *existing;
Michal Schmidt66ccd032011-12-15 21:31:14 +01001079 char type;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001080 Hashmap *h;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001081 int r, n = -1;
Lennart Poettering5008d582010-09-28 02:34:02 +02001082
1083 assert(fname);
1084 assert(line >= 1);
1085 assert(buffer);
1086
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001087 r = sscanf(buffer,
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001088 "%ms %ms %ms %ms %ms %ms %n",
1089 &action,
Lennart Poettering1731e342013-09-17 11:02:02 -05001090 &path,
Lennart Poetteringbd40a2d2011-01-22 02:18:59 +01001091 &mode,
1092 &user,
1093 &group,
Lennart Poettering468d7262012-01-17 15:04:12 +01001094 &age,
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001095 &n);
1096 if (r < 2) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001097 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001098 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02001099 }
1100
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001101 if (strlen(action) > 2 || (strlen(action) > 1 && action[1] != '!')) {
1102 log_error("[%s:%u] Unknown modifier '%s'", fname, line, action);
1103 return -EINVAL;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001104 } else if (strlen(action) > 1 && !arg_boot)
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001105 return 0;
1106
1107 type = action[0];
1108
Lennart Poettering1731e342013-09-17 11:02:02 -05001109 i = new0(Item, 1);
1110 if (!i)
1111 return log_oom();
1112
1113 r = specifier_printf(path, specifier_table, NULL, &i->path);
1114 if (r < 0) {
1115 log_error("[%s:%u] Failed to replace specifiers: %s", fname, line, path);
1116 return r;
1117 }
1118
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001119 if (n >= 0) {
1120 n += strspn(buffer+n, WHITESPACE);
1121 if (buffer[n] != 0 && (buffer[n] != '-' || buffer[n+1] != 0)) {
1122 i->argument = unquote(buffer+n, "\"");
Shawn Landden0d0f0c52012-07-25 14:55:59 -07001123 if (!i->argument)
1124 return log_oom();
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001125 }
1126 }
1127
Michal Schmidt777b87e2011-12-16 18:27:35 +01001128 switch(type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01001129
Michal Schmidt777b87e2011-12-16 18:27:35 +01001130 case CREATE_FILE:
1131 case TRUNCATE_FILE:
1132 case CREATE_DIRECTORY:
1133 case TRUNCATE_DIRECTORY:
1134 case CREATE_FIFO:
1135 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001136 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001137 case REMOVE_PATH:
1138 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001139 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001140 case RELABEL_PATH:
1141 case RECURSIVE_RELABEL_PATH:
1142 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01001143
1144 case CREATE_SYMLINK:
1145 if (!i->argument) {
1146 log_error("[%s:%u] Symlink file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001147 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001148 }
Lennart Poetteringcde684a2014-06-10 22:50:46 +02001149
Lennart Poettering468d7262012-01-17 15:04:12 +01001150 break;
1151
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001152 case WRITE_FILE:
1153 if (!i->argument) {
1154 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001155 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001156 }
1157 break;
1158
Lennart Poettering849958d2014-06-10 23:02:40 +02001159 case COPY_FILES:
1160 if (!i->argument) {
1161 log_error("[%s:%u] Copy files requires argument.", fname, line);
1162 return -EBADMSG;
1163 }
1164
1165 if (!path_is_absolute(i->argument)) {
1166 log_error("[%s:%u] Source path is not absolute.", fname, line);
1167 return -EBADMSG;
1168 }
1169
1170 path_kill_slashes(i->argument);
1171 break;
1172
Lennart Poettering468d7262012-01-17 15:04:12 +01001173 case CREATE_CHAR_DEVICE:
1174 case CREATE_BLOCK_DEVICE: {
1175 unsigned major, minor;
1176
1177 if (!i->argument) {
1178 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001179 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001180 }
1181
1182 if (sscanf(i->argument, "%u:%u", &major, &minor) != 2) {
1183 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 -04001184 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01001185 }
1186
1187 i->major_minor = makedev(major, minor);
1188 break;
1189 }
1190
Michal Schmidt777b87e2011-12-16 18:27:35 +01001191 default:
Michal Schmidta8d88782011-12-15 23:11:07 +01001192 log_error("[%s:%u] Unknown file type '%c'.", fname, line, type);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001193 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001194 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001195
Michal Schmidta8d88782011-12-15 23:11:07 +01001196 i->type = type;
Lennart Poettering5008d582010-09-28 02:34:02 +02001197
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001198 if (!path_is_absolute(i->path)) {
1199 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i->path);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001200 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001201 }
1202
1203 path_kill_slashes(i->path);
1204
Dave Reisnera2aced42013-07-24 11:10:05 -04001205 if (!should_include_path(i->path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001206 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001207
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001208 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02001209 char *p;
1210
1211 p = strappend(arg_root, i->path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001212 if (!p)
1213 return log_oom();
1214
1215 free(i->path);
1216 i->path = p;
1217 }
1218
Lennart Poettering5008d582010-09-28 02:34:02 +02001219 if (user && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001220 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02001221
Lennart Poetteringd05c5032012-07-16 12:34:54 +02001222 r = get_user_creds(&u, &i->uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02001223 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001224 log_error("[%s:%u] Unknown user '%s'.", fname, line, user);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001225 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001226 }
1227
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001228 i->uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001229 }
1230
1231 if (group && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02001232 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02001233
Lennart Poettering4b678342011-07-23 01:17:59 +02001234 r = get_group_creds(&g, &i->gid);
1235 if (r < 0) {
Lennart Poettering5008d582010-09-28 02:34:02 +02001236 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001237 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02001238 }
1239
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001240 i->gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001241 }
1242
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001243 if (mode && !streq(mode, "-")) {
1244 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02001245
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001246 if (sscanf(mode, "%o", &m) != 1) {
1247 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001248 return -ENOENT;
Lennart Poettering5008d582010-09-28 02:34:02 +02001249 }
1250
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001251 i->mode = m;
1252 i->mode_set = true;
1253 } else
Lennart Poettering468d7262012-01-17 15:04:12 +01001254 i->mode =
1255 i->type == CREATE_DIRECTORY ||
1256 i->type == TRUNCATE_DIRECTORY ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001257
1258 if (age && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02001259 const char *a = age;
1260
1261 if (*a == '~') {
1262 i->keep_first_level = true;
1263 a++;
1264 }
1265
Lennart Poettering7f602782013-04-02 20:38:16 +02001266 if (parse_sec(a, &i->age) < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001267 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001268 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02001269 }
1270
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001271 i->age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02001272 }
1273
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001274 h = needs_glob(i->type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01001275
Lennart Poettering468d7262012-01-17 15:04:12 +01001276 existing = hashmap_get(h, i->path);
1277 if (existing) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001278
1279 /* Two identical items are fine */
1280 if (!item_equal(existing, i))
1281 log_warning("Two or more conflicting lines for %s configured, ignoring.", i->path);
1282
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001283 return 0;
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02001284 }
1285
Lennart Poettering468d7262012-01-17 15:04:12 +01001286 r = hashmap_put(h, i->path, i);
1287 if (r < 0) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001288 log_error("Failed to insert item %s: %s", i->path, strerror(-r));
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001289 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001290 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001291
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001292 i = NULL; /* avoid cleanup */
Lennart Poettering5008d582010-09-28 02:34:02 +02001293
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04001294 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001295}
1296
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001297static int help(void) {
1298
Lennart Poettering522d4a42011-02-13 15:08:15 +01001299 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
1300 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001301 " -h --help Show this help\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001302 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001303 " --create Create marked files/directories\n"
1304 " --clean Clean up marked directories\n"
1305 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001306 " --boot Execute actions only safe at boot\n"
Dave Reisner5c795112013-07-24 11:19:24 -04001307 " --prefix=PATH Only apply rules that apply to paths with the specified prefix\n"
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001308 " --exclude-prefix=PATH Ignore rules that apply to paths with the specified prefix\n"
1309 " --root=PATH Operate on an alternate filesystem root\n",
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001310 program_invocation_short_name);
1311
1312 return 0;
1313}
1314
1315static int parse_argv(int argc, char *argv[]) {
1316
1317 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001318 ARG_VERSION = 0x100,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001319 ARG_CREATE,
1320 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001321 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001322 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04001323 ARG_PREFIX,
1324 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001325 ARG_ROOT,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001326 };
1327
1328 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04001329 { "help", no_argument, NULL, 'h' },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001330 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04001331 { "create", no_argument, NULL, ARG_CREATE },
1332 { "clean", no_argument, NULL, ARG_CLEAN },
1333 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001334 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04001335 { "prefix", required_argument, NULL, ARG_PREFIX },
1336 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001337 { "root", required_argument, NULL, ARG_ROOT },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001338 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001339 };
1340
1341 int c;
1342
1343 assert(argc >= 0);
1344 assert(argv);
1345
1346 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
1347
1348 switch (c) {
1349
1350 case 'h':
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001351 return help();
1352
1353 case ARG_VERSION:
1354 puts(PACKAGE_STRING);
1355 puts(SYSTEMD_FEATURES);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001356 return 0;
1357
1358 case ARG_CREATE:
1359 arg_create = true;
1360 break;
1361
1362 case ARG_CLEAN:
1363 arg_clean = true;
1364 break;
1365
1366 case ARG_REMOVE:
1367 arg_remove = true;
1368 break;
1369
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05001370 case ARG_BOOT:
1371 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05001372 break;
1373
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001374 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001375 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04001376 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001377 break;
1378
Dave Reisner5c795112013-07-24 11:19:24 -04001379 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001380 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04001381 return log_oom();
1382 break;
1383
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001384 case ARG_ROOT:
1385 arg_root = path_make_absolute_cwd(optarg);
1386 if (!arg_root)
1387 return log_oom();
1388 path_kill_slashes(arg_root);
1389 break;
1390
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001391 case '?':
1392 return -EINVAL;
1393
1394 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01001395 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001396 }
1397 }
1398
1399 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01001400 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001401 return -EINVAL;
1402 }
1403
1404 return 1;
1405}
1406
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001407static int read_config_file(const char *fn, bool ignore_enoent) {
Lennart Poettering1731e342013-09-17 11:02:02 -05001408 _cleanup_fclose_ FILE *f = NULL;
1409 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001410 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05001411 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001412 Item *i;
Lennart Poettering1731e342013-09-17 11:02:02 -05001413 int r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001414
1415 assert(fn);
1416
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001417 r = search_and_fopen_nulstr(fn, "re", arg_root, conf_file_dirs, &f);
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001418 if (r < 0) {
1419 if (ignore_enoent && r == -ENOENT)
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001420 return 0;
1421
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001422 log_error("Failed to open '%s', ignoring: %s", fn, strerror(-r));
1423 return r;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001424 }
1425
Lennart Poettering1731e342013-09-17 11:02:02 -05001426 FOREACH_LINE(line, f, break) {
1427 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001428 int k;
1429
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001430 v++;
1431
1432 l = strstrip(line);
1433 if (*l == '#' || *l == 0)
1434 continue;
1435
Lennart Poettering1731e342013-09-17 11:02:02 -05001436 k = parse_line(fn, v, l);
1437 if (k < 0 && r == 0)
1438 r = k;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001439 }
1440
Michal Sekletar78a92a52013-01-18 16:13:08 +01001441 /* we have to determine age parameter for each entry of type X */
1442 HASHMAP_FOREACH(i, globs, iterator) {
1443 Iterator iter;
1444 Item *j, *candidate_item = NULL;
1445
1446 if (i->type != IGNORE_DIRECTORY_PATH)
1447 continue;
1448
1449 HASHMAP_FOREACH(j, items, iter) {
1450 if (j->type != CREATE_DIRECTORY && j->type != TRUNCATE_DIRECTORY)
1451 continue;
1452
1453 if (path_equal(j->path, i->path)) {
1454 candidate_item = j;
1455 break;
1456 }
1457
1458 if ((!candidate_item && path_startswith(i->path, j->path)) ||
1459 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
1460 candidate_item = j;
1461 }
1462
1463 if (candidate_item) {
1464 i->age = candidate_item->age;
1465 i->age_set = true;
1466 }
1467 }
1468
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001469 if (ferror(f)) {
1470 log_error("Failed to read from file %s: %m", fn);
1471 if (r == 0)
1472 r = -EIO;
1473 }
1474
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001475 return r;
1476}
1477
Lennart Poettering5008d582010-09-28 02:34:02 +02001478int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001479 int r, k;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001480 Item *i;
1481 Iterator iterator;
Lennart Poettering5008d582010-09-28 02:34:02 +02001482
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01001483 r = parse_argv(argc, argv);
1484 if (r <= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001485 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
1486
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01001487 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02001488 log_parse_environment();
1489 log_open();
1490
Lennart Poettering4c126262011-08-01 20:52:18 +02001491 umask(0022);
1492
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001493 label_init(NULL);
Lennart Poettering5008d582010-09-28 02:34:02 +02001494
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001495 items = hashmap_new(string_hash_func, string_compare_func);
1496 globs = hashmap_new(string_hash_func, string_compare_func);
1497
1498 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001499 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001500 goto finish;
1501 }
1502
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001503 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02001504
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001505 if (optind < argc) {
1506 int j;
Lennart Poettering5008d582010-09-28 02:34:02 +02001507
Dave Reisner91256702012-06-08 22:31:19 -04001508 for (j = optind; j < argc; j++) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001509 k = read_config_file(argv[j], false);
1510 if (k < 0 && r == 0)
1511 r = k;
Dave Reisner91256702012-06-08 22:31:19 -04001512 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001513
Lennart Poetteringfba6e682011-02-13 14:00:54 +01001514 } else {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001515 _cleanup_strv_free_ char **files = NULL;
1516 char **f;
Lennart Poettering5008d582010-09-28 02:34:02 +02001517
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001518 r = conf_files_list_nulstr(&files, ".conf", arg_root, conf_file_dirs);
Kay Sievers44143302011-04-28 23:51:24 +02001519 if (r < 0) {
Kay Sievers44143302011-04-28 23:51:24 +02001520 log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r));
1521 goto finish;
1522 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001523
Kay Sievers772f8372011-04-25 21:38:21 +02001524 STRV_FOREACH(f, files) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001525 k = read_config_file(*f, true);
1526 if (k < 0 && r == 0)
1527 r = k;
Lennart Poettering5008d582010-09-28 02:34:02 +02001528 }
Lennart Poettering5008d582010-09-28 02:34:02 +02001529 }
1530
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001531 HASHMAP_FOREACH(i, globs, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001532 process_item(i);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001533
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001534 HASHMAP_FOREACH(i, items, iterator)
Lennart Poettering21bdae12011-07-02 01:44:49 +02001535 process_item(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001536
Lennart Poettering5008d582010-09-28 02:34:02 +02001537finish:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001538 while ((i = hashmap_steal_first(items)))
1539 item_free(i);
1540
Lennart Poettering17b90522011-02-14 21:55:06 +01001541 while ((i = hashmap_steal_first(globs)))
1542 item_free(i);
1543
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001544 hashmap_free(items);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001545 hashmap_free(globs);
Lennart Poettering5008d582010-09-28 02:34:02 +02001546
Lennart Poettering7bc040f2014-06-11 01:26:28 +02001547 free(arg_include_prefixes);
1548 free(arg_exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07001549 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04001550
Lennart Poettering17b90522011-02-14 21:55:06 +01001551 set_free_free(unix_sockets);
1552
Lennart Poettering29003cf2010-10-19 19:36:45 +02001553 label_finish();
1554
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01001555 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02001556}