blob: b56b7ac963c48aff0d9241012d6d2a0d838445ca [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek53e1b682017-11-18 17:09:20 +01001/* SPDX-License-Identifier: LGPL-2.1+ */
Lennart Poettering5008d582010-09-28 02:34:02 +02002/***
3 This file is part of systemd.
4
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02005 Copyright 2010 Lennart Poettering, Kay Sievers
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05006 Copyright 2015 Zbigniew Jędrzejewski-Szmek
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
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020022#include <errno.h>
23#include <fcntl.h>
24#include <fnmatch.h>
25#include <getopt.h>
26#include <glob.h>
27#include <limits.h>
28#include <linux/fs.h>
29#include <stdbool.h>
30#include <stddef.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020031#include <stdio.h>
32#include <stdlib.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020033#include <string.h>
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -050034#include <sys/stat.h>
Maciej Wereskiebf4e802014-12-04 10:32:10 +010035#include <sys/xattr.h>
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +010036#include <sysexits.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020037#include <time.h>
38#include <unistd.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020039
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +010040#include "sd-path.h"
41
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020042#include "acl-util.h"
Lennart Poetteringb5efdb82015-10-27 03:01:06 +010043#include "alloc-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020044#include "btrfs-util.h"
Lennart Poettering430f0182015-10-26 23:32:16 +010045#include "capability-util.h"
Lennart Poetteringc8b30942015-10-26 20:39:23 +010046#include "chattr-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020047#include "conf-files.h"
48#include "copy.h"
Lennart Poetteringa0f29c72015-11-03 12:26:12 +010049#include "def.h"
Reverend Homer8fb3f002016-12-09 12:04:30 +030050#include "dirent-util.h"
Lennart Poettering4f5dd392015-10-23 18:52:53 +020051#include "escape.h"
Lennart Poettering3ffd4af2015-10-25 13:14:12 +010052#include "fd-util.h"
Lennart Poettering0d39fa92015-10-26 18:05:03 +010053#include "fileio.h"
Zbigniew Jędrzejewski-Szmekf97b34a2016-11-07 10:14:59 -050054#include "format-util.h"
Lennart Poetteringf4f15632015-10-26 21:16:26 +010055#include "fs-util.h"
Lennart Poettering7d50b322015-10-27 01:48:17 +010056#include "glob-util.h"
Lennart Poetteringc0044932015-10-25 14:08:25 +010057#include "io-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020058#include "label.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020059#include "log.h"
Dave Reisner54693d92012-09-15 12:58:49 -040060#include "macro.h"
Zbigniew Jędrzejewski-Szmekd39efe72013-03-13 20:20:54 -040061#include "missing.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020062#include "mkdir.h"
Lennart Poettering4e036b72015-10-27 13:45:00 +010063#include "mount-util.h"
Lennart Poettering6bedfcb2015-10-26 16:18:16 +010064#include "parse-util.h"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +010065#include "path-lookup.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020066#include "path-util.h"
Lennart Poetteringc6878632015-04-04 11:52:57 +020067#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010068#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020069#include "set.h"
70#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010071#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010072#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010073#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020074#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020075#include "strv.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010076#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010077#include "user-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020078#include "util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020079
Andreas Jaeger01000472010-09-29 10:08:24 +020080/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020081 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020082 * properly owned directories beneath /tmp, /var/tmp, /run, which are
83 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020084
Michal Schmidt66ccd032011-12-15 21:31:14 +010085typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010086 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020087 CREATE_FILE = 'f',
88 TRUNCATE_FILE = 'F',
89 CREATE_DIRECTORY = 'd',
90 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010091 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020092 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
93 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020094 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010095 CREATE_SYMLINK = 'L',
96 CREATE_CHAR_DEVICE = 'c',
97 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020098 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010099
100 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +0200101 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400102 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500103 SET_XATTR = 't',
104 RECURSIVE_SET_XATTR = 'T',
105 SET_ACL = 'a',
106 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200107 SET_ATTRIBUTE = 'h',
108 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200109 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +0100110 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200111 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +0100112 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +0100113 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200114 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200115 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +0100116} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200117
118typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100119 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200120
121 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100122 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100123 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200124#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500125 acl_t acl_access;
126 acl_t acl_default;
127#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200128 uid_t uid;
129 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200130 mode_t mode;
131 usec_t age;
132
Lennart Poettering468d7262012-01-17 15:04:12 +0100133 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200134 unsigned attribute_value;
135 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100136
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200137 bool uid_set:1;
138 bool gid_set:1;
139 bool mode_set:1;
140 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200141 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200142 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200143
144 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200145
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200146 bool force:1;
147
Lennart Poettering1910cd02014-06-11 01:37:35 +0200148 bool done:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200149} Item;
150
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500151typedef struct ItemArray {
152 Item *items;
153 size_t count;
154 size_t size;
155} ItemArray;
156
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100157typedef enum DirectoryType {
158 DIRECTORY_RUNTIME = 0,
159 DIRECTORY_STATE,
160 DIRECTORY_CACHE,
161 DIRECTORY_LOGS,
162 _DIRECTORY_TYPE_MAX,
163} DirectoryType;
164
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100165static bool arg_user = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200166static bool arg_create = false;
167static bool arg_clean = false;
168static bool arg_remove = false;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500169static bool arg_boot = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200170
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200171static char **arg_include_prefixes = NULL;
172static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700173static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100174static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100175
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200176#define MAX_DEPTH 256
177
Lennart Poetteringef43a392015-04-22 18:18:56 +0200178static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200179static Set *unix_sockets = NULL;
180
Franck Bui4cef1922017-11-16 11:27:29 +0100181static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100182static int specifier_directory(char specifier, void *data, void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100183
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200184static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100185 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100186 { 'b', specifier_boot_id, NULL },
187 { 'H', specifier_host_name, NULL },
188 { 'v', specifier_kernel_release, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100189
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100190 { 'U', specifier_user_id, NULL },
191 { 'u', specifier_user_name, NULL },
192 { 'h', specifier_user_home, NULL },
193 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
194 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
195 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
196 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200197 {}
198};
199
Franck Bui4cef1922017-11-16 11:27:29 +0100200static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret) {
201 int r;
202
Franck Buid8dab752018-01-10 23:28:44 +0100203 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
204 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100205 * gracefully. */
206
207 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100208 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100209 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100210
211 return r;
212}
213
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100214static int specifier_directory(char specifier, void *data, void *userdata, char **ret) {
215 struct table_entry {
216 uint64_t type;
217 const char *suffix;
218 };
219
220 static const struct table_entry paths_system[] = {
221 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
222 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
223 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
224 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
225 };
226
227 static const struct table_entry paths_user[] = {
228 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
229 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
230 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
231 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
232 };
233
234 unsigned i;
235 const struct table_entry *paths;
236
237 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
238 paths = arg_user ? paths_user : paths_system;
239
240 i = PTR_TO_UINT(data);
241 assert(i < ELEMENTSOF(paths_system));
242
243 return sd_path_home(paths[i].type, paths[i].suffix, ret);
244}
245
Franck Bui4cef1922017-11-16 11:27:29 +0100246static int log_unresolvable_specifier(const char *filename, unsigned line) {
247 static bool notified = false;
248
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100249 /* In system mode, this is called when /etc is not fully initialized (e.g.
250 * in a chroot environment) where some specifiers are unresolvable. In user
251 * mode, this is called when some variables are not defined. These cases are
252 * not considered as an error so log at LOG_NOTICE only for the first time
253 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100254
255 log_full(notified ? LOG_DEBUG : LOG_NOTICE,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100256 "[%s:%u] Failed to resolve specifier: %s, skipping",
257 filename, line,
258 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100259
260 if (!notified)
261 log_notice("All rules containing unresolvable specifiers will be skipped.");
262
263 notified = true;
264 return 0;
265}
266
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100267static int user_config_paths(char*** ret) {
268 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
269 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
270 _cleanup_strv_free_ char **res = NULL;
271 int r;
272
273 r = xdg_user_dirs(&config_dirs, &data_dirs);
274 if (r < 0)
275 return r;
276
277 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
278 if (r < 0 && r != -ENXIO)
279 return r;
280
281 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
282 if (r < 0 && r != -ENXIO)
283 return r;
284
285 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
286 if (r < 0 && r != -ENXIO)
287 return r;
288
289 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
290 if (r < 0)
291 return r;
292
293 r = strv_extend(&res, persistent_config);
294 if (r < 0)
295 return r;
296
297 r = strv_extend(&res, runtime_config);
298 if (r < 0)
299 return r;
300
301 r = strv_extend(&res, data_home);
302 if (r < 0)
303 return r;
304
305 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
306 if (r < 0)
307 return r;
308
309 r = path_strv_make_absolute_cwd(res);
310 if (r < 0)
311 return r;
312
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100313 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100314 return 0;
315}
316
Michal Schmidt66ccd032011-12-15 21:31:14 +0100317static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200318 return IN_SET(t,
319 WRITE_FILE,
320 IGNORE_PATH,
321 IGNORE_DIRECTORY_PATH,
322 REMOVE_PATH,
323 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400324 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200325 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200326 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500327 RECURSIVE_RELABEL_PATH,
328 SET_XATTR,
329 RECURSIVE_SET_XATTR,
330 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200331 RECURSIVE_SET_ACL,
332 SET_ATTRIBUTE,
333 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100334}
335
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500336static bool takes_ownership(ItemType t) {
337 return IN_SET(t,
338 CREATE_FILE,
339 TRUNCATE_FILE,
340 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400341 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500342 TRUNCATE_DIRECTORY,
343 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200344 CREATE_SUBVOLUME_INHERIT_QUOTA,
345 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500346 CREATE_FIFO,
347 CREATE_SYMLINK,
348 CREATE_CHAR_DEVICE,
349 CREATE_BLOCK_DEVICE,
350 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500351 WRITE_FILE,
352 IGNORE_PATH,
353 IGNORE_DIRECTORY_PATH,
354 REMOVE_PATH,
355 RECURSIVE_REMOVE_PATH);
356}
357
Lennart Poetteringef43a392015-04-22 18:18:56 +0200358static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500359 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100360 Iterator i;
361
Lennart Poetteringef43a392015-04-22 18:18:56 +0200362 ORDERED_HASHMAP_FOREACH(j, h, i) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500363 unsigned n;
364
365 for (n = 0; n < j->count; n++) {
366 Item *item = j->items + n;
367
368 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
369 return item;
370 }
371 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100372
373 return NULL;
374}
375
Lennart Poettering17b90522011-02-14 21:55:06 +0100376static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200377 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100378 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100379
380 if (unix_sockets)
381 return;
382
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100383 /* We maintain a cache of the sockets we found in /proc/net/unix to speed things up a little. */
Lennart Poettering17b90522011-02-14 21:55:06 +0100384
Lennart Poettering548f6932018-02-08 18:58:35 +0100385 unix_sockets = set_new(&path_hash_ops);
386 if (!unix_sockets) {
387 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100388 return;
Lennart Poettering548f6932018-02-08 18:58:35 +0100389 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100390
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100391 f = fopen("/proc/net/unix", "re");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100392 if (!f) {
393 log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
394 "Failed to open /proc/net/unix, ignoring: %m");
395 goto fail;
396 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100397
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100398 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100399 r = read_line(f, LONG_LINE_MAX, NULL);
400 if (r < 0) {
401 log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100402 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100403 }
404 if (r == 0) {
405 log_warning("Premature end of file reading /proc/net/unix.");
406 goto fail;
407 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100408
409 for (;;) {
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100410 _cleanup_free_ char *line = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100411 char *p, *s;
Lennart Poettering17b90522011-02-14 21:55:06 +0100412
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100413 r = read_line(f, LONG_LINE_MAX, &line);
414 if (r < 0) {
415 log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
416 goto fail;
417 }
418 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100419 break;
420
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100421 p = strchr(line, ':');
422 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100423 continue;
424
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100425 if (strlen(p) < 37)
426 continue;
427
428 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100429 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100430 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100431 p += strspn(p, WHITESPACE);
432
433 if (*p != '/')
434 continue;
435
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100436 s = strdup(p);
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100437 if (!s) {
438 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100439 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100440 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100441
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100442 path_kill_slashes(s);
443
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100444 r = set_consume(unix_sockets, s);
445 if (r < 0 && r != -EEXIST) {
446 log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400447 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100448 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100449 }
450
451 return;
452
453fail:
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100454 unix_sockets = set_free_free(unix_sockets);
Lennart Poettering17b90522011-02-14 21:55:06 +0100455}
456
457static bool unix_socket_alive(const char *fn) {
458 assert(fn);
459
460 load_unix_sockets();
461
462 if (unix_sockets)
463 return !!set_get(unix_sockets, (char*) fn);
464
465 /* We don't know, so assume yes */
466 return true;
467}
468
Kay Sievers99d680a2013-03-13 13:12:36 +0100469static int dir_is_mount_point(DIR *d, const char *subdir) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200470
Kay Sievers99d680a2013-03-13 13:12:36 +0100471 int mount_id_parent, mount_id;
472 int r_p, r;
473
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100474 r_p = name_to_handle_at_loop(dirfd(d), ".", NULL, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100475 if (r_p < 0)
476 r_p = -errno;
477
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100478 r = name_to_handle_at_loop(dirfd(d), subdir, NULL, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100479 if (r < 0)
480 r = -errno;
481
482 /* got no handle; make no assumptions, return error */
483 if (r_p < 0 && r < 0)
484 return r_p;
485
486 /* got both handles; if they differ, it is a mount point */
487 if (r_p >= 0 && r >= 0)
488 return mount_id_parent != mount_id;
489
490 /* got only one handle; assume different mount points if one
491 * of both queries was not supported by the filesystem */
Yu Watanabe4c701092017-10-04 23:01:32 +0900492 if (IN_SET(r_p, -ENOSYS, -EOPNOTSUPP) || IN_SET(r, -ENOSYS, -EOPNOTSUPP))
Kay Sievers99d680a2013-03-13 13:12:36 +0100493 return true;
494
495 /* return error */
496 if (r_p < 0)
497 return r_p;
498 return r;
499}
500
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500501static DIR* xopendirat_nomod(int dirfd, const char *path) {
502 DIR *dir;
503
504 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700505 if (dir)
506 return dir;
507
508 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
509 if (errno != EPERM)
510 return NULL;
511
512 dir = xopendirat(dirfd, path, O_NOFOLLOW);
513 if (!dir)
514 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500515
516 return dir;
517}
518
519static DIR* opendir_nomod(const char *path) {
520 return xopendirat_nomod(AT_FDCWD, path);
521}
522
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200523static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100524 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200525 const char *p,
526 DIR *d,
527 const struct stat *ds,
528 usec_t cutoff,
529 dev_t rootdev,
530 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200531 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500532 bool keep_this_level) {
533
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200534 struct dirent *dent;
535 struct timespec times[2];
536 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200537 int r = 0;
538
Reverend Homer8fb3f002016-12-09 12:04:30 +0300539 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200540 struct stat s;
541 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200542 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200543
Lennart Poettering49bfc872017-02-02 00:06:18 +0100544 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200545 continue;
546
547 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200548 if (errno == ENOENT)
549 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200550
Kay Sieversca2f4172013-10-17 03:20:46 +0200551 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100552 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
553 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200554 continue;
555 }
556
557 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500558 if (s.st_dev != rootdev) {
559 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200560 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500561 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200562
Kay Sievers99d680a2013-03-13 13:12:36 +0100563 /* Try to detect bind mounts of the same filesystem instance; they
564 * do not differ in device major/minors. This type of query is not
565 * supported on all kernels or filesystem types though. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500566 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0) {
567 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.",
568 p, dent->d_name);
Kay Sievers99d680a2013-03-13 13:12:36 +0100569 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500570 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100571
Zbigniew Jędrzejewski-Szmek605405c2016-10-23 11:43:27 -0400572 sub_path = strjoin(p, "/", dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200573 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700574 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200575 goto finish;
576 }
577
578 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200579 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500580 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200581 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500582 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200583
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500584 if (find_glob(globs, sub_path)) {
585 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100586 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500587 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100588
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200589 if (S_ISDIR(s.st_mode)) {
590
591 if (mountpoint &&
592 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500593 s.st_uid == 0) {
594 log_debug("Ignoring \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200595 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500596 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200597
598 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500599 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200600 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200601 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200602 int q;
603
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500604 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200605 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500606 if (errno != ENOENT)
607 r = log_error_errno(errno, "opendir(%s) failed: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200608
609 continue;
610 }
611
Michal Sekletar78a92a52013-01-18 16:13:08 +0100612 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200613 if (q < 0)
614 r = q;
615 }
616
Lennart Poettering24f3a372012-06-20 09:05:50 +0200617 /* Note: if you are wondering why we don't
618 * support the sticky bit for excluding
619 * directories from cleaning like we do it for
620 * other file system objects: well, the sticky
621 * bit already has a meaning for directories,
622 * so we don't want to overload that. */
623
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500624 if (keep_this_level) {
625 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200626 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500627 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200628
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200629 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500630 age = timespec_load(&s.st_mtim);
631 if (age >= cutoff) {
632 char a[FORMAT_TIMESTAMP_MAX];
633 /* Follows spelling in stat(1). */
634 log_debug("Directory \"%s\": modify time %s is too new.",
635 sub_path,
636 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200637 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500638 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200639
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500640 age = timespec_load(&s.st_atim);
641 if (age >= cutoff) {
642 char a[FORMAT_TIMESTAMP_MAX];
643 log_debug("Directory \"%s\": access time %s is too new.",
644 sub_path,
645 format_timestamp_us(a, sizeof(a), age));
646 continue;
647 }
648
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500649 log_debug("Removing directory \"%s\".", sub_path);
650 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100651 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
652 r = log_error_errno(errno, "rmdir(%s): %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200653
654 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100655 /* Skip files for which the sticky bit is
656 * set. These are semantics we define, and are
657 * unknown elsewhere. See XDG_RUNTIME_DIR
658 * specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500659 if (s.st_mode & S_ISVTX) {
660 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100661 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200662 }
663
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500664 if (mountpoint && S_ISREG(s.st_mode))
Zbigniew Jędrzejewski-Szmek1542c012015-06-13 13:14:37 -0400665 if (s.st_uid == 0 && STR_IN_SET(dent->d_name,
666 ".journal",
667 "aquota.user",
668 "aquota.group")) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500669 log_debug("Skipping \"%s\".", sub_path);
670 continue;
671 }
672
Lennart Poettering17b90522011-02-14 21:55:06 +0100673 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500674 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
675 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100676 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500677 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100678
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100679 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500680 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
681 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100682 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500683 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100684
Lennart Poettering24f3a372012-06-20 09:05:50 +0200685 /* Keep files on this level around if this is
686 * requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500687 if (keep_this_level) {
688 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200689 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200690 }
691
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500692 age = timespec_load(&s.st_mtim);
693 if (age >= cutoff) {
694 char a[FORMAT_TIMESTAMP_MAX];
695 /* Follows spelling in stat(1). */
696 log_debug("File \"%s\": modify time %s is too new.",
697 sub_path,
698 format_timestamp_us(a, sizeof(a), age));
699 continue;
700 }
701
702 age = timespec_load(&s.st_atim);
703 if (age >= cutoff) {
704 char a[FORMAT_TIMESTAMP_MAX];
705 log_debug("File \"%s\": access time %s is too new.",
706 sub_path,
707 format_timestamp_us(a, sizeof(a), age));
708 continue;
709 }
710
711 age = timespec_load(&s.st_ctim);
712 if (age >= cutoff) {
713 char a[FORMAT_TIMESTAMP_MAX];
714 log_debug("File \"%s\": change time %s is too new.",
715 sub_path,
716 format_timestamp_us(a, sizeof(a), age));
717 continue;
718 }
719
720 log_debug("unlink \"%s\"", sub_path);
721
722 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
723 if (errno != ENOENT)
724 r = log_error_errno(errno, "unlink(%s): %m", sub_path);
725
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200726 deleted = true;
727 }
728 }
729
730finish:
731 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500732 usec_t age1, age2;
733 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
734
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200735 /* Restore original directory timestamps */
736 times[0] = ds->st_atim;
737 times[1] = ds->st_mtim;
738
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500739 age1 = timespec_load(&ds->st_atim);
740 age2 = timespec_load(&ds->st_mtim);
741 log_debug("Restoring access and modification time on \"%s\": %s, %s",
742 p,
743 format_timestamp_us(a, sizeof(a), age1),
744 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200745 if (futimens(dirfd(d), times) < 0)
Michal Schmidt56f64d92014-11-28 19:29:59 +0100746 log_error_errno(errno, "utimensat(%s): %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200747 }
748
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200749 return r;
750}
751
Lennart Poettering5579f852018-01-23 14:03:34 +0100752static bool dangerous_hardlinks(void) {
753 _cleanup_free_ char *value = NULL;
754 static int cached = -1;
755 int r;
756
757 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
758 * what the upstream default is. */
759
760 if (cached >= 0)
761 return cached;
762
763 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
764 if (r < 0) {
765 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
766 return true;
767 }
768
769 r = parse_boolean(value);
770 if (r < 0) {
771 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
772 return true;
773 }
774
775 cached = r == 0;
776 return cached;
777}
778
Franck Bui774f79b2018-03-02 16:13:07 +0100779static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100780 assert(st);
781
782 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
783}
784
Franck Bui936f6bd2018-03-02 17:19:32 +0100785static int fd_set_perms(Item *i, int fd, const struct stat *st) {
786 _cleanup_free_ char *path = NULL;
787 int r;
788
789 assert(i);
790 assert(fd);
791
792 r = fd_get_path(fd, &path);
793 if (r < 0)
794 return r;
795
796 if (!i->mode_set && !i->uid_set && !i->gid_set)
797 goto shortcut;
798
799 if (hardlink_vulnerable(st)) {
800 log_error("Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
801 return -EPERM;
802 }
803
804 if (i->mode_set) {
805 if (S_ISLNK(st->st_mode))
806 log_debug("Skipping mode fix for symlink %s.", path);
807 else {
808 mode_t m = i->mode;
809
810 if (i->mask_perms) {
811 if (!(st->st_mode & 0111))
812 m &= ~0111;
813 if (!(st->st_mode & 0222))
814 m &= ~0222;
815 if (!(st->st_mode & 0444))
816 m &= ~0444;
817 if (!S_ISDIR(st->st_mode))
818 m &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
819 }
820
821 if (m == (st->st_mode & 07777))
822 log_debug("\"%s\" has correct mode %o already.", path, st->st_mode);
823 else {
Lennart Poettering34d26772018-03-23 15:41:33 +0100824 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +0100825
826 log_debug("Changing \"%s\" to mode %o.", path, m);
827
828 /* fchmodat() still doesn't have AT_EMPTY_PATH flag. */
829 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
830
831 if (chmod(procfs_path, m) < 0)
832 return log_error_errno(errno, "chmod() of %s via %s failed: %m", path, procfs_path);
833 }
834 }
835 }
836
837 if ((i->uid_set && i->uid != st->st_uid) ||
838 (i->gid_set && i->gid != st->st_gid)) {
839 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
840 path,
841 i->uid_set ? i->uid : UID_INVALID,
842 i->gid_set ? i->gid : GID_INVALID);
843
844 if (fchownat(fd,
845 "",
846 i->uid_set ? i->uid : UID_INVALID,
847 i->gid_set ? i->gid : GID_INVALID,
848 AT_EMPTY_PATH) < 0)
849 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
850 }
851
852shortcut:
853 return label_fix(path, false, false);
854}
855
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500856static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200857 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200858 struct stat st;
Michael Olbrich1924a972014-08-17 09:45:00 +0200859
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200860 assert(i);
861 assert(path);
862
Alexander Kuleshovc4b69152016-03-02 00:25:09 +0600863 fd = open(path, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200864 if (fd < 0) {
865 int level = LOG_ERR, r = -errno;
866
867 /* Option "e" operates only on existing objects. Do not
868 * print errors about non-existent files or directories */
869 if (i->type == EMPTY_DIRECTORY && errno == ENOENT) {
870 level = LOG_DEBUG;
871 r = 0;
872 }
873
874 log_full_errno(level, errno, "Adjusting owner and mode for %s failed: %m", path);
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200875 return r;
876 }
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200877
Franck Bui56114d42018-03-02 16:25:56 +0100878 if (fstat(fd, &st) < 0)
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200879 return log_error_errno(errno, "Failed to fstat() file %s: %m", path);
880
Franck Bui936f6bd2018-03-02 17:19:32 +0100881 return fd_set_perms(i, fd, &st);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100882}
883
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200884static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100885 const char *p;
886 int r;
887
888 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500889 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100890
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100891 p = i->argument;
892
Lennart Poettering4034a062015-03-23 18:55:36 +0700893 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100894 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700895
Richard Maw12ba2c42015-06-23 16:26:49 +0000896 r = extract_first_word(&p, &xattr, NULL, EXTRACT_QUOTES|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700897 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200898 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700899 if (r <= 0)
900 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500901
Franck Bui4cef1922017-11-16 11:27:29 +0100902 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100903 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700904 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100905 continue;
906 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500907
Lennart Poettering4034a062015-03-23 18:55:36 +0700908 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200909 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100910 continue;
911 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500912
Lennart Poettering4034a062015-03-23 18:55:36 +0700913 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100914 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500915
Lennart Poettering4034a062015-03-23 18:55:36 +0700916 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100917 }
918
Lennart Poettering4034a062015-03-23 18:55:36 +0700919 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100920}
921
Franck Bui936f6bd2018-03-02 17:19:32 +0100922static int fd_set_xattrs(Item *i, int fd, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100923 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +0100924 _cleanup_free_ char *path = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100925 char **name, **value;
Franck Bui936f6bd2018-03-02 17:19:32 +0100926 int r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100927
928 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100929 assert(fd);
930
931 r = fd_get_path(fd, &path);
932 if (r < 0)
933 return r;
934
935 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100936
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100937 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200938 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100939 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400940 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
941 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100942 }
943 return 0;
944}
945
Franck Bui936f6bd2018-03-02 17:19:32 +0100946static int path_set_xattrs(Item *i, const char *path) {
947 _cleanup_close_ int fd = -1;
948
949 assert(i);
950 assert(path);
951
952 fd = open(path, O_CLOEXEC|O_NOFOLLOW|O_PATH);
953 if (fd < 0)
954 return log_error_errno(errno, "Cannot open '%s': %m", path);
955
956 return fd_set_xattrs(i, fd, NULL);
957}
958
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200959static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200960#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500961 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500962
963 assert(item);
964
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500965 /* If force (= modify) is set, we will not modify the acl
966 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200967
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500968 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500969 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700970 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500971#else
972 log_warning_errno(ENOSYS, "ACLs are not supported. Ignoring");
973#endif
974
975 return 0;
976}
977
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200978#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200979static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
980 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500981 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500982 int r;
983
Hans-Peter Deifeld873e872015-03-03 00:35:08 +0100984 /* Returns 0 for success, positive error if already warned,
985 * negative error otherwise. */
986
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500987 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500988 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500989 if (r < 0)
990 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500991
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500992 r = calc_acl_mask_if_needed(&dup);
993 if (r < 0)
994 return r;
995 } else {
996 dup = acl_dup(acl);
997 if (!dup)
998 return -errno;
999
1000 /* the mask was already added earlier if needed */
1001 }
1002
1003 r = add_base_acls_if_needed(&dup, path);
1004 if (r < 0)
1005 return r;
1006
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001007 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001008 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001009 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001010 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001011
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001012 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001013 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001014 /* Return positive to indicate we already warned */
1015 return -log_error_errno(errno,
1016 "Setting %s ACL \"%s\" on %s failed: %m",
1017 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001018 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001019
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001020 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001021}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001022#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001023
Franck Bui936f6bd2018-03-02 17:19:32 +01001024static int fd_set_acls(Item *item, int fd, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001025 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001026#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001027 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001028 _cleanup_free_ char *path = NULL;
1029
1030 assert(item);
1031 assert(fd);
1032 assert(st);
1033
1034 r = fd_get_path(fd, &path);
1035 if (r < 0)
1036 return r;
1037
1038 if (hardlink_vulnerable(st)) {
1039 log_error("Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
1040 return -EPERM;
1041 }
1042
1043 if (S_ISLNK(st->st_mode)) {
1044 log_debug("Skipping ACL fix for symlink %s.", path);
1045 return 0;
1046 }
1047
1048 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1049
1050 if (item->acl_access)
1051 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->force);
1052
1053 if (r == 0 && item->acl_default)
1054 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->force);
1055
1056 if (r > 0)
1057 return -r; /* already warned */
1058 if (r == -EOPNOTSUPP) {
1059 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1060 return 0;
1061 }
1062 if (r < 0)
1063 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1064#endif
1065 return r;
1066}
1067
1068static int path_set_acls(Item *item, const char *path) {
1069 int r = 0;
1070#ifdef HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001071 _cleanup_close_ int fd = -1;
1072 struct stat st;
1073
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001074 assert(item);
1075 assert(path);
1076
Alexander Kuleshovc4b69152016-03-02 00:25:09 +06001077 fd = open(path, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001078 if (fd < 0)
1079 return log_error_errno(errno, "Adjusting ACL of %s failed: %m", path);
1080
Franck Bui56114d42018-03-02 16:25:56 +01001081 if (fstat(fd, &st) < 0)
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001082 return log_error_errno(errno, "Failed to fstat() file %s: %m", path);
1083
Franck Bui936f6bd2018-03-02 17:19:32 +01001084 r = fd_set_acls(item, fd, &st);
1085 #endif
1086 return r;
1087 }
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001088
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001089#define ATTRIBUTES_ALL \
1090 (FS_NOATIME_FL | \
1091 FS_SYNC_FL | \
1092 FS_DIRSYNC_FL | \
1093 FS_APPEND_FL | \
1094 FS_COMPR_FL | \
1095 FS_NODUMP_FL | \
1096 FS_EXTENT_FL | \
1097 FS_IMMUTABLE_FL | \
1098 FS_JOURNAL_DATA_FL | \
1099 FS_SECRM_FL | \
1100 FS_UNRM_FL | \
1101 FS_NOTAIL_FL | \
1102 FS_TOPDIR_FL | \
1103 FS_NOCOW_FL)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001104
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001105static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001106
1107 static const struct {
1108 char character;
1109 unsigned value;
1110 } attributes[] = {
1111 { 'A', FS_NOATIME_FL }, /* do not update atime */
1112 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1113 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1114 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1115 { 'c', FS_COMPR_FL }, /* Compress file */
1116 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001117 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001118 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1119 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1120 { 's', FS_SECRM_FL }, /* Secure deletion */
1121 { 'u', FS_UNRM_FL }, /* Undelete */
1122 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001123 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001124 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001125 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001126
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001127 enum {
1128 MODE_ADD,
1129 MODE_DEL,
1130 MODE_SET
1131 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001132
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001133 unsigned value = 0, mask = 0;
1134 const char *p;
1135
1136 assert(item);
1137
1138 p = item->argument;
1139 if (p) {
1140 if (*p == '+') {
1141 mode = MODE_ADD;
1142 p++;
1143 } else if (*p == '-') {
1144 mode = MODE_DEL;
1145 p++;
1146 } else if (*p == '=') {
1147 mode = MODE_SET;
1148 p++;
1149 }
1150 }
1151
1152 if (isempty(p) && mode != MODE_SET) {
1153 log_error("Setting file attribute on '%s' needs an attribute specification.", item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001154 return -EINVAL;
1155 }
1156
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001157 for (; p && *p ; p++) {
1158 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001159
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001160 for (i = 0; i < ELEMENTSOF(attributes); i++)
1161 if (*p == attributes[i].character)
1162 break;
1163
1164 if (i >= ELEMENTSOF(attributes)) {
1165 log_error("Unknown file attribute '%c' on '%s'.", *p, item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001166 return -EINVAL;
1167 }
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001168
1169 v = attributes[i].value;
1170
Andreas Rammhold37420952017-09-29 00:37:23 +02001171 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001172
1173 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001174 }
1175
1176 if (mode == MODE_SET)
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001177 mask |= ATTRIBUTES_ALL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001178
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001179 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001180
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001181 item->attribute_mask = mask;
1182 item->attribute_value = value;
1183 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001184
1185 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001186}
1187
Franck Bui936f6bd2018-03-02 17:19:32 +01001188static int fd_set_attribute(Item *item, int fd, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +01001189 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001190 _cleanup_close_ int procfs_fd = -1;
1191 _cleanup_free_ char *path = NULL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001192 unsigned f;
1193 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001194
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001195 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001196 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001197
Franck Bui936f6bd2018-03-02 17:19:32 +01001198 r = fd_get_path(fd, &path);
1199 if (r < 0)
1200 return r;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001201
1202 /* Issuing the file attribute ioctls on device nodes is not
1203 * safe, as that will be delivered to the drivers, not the
1204 * file system containing the device node. */
Franck Bui936f6bd2018-03-02 17:19:32 +01001205 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode)) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001206 log_error("Setting file flags is only supported on regular files and directories, cannot set on '%s'.", path);
1207 return -EINVAL;
1208 }
1209
1210 f = item->attribute_value & item->attribute_mask;
1211
1212 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001213 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001214 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001215
Franck Bui936f6bd2018-03-02 17:19:32 +01001216 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1217
1218 procfs_fd = open(procfs_path, O_RDONLY|O_CLOEXEC|O_NOATIME);
1219 if (procfs_fd < 0)
1220 return -errno;
1221
1222 r = chattr_fd(procfs_fd, f, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001223 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001224 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001225 r,
1226 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x: %m",
1227 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001228
1229 return 0;
1230}
1231
Franck Bui936f6bd2018-03-02 17:19:32 +01001232static int path_set_attribute(Item *item, const char *path) {
1233 _cleanup_close_ int fd = -1;
1234 struct stat st;
1235
1236 if (!item->attribute_set || item->attribute_mask == 0)
1237 return 0;
1238
1239 fd = open(path, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1240 if (fd < 0)
1241 return log_error_errno(errno, "Cannot open '%s': %m", path);
1242
1243 if (fstat(fd, &st) < 0)
1244 return log_error_errno(errno, "Cannot stat '%s': %m", path);
1245
1246 return fd_set_attribute(item, fd, &st);
1247}
1248
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001249static int write_one_file(Item *i, const char *path) {
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001250 _cleanup_close_ int fd = -1;
1251 int flags, r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001252 struct stat st;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001253
Lennart Poettering874f1942014-06-10 22:48:56 +02001254 assert(i);
1255 assert(path);
1256
Lennart Poettering49e87292018-01-24 10:54:10 +01001257 flags = i->type == CREATE_FILE ? O_CREAT|O_EXCL|O_NOFOLLOW :
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001258 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC|O_NOFOLLOW : 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001259
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001260 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001261 mac_selinux_create_file_prepare(path, S_IFREG);
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001262 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001263 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001264 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001265
1266 if (fd < 0) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001267 if (i->type == WRITE_FILE && errno == ENOENT) {
Lennart Poettering49e87292018-01-24 10:54:10 +01001268 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001269 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001270 }
Lennart Poettering49e87292018-01-24 10:54:10 +01001271 if (i->type == CREATE_FILE && errno == EEXIST) {
1272 log_debug_errno(errno, "Not writing to pre-existing file \"%s\": %m", path);
1273 goto done;
1274 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001275
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001276 r = -errno;
1277 if (!i->argument && errno == EROFS && stat(path, &st) == 0 &&
1278 (i->type == CREATE_FILE || st.st_size == 0))
1279 goto check_mode;
1280
1281 return log_error_errno(r, "Failed to create file %s: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001282 }
1283
1284 if (i->argument) {
Lennart Poettering4034a062015-03-23 18:55:36 +07001285 log_debug("%s to \"%s\".", i->type == CREATE_FILE ? "Appending" : "Writing", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001286
Franck Bui4cef1922017-11-16 11:27:29 +01001287 r = loop_write(fd, i->argument, strlen(i->argument), false);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001288 if (r < 0)
1289 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1290 } else
1291 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001292
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001293 fd = safe_close(fd);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001294
Lennart Poettering49e87292018-01-24 10:54:10 +01001295done:
Michal Schmidt4a62c712014-11-28 19:57:32 +01001296 if (stat(path, &st) < 0)
1297 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001298
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001299 check_mode:
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001300 if (!S_ISREG(st.st_mode)) {
1301 log_error("%s is not a file.", path);
1302 return -EEXIST;
1303 }
1304
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001305 r = path_set_perms(i, path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001306 if (r < 0)
1307 return r;
1308
1309 return 0;
1310}
1311
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001312typedef int (*action_t)(Item *, const char *);
Franck Bui936f6bd2018-03-02 17:19:32 +01001313typedef int (*fdaction_t)(Item *, int fd, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001314
Franck Bui936f6bd2018-03-02 17:19:32 +01001315static int item_do(Item *i, int fd, const struct stat *st, fdaction_t action) {
1316 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001317
1318 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +01001319 assert(fd >= 0);
1320 assert(st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001321
1322 /* This returns the first error we run into, but nevertheless
1323 * tries to go on */
Franck Bui936f6bd2018-03-02 17:19:32 +01001324 r = action(i, fd, st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001325
Franck Bui936f6bd2018-03-02 17:19:32 +01001326 if (S_ISDIR(st->st_mode)) {
1327 char procfs_path[strlen("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
1328 _cleanup_closedir_ DIR *d = NULL;
1329 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001330
Franck Bui936f6bd2018-03-02 17:19:32 +01001331 /* The passed 'fd' was opened with O_PATH. We need to convert
1332 * it into a 'regular' fd before reading the directory content. */
1333 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001334
Franck Bui936f6bd2018-03-02 17:19:32 +01001335 d = opendir(procfs_path);
1336 if (!d) {
1337 r = r ?: -errno;
1338 goto finish;
1339 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001340
Franck Bui936f6bd2018-03-02 17:19:32 +01001341 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
1342 struct stat de_st;
1343 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001344
Franck Bui936f6bd2018-03-02 17:19:32 +01001345 if (dot_or_dot_dot(de->d_name))
1346 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001347
Franck Bui936f6bd2018-03-02 17:19:32 +01001348 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1349 if (de_fd >= 0 && fstat(de_fd, &de_st) >= 0)
1350 /* pass ownership of dirent fd over */
1351 q = item_do(i, de_fd, &de_st, action);
1352 else
1353 q = -errno;
1354
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001355 if (q < 0 && r == 0)
1356 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001357 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001358 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001359finish:
1360 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001361 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001362}
1363
Franck Bui936f6bd2018-03-02 17:19:32 +01001364static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001365 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001366 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001367 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001368 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001369 char **fn;
1370
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001371 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1372 if (k < 0 && k != -ENOENT)
1373 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001374
1375 STRV_FOREACH(fn, g.gl_pathv) {
1376 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001377 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001378 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001379 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001380
Franck Bui936f6bd2018-03-02 17:19:32 +01001381 return r;
1382}
1383
1384static int glob_item_recursively(Item *i, fdaction_t action) {
1385 _cleanup_globfree_ glob_t g = {
1386 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1387 };
1388 int r = 0, k;
1389 char **fn;
1390
1391 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1392 if (k < 0 && k != -ENOENT)
1393 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1394
1395 STRV_FOREACH(fn, g.gl_pathv) {
1396 _cleanup_close_ int fd = -1;
1397 struct stat st;
1398
1399 /* Make sure we won't trigger/follow file object (such as
1400 * device nodes, automounts, ...) pointed out by 'fn' with
1401 * O_PATH. Note, when O_PATH is used, flags other than
1402 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1403
1404 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1405 if (fd < 0) {
1406 r = r ?: -errno;
1407 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001408 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001409
1410 if (fstat(fd, &st) < 0) {
1411 r = r ?: -errno;
1412 continue;
1413 }
1414
1415 k = item_do(i, fd, &st, action);
1416 if (k < 0 && r == 0)
1417 r = k;
1418
1419 /* we passed fd ownership to the previous call */
1420 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001421 }
1422
Michal Schmidt99e68c02011-12-15 23:45:26 +01001423 return r;
1424}
1425
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001426typedef enum {
1427 CREATION_NORMAL,
1428 CREATION_EXISTING,
1429 CREATION_FORCE,
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001430 _CREATION_MODE_MAX,
1431 _CREATION_MODE_INVALID = -1
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001432} CreationMode;
1433
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001434static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1435 [CREATION_NORMAL] = "Created",
1436 [CREATION_EXISTING] = "Found existing",
1437 [CREATION_FORCE] = "Created replacement",
1438};
1439
1440DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001441
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001442static int create_item(Item *i) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001443 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +02001444 int r = 0;
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001445 int q = 0;
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001446 CreationMode creation;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001447
1448 assert(i);
1449
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001450 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1451
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001452 switch (i->type) {
1453
1454 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001455 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001456 case REMOVE_PATH:
1457 case RECURSIVE_REMOVE_PATH:
1458 return 0;
1459
1460 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001461 case TRUNCATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001462 RUN_WITH_UMASK(0000)
1463 (void) mkdir_parents_label(i->path, 0755);
1464
Dave Reisner1845fdd2012-09-27 20:48:13 -04001465 r = write_one_file(i, i->path);
1466 if (r < 0)
1467 return r;
1468 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -05001469
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001470 case COPY_FILES: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001471
1472 RUN_WITH_UMASK(0000)
1473 (void) mkdir_parents_label(i->path, 0755);
1474
Franck Bui4cef1922017-11-16 11:27:29 +01001475 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
Lennart Poettering7fa10742018-01-23 14:14:19 +01001476 r = copy_tree(i->argument, i->path,
1477 i->uid_set ? i->uid : UID_INVALID,
1478 i->gid_set ? i->gid : GID_INVALID,
1479 COPY_REFLINK);
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001480
1481 if (r == -EROFS && stat(i->path, &st) == 0)
1482 r = -EEXIST;
1483
Lennart Poettering849958d2014-06-10 23:02:40 +02001484 if (r < 0) {
Lennart Poetteringe1563472014-06-19 19:36:08 +02001485 struct stat a, b;
1486
Michal Schmidt8d3d7072014-11-28 19:13:53 +01001487 if (r != -EEXIST)
1488 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001489
Franck Bui4cef1922017-11-16 11:27:29 +01001490 if (stat(i->argument, &a) < 0)
1491 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001492
Michal Schmidt4a62c712014-11-28 19:57:32 +01001493 if (stat(i->path, &b) < 0)
1494 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001495
1496 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1497 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1498 return 0;
1499 }
Lennart Poettering849958d2014-06-10 23:02:40 +02001500 }
1501
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001502 r = path_set_perms(i, i->path);
Lennart Poettering849958d2014-06-10 23:02:40 +02001503 if (r < 0)
1504 return r;
1505
1506 break;
1507
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001508 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001509 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001510 if (r < 0)
1511 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001512
1513 break;
1514
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001515 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001516 case TRUNCATE_DIRECTORY:
1517 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001518 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1519 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001520 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001521 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001522
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001523 if (IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA)) {
Lennart Poettering2904e942015-11-16 15:25:42 +01001524
1525 if (btrfs_is_subvol(isempty(arg_root) ? "/" : arg_root) <= 0)
1526
1527 /* Don't create a subvolume unless the
1528 * root directory is one, too. We do
1529 * this under the assumption that if
1530 * the root directory is just a plain
1531 * directory (i.e. very light-weight),
1532 * we shouldn't try to split it up
1533 * into subvolumes (i.e. more
1534 * heavy-weight). Thus, chroot()
1535 * environments and suchlike will get
1536 * a full brtfs subvolume set up below
1537 * their tree only if they
1538 * specifically set up a btrfs
1539 * subvolume for the root dir too. */
1540
1541 r = -ENOTTY;
1542 else {
1543 RUN_WITH_UMASK((~i->mode) & 0777)
1544 r = btrfs_subvol_make(i->path);
1545 }
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001546 } else
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001547 r = 0;
1548
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001549 if (IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY) || r == -ENOTTY)
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001550 RUN_WITH_UMASK(0000)
1551 r = mkdir_label(i->path, i->mode);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001552
Lennart Poetteringe1563472014-06-19 19:36:08 +02001553 if (r < 0) {
Lennart Poettering7b135a72015-05-15 21:47:22 +02001554 int k;
1555
Yu Watanabe4c701092017-10-04 23:01:32 +09001556 if (!IN_SET(r, -EEXIST, -EROFS))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001557 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", i->path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001558
Lennart Poettering7b135a72015-05-15 21:47:22 +02001559 k = is_dir(i->path, false);
1560 if (k == -ENOENT && r == -EROFS)
1561 return log_error_errno(r, "%s does not exist and cannot be created as the file system is read-only.", i->path);
1562 if (k < 0)
1563 return log_error_errno(k, "Failed to check if %s exists: %m", i->path);
1564 if (!k) {
1565 log_warning("\"%s\" already exists and is not a directory.", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001566 return 0;
1567 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001568
1569 creation = CREATION_EXISTING;
1570 } else
1571 creation = CREATION_NORMAL;
Lennart Poettering7b135a72015-05-15 21:47:22 +02001572
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001573 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001574
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001575 if (IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
1576 r = btrfs_subvol_auto_qgroup(i->path, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001577 if (r == -ENOTTY)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001578 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001579 else if (r == -EROFS)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001580 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001581 else if (r == -ENOPROTOOPT)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001582 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001583 else if (r < 0)
1584 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1585 else if (r > 0)
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001586 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001587 else if (r == 0)
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001588 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1589 }
1590
Shawn Landden48319812017-11-19 10:06:10 -08001591 _fallthrough_;
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001592 case EMPTY_DIRECTORY:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001593 r = path_set_perms(i, i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001594 if (q < 0)
1595 return q;
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001596 if (r < 0)
1597 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001598
1599 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001600
1601 case CREATE_FIFO:
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001602 RUN_WITH_UMASK(0000) {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001603 (void) mkdir_parents_label(i->path, 0755);
1604
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001605 mac_selinux_create_file_prepare(i->path, S_IFIFO);
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001606 r = mkfifo(i->path, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001607 mac_selinux_create_file_clear();
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001608 }
1609
Lennart Poettering1554afa2014-06-17 23:50:22 +02001610 if (r < 0) {
Michal Schmidt4a62c712014-11-28 19:57:32 +01001611 if (errno != EEXIST)
1612 return log_error_errno(errno, "Failed to create fifo %s: %m", i->path);
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001613
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001614 if (lstat(i->path, &st) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001615 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001616
1617 if (!S_ISFIFO(st.st_mode)) {
1618
1619 if (i->force) {
Lennart Poettering1554afa2014-06-17 23:50:22 +02001620 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001621 mac_selinux_create_file_prepare(i->path, S_IFIFO);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001622 r = mkfifo_atomic(i->path, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001623 mac_selinux_create_file_clear();
Lennart Poettering1554afa2014-06-17 23:50:22 +02001624 }
1625
Michal Schmidtf6479622014-11-28 18:50:43 +01001626 if (r < 0)
1627 return log_error_errno(r, "Failed to create fifo %s: %m", i->path);
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001628 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001629 } else {
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001630 log_warning("\"%s\" already exists and is not a fifo.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001631 return 0;
1632 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001633 } else
1634 creation = CREATION_EXISTING;
1635 } else
1636 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001637 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001638
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001639 r = path_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001640 if (r < 0)
1641 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001642
1643 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001644 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001645
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001646 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001647 RUN_WITH_UMASK(0000)
1648 (void) mkdir_parents_label(i->path, 0755);
1649
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001650 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001651 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001652 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001653
Lennart Poettering468d7262012-01-17 15:04:12 +01001654 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001655 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01001656
Michal Schmidt4a62c712014-11-28 19:57:32 +01001657 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01001658 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001659
1660 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01001661 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001662
1663 if (i->force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001664 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001665 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001666 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001667
William Douglasb3f58972017-08-09 08:53:03 -07001668 if (IN_SET(r, -EEXIST, -ENOTEMPTY)) {
1669 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
1670 if (r < 0)
1671 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
1672
1673 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001674 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07001675 mac_selinux_create_file_clear();
1676 }
Michal Schmidtf6479622014-11-28 18:50:43 +01001677 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01001678 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001679
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001680 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001681 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001682 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001683 return 0;
1684 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001685 } else
1686 creation = CREATION_EXISTING;
1687 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001688
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001689 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001690 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001691 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001692 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001693
1694 case CREATE_BLOCK_DEVICE:
1695 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07001696 mode_t file_type;
1697
1698 if (have_effective_cap(CAP_MKNOD) == 0) {
1699 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -07001700 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07001701 that case to avoid noise, and we don't support
1702 virtualized devices in containers anyway. */
1703
1704 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
1705 return 0;
1706 }
1707
Lennart Poettering7fa10742018-01-23 14:14:19 +01001708 RUN_WITH_UMASK(0000)
1709 (void) mkdir_parents_label(i->path, 0755);
1710
Lennart Poettering1554afa2014-06-17 23:50:22 +02001711 file_type = i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR;
Lennart Poettering468d7262012-01-17 15:04:12 +01001712
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001713 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001714 mac_selinux_create_file_prepare(i->path, file_type);
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001715 r = mknod(i->path, i->mode | file_type, i->major_minor);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001716 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001717 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001718
Kay Sievers6555ad82014-06-13 04:11:11 +02001719 if (r < 0) {
1720 if (errno == EPERM) {
1721 log_debug("We lack permissions, possibly because of cgroup configuration; "
1722 "skipping creation of device node %s.", i->path);
1723 return 0;
1724 }
1725
Michal Schmidt4a62c712014-11-28 19:57:32 +01001726 if (errno != EEXIST)
1727 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001728
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001729 if (lstat(i->path, &st) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001730 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001731
Lennart Poettering1554afa2014-06-17 23:50:22 +02001732 if ((st.st_mode & S_IFMT) != file_type) {
1733
1734 if (i->force) {
1735
1736 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001737 mac_selinux_create_file_prepare(i->path, file_type);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001738 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001739 mac_selinux_create_file_clear();
Lennart Poettering1554afa2014-06-17 23:50:22 +02001740 }
1741
Michal Schmidtf6479622014-11-28 18:50:43 +01001742 if (r < 0)
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001743 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1744 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001745 } else {
1746 log_debug("%s is not a device node.", i->path);
1747 return 0;
1748 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001749 } else
1750 creation = CREATION_EXISTING;
1751 } else
1752 creation = CREATION_NORMAL;
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001753
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001754 log_debug("%s %s device node \"%s\" %u:%u.",
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001755 creation_mode_verb_to_string(creation),
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001756 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1757 i->path, major(i->mode), minor(i->mode));
Lennart Poettering468d7262012-01-17 15:04:12 +01001758
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001759 r = path_set_perms(i, i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001760 if (r < 0)
1761 return r;
1762
1763 break;
1764 }
1765
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001766 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001767 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001768 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01001769 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02001770 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01001771 break;
1772
Michal Schmidta8d88782011-12-15 23:11:07 +01001773 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001774 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01001775 if (r < 0)
1776 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001777 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001778
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001779 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01001780 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001781 if (r < 0)
1782 return r;
1783 break;
1784
1785 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01001786 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001787 if (r < 0)
1788 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001789 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001790
1791 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01001792 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001793 if (r < 0)
1794 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001795 break;
1796
1797 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01001798 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001799 if (r < 0)
1800 return r;
1801 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001802
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001803 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001804 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001805 if (r < 0)
1806 return r;
1807 break;
1808
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001809 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001810 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001811 if (r < 0)
1812 return r;
1813 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001814 }
1815
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001816 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001817}
1818
Michal Schmidta0896122011-12-15 21:32:50 +01001819static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001820 int r;
1821
1822 assert(i);
1823
1824 switch (i->type) {
1825
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001826 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01001827 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001828 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001829
1830 break;
1831
1832 case TRUNCATE_DIRECTORY:
1833 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +02001834 /* FIXME: we probably should use dir_cleanup() here
1835 * instead of rm_rf() so that 'x' is honoured. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001836 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering1b26f092015-06-15 19:11:15 +02001837 r = rm_rf(instance, (i->type == RECURSIVE_REMOVE_PATH ? REMOVE_ROOT|REMOVE_SUBVOLUME : 0) | REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01001838 if (r < 0 && r != -ENOENT)
1839 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001840
1841 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05001842
1843 default:
1844 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001845 }
1846
1847 return 0;
1848}
1849
Michal Schmidta0896122011-12-15 21:32:50 +01001850static int remove_item(Item *i) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001851 assert(i);
1852
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001853 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
1854
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001855 switch (i->type) {
1856
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001857 case REMOVE_PATH:
1858 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +01001859 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001860 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001861
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001862 default:
1863 return 0;
1864 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001865}
1866
Michal Sekletar78a92a52013-01-18 16:13:08 +01001867static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001868 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001869 struct stat s, ps;
1870 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001871 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001872 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001873
1874 assert(i);
1875
1876 if (!i->age_set)
1877 return 0;
1878
1879 n = now(CLOCK_REALTIME);
1880 if (n < i->age)
1881 return 0;
1882
1883 cutoff = n - i->age;
1884
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001885 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001886 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04001887 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001888 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001889 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001890 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01001891
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04001892 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001893 }
1894
Michal Schmidt4a62c712014-11-28 19:57:32 +01001895 if (fstat(dirfd(d), &s) < 0)
1896 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001897
1898 if (!S_ISDIR(s.st_mode)) {
1899 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001900 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001901 }
1902
Michal Schmidt4a62c712014-11-28 19:57:32 +01001903 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
1904 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001905
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02001906 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001907
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001908 log_debug("Cleanup threshold for %s \"%s\" is %s",
1909 mountpoint ? "mount point" : "directory",
1910 instance,
1911 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
1912
1913 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
1914 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001915}
1916
1917static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01001918 assert(i);
1919
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001920 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
1921
Michal Sekletar78a92a52013-01-18 16:13:08 +01001922 switch (i->type) {
1923 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001924 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001925 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1926 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001927 case TRUNCATE_DIRECTORY:
1928 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02001929 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001930 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001931 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01001932 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001933 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001934 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001935 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001936 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001937 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01001938}
1939
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001940static int process_item_array(ItemArray *array);
1941
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001942static int process_item(Item *i) {
Lennart Poettering1e958932015-01-06 20:33:46 +01001943 int r, q, p, t = 0;
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05001944 _cleanup_free_ char *prefix = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001945
1946 assert(i);
1947
Lennart Poettering1910cd02014-06-11 01:37:35 +02001948 if (i->done)
1949 return 0;
1950
1951 i->done = true;
1952
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05001953 prefix = malloc(strlen(i->path) + 1);
1954 if (!prefix)
1955 return log_oom();
1956
Lennart Poettering1910cd02014-06-11 01:37:35 +02001957 PATH_FOREACH_PREFIX(prefix, i->path) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001958 ItemArray *j;
Lennart Poettering1910cd02014-06-11 01:37:35 +02001959
Lennart Poetteringef43a392015-04-22 18:18:56 +02001960 j = ordered_hashmap_get(items, prefix);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001961 if (j) {
1962 int s;
1963
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001964 s = process_item_array(j);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001965 if (s < 0 && t == 0)
1966 t = s;
1967 }
Lennart Poettering1910cd02014-06-11 01:37:35 +02001968 }
1969
NeilBrown655f2da2017-09-04 23:35:07 +10001970 if (chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL) == -EREMOTE)
1971 return t;
1972
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001973 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +01001974 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001975 p = arg_clean ? clean_item(i) : 0;
1976
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001977 return t < 0 ? t :
1978 r < 0 ? r :
1979 q < 0 ? q :
1980 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001981}
1982
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001983static int process_item_array(ItemArray *array) {
1984 unsigned n;
1985 int r = 0, k;
Lennart Poettering753615e2014-06-12 23:07:17 +02001986
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001987 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001988
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001989 for (n = 0; n < array->count; n++) {
1990 k = process_item(array->items + n);
1991 if (k < 0 && r == 0)
1992 r = k;
1993 }
1994
1995 return r;
1996}
1997
1998static void item_free_contents(Item *i) {
1999 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002000 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002001 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002002 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002003
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002004#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002005 acl_free(i->acl_access);
2006 acl_free(i->acl_default);
2007#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002008}
2009
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002010static void item_array_free(ItemArray *a) {
2011 unsigned n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002012
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002013 if (!a)
2014 return;
2015
2016 for (n = 0; n < a->count; n++)
2017 item_free_contents(a->items + n);
2018 free(a->items);
2019 free(a);
2020}
2021
Lennart Poettering17493fa2015-04-10 16:22:22 +02002022static int item_compare(const void *a, const void *b) {
2023 const Item *x = a, *y = b;
2024
2025 /* Make sure that the ownership taking item is put first, so
2026 * that we first create the node, and then can adjust it */
2027
2028 if (takes_ownership(x->type) && !takes_ownership(y->type))
2029 return -1;
2030 if (!takes_ownership(x->type) && takes_ownership(y->type))
2031 return 1;
2032
2033 return (int) x->type - (int) y->type;
2034}
2035
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002036static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002037 assert(a);
2038 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002039 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002040
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002041 if (takes_ownership(a->type) && takes_ownership(b->type))
2042 /* check if the items are the same */
2043 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002044
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002045 a->uid_set == b->uid_set &&
2046 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002047
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002048 a->gid_set == b->gid_set &&
2049 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002050
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002051 a->mode_set == b->mode_set &&
2052 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002053
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002054 a->age_set == b->age_set &&
2055 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002056
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002057 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002058
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002059 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002060
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002061 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002062
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002063 return true;
2064}
2065
Dave Reisnera2aced42013-07-24 11:10:05 -04002066static bool should_include_path(const char *path) {
2067 char **prefix;
2068
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002069 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002070 if (path_startswith(path, *prefix)) {
2071 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2072 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002073 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002074 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002075
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002076 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002077 if (path_startswith(path, *prefix)) {
2078 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002079 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002080 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002081
Dave Reisner5c795112013-07-24 11:19:24 -04002082 /* no matches, so we should include this path only if we
2083 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002084 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002085 return true;
2086
2087 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2088 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002089}
2090
Franck Bui4cef1922017-11-16 11:27:29 +01002091static int specifier_expansion_from_arg(Item *i) {
2092 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2093 char **xattr;
2094 int r;
2095
2096 assert(i);
2097
2098 if (i->argument == NULL)
2099 return 0;
2100
2101 switch (i->type) {
2102 case COPY_FILES:
2103 case CREATE_SYMLINK:
2104 case CREATE_FILE:
2105 case TRUNCATE_FILE:
2106 case WRITE_FILE:
2107 r = cunescape(i->argument, 0, &unescaped);
2108 if (r < 0)
2109 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2110
2111 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2112 if (r < 0)
2113 return r;
2114
2115 free_and_replace(i->argument, resolved);
2116 break;
2117
2118 case SET_XATTR:
2119 case RECURSIVE_SET_XATTR:
2120 assert(i->xattrs);
2121
2122 STRV_FOREACH (xattr, i->xattrs) {
2123 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2124 if (r < 0)
2125 return r;
2126
2127 free_and_replace(*xattr, resolved);
2128 }
2129 break;
2130
2131 default:
2132 break;
2133 }
2134 return 0;
2135}
2136
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002137static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002138
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002139 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002140 _cleanup_(item_free_contents) Item i = {};
2141 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002142 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002143 int r, pos;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002144 bool force = false, boot = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002145
2146 assert(fname);
2147 assert(line >= 1);
2148 assert(buffer);
2149
Richard Maw68685602015-06-23 16:20:53 +00002150 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002151 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002152 NULL,
Richard Maw12ba2c42015-06-23 16:26:49 +00002153 EXTRACT_QUOTES,
Lennart Poettering4034a062015-03-23 18:55:36 +07002154 &action,
2155 &path,
2156 &mode,
2157 &user,
2158 &group,
2159 &age,
2160 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002161 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002162 if (IN_SET(r, -EINVAL, -EBADSLT))
2163 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002164 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002165 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002166 }
2167
daurnimator657cf7f2015-03-09 15:11:44 -04002168 else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002169 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002170 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002171 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002172 }
2173
Lennart Poetteringaa5f6812015-04-21 01:10:19 +02002174 if (!isempty(buffer) && !streq(buffer, "-")) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002175 i.argument = strdup(buffer);
2176 if (!i.argument)
2177 return log_oom();
2178 }
2179
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002180 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002181 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002182 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002183 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002184 }
2185
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002186 for (pos = 1; action[pos]; pos++) {
2187 if (action[pos] == '!' && !boot)
2188 boot = true;
2189 else if (action[pos] == '+' && !force)
2190 force = true;
2191 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002192 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002193 log_error("[%s:%u] Unknown modifiers in command '%s'",
2194 fname, line, action);
2195 return -EINVAL;
2196 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002197 }
2198
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002199 if (boot && !arg_boot) {
2200 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2201 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002202 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002203 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002204
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002205 i.type = action[0];
2206 i.force = force;
Lennart Poettering1731e342013-09-17 11:02:02 -05002207
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002208 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002209 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002210 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002211 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002212 if (IN_SET(r, -EINVAL, -EBADSLT))
2213 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002214 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002215 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002216
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002217 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002218
Michal Schmidt777b87e2011-12-16 18:27:35 +01002219 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002220 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002221 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2222 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002223 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002224 case TRUNCATE_DIRECTORY:
2225 case CREATE_FIFO:
2226 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002227 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002228 case REMOVE_PATH:
2229 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002230 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002231 case RELABEL_PATH:
2232 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002233 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002234 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002235
2236 break;
2237
2238 case CREATE_FILE:
2239 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002240 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002241
2242 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002243 if (!i.argument) {
2244 i.argument = strappend("/usr/share/factory/", i.path);
2245 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002246 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002247 }
2248 break;
2249
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002250 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002251 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002252 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002253 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002254 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002255 }
2256 break;
2257
Lennart Poettering849958d2014-06-10 23:02:40 +02002258 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002259 if (!i.argument) {
2260 i.argument = strappend("/usr/share/factory/", i.path);
2261 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002262 return log_oom();
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002263 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002264 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002265 log_error("[%s:%u] Source path is not absolute.", fname, line);
2266 return -EBADMSG;
2267 }
2268
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002269 path_kill_slashes(i.argument);
Lennart Poettering849958d2014-06-10 23:02:40 +02002270 break;
2271
Lennart Poettering468d7262012-01-17 15:04:12 +01002272 case CREATE_CHAR_DEVICE:
2273 case CREATE_BLOCK_DEVICE: {
2274 unsigned major, minor;
2275
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002276 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002277 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002278 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002279 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002280 }
2281
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002282 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002283 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002284 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 -04002285 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002286 }
2287
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002288 i.major_minor = makedev(major, minor);
Lennart Poettering468d7262012-01-17 15:04:12 +01002289 break;
2290 }
2291
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002292 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002293 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002294 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002295 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002296 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2297 return -EBADMSG;
2298 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002299 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002300 if (r < 0)
2301 return r;
2302 break;
2303
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002304 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002305 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002306 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002307 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002308 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2309 return -EBADMSG;
2310 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002311 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002312 if (r < 0)
2313 return r;
2314 break;
2315
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002316 case SET_ATTRIBUTE:
2317 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002318 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002319 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002320 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002321 return -EBADMSG;
2322 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002323 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002324 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002325 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002326 if (r < 0)
2327 return r;
2328 break;
2329
Michal Schmidt777b87e2011-12-16 18:27:35 +01002330 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002331 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002332 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002333 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002334 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002335
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002336 if (!path_is_absolute(i.path)) {
2337 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002338 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002339 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002340 }
2341
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002342 path_kill_slashes(i.path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002343
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002344 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002345 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002346
Franck Bui4cef1922017-11-16 11:27:29 +01002347 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002348 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002349 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002350 if (r < 0) {
2351 if (IN_SET(r, -EINVAL, -EBADSLT))
2352 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002353 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2354 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002355 }
Franck Bui4cef1922017-11-16 11:27:29 +01002356
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002357 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002358 char *p;
2359
Lennart Poettering1d13f642015-05-13 17:42:10 +02002360 p = prefix_root(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002361 if (!p)
2362 return log_oom();
2363
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002364 free(i.path);
2365 i.path = p;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002366 }
2367
Lennart Poettering90937fe2015-04-10 16:04:16 +02002368 if (!isempty(user) && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002369 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002370
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002371 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02002372 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002373 *invalid_config = true;
2374 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002375 }
2376
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002377 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002378 }
2379
Lennart Poettering90937fe2015-04-10 16:04:16 +02002380 if (!isempty(group) && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002381 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002382
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002383 r = get_group_creds(&g, &i.gid);
Lennart Poettering4b678342011-07-23 01:17:59 +02002384 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002385 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002386 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002387 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002388 }
2389
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002390 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002391 }
2392
Lennart Poettering90937fe2015-04-10 16:04:16 +02002393 if (!isempty(mode) && !streq(mode, "-")) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002394 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002395 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002396
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002397 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002398 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002399 mm++;
2400 }
2401
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002402 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002403 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002404 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002405 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002406 }
2407
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002408 i.mode = m;
2409 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002410 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002411 i.mode = IN_SET(i.type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA) ? 0755 : 0644;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002412
Lennart Poettering90937fe2015-04-10 16:04:16 +02002413 if (!isempty(age) && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002414 const char *a = age;
2415
2416 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002417 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002418 a++;
2419 }
2420
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002421 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002422 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002423 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002424 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002425 }
2426
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002427 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002428 }
2429
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002430 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002431
Lennart Poetteringef43a392015-04-22 18:18:56 +02002432 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002433 if (existing) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002434 unsigned n;
2435
2436 for (n = 0; n < existing->count; n++) {
Martin Pitt6487ada2015-03-05 14:58:56 +01002437 if (!item_compatible(existing->items + n, &i)) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002438 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2439 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002440 return 0;
2441 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002442 }
2443 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002444 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002445 if (!existing)
2446 return log_oom();
2447
Lennart Poetteringef43a392015-04-22 18:18:56 +02002448 r = ordered_hashmap_put(h, i.path, existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002449 if (r < 0)
2450 return log_oom();
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002451 }
2452
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002453 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2454 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002455
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002456 memcpy(existing->items + existing->count++, &i, sizeof(i));
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002457
2458 /* Sort item array, to enforce stable ordering of application */
2459 qsort_safe(existing->items, existing->count, sizeof(Item), item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002460
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002461 zero(i);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002462 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002463}
2464
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002465static void help(void) {
Lennart Poettering522d4a42011-02-13 15:08:15 +01002466 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2467 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002468 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002469 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002470 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002471 " --create Create marked files/directories\n"
2472 " --clean Clean up marked directories\n"
2473 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002474 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002475 " --prefix=PATH Only apply rules with the specified prefix\n"
2476 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002477 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002478 " --replace=PATH Treat arguments as replacement for PATH\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002479 , program_invocation_short_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002480}
2481
2482static int parse_argv(int argc, char *argv[]) {
2483
2484 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002485 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002486 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002487 ARG_CREATE,
2488 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002489 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002490 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002491 ARG_PREFIX,
2492 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002493 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002494 ARG_REPLACE,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002495 };
2496
2497 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002498 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002499 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002500 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04002501 { "create", no_argument, NULL, ARG_CREATE },
2502 { "clean", no_argument, NULL, ARG_CLEAN },
2503 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002504 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002505 { "prefix", required_argument, NULL, ARG_PREFIX },
2506 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002507 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002508 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002509 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002510 };
2511
Lennart Poettering0f474362015-10-22 19:28:31 +02002512 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002513
2514 assert(argc >= 0);
2515 assert(argv);
2516
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002517 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002518
2519 switch (c) {
2520
2521 case 'h':
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002522 help();
2523 return 0;
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002524
2525 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002526 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002527
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002528 case ARG_USER:
2529 arg_user = true;
2530 break;
2531
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002532 case ARG_CREATE:
2533 arg_create = true;
2534 break;
2535
2536 case ARG_CLEAN:
2537 arg_clean = true;
2538 break;
2539
2540 case ARG_REMOVE:
2541 arg_remove = true;
2542 break;
2543
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002544 case ARG_BOOT:
2545 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002546 break;
2547
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002548 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002549 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002550 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002551 break;
2552
Dave Reisner5c795112013-07-24 11:19:24 -04002553 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002554 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002555 return log_oom();
2556 break;
2557
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002558 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002559 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002560 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002561 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002562 break;
2563
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002564 case ARG_REPLACE:
2565 if (!path_is_absolute(optarg) ||
2566 !endswith(optarg, ".conf")) {
2567 log_error("The argument to --replace= must an absolute path to a config file");
2568 return -EINVAL;
2569 }
2570
2571 arg_replace = optarg;
2572 break;
2573
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002574 case '?':
2575 return -EINVAL;
2576
2577 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002578 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002579 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002580
2581 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01002582 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002583 return -EINVAL;
2584 }
2585
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002586 if (arg_replace && optind >= argc) {
2587 log_error("When --replace= is given, some configuration items must be specified");
2588 return -EINVAL;
2589 }
2590
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002591 return 1;
2592}
2593
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002594static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002595 _cleanup_fclose_ FILE *_f = NULL;
2596 FILE *f;
Lennart Poettering1731e342013-09-17 11:02:02 -05002597 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002598 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002599 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002600 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002601 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002602
2603 assert(fn);
2604
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002605 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002606 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002607 fn = "<stdin>";
2608 f = stdin;
2609 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002610 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002611 if (r < 0) {
2612 if (ignore_enoent && r == -ENOENT) {
2613 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
2614 return 0;
2615 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002616
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002617 return log_error_errno(r, "Failed to open '%s': %m", fn);
2618 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002619 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002620 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002621 }
2622
Lennart Poettering1731e342013-09-17 11:02:02 -05002623 FOREACH_LINE(line, f, break) {
2624 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002625 int k;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002626 bool invalid_line = false;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002627
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002628 v++;
2629
2630 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09002631 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002632 continue;
2633
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002634 k = parse_line(fn, v, l, &invalid_line);
2635 if (k < 0) {
2636 if (invalid_line)
2637 /* Allow reporting with a special code if the caller requested this */
2638 *invalid_config = true;
2639 else if (r == 0)
2640 /* The first error becomes our return value */
2641 r = k;
2642 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002643 }
2644
Michal Sekletar78a92a52013-01-18 16:13:08 +01002645 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002646 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002647 Iterator iter;
2648 Item *j, *candidate_item = NULL;
2649
2650 if (i->type != IGNORE_DIRECTORY_PATH)
2651 continue;
2652
Lennart Poetteringef43a392015-04-22 18:18:56 +02002653 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002654 if (!IN_SET(j->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA))
Michal Sekletar78a92a52013-01-18 16:13:08 +01002655 continue;
2656
2657 if (path_equal(j->path, i->path)) {
2658 candidate_item = j;
2659 break;
2660 }
2661
2662 if ((!candidate_item && path_startswith(i->path, j->path)) ||
2663 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
2664 candidate_item = j;
2665 }
2666
Richard Weinberger9ed2a352014-09-09 11:09:37 +02002667 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002668 i->age = candidate_item->age;
2669 i->age_set = true;
2670 }
2671 }
2672
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002673 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01002674 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002675 if (r == 0)
2676 r = -EIO;
2677 }
2678
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002679 return r;
2680}
2681
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002682static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
2683 char **arg;
2684 int r;
2685
2686 STRV_FOREACH(arg, args) {
2687 r = read_config_file(config_dirs, *arg, false, invalid_config);
2688 if (r < 0)
2689 return r;
2690 }
2691
2692 return 0;
2693}
2694
2695static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
2696 _cleanup_strv_free_ char **files = NULL;
2697 _cleanup_free_ char *p = NULL;
2698 char **f;
2699 int r;
2700
2701 r = conf_files_list_strv(&files, ".conf", arg_root, 0, (const char* const*) config_dirs);
2702 if (r < 0)
2703 return log_error_errno(r, "Failed to enumerate tmpfiles.d files: %m");
2704
2705 if (arg_replace) {
2706 r = conf_files_insert(&files, arg_root, config_dirs, arg_replace);
2707 if (r < 0)
2708 return log_error_errno(r, "Failed to extend tmpfiles.d file list: %m");
2709
2710 p = path_join(arg_root, arg_replace, NULL);
2711 if (!p)
2712 return log_oom();
2713 }
2714
2715 STRV_FOREACH(f, files)
2716 if (p && path_equal(*f, p)) {
2717 log_debug("Parsing arguments at position \"%s\"…", *f);
2718
2719 r = parse_arguments(config_dirs, args, invalid_config);
2720 if (r < 0)
2721 return r;
2722 } else
2723 /* Just warn, ignore result otherwise.
2724 * read_config_file() has some debug output, so no need to print anything. */
2725 (void) read_config_file(config_dirs, *f, true, invalid_config);
2726
2727 return 0;
2728}
2729
Lennart Poettering5008d582010-09-28 02:34:02 +02002730int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002731 int r, k;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002732 ItemArray *a;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002733 Iterator iterator;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002734 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002735 bool invalid_config = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002736
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01002737 r = parse_argv(argc, argv);
2738 if (r <= 0)
Lennart Poettering753615e2014-06-12 23:07:17 +02002739 goto finish;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002740
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01002741 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02002742 log_parse_environment();
2743 log_open();
2744
Lennart Poettering4c126262011-08-01 20:52:18 +02002745 umask(0022);
2746
Zbigniew Jędrzejewski-Szmekc3dacc82016-03-01 20:35:55 -05002747 mac_selinux_init();
Lennart Poettering5008d582010-09-28 02:34:02 +02002748
Lennart Poetteringef43a392015-04-22 18:18:56 +02002749 items = ordered_hashmap_new(&string_hash_ops);
2750 globs = ordered_hashmap_new(&string_hash_ops);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002751
2752 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002753 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002754 goto finish;
2755 }
2756
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002757 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002758
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002759 if (arg_user) {
2760 r = user_config_paths(&config_dirs);
2761 if (r < 0) {
2762 log_error_errno(r, "Failed to initialize configuration directory list: %m");
2763 goto finish;
2764 }
2765 } else {
2766 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
2767 if (!config_dirs) {
2768 r = log_oom();
2769 goto finish;
2770 }
2771 }
2772
Lennart Poettering79c91ce2018-01-22 15:33:13 +01002773 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002774 _cleanup_free_ char *t = NULL;
2775
2776 t = strv_join(config_dirs, "\n\t");
2777 if (t)
2778 log_debug("Looking for configuration files in (higher priority first:\n\t%s", t);
2779 }
2780
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002781 /* If command line arguments are specified along with --replace, read all
2782 * configuration files and insert the positional arguments at the specified
2783 * place. Otherwise, if command line arguments are specified, execute just
2784 * them, and finally, without --replace= or any positional arguments, just
2785 * read configuration and execute it.
2786 */
2787 if (arg_replace || optind >= argc)
2788 r = read_config_files(config_dirs, argv + optind, &invalid_config);
2789 else
2790 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
2791 if (r < 0)
2792 goto finish;
Lennart Poettering5008d582010-09-28 02:34:02 +02002793
Lennart Poettering5008d582010-09-28 02:34:02 +02002794
Lennart Poettering5008d582010-09-28 02:34:02 +02002795
Lennart Poettering17493fa2015-04-10 16:22:22 +02002796 /* The non-globbing ones usually create things, hence we apply
2797 * them first */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002798 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002799 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002800 if (k < 0 && r == 0)
2801 r = k;
2802 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002803
Lennart Poettering17493fa2015-04-10 16:22:22 +02002804 /* The globbing ones usually alter things, hence we apply them
2805 * second. */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002806 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002807 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002808 if (k < 0 && r == 0)
2809 r = k;
2810 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002811
Lennart Poettering5008d582010-09-28 02:34:02 +02002812finish:
Zbigniew Jędrzejewski-Szmek224b0e72017-11-28 12:35:49 +01002813 ordered_hashmap_free_with_destructor(items, item_array_free);
2814 ordered_hashmap_free_with_destructor(globs, item_array_free);
Lennart Poettering5008d582010-09-28 02:34:02 +02002815
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002816 free(arg_include_prefixes);
2817 free(arg_exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002818 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04002819
Lennart Poettering17b90522011-02-14 21:55:06 +01002820 set_free_free(unix_sockets);
2821
WaLyong Chocc56faf2014-10-23 17:23:46 +09002822 mac_selinux_finish();
Lennart Poettering29003cf2010-10-19 19:36:45 +02002823
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002824 if (r < 0)
2825 return EXIT_FAILURE;
2826 else if (invalid_config)
2827 return EX_DATAERR;
2828 else
2829 return EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02002830}