blob: 9ac5ae12d067a3d8ee7786c42fbd97292923e1b0 [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:
Lennart Poettering08c84982018-03-27 07:38:26 +0200853 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100854}
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) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001189 _cleanup_close_ int procfs_fd = -1;
1190 _cleanup_free_ char *path = NULL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001191 unsigned f;
1192 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001193
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001194 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001195 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001196
Franck Bui936f6bd2018-03-02 17:19:32 +01001197 r = fd_get_path(fd, &path);
1198 if (r < 0)
1199 return r;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001200
1201 /* Issuing the file attribute ioctls on device nodes is not
1202 * safe, as that will be delivered to the drivers, not the
1203 * file system containing the device node. */
Franck Bui936f6bd2018-03-02 17:19:32 +01001204 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode)) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001205 log_error("Setting file flags is only supported on regular files and directories, cannot set on '%s'.", path);
1206 return -EINVAL;
1207 }
1208
1209 f = item->attribute_value & item->attribute_mask;
1210
1211 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001212 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001213 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001214
Lennart Poetteringf2324782018-03-26 13:25:51 +02001215 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001216 if (procfs_fd < 0)
1217 return -errno;
1218
1219 r = chattr_fd(procfs_fd, f, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001220 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001221 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001222 r,
1223 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x: %m",
1224 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001225
1226 return 0;
1227}
1228
Franck Bui936f6bd2018-03-02 17:19:32 +01001229static int path_set_attribute(Item *item, const char *path) {
1230 _cleanup_close_ int fd = -1;
1231 struct stat st;
1232
1233 if (!item->attribute_set || item->attribute_mask == 0)
1234 return 0;
1235
1236 fd = open(path, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1237 if (fd < 0)
1238 return log_error_errno(errno, "Cannot open '%s': %m", path);
1239
1240 if (fstat(fd, &st) < 0)
1241 return log_error_errno(errno, "Cannot stat '%s': %m", path);
1242
1243 return fd_set_attribute(item, fd, &st);
1244}
1245
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001246static int write_one_file(Item *i, const char *path) {
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001247 _cleanup_close_ int fd = -1;
1248 int flags, r = 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001249 struct stat st;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001250
Lennart Poettering874f1942014-06-10 22:48:56 +02001251 assert(i);
1252 assert(path);
1253
Lennart Poettering49e87292018-01-24 10:54:10 +01001254 flags = i->type == CREATE_FILE ? O_CREAT|O_EXCL|O_NOFOLLOW :
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001255 i->type == TRUNCATE_FILE ? O_CREAT|O_TRUNC|O_NOFOLLOW : 0;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001256
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001257 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001258 mac_selinux_create_file_prepare(path, S_IFREG);
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001259 fd = open(path, flags|O_NDELAY|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001260 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001261 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001262
1263 if (fd < 0) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001264 if (i->type == WRITE_FILE && errno == ENOENT) {
Lennart Poettering49e87292018-01-24 10:54:10 +01001265 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001266 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001267 }
Lennart Poettering49e87292018-01-24 10:54:10 +01001268 if (i->type == CREATE_FILE && errno == EEXIST) {
1269 log_debug_errno(errno, "Not writing to pre-existing file \"%s\": %m", path);
1270 goto done;
1271 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001272
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001273 r = -errno;
1274 if (!i->argument && errno == EROFS && stat(path, &st) == 0 &&
1275 (i->type == CREATE_FILE || st.st_size == 0))
1276 goto check_mode;
1277
1278 return log_error_errno(r, "Failed to create file %s: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001279 }
1280
1281 if (i->argument) {
Lennart Poettering4034a062015-03-23 18:55:36 +07001282 log_debug("%s to \"%s\".", i->type == CREATE_FILE ? "Appending" : "Writing", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001283
Franck Bui4cef1922017-11-16 11:27:29 +01001284 r = loop_write(fd, i->argument, strlen(i->argument), false);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001285 if (r < 0)
1286 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1287 } else
1288 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001289
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001290 fd = safe_close(fd);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001291
Lennart Poettering49e87292018-01-24 10:54:10 +01001292done:
Michal Schmidt4a62c712014-11-28 19:57:32 +01001293 if (stat(path, &st) < 0)
1294 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001295
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001296 check_mode:
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001297 if (!S_ISREG(st.st_mode)) {
1298 log_error("%s is not a file.", path);
1299 return -EEXIST;
1300 }
1301
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001302 r = path_set_perms(i, path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001303 if (r < 0)
1304 return r;
1305
1306 return 0;
1307}
1308
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001309typedef int (*action_t)(Item *, const char *);
Franck Bui936f6bd2018-03-02 17:19:32 +01001310typedef int (*fdaction_t)(Item *, int fd, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001311
Franck Bui936f6bd2018-03-02 17:19:32 +01001312static int item_do(Item *i, int fd, const struct stat *st, fdaction_t action) {
1313 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001314
1315 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +01001316 assert(fd >= 0);
1317 assert(st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001318
1319 /* This returns the first error we run into, but nevertheless
1320 * tries to go on */
Franck Bui936f6bd2018-03-02 17:19:32 +01001321 r = action(i, fd, st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001322
Franck Bui936f6bd2018-03-02 17:19:32 +01001323 if (S_ISDIR(st->st_mode)) {
1324 char procfs_path[strlen("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
1325 _cleanup_closedir_ DIR *d = NULL;
1326 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001327
Franck Bui936f6bd2018-03-02 17:19:32 +01001328 /* The passed 'fd' was opened with O_PATH. We need to convert
1329 * it into a 'regular' fd before reading the directory content. */
1330 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001331
Franck Bui936f6bd2018-03-02 17:19:32 +01001332 d = opendir(procfs_path);
1333 if (!d) {
1334 r = r ?: -errno;
1335 goto finish;
1336 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001337
Franck Bui936f6bd2018-03-02 17:19:32 +01001338 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
1339 struct stat de_st;
1340 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001341
Franck Bui936f6bd2018-03-02 17:19:32 +01001342 if (dot_or_dot_dot(de->d_name))
1343 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001344
Franck Bui936f6bd2018-03-02 17:19:32 +01001345 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1346 if (de_fd >= 0 && fstat(de_fd, &de_st) >= 0)
1347 /* pass ownership of dirent fd over */
1348 q = item_do(i, de_fd, &de_st, action);
1349 else
1350 q = -errno;
1351
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001352 if (q < 0 && r == 0)
1353 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001354 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001355 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001356finish:
1357 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001358 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001359}
1360
Franck Bui936f6bd2018-03-02 17:19:32 +01001361static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001362 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001363 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001364 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001365 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001366 char **fn;
1367
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001368 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1369 if (k < 0 && k != -ENOENT)
1370 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001371
1372 STRV_FOREACH(fn, g.gl_pathv) {
1373 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001374 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001375 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001376 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001377
Franck Bui936f6bd2018-03-02 17:19:32 +01001378 return r;
1379}
1380
1381static int glob_item_recursively(Item *i, fdaction_t action) {
1382 _cleanup_globfree_ glob_t g = {
1383 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1384 };
1385 int r = 0, k;
1386 char **fn;
1387
1388 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1389 if (k < 0 && k != -ENOENT)
1390 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1391
1392 STRV_FOREACH(fn, g.gl_pathv) {
1393 _cleanup_close_ int fd = -1;
1394 struct stat st;
1395
1396 /* Make sure we won't trigger/follow file object (such as
1397 * device nodes, automounts, ...) pointed out by 'fn' with
1398 * O_PATH. Note, when O_PATH is used, flags other than
1399 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1400
1401 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1402 if (fd < 0) {
1403 r = r ?: -errno;
1404 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001405 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001406
1407 if (fstat(fd, &st) < 0) {
1408 r = r ?: -errno;
1409 continue;
1410 }
1411
1412 k = item_do(i, fd, &st, action);
1413 if (k < 0 && r == 0)
1414 r = k;
1415
1416 /* we passed fd ownership to the previous call */
1417 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001418 }
1419
Michal Schmidt99e68c02011-12-15 23:45:26 +01001420 return r;
1421}
1422
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001423typedef enum {
1424 CREATION_NORMAL,
1425 CREATION_EXISTING,
1426 CREATION_FORCE,
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001427 _CREATION_MODE_MAX,
1428 _CREATION_MODE_INVALID = -1
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001429} CreationMode;
1430
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001431static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1432 [CREATION_NORMAL] = "Created",
1433 [CREATION_EXISTING] = "Found existing",
1434 [CREATION_FORCE] = "Created replacement",
1435};
1436
1437DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001438
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001439static int create_item(Item *i) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001440 struct stat st;
Kay Sieversdf28bc02013-10-21 15:24:18 +02001441 int r = 0;
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001442 int q = 0;
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001443 CreationMode creation;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001444
1445 assert(i);
1446
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001447 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1448
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001449 switch (i->type) {
1450
1451 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001452 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001453 case REMOVE_PATH:
1454 case RECURSIVE_REMOVE_PATH:
1455 return 0;
1456
1457 case CREATE_FILE:
Lennart Poettering31ed59c2012-01-18 16:39:04 +01001458 case TRUNCATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001459 RUN_WITH_UMASK(0000)
1460 (void) mkdir_parents_label(i->path, 0755);
1461
Dave Reisner1845fdd2012-09-27 20:48:13 -04001462 r = write_one_file(i, i->path);
1463 if (r < 0)
1464 return r;
1465 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -05001466
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001467 case COPY_FILES: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001468
1469 RUN_WITH_UMASK(0000)
1470 (void) mkdir_parents_label(i->path, 0755);
1471
Franck Bui4cef1922017-11-16 11:27:29 +01001472 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
Lennart Poettering7fa10742018-01-23 14:14:19 +01001473 r = copy_tree(i->argument, i->path,
1474 i->uid_set ? i->uid : UID_INVALID,
1475 i->gid_set ? i->gid : GID_INVALID,
1476 COPY_REFLINK);
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001477
1478 if (r == -EROFS && stat(i->path, &st) == 0)
1479 r = -EEXIST;
1480
Lennart Poettering849958d2014-06-10 23:02:40 +02001481 if (r < 0) {
Lennart Poetteringe1563472014-06-19 19:36:08 +02001482 struct stat a, b;
1483
Michal Schmidt8d3d7072014-11-28 19:13:53 +01001484 if (r != -EEXIST)
1485 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001486
Franck Bui4cef1922017-11-16 11:27:29 +01001487 if (stat(i->argument, &a) < 0)
1488 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001489
Michal Schmidt4a62c712014-11-28 19:57:32 +01001490 if (stat(i->path, &b) < 0)
1491 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001492
1493 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1494 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1495 return 0;
1496 }
Lennart Poettering849958d2014-06-10 23:02:40 +02001497 }
1498
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001499 r = path_set_perms(i, i->path);
Lennart Poettering849958d2014-06-10 23:02:40 +02001500 if (r < 0)
1501 return r;
1502
1503 break;
1504
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001505 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001506 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001507 if (r < 0)
1508 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001509
1510 break;
1511
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001512 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001513 case TRUNCATE_DIRECTORY:
1514 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001515 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1516 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001517 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001518 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001519
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001520 if (IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_INHERIT_QUOTA, CREATE_SUBVOLUME_NEW_QUOTA)) {
Lennart Poettering2904e942015-11-16 15:25:42 +01001521
1522 if (btrfs_is_subvol(isempty(arg_root) ? "/" : arg_root) <= 0)
1523
1524 /* Don't create a subvolume unless the
1525 * root directory is one, too. We do
1526 * this under the assumption that if
1527 * the root directory is just a plain
1528 * directory (i.e. very light-weight),
1529 * we shouldn't try to split it up
1530 * into subvolumes (i.e. more
1531 * heavy-weight). Thus, chroot()
1532 * environments and suchlike will get
1533 * a full brtfs subvolume set up below
1534 * their tree only if they
1535 * specifically set up a btrfs
1536 * subvolume for the root dir too. */
1537
1538 r = -ENOTTY;
1539 else {
1540 RUN_WITH_UMASK((~i->mode) & 0777)
1541 r = btrfs_subvol_make(i->path);
1542 }
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001543 } else
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001544 r = 0;
1545
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001546 if (IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY) || r == -ENOTTY)
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001547 RUN_WITH_UMASK(0000)
1548 r = mkdir_label(i->path, i->mode);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001549
Lennart Poetteringe1563472014-06-19 19:36:08 +02001550 if (r < 0) {
Lennart Poettering7b135a72015-05-15 21:47:22 +02001551 int k;
1552
Yu Watanabe4c701092017-10-04 23:01:32 +09001553 if (!IN_SET(r, -EEXIST, -EROFS))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001554 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", i->path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001555
Lennart Poettering7b135a72015-05-15 21:47:22 +02001556 k = is_dir(i->path, false);
1557 if (k == -ENOENT && r == -EROFS)
1558 return log_error_errno(r, "%s does not exist and cannot be created as the file system is read-only.", i->path);
1559 if (k < 0)
1560 return log_error_errno(k, "Failed to check if %s exists: %m", i->path);
1561 if (!k) {
1562 log_warning("\"%s\" already exists and is not a directory.", i->path);
Lennart Poetteringe1563472014-06-19 19:36:08 +02001563 return 0;
1564 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001565
1566 creation = CREATION_EXISTING;
1567 } else
1568 creation = CREATION_NORMAL;
Lennart Poettering7b135a72015-05-15 21:47:22 +02001569
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001570 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001571
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001572 if (IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
1573 r = btrfs_subvol_auto_qgroup(i->path, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001574 if (r == -ENOTTY)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001575 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 +00001576 else if (r == -EROFS)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001577 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001578 else if (r == -ENOPROTOOPT)
Zbigniew Jędrzejewski-Szmek022ffe42016-04-19 22:42:00 -04001579 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001580 else if (r < 0)
1581 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1582 else if (r > 0)
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001583 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001584 else if (r == 0)
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001585 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1586 }
1587
Shawn Landden48319812017-11-19 10:06:10 -08001588 _fallthrough_;
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001589 case EMPTY_DIRECTORY:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001590 r = path_set_perms(i, i->path);
Evgeny Vereshchagin114a17d2016-02-01 04:21:06 +00001591 if (q < 0)
1592 return q;
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001593 if (r < 0)
1594 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001595
1596 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001597
1598 case CREATE_FIFO:
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001599 RUN_WITH_UMASK(0000) {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001600 (void) mkdir_parents_label(i->path, 0755);
1601
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001602 mac_selinux_create_file_prepare(i->path, S_IFIFO);
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001603 r = mkfifo(i->path, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001604 mac_selinux_create_file_clear();
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001605 }
1606
Lennart Poettering1554afa2014-06-17 23:50:22 +02001607 if (r < 0) {
Michal Schmidt4a62c712014-11-28 19:57:32 +01001608 if (errno != EEXIST)
1609 return log_error_errno(errno, "Failed to create fifo %s: %m", i->path);
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001610
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001611 if (lstat(i->path, &st) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001612 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001613
1614 if (!S_ISFIFO(st.st_mode)) {
1615
1616 if (i->force) {
Lennart Poettering1554afa2014-06-17 23:50:22 +02001617 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001618 mac_selinux_create_file_prepare(i->path, S_IFIFO);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001619 r = mkfifo_atomic(i->path, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001620 mac_selinux_create_file_clear();
Lennart Poettering1554afa2014-06-17 23:50:22 +02001621 }
1622
Michal Schmidtf6479622014-11-28 18:50:43 +01001623 if (r < 0)
1624 return log_error_errno(r, "Failed to create fifo %s: %m", i->path);
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001625 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001626 } else {
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001627 log_warning("\"%s\" already exists and is not a fifo.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001628 return 0;
1629 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001630 } else
1631 creation = CREATION_EXISTING;
1632 } else
1633 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001634 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001635
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001636 r = path_set_perms(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001637 if (r < 0)
1638 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001639
1640 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001641 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001642
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001643 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001644 RUN_WITH_UMASK(0000)
1645 (void) mkdir_parents_label(i->path, 0755);
1646
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001647 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001648 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001649 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001650
Lennart Poettering468d7262012-01-17 15:04:12 +01001651 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001652 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01001653
Michal Schmidt4a62c712014-11-28 19:57:32 +01001654 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01001655 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001656
1657 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01001658 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001659
1660 if (i->force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001661 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001662 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001663 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02001664
William Douglasb3f58972017-08-09 08:53:03 -07001665 if (IN_SET(r, -EEXIST, -ENOTEMPTY)) {
1666 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
1667 if (r < 0)
1668 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
1669
1670 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001671 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07001672 mac_selinux_create_file_clear();
1673 }
Michal Schmidtf6479622014-11-28 18:50:43 +01001674 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01001675 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001676
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001677 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001678 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001679 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001680 return 0;
1681 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001682 } else
1683 creation = CREATION_EXISTING;
1684 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001685
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001686 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001687 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001688 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001689 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001690
1691 case CREATE_BLOCK_DEVICE:
1692 case CREATE_CHAR_DEVICE: {
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07001693 mode_t file_type;
1694
1695 if (have_effective_cap(CAP_MKNOD) == 0) {
1696 /* In a container we lack CAP_MKNOD. We
Anatol Pomozovab06eef2013-04-14 19:37:54 -07001697 shouldn't attempt to create the device node in
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07001698 that case to avoid noise, and we don't support
1699 virtualized devices in containers anyway. */
1700
1701 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
1702 return 0;
1703 }
1704
Lennart Poettering7fa10742018-01-23 14:14:19 +01001705 RUN_WITH_UMASK(0000)
1706 (void) mkdir_parents_label(i->path, 0755);
1707
Lennart Poettering1554afa2014-06-17 23:50:22 +02001708 file_type = i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR;
Lennart Poettering468d7262012-01-17 15:04:12 +01001709
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001710 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001711 mac_selinux_create_file_prepare(i->path, file_type);
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001712 r = mknod(i->path, i->mode | file_type, i->major_minor);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001713 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001714 }
Lennart Poettering468d7262012-01-17 15:04:12 +01001715
Kay Sievers6555ad82014-06-13 04:11:11 +02001716 if (r < 0) {
1717 if (errno == EPERM) {
1718 log_debug("We lack permissions, possibly because of cgroup configuration; "
1719 "skipping creation of device node %s.", i->path);
1720 return 0;
1721 }
1722
Michal Schmidt4a62c712014-11-28 19:57:32 +01001723 if (errno != EEXIST)
1724 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001725
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001726 if (lstat(i->path, &st) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001727 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001728
Lennart Poettering1554afa2014-06-17 23:50:22 +02001729 if ((st.st_mode & S_IFMT) != file_type) {
1730
1731 if (i->force) {
1732
1733 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001734 mac_selinux_create_file_prepare(i->path, file_type);
Lennart Poettering1554afa2014-06-17 23:50:22 +02001735 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001736 mac_selinux_create_file_clear();
Lennart Poettering1554afa2014-06-17 23:50:22 +02001737 }
1738
Michal Schmidtf6479622014-11-28 18:50:43 +01001739 if (r < 0)
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001740 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1741 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02001742 } else {
1743 log_debug("%s is not a device node.", i->path);
1744 return 0;
1745 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001746 } else
1747 creation = CREATION_EXISTING;
1748 } else
1749 creation = CREATION_NORMAL;
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02001750
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001751 log_debug("%s %s device node \"%s\" %u:%u.",
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01001752 creation_mode_verb_to_string(creation),
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001753 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1754 i->path, major(i->mode), minor(i->mode));
Lennart Poettering468d7262012-01-17 15:04:12 +01001755
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001756 r = path_set_perms(i, i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001757 if (r < 0)
1758 return r;
1759
1760 break;
1761 }
1762
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001763 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01001764 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001765 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01001766 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02001767 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01001768 break;
1769
Michal Schmidta8d88782011-12-15 23:11:07 +01001770 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001771 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01001772 if (r < 0)
1773 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001774 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001775
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001776 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01001777 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001778 if (r < 0)
1779 return r;
1780 break;
1781
1782 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01001783 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001784 if (r < 0)
1785 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001786 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001787
1788 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01001789 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001790 if (r < 0)
1791 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001792 break;
1793
1794 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01001795 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05001796 if (r < 0)
1797 return r;
1798 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001799
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001800 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001801 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001802 if (r < 0)
1803 return r;
1804 break;
1805
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001806 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001807 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001808 if (r < 0)
1809 return r;
1810 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001811 }
1812
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001813 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001814}
1815
Michal Schmidta0896122011-12-15 21:32:50 +01001816static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001817 int r;
1818
1819 assert(i);
1820
1821 switch (i->type) {
1822
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001823 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01001824 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001825 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001826
1827 break;
1828
1829 case TRUNCATE_DIRECTORY:
1830 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +02001831 /* FIXME: we probably should use dir_cleanup() here
1832 * instead of rm_rf() so that 'x' is honoured. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001833 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering1b26f092015-06-15 19:11:15 +02001834 r = rm_rf(instance, (i->type == RECURSIVE_REMOVE_PATH ? REMOVE_ROOT|REMOVE_SUBVOLUME : 0) | REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01001835 if (r < 0 && r != -ENOENT)
1836 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001837
1838 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05001839
1840 default:
1841 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001842 }
1843
1844 return 0;
1845}
1846
Michal Schmidta0896122011-12-15 21:32:50 +01001847static int remove_item(Item *i) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001848 assert(i);
1849
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001850 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
1851
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001852 switch (i->type) {
1853
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001854 case REMOVE_PATH:
1855 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +01001856 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001857 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001858
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001859 default:
1860 return 0;
1861 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01001862}
1863
Michal Sekletar78a92a52013-01-18 16:13:08 +01001864static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02001865 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001866 struct stat s, ps;
1867 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001868 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001869 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01001870
1871 assert(i);
1872
1873 if (!i->age_set)
1874 return 0;
1875
1876 n = now(CLOCK_REALTIME);
1877 if (n < i->age)
1878 return 0;
1879
1880 cutoff = n - i->age;
1881
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001882 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001883 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04001884 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001885 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001886 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001887 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01001888
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04001889 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001890 }
1891
Michal Schmidt4a62c712014-11-28 19:57:32 +01001892 if (fstat(dirfd(d), &s) < 0)
1893 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001894
1895 if (!S_ISDIR(s.st_mode)) {
1896 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05001897 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001898 }
1899
Michal Schmidt4a62c712014-11-28 19:57:32 +01001900 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
1901 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001902
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02001903 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001904
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001905 log_debug("Cleanup threshold for %s \"%s\" is %s",
1906 mountpoint ? "mount point" : "directory",
1907 instance,
1908 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
1909
1910 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
1911 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001912}
1913
1914static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01001915 assert(i);
1916
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001917 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
1918
Michal Sekletar78a92a52013-01-18 16:13:08 +01001919 switch (i->type) {
1920 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001921 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001922 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1923 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001924 case TRUNCATE_DIRECTORY:
1925 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02001926 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001927 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001928 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01001929 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001930 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01001931 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01001932 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04001933 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01001934 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01001935}
1936
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001937static int process_item_array(ItemArray *array);
1938
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001939static int process_item(Item *i) {
Lennart Poettering1e958932015-01-06 20:33:46 +01001940 int r, q, p, t = 0;
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05001941 _cleanup_free_ char *prefix = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001942
1943 assert(i);
1944
Lennart Poettering1910cd02014-06-11 01:37:35 +02001945 if (i->done)
1946 return 0;
1947
1948 i->done = true;
1949
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05001950 prefix = malloc(strlen(i->path) + 1);
1951 if (!prefix)
1952 return log_oom();
1953
Lennart Poettering1910cd02014-06-11 01:37:35 +02001954 PATH_FOREACH_PREFIX(prefix, i->path) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001955 ItemArray *j;
Lennart Poettering1910cd02014-06-11 01:37:35 +02001956
Lennart Poetteringef43a392015-04-22 18:18:56 +02001957 j = ordered_hashmap_get(items, prefix);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001958 if (j) {
1959 int s;
1960
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001961 s = process_item_array(j);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001962 if (s < 0 && t == 0)
1963 t = s;
1964 }
Lennart Poettering1910cd02014-06-11 01:37:35 +02001965 }
1966
NeilBrown655f2da2017-09-04 23:35:07 +10001967 if (chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL) == -EREMOTE)
1968 return t;
1969
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001970 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +01001971 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001972 p = arg_clean ? clean_item(i) : 0;
1973
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05001974 return t < 0 ? t :
1975 r < 0 ? r :
1976 q < 0 ? q :
1977 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001978}
1979
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001980static int process_item_array(ItemArray *array) {
1981 unsigned n;
1982 int r = 0, k;
Lennart Poettering753615e2014-06-12 23:07:17 +02001983
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001984 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001985
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05001986 for (n = 0; n < array->count; n++) {
1987 k = process_item(array->items + n);
1988 if (k < 0 && r == 0)
1989 r = k;
1990 }
1991
1992 return r;
1993}
1994
1995static void item_free_contents(Item *i) {
1996 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001997 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01001998 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01001999 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002000
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002001#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002002 acl_free(i->acl_access);
2003 acl_free(i->acl_default);
2004#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002005}
2006
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002007static void item_array_free(ItemArray *a) {
2008 unsigned n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002009
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002010 if (!a)
2011 return;
2012
2013 for (n = 0; n < a->count; n++)
2014 item_free_contents(a->items + n);
2015 free(a->items);
2016 free(a);
2017}
2018
Lennart Poettering17493fa2015-04-10 16:22:22 +02002019static int item_compare(const void *a, const void *b) {
2020 const Item *x = a, *y = b;
2021
2022 /* Make sure that the ownership taking item is put first, so
2023 * that we first create the node, and then can adjust it */
2024
2025 if (takes_ownership(x->type) && !takes_ownership(y->type))
2026 return -1;
2027 if (!takes_ownership(x->type) && takes_ownership(y->type))
2028 return 1;
2029
2030 return (int) x->type - (int) y->type;
2031}
2032
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002033static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002034 assert(a);
2035 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002036 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002037
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002038 if (takes_ownership(a->type) && takes_ownership(b->type))
2039 /* check if the items are the same */
2040 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002041
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002042 a->uid_set == b->uid_set &&
2043 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002044
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002045 a->gid_set == b->gid_set &&
2046 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002047
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002048 a->mode_set == b->mode_set &&
2049 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002050
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002051 a->age_set == b->age_set &&
2052 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002053
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002054 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002055
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002056 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002057
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002058 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002059
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002060 return true;
2061}
2062
Dave Reisnera2aced42013-07-24 11:10:05 -04002063static bool should_include_path(const char *path) {
2064 char **prefix;
2065
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002066 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002067 if (path_startswith(path, *prefix)) {
2068 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2069 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002070 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002071 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002072
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002073 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002074 if (path_startswith(path, *prefix)) {
2075 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002076 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002077 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002078
Dave Reisner5c795112013-07-24 11:19:24 -04002079 /* no matches, so we should include this path only if we
2080 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002081 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002082 return true;
2083
2084 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2085 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002086}
2087
Franck Bui4cef1922017-11-16 11:27:29 +01002088static int specifier_expansion_from_arg(Item *i) {
2089 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2090 char **xattr;
2091 int r;
2092
2093 assert(i);
2094
2095 if (i->argument == NULL)
2096 return 0;
2097
2098 switch (i->type) {
2099 case COPY_FILES:
2100 case CREATE_SYMLINK:
2101 case CREATE_FILE:
2102 case TRUNCATE_FILE:
2103 case WRITE_FILE:
2104 r = cunescape(i->argument, 0, &unescaped);
2105 if (r < 0)
2106 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2107
2108 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2109 if (r < 0)
2110 return r;
2111
2112 free_and_replace(i->argument, resolved);
2113 break;
2114
2115 case SET_XATTR:
2116 case RECURSIVE_SET_XATTR:
2117 assert(i->xattrs);
2118
2119 STRV_FOREACH (xattr, i->xattrs) {
2120 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2121 if (r < 0)
2122 return r;
2123
2124 free_and_replace(*xattr, resolved);
2125 }
2126 break;
2127
2128 default:
2129 break;
2130 }
2131 return 0;
2132}
2133
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002134static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002135
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002136 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002137 _cleanup_(item_free_contents) Item i = {};
2138 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002139 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002140 int r, pos;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002141 bool force = false, boot = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002142
2143 assert(fname);
2144 assert(line >= 1);
2145 assert(buffer);
2146
Richard Maw68685602015-06-23 16:20:53 +00002147 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002148 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002149 NULL,
Richard Maw12ba2c42015-06-23 16:26:49 +00002150 EXTRACT_QUOTES,
Lennart Poettering4034a062015-03-23 18:55:36 +07002151 &action,
2152 &path,
2153 &mode,
2154 &user,
2155 &group,
2156 &age,
2157 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002158 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002159 if (IN_SET(r, -EINVAL, -EBADSLT))
2160 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002161 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002162 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002163 }
2164
daurnimator657cf7f2015-03-09 15:11:44 -04002165 else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002166 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002167 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002168 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002169 }
2170
Lennart Poetteringaa5f6812015-04-21 01:10:19 +02002171 if (!isempty(buffer) && !streq(buffer, "-")) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002172 i.argument = strdup(buffer);
2173 if (!i.argument)
2174 return log_oom();
2175 }
2176
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002177 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002178 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002179 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002180 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002181 }
2182
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002183 for (pos = 1; action[pos]; pos++) {
2184 if (action[pos] == '!' && !boot)
2185 boot = true;
2186 else if (action[pos] == '+' && !force)
2187 force = true;
2188 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002189 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002190 log_error("[%s:%u] Unknown modifiers in command '%s'",
2191 fname, line, action);
2192 return -EINVAL;
2193 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002194 }
2195
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002196 if (boot && !arg_boot) {
2197 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2198 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002199 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002200 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002201
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002202 i.type = action[0];
2203 i.force = force;
Lennart Poettering1731e342013-09-17 11:02:02 -05002204
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002205 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002206 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002207 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002208 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002209 if (IN_SET(r, -EINVAL, -EBADSLT))
2210 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002211 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002212 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002213
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002214 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002215
Michal Schmidt777b87e2011-12-16 18:27:35 +01002216 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002217 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002218 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2219 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002220 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002221 case TRUNCATE_DIRECTORY:
2222 case CREATE_FIFO:
2223 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002224 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002225 case REMOVE_PATH:
2226 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002227 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002228 case RELABEL_PATH:
2229 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002230 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002231 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002232
2233 break;
2234
2235 case CREATE_FILE:
2236 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002237 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002238
2239 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002240 if (!i.argument) {
2241 i.argument = strappend("/usr/share/factory/", i.path);
2242 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002243 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002244 }
2245 break;
2246
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002247 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002248 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002249 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002250 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002251 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002252 }
2253 break;
2254
Lennart Poettering849958d2014-06-10 23:02:40 +02002255 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002256 if (!i.argument) {
2257 i.argument = strappend("/usr/share/factory/", i.path);
2258 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002259 return log_oom();
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002260 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002261 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002262 log_error("[%s:%u] Source path is not absolute.", fname, line);
2263 return -EBADMSG;
2264 }
2265
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002266 path_kill_slashes(i.argument);
Lennart Poettering849958d2014-06-10 23:02:40 +02002267 break;
2268
Lennart Poettering468d7262012-01-17 15:04:12 +01002269 case CREATE_CHAR_DEVICE:
2270 case CREATE_BLOCK_DEVICE: {
2271 unsigned major, minor;
2272
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002273 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002274 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002275 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002276 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002277 }
2278
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002279 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002280 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002281 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 -04002282 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002283 }
2284
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002285 i.major_minor = makedev(major, minor);
Lennart Poettering468d7262012-01-17 15:04:12 +01002286 break;
2287 }
2288
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002289 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002290 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002291 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002292 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002293 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2294 return -EBADMSG;
2295 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002296 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002297 if (r < 0)
2298 return r;
2299 break;
2300
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002301 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002302 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002303 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002304 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002305 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2306 return -EBADMSG;
2307 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002308 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002309 if (r < 0)
2310 return r;
2311 break;
2312
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002313 case SET_ATTRIBUTE:
2314 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002315 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002316 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002317 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002318 return -EBADMSG;
2319 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002320 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002321 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002322 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002323 if (r < 0)
2324 return r;
2325 break;
2326
Michal Schmidt777b87e2011-12-16 18:27:35 +01002327 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002328 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002329 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002330 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002331 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002332
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002333 if (!path_is_absolute(i.path)) {
2334 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002335 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002336 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002337 }
2338
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002339 path_kill_slashes(i.path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002340
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002341 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002342 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002343
Franck Bui4cef1922017-11-16 11:27:29 +01002344 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002345 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002346 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002347 if (r < 0) {
2348 if (IN_SET(r, -EINVAL, -EBADSLT))
2349 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002350 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2351 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002352 }
Franck Bui4cef1922017-11-16 11:27:29 +01002353
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002354 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002355 char *p;
2356
Lennart Poettering1d13f642015-05-13 17:42:10 +02002357 p = prefix_root(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002358 if (!p)
2359 return log_oom();
2360
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002361 free(i.path);
2362 i.path = p;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002363 }
2364
Lennart Poettering90937fe2015-04-10 16:04:16 +02002365 if (!isempty(user) && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002366 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002367
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002368 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL);
Lennart Poettering4b678342011-07-23 01:17:59 +02002369 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002370 *invalid_config = true;
2371 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002372 }
2373
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002374 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002375 }
2376
Lennart Poettering90937fe2015-04-10 16:04:16 +02002377 if (!isempty(group) && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002378 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002379
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002380 r = get_group_creds(&g, &i.gid);
Lennart Poettering4b678342011-07-23 01:17:59 +02002381 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002382 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002383 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002384 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002385 }
2386
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002387 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002388 }
2389
Lennart Poettering90937fe2015-04-10 16:04:16 +02002390 if (!isempty(mode) && !streq(mode, "-")) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002391 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002392 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002393
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002394 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002395 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002396 mm++;
2397 }
2398
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002399 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002400 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002401 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002402 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002403 }
2404
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002405 i.mode = m;
2406 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002407 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002408 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 +02002409
Lennart Poettering90937fe2015-04-10 16:04:16 +02002410 if (!isempty(age) && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002411 const char *a = age;
2412
2413 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002414 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002415 a++;
2416 }
2417
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002418 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002419 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002420 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002421 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002422 }
2423
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002424 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002425 }
2426
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002427 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002428
Lennart Poetteringef43a392015-04-22 18:18:56 +02002429 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002430 if (existing) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002431 unsigned n;
2432
2433 for (n = 0; n < existing->count; n++) {
Martin Pitt6487ada2015-03-05 14:58:56 +01002434 if (!item_compatible(existing->items + n, &i)) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002435 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2436 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002437 return 0;
2438 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002439 }
2440 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002441 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002442 if (!existing)
2443 return log_oom();
2444
Lennart Poetteringef43a392015-04-22 18:18:56 +02002445 r = ordered_hashmap_put(h, i.path, existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002446 if (r < 0)
2447 return log_oom();
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002448 }
2449
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002450 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2451 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002452
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002453 memcpy(existing->items + existing->count++, &i, sizeof(i));
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002454
2455 /* Sort item array, to enforce stable ordering of application */
2456 qsort_safe(existing->items, existing->count, sizeof(Item), item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002457
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002458 zero(i);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002459 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002460}
2461
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002462static void help(void) {
Lennart Poettering522d4a42011-02-13 15:08:15 +01002463 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2464 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002465 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002466 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002467 " --version Show package version\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002468 " --create Create marked files/directories\n"
2469 " --clean Clean up marked directories\n"
2470 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002471 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002472 " --prefix=PATH Only apply rules with the specified prefix\n"
2473 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002474 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002475 " --replace=PATH Treat arguments as replacement for PATH\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002476 , program_invocation_short_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002477}
2478
2479static int parse_argv(int argc, char *argv[]) {
2480
2481 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002482 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002483 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002484 ARG_CREATE,
2485 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002486 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002487 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002488 ARG_PREFIX,
2489 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002490 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002491 ARG_REPLACE,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002492 };
2493
2494 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002495 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002496 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002497 { "version", no_argument, NULL, ARG_VERSION },
Dave Reisner5c795112013-07-24 11:19:24 -04002498 { "create", no_argument, NULL, ARG_CREATE },
2499 { "clean", no_argument, NULL, ARG_CLEAN },
2500 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002501 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002502 { "prefix", required_argument, NULL, ARG_PREFIX },
2503 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002504 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002505 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002506 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002507 };
2508
Lennart Poettering0f474362015-10-22 19:28:31 +02002509 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002510
2511 assert(argc >= 0);
2512 assert(argv);
2513
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002514 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002515
2516 switch (c) {
2517
2518 case 'h':
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002519 help();
2520 return 0;
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002521
2522 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002523 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002524
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002525 case ARG_USER:
2526 arg_user = true;
2527 break;
2528
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002529 case ARG_CREATE:
2530 arg_create = true;
2531 break;
2532
2533 case ARG_CLEAN:
2534 arg_clean = true;
2535 break;
2536
2537 case ARG_REMOVE:
2538 arg_remove = true;
2539 break;
2540
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002541 case ARG_BOOT:
2542 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002543 break;
2544
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002545 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002546 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002547 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002548 break;
2549
Dave Reisner5c795112013-07-24 11:19:24 -04002550 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002551 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002552 return log_oom();
2553 break;
2554
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002555 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002556 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002557 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002558 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002559 break;
2560
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002561 case ARG_REPLACE:
2562 if (!path_is_absolute(optarg) ||
2563 !endswith(optarg, ".conf")) {
2564 log_error("The argument to --replace= must an absolute path to a config file");
2565 return -EINVAL;
2566 }
2567
2568 arg_replace = optarg;
2569 break;
2570
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002571 case '?':
2572 return -EINVAL;
2573
2574 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002575 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002576 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002577
2578 if (!arg_clean && !arg_create && !arg_remove) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01002579 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002580 return -EINVAL;
2581 }
2582
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002583 if (arg_replace && optind >= argc) {
2584 log_error("When --replace= is given, some configuration items must be specified");
2585 return -EINVAL;
2586 }
2587
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002588 return 1;
2589}
2590
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002591static 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 -04002592 _cleanup_fclose_ FILE *_f = NULL;
2593 FILE *f;
Lennart Poettering1731e342013-09-17 11:02:02 -05002594 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002595 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002596 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002597 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002598 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002599
2600 assert(fn);
2601
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002602 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002603 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002604 fn = "<stdin>";
2605 f = stdin;
2606 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002607 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002608 if (r < 0) {
2609 if (ignore_enoent && r == -ENOENT) {
2610 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
2611 return 0;
2612 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002613
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002614 return log_error_errno(r, "Failed to open '%s': %m", fn);
2615 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002616 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002617 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002618 }
2619
Lennart Poettering1731e342013-09-17 11:02:02 -05002620 FOREACH_LINE(line, f, break) {
2621 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002622 int k;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002623 bool invalid_line = false;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002624
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002625 v++;
2626
2627 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09002628 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002629 continue;
2630
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002631 k = parse_line(fn, v, l, &invalid_line);
2632 if (k < 0) {
2633 if (invalid_line)
2634 /* Allow reporting with a special code if the caller requested this */
2635 *invalid_config = true;
2636 else if (r == 0)
2637 /* The first error becomes our return value */
2638 r = k;
2639 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002640 }
2641
Michal Sekletar78a92a52013-01-18 16:13:08 +01002642 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002643 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002644 Iterator iter;
2645 Item *j, *candidate_item = NULL;
2646
2647 if (i->type != IGNORE_DIRECTORY_PATH)
2648 continue;
2649
Lennart Poetteringef43a392015-04-22 18:18:56 +02002650 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002651 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 +01002652 continue;
2653
2654 if (path_equal(j->path, i->path)) {
2655 candidate_item = j;
2656 break;
2657 }
2658
2659 if ((!candidate_item && path_startswith(i->path, j->path)) ||
2660 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
2661 candidate_item = j;
2662 }
2663
Richard Weinberger9ed2a352014-09-09 11:09:37 +02002664 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002665 i->age = candidate_item->age;
2666 i->age_set = true;
2667 }
2668 }
2669
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002670 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01002671 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002672 if (r == 0)
2673 r = -EIO;
2674 }
2675
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002676 return r;
2677}
2678
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002679static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
2680 char **arg;
2681 int r;
2682
2683 STRV_FOREACH(arg, args) {
2684 r = read_config_file(config_dirs, *arg, false, invalid_config);
2685 if (r < 0)
2686 return r;
2687 }
2688
2689 return 0;
2690}
2691
2692static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
2693 _cleanup_strv_free_ char **files = NULL;
2694 _cleanup_free_ char *p = NULL;
2695 char **f;
2696 int r;
2697
2698 r = conf_files_list_strv(&files, ".conf", arg_root, 0, (const char* const*) config_dirs);
2699 if (r < 0)
2700 return log_error_errno(r, "Failed to enumerate tmpfiles.d files: %m");
2701
2702 if (arg_replace) {
2703 r = conf_files_insert(&files, arg_root, config_dirs, arg_replace);
2704 if (r < 0)
2705 return log_error_errno(r, "Failed to extend tmpfiles.d file list: %m");
2706
2707 p = path_join(arg_root, arg_replace, NULL);
2708 if (!p)
2709 return log_oom();
2710 }
2711
2712 STRV_FOREACH(f, files)
2713 if (p && path_equal(*f, p)) {
2714 log_debug("Parsing arguments at position \"%s\"…", *f);
2715
2716 r = parse_arguments(config_dirs, args, invalid_config);
2717 if (r < 0)
2718 return r;
2719 } else
2720 /* Just warn, ignore result otherwise.
2721 * read_config_file() has some debug output, so no need to print anything. */
2722 (void) read_config_file(config_dirs, *f, true, invalid_config);
2723
2724 return 0;
2725}
2726
Lennart Poettering5008d582010-09-28 02:34:02 +02002727int main(int argc, char *argv[]) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002728 int r, k;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002729 ItemArray *a;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002730 Iterator iterator;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002731 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002732 bool invalid_config = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002733
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01002734 r = parse_argv(argc, argv);
2735 if (r <= 0)
Lennart Poettering753615e2014-06-12 23:07:17 +02002736 goto finish;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002737
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01002738 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02002739 log_parse_environment();
2740 log_open();
2741
Lennart Poettering4c126262011-08-01 20:52:18 +02002742 umask(0022);
2743
Zbigniew Jędrzejewski-Szmekc3dacc82016-03-01 20:35:55 -05002744 mac_selinux_init();
Lennart Poettering5008d582010-09-28 02:34:02 +02002745
Lennart Poetteringef43a392015-04-22 18:18:56 +02002746 items = ordered_hashmap_new(&string_hash_ops);
2747 globs = ordered_hashmap_new(&string_hash_ops);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002748
2749 if (!items || !globs) {
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002750 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002751 goto finish;
2752 }
2753
Lennart Poetteringfabe5c02013-02-11 23:48:36 +01002754 r = 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002755
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002756 if (arg_user) {
2757 r = user_config_paths(&config_dirs);
2758 if (r < 0) {
2759 log_error_errno(r, "Failed to initialize configuration directory list: %m");
2760 goto finish;
2761 }
2762 } else {
2763 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
2764 if (!config_dirs) {
2765 r = log_oom();
2766 goto finish;
2767 }
2768 }
2769
Lennart Poettering79c91ce2018-01-22 15:33:13 +01002770 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002771 _cleanup_free_ char *t = NULL;
2772
2773 t = strv_join(config_dirs, "\n\t");
2774 if (t)
2775 log_debug("Looking for configuration files in (higher priority first:\n\t%s", t);
2776 }
2777
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002778 /* If command line arguments are specified along with --replace, read all
2779 * configuration files and insert the positional arguments at the specified
2780 * place. Otherwise, if command line arguments are specified, execute just
2781 * them, and finally, without --replace= or any positional arguments, just
2782 * read configuration and execute it.
2783 */
2784 if (arg_replace || optind >= argc)
2785 r = read_config_files(config_dirs, argv + optind, &invalid_config);
2786 else
2787 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
2788 if (r < 0)
2789 goto finish;
Lennart Poettering5008d582010-09-28 02:34:02 +02002790
Lennart Poettering5008d582010-09-28 02:34:02 +02002791
Lennart Poettering5008d582010-09-28 02:34:02 +02002792
Lennart Poettering17493fa2015-04-10 16:22:22 +02002793 /* The non-globbing ones usually create things, hence we apply
2794 * them first */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002795 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002796 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002797 if (k < 0 && r == 0)
2798 r = k;
2799 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002800
Lennart Poettering17493fa2015-04-10 16:22:22 +02002801 /* The globbing ones usually alter things, hence we apply them
2802 * second. */
Lennart Poetteringef43a392015-04-22 18:18:56 +02002803 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002804 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002805 if (k < 0 && r == 0)
2806 r = k;
2807 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002808
Lennart Poettering5008d582010-09-28 02:34:02 +02002809finish:
Zbigniew Jędrzejewski-Szmek224b0e72017-11-28 12:35:49 +01002810 ordered_hashmap_free_with_destructor(items, item_array_free);
2811 ordered_hashmap_free_with_destructor(globs, item_array_free);
Lennart Poettering5008d582010-09-28 02:34:02 +02002812
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002813 free(arg_include_prefixes);
2814 free(arg_exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002815 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04002816
Lennart Poettering17b90522011-02-14 21:55:06 +01002817 set_free_free(unix_sockets);
2818
WaLyong Chocc56faf2014-10-23 17:23:46 +09002819 mac_selinux_finish();
Lennart Poettering29003cf2010-10-19 19:36:45 +02002820
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002821 if (r < 0)
2822 return EXIT_FAILURE;
2823 else if (invalid_config)
2824 return EX_DATAERR;
2825 else
2826 return EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02002827}