blob: 9cd317e97b1a98b3bafdd5ca597808deb6f0721c [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
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02003#include <errno.h>
4#include <fcntl.h>
5#include <fnmatch.h>
6#include <getopt.h>
7#include <glob.h>
8#include <limits.h>
9#include <linux/fs.h>
10#include <stdbool.h>
11#include <stddef.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020012#include <stdio.h>
13#include <stdlib.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020014#include <string.h>
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -050015#include <sys/stat.h>
Maciej Wereskiebf4e802014-12-04 10:32:10 +010016#include <sys/xattr.h>
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +010017#include <sysexits.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020018#include <time.h>
19#include <unistd.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020020
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +010021#include "sd-path.h"
22
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020023#include "acl-util.h"
Lennart Poetteringb5efdb82015-10-27 03:01:06 +010024#include "alloc-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020025#include "btrfs-util.h"
Lennart Poettering430f0182015-10-26 23:32:16 +010026#include "capability-util.h"
Lennart Poetteringc8b30942015-10-26 20:39:23 +010027#include "chattr-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020028#include "conf-files.h"
29#include "copy.h"
Lennart Poetteringa0f29c72015-11-03 12:26:12 +010030#include "def.h"
Reverend Homer8fb3f002016-12-09 12:04:30 +030031#include "dirent-util.h"
Lennart Poettering4f5dd392015-10-23 18:52:53 +020032#include "escape.h"
Lennart Poettering3ffd4af2015-10-25 13:14:12 +010033#include "fd-util.h"
Lennart Poettering0d39fa92015-10-26 18:05:03 +010034#include "fileio.h"
Zbigniew Jędrzejewski-Szmekf97b34a2016-11-07 10:14:59 -050035#include "format-util.h"
Lennart Poetteringf4f15632015-10-26 21:16:26 +010036#include "fs-util.h"
Lennart Poettering7d50b322015-10-27 01:48:17 +010037#include "glob-util.h"
Lennart Poetteringc0044932015-10-25 14:08:25 +010038#include "io-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020039#include "label.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020040#include "log.h"
Dave Reisner54693d92012-09-15 12:58:49 -040041#include "macro.h"
Yu Watanabe87938c32018-11-26 01:00:54 +090042#include "main-func.h"
Zbigniew Jędrzejewski-Szmekd39efe72013-03-13 20:20:54 -040043#include "missing.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020044#include "mkdir.h"
Zbigniew Jędrzejewski-Szmek049af8a2018-11-29 10:24:39 +010045#include "mountpoint-util.h"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +020046#include "pager.h"
Lennart Poettering6bedfcb2015-10-26 16:18:16 +010047#include "parse-util.h"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +010048#include "path-lookup.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020049#include "path-util.h"
Zbigniew Jędrzejewski-Szmek294bf0c2018-11-20 15:42:57 +010050#include "pretty-print.h"
Lennart Poetteringc6878632015-04-04 11:52:57 +020051#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010052#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020053#include "set.h"
54#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010055#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010056#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010057#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020058#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020059#include "strv.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010060#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010061#include "user-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020062#include "util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020063
Andreas Jaeger01000472010-09-29 10:08:24 +020064/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020065 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020066 * properly owned directories beneath /tmp, /var/tmp, /run, which are
67 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020068
Lennart Poettering1a967b62018-10-25 23:19:00 +020069typedef enum OperationMask {
70 OPERATION_CREATE = 1 << 0,
71 OPERATION_REMOVE = 1 << 1,
72 OPERATION_CLEAN = 1 << 2,
73} OperationMask;
74
Michal Schmidt66ccd032011-12-15 21:31:14 +010075typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010076 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020077 CREATE_FILE = 'f',
78 TRUNCATE_FILE = 'F',
79 CREATE_DIRECTORY = 'd',
80 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010081 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020082 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
83 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020084 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010085 CREATE_SYMLINK = 'L',
86 CREATE_CHAR_DEVICE = 'c',
87 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020088 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010089
90 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +020091 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -040092 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -050093 SET_XATTR = 't',
94 RECURSIVE_SET_XATTR = 'T',
95 SET_ACL = 'a',
96 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +020097 SET_ATTRIBUTE = 'h',
98 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020099 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +0100100 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200101 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +0100102 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +0100103 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200104 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200105 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +0100106} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200107
108typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100109 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200110
111 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100112 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100113 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200114#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500115 acl_t acl_access;
116 acl_t acl_default;
117#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200118 uid_t uid;
119 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200120 mode_t mode;
121 usec_t age;
122
Lennart Poettering468d7262012-01-17 15:04:12 +0100123 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200124 unsigned attribute_value;
125 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100126
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200127 bool uid_set:1;
128 bool gid_set:1;
129 bool mode_set:1;
130 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200131 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200132 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200133
134 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200135
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200136 bool force:1;
137
William Douglas6d7b5432018-09-10 12:07:29 -0700138 bool allow_failure:1;
139
Lennart Poettering811a1582018-10-26 20:56:37 +0200140 OperationMask done;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200141} Item;
142
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500143typedef struct ItemArray {
144 Item *items;
Lennart Poettering96d10d72018-10-25 13:51:01 +0200145 size_t n_items;
Lennart Poettering64768712018-10-25 13:48:25 +0200146 size_t allocated;
Lennart Poettering811a1582018-10-26 20:56:37 +0200147
148 struct ItemArray *parent;
149 Set *children;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500150} ItemArray;
151
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100152typedef enum DirectoryType {
Lennart Poettering133bbca2018-10-26 10:32:48 +0200153 DIRECTORY_RUNTIME,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100154 DIRECTORY_STATE,
155 DIRECTORY_CACHE,
156 DIRECTORY_LOGS,
157 _DIRECTORY_TYPE_MAX,
158} DirectoryType;
159
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200160static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100161static bool arg_user = false;
Lennart Poettering1a967b62018-10-25 23:19:00 +0200162static OperationMask arg_operation = 0;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500163static bool arg_boot = false;
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +0100164static PagerFlags arg_pager_flags = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200165
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200166static char **arg_include_prefixes = NULL;
167static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700168static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100169static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100170
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200171#define MAX_DEPTH 256
172
Lennart Poetteringef43a392015-04-22 18:18:56 +0200173static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200174static Set *unix_sockets = NULL;
175
Yu Watanabe87938c32018-11-26 01:00:54 +0900176STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
177STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
178STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_free_freep);
179STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
180STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
181STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
182
Franck Bui4cef1922017-11-16 11:27:29 +0100183static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100184static int specifier_directory(char specifier, void *data, void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100185
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200186static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100187 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100188 { 'b', specifier_boot_id, NULL },
189 { 'H', specifier_host_name, NULL },
190 { 'v', specifier_kernel_release, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100191
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700192 { 'g', specifier_group_name, NULL },
193 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100194 { 'U', specifier_user_id, NULL },
195 { 'u', specifier_user_name, NULL },
196 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200197
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100198 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
199 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
200 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
201 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200202 { 'T', specifier_tmp_dir, NULL },
203 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200204 {}
205};
206
Franck Bui4cef1922017-11-16 11:27:29 +0100207static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret) {
208 int r;
209
Franck Buid8dab752018-01-10 23:28:44 +0100210 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
211 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100212 * gracefully. */
213
214 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100215 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100216 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100217
218 return r;
219}
220
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100221static int specifier_directory(char specifier, void *data, void *userdata, char **ret) {
222 struct table_entry {
223 uint64_t type;
224 const char *suffix;
225 };
226
227 static const struct table_entry paths_system[] = {
228 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
229 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
230 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
231 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
232 };
233
234 static const struct table_entry paths_user[] = {
235 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
236 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
237 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
238 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
239 };
240
241 unsigned i;
242 const struct table_entry *paths;
243
244 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
245 paths = arg_user ? paths_user : paths_system;
246
247 i = PTR_TO_UINT(data);
248 assert(i < ELEMENTSOF(paths_system));
249
250 return sd_path_home(paths[i].type, paths[i].suffix, ret);
251}
252
Franck Bui4cef1922017-11-16 11:27:29 +0100253static int log_unresolvable_specifier(const char *filename, unsigned line) {
254 static bool notified = false;
255
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100256 /* In system mode, this is called when /etc is not fully initialized (e.g.
257 * in a chroot environment) where some specifiers are unresolvable. In user
258 * mode, this is called when some variables are not defined. These cases are
259 * not considered as an error so log at LOG_NOTICE only for the first time
260 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100261
262 log_full(notified ? LOG_DEBUG : LOG_NOTICE,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100263 "[%s:%u] Failed to resolve specifier: %s, skipping",
264 filename, line,
265 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100266
267 if (!notified)
268 log_notice("All rules containing unresolvable specifiers will be skipped.");
269
270 notified = true;
271 return 0;
272}
273
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100274static int user_config_paths(char*** ret) {
275 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
276 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
277 _cleanup_strv_free_ char **res = NULL;
278 int r;
279
280 r = xdg_user_dirs(&config_dirs, &data_dirs);
281 if (r < 0)
282 return r;
283
284 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
285 if (r < 0 && r != -ENXIO)
286 return r;
287
288 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
289 if (r < 0 && r != -ENXIO)
290 return r;
291
292 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
293 if (r < 0 && r != -ENXIO)
294 return r;
295
296 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
297 if (r < 0)
298 return r;
299
300 r = strv_extend(&res, persistent_config);
301 if (r < 0)
302 return r;
303
304 r = strv_extend(&res, runtime_config);
305 if (r < 0)
306 return r;
307
308 r = strv_extend(&res, data_home);
309 if (r < 0)
310 return r;
311
312 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
313 if (r < 0)
314 return r;
315
316 r = path_strv_make_absolute_cwd(res);
317 if (r < 0)
318 return r;
319
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100320 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100321 return 0;
322}
323
Michal Schmidt66ccd032011-12-15 21:31:14 +0100324static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200325 return IN_SET(t,
326 WRITE_FILE,
327 IGNORE_PATH,
328 IGNORE_DIRECTORY_PATH,
329 REMOVE_PATH,
330 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400331 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200332 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200333 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500334 RECURSIVE_RELABEL_PATH,
335 SET_XATTR,
336 RECURSIVE_SET_XATTR,
337 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200338 RECURSIVE_SET_ACL,
339 SET_ATTRIBUTE,
340 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100341}
342
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500343static bool takes_ownership(ItemType t) {
344 return IN_SET(t,
345 CREATE_FILE,
346 TRUNCATE_FILE,
347 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400348 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500349 TRUNCATE_DIRECTORY,
350 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200351 CREATE_SUBVOLUME_INHERIT_QUOTA,
352 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500353 CREATE_FIFO,
354 CREATE_SYMLINK,
355 CREATE_CHAR_DEVICE,
356 CREATE_BLOCK_DEVICE,
357 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500358 WRITE_FILE,
359 IGNORE_PATH,
360 IGNORE_DIRECTORY_PATH,
361 REMOVE_PATH,
362 RECURSIVE_REMOVE_PATH);
363}
364
Lennart Poetteringef43a392015-04-22 18:18:56 +0200365static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500366 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100367 Iterator i;
368
Lennart Poetteringef43a392015-04-22 18:18:56 +0200369 ORDERED_HASHMAP_FOREACH(j, h, i) {
Lennart Poettering96d10d72018-10-25 13:51:01 +0200370 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500371
Lennart Poettering96d10d72018-10-25 13:51:01 +0200372 for (n = 0; n < j->n_items; n++) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500373 Item *item = j->items + n;
374
375 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
376 return item;
377 }
378 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100379
380 return NULL;
381}
382
Yu Watanabe71a0be72018-11-26 00:48:15 +0900383static int load_unix_sockets(void) {
384 _cleanup_set_free_free_ Set *sockets = NULL;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200385 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100386 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100387
388 if (unix_sockets)
Yu Watanabe71a0be72018-11-26 00:48:15 +0900389 return 0;
Lennart Poettering17b90522011-02-14 21:55:06 +0100390
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100391 /* 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 +0100392
Yu Watanabe71a0be72018-11-26 00:48:15 +0900393 sockets = set_new(&path_hash_ops);
394 if (!sockets)
395 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100396
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100397 f = fopen("/proc/net/unix", "re");
Yu Watanabe71a0be72018-11-26 00:48:15 +0900398 if (!f)
399 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
400 "Failed to open /proc/net/unix, ignoring: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100401
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100402 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100403 r = read_line(f, LONG_LINE_MAX, NULL);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900404 if (r < 0)
405 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
406 if (r == 0)
407 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
Lennart Poettering17b90522011-02-14 21:55:06 +0100408
409 for (;;) {
Yu Watanabe71a0be72018-11-26 00:48:15 +0900410 _cleanup_free_ char *line = NULL, *s = NULL;
411 char *p;
Lennart Poettering17b90522011-02-14 21:55:06 +0100412
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100413 r = read_line(f, LONG_LINE_MAX, &line);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900414 if (r < 0)
415 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100416 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100417 break;
418
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100419 p = strchr(line, ':');
420 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100421 continue;
422
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100423 if (strlen(p) < 37)
424 continue;
425
426 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100427 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100428 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100429 p += strspn(p, WHITESPACE);
430
431 if (*p != '/')
432 continue;
433
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100434 s = strdup(p);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900435 if (!s)
436 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100437
Yu Watanabe858d36c2018-05-31 23:39:31 +0900438 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100439
Yu Watanabe71a0be72018-11-26 00:48:15 +0900440 r = set_consume(sockets, s);
441 if (r == -EEXIST)
442 continue;
443 if (r < 0)
444 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
445
446 TAKE_PTR(s);
Lennart Poettering17b90522011-02-14 21:55:06 +0100447 }
448
Yu Watanabe71a0be72018-11-26 00:48:15 +0900449 unix_sockets = TAKE_PTR(sockets);
450 return 1;
Lennart Poettering17b90522011-02-14 21:55:06 +0100451}
452
453static bool unix_socket_alive(const char *fn) {
454 assert(fn);
455
Yu Watanabe71a0be72018-11-26 00:48:15 +0900456 if (load_unix_sockets() < 0)
457 return true; /* We don't know, so assume yes */
Lennart Poettering17b90522011-02-14 21:55:06 +0100458
Yu Watanabe71a0be72018-11-26 00:48:15 +0900459 return !!set_get(unix_sockets, (char*) fn);
Lennart Poettering17b90522011-02-14 21:55:06 +0100460}
461
Kay Sievers99d680a2013-03-13 13:12:36 +0100462static int dir_is_mount_point(DIR *d, const char *subdir) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200463
Kay Sievers99d680a2013-03-13 13:12:36 +0100464 int mount_id_parent, mount_id;
465 int r_p, r;
466
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100467 r_p = name_to_handle_at_loop(dirfd(d), ".", NULL, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100468 if (r_p < 0)
469 r_p = -errno;
470
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100471 r = name_to_handle_at_loop(dirfd(d), subdir, NULL, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100472 if (r < 0)
473 r = -errno;
474
475 /* got no handle; make no assumptions, return error */
476 if (r_p < 0 && r < 0)
477 return r_p;
478
479 /* got both handles; if they differ, it is a mount point */
480 if (r_p >= 0 && r >= 0)
481 return mount_id_parent != mount_id;
482
483 /* got only one handle; assume different mount points if one
484 * of both queries was not supported by the filesystem */
Yu Watanabe4c701092017-10-04 23:01:32 +0900485 if (IN_SET(r_p, -ENOSYS, -EOPNOTSUPP) || IN_SET(r, -ENOSYS, -EOPNOTSUPP))
Kay Sievers99d680a2013-03-13 13:12:36 +0100486 return true;
487
488 /* return error */
489 if (r_p < 0)
490 return r_p;
491 return r;
492}
493
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500494static DIR* xopendirat_nomod(int dirfd, const char *path) {
495 DIR *dir;
496
497 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700498 if (dir)
499 return dir;
500
501 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
502 if (errno != EPERM)
503 return NULL;
504
505 dir = xopendirat(dirfd, path, O_NOFOLLOW);
506 if (!dir)
507 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500508
509 return dir;
510}
511
512static DIR* opendir_nomod(const char *path) {
513 return xopendirat_nomod(AT_FDCWD, path);
514}
515
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200516static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100517 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200518 const char *p,
519 DIR *d,
520 const struct stat *ds,
521 usec_t cutoff,
522 dev_t rootdev,
523 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200524 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500525 bool keep_this_level) {
526
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200527 struct dirent *dent;
528 struct timespec times[2];
529 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200530 int r = 0;
531
Reverend Homer8fb3f002016-12-09 12:04:30 +0300532 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200533 struct stat s;
534 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200535 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200536
Lennart Poettering49bfc872017-02-02 00:06:18 +0100537 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200538 continue;
539
540 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200541 if (errno == ENOENT)
542 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200543
Kay Sieversca2f4172013-10-17 03:20:46 +0200544 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100545 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
546 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200547 continue;
548 }
549
550 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500551 if (s.st_dev != rootdev) {
552 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200553 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500554 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200555
Kay Sievers99d680a2013-03-13 13:12:36 +0100556 /* Try to detect bind mounts of the same filesystem instance; they
557 * do not differ in device major/minors. This type of query is not
558 * supported on all kernels or filesystem types though. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500559 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0) {
560 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.",
561 p, dent->d_name);
Kay Sievers99d680a2013-03-13 13:12:36 +0100562 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500563 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100564
Zbigniew Jędrzejewski-Szmek605405c2016-10-23 11:43:27 -0400565 sub_path = strjoin(p, "/", dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200566 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700567 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200568 goto finish;
569 }
570
571 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200572 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500573 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200574 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500575 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200576
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500577 if (find_glob(globs, sub_path)) {
578 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100579 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500580 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100581
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200582 if (S_ISDIR(s.st_mode)) {
583
584 if (mountpoint &&
585 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500586 s.st_uid == 0) {
587 log_debug("Ignoring \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200588 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500589 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200590
591 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500592 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200593 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200594 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200595 int q;
596
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500597 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200598 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500599 if (errno != ENOENT)
600 r = log_error_errno(errno, "opendir(%s) failed: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200601
602 continue;
603 }
604
Michal Sekletar78a92a52013-01-18 16:13:08 +0100605 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200606 if (q < 0)
607 r = q;
608 }
609
Lennart Poettering24f3a372012-06-20 09:05:50 +0200610 /* Note: if you are wondering why we don't
611 * support the sticky bit for excluding
612 * directories from cleaning like we do it for
613 * other file system objects: well, the sticky
614 * bit already has a meaning for directories,
615 * so we don't want to overload that. */
616
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500617 if (keep_this_level) {
618 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200619 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500620 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200621
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200622 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500623 age = timespec_load(&s.st_mtim);
624 if (age >= cutoff) {
625 char a[FORMAT_TIMESTAMP_MAX];
626 /* Follows spelling in stat(1). */
627 log_debug("Directory \"%s\": modify time %s is too new.",
628 sub_path,
629 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200630 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500631 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200632
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500633 age = timespec_load(&s.st_atim);
634 if (age >= cutoff) {
635 char a[FORMAT_TIMESTAMP_MAX];
636 log_debug("Directory \"%s\": access time %s is too new.",
637 sub_path,
638 format_timestamp_us(a, sizeof(a), age));
639 continue;
640 }
641
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500642 log_debug("Removing directory \"%s\".", sub_path);
643 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100644 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
645 r = log_error_errno(errno, "rmdir(%s): %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200646
647 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100648 /* Skip files for which the sticky bit is
649 * set. These are semantics we define, and are
650 * unknown elsewhere. See XDG_RUNTIME_DIR
651 * specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500652 if (s.st_mode & S_ISVTX) {
653 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100654 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200655 }
656
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500657 if (mountpoint && S_ISREG(s.st_mode))
Zbigniew Jędrzejewski-Szmek1542c012015-06-13 13:14:37 -0400658 if (s.st_uid == 0 && STR_IN_SET(dent->d_name,
659 ".journal",
660 "aquota.user",
661 "aquota.group")) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500662 log_debug("Skipping \"%s\".", sub_path);
663 continue;
664 }
665
Lennart Poettering17b90522011-02-14 21:55:06 +0100666 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500667 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
668 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100669 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500670 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100671
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100672 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500673 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
674 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100675 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500676 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100677
Lennart Poettering24f3a372012-06-20 09:05:50 +0200678 /* Keep files on this level around if this is
679 * requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500680 if (keep_this_level) {
681 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200682 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200683 }
684
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500685 age = timespec_load(&s.st_mtim);
686 if (age >= cutoff) {
687 char a[FORMAT_TIMESTAMP_MAX];
688 /* Follows spelling in stat(1). */
689 log_debug("File \"%s\": modify time %s is too new.",
690 sub_path,
691 format_timestamp_us(a, sizeof(a), age));
692 continue;
693 }
694
695 age = timespec_load(&s.st_atim);
696 if (age >= cutoff) {
697 char a[FORMAT_TIMESTAMP_MAX];
698 log_debug("File \"%s\": access time %s is too new.",
699 sub_path,
700 format_timestamp_us(a, sizeof(a), age));
701 continue;
702 }
703
704 age = timespec_load(&s.st_ctim);
705 if (age >= cutoff) {
706 char a[FORMAT_TIMESTAMP_MAX];
707 log_debug("File \"%s\": change time %s is too new.",
708 sub_path,
709 format_timestamp_us(a, sizeof(a), age));
710 continue;
711 }
712
713 log_debug("unlink \"%s\"", sub_path);
714
715 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
716 if (errno != ENOENT)
717 r = log_error_errno(errno, "unlink(%s): %m", sub_path);
718
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200719 deleted = true;
720 }
721 }
722
723finish:
724 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500725 usec_t age1, age2;
726 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
727
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200728 /* Restore original directory timestamps */
729 times[0] = ds->st_atim;
730 times[1] = ds->st_mtim;
731
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500732 age1 = timespec_load(&ds->st_atim);
733 age2 = timespec_load(&ds->st_mtim);
734 log_debug("Restoring access and modification time on \"%s\": %s, %s",
735 p,
736 format_timestamp_us(a, sizeof(a), age1),
737 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200738 if (futimens(dirfd(d), times) < 0)
Michal Schmidt56f64d92014-11-28 19:29:59 +0100739 log_error_errno(errno, "utimensat(%s): %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200740 }
741
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200742 return r;
743}
744
Lennart Poettering5579f852018-01-23 14:03:34 +0100745static bool dangerous_hardlinks(void) {
746 _cleanup_free_ char *value = NULL;
747 static int cached = -1;
748 int r;
749
750 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
751 * what the upstream default is. */
752
753 if (cached >= 0)
754 return cached;
755
756 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
757 if (r < 0) {
758 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
759 return true;
760 }
761
762 r = parse_boolean(value);
763 if (r < 0) {
764 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
765 return true;
766 }
767
768 cached = r == 0;
769 return cached;
770}
771
Franck Bui774f79b2018-03-02 16:13:07 +0100772static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100773 assert(st);
774
775 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
776}
777
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200778static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200779 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +0100780
781 assert(i);
782 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200783 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100784
785 if (!i->mode_set && !i->uid_set && !i->gid_set)
786 goto shortcut;
787
Franck Buib206ac82018-04-13 11:39:39 +0200788 if (!st) {
789 if (fstat(fd, &stbuf) < 0)
790 return log_error_errno(errno, "fstat(%s) failed: %m", path);
791 st = &stbuf;
792 }
793
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100794 if (hardlink_vulnerable(st))
795 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
796 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
797 path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100798
799 if (i->mode_set) {
800 if (S_ISLNK(st->st_mode))
801 log_debug("Skipping mode fix for symlink %s.", path);
802 else {
803 mode_t m = i->mode;
804
805 if (i->mask_perms) {
806 if (!(st->st_mode & 0111))
807 m &= ~0111;
808 if (!(st->st_mode & 0222))
809 m &= ~0222;
810 if (!(st->st_mode & 0444))
811 m &= ~0444;
812 if (!S_ISDIR(st->st_mode))
813 m &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
814 }
815
816 if (m == (st->st_mode & 07777))
817 log_debug("\"%s\" has correct mode %o already.", path, st->st_mode);
818 else {
Franck Bui936f6bd2018-03-02 17:19:32 +0100819 log_debug("Changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200820 if (fchmod_opath(fd, m) < 0)
821 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100822 }
823 }
824 }
825
826 if ((i->uid_set && i->uid != st->st_uid) ||
827 (i->gid_set && i->gid != st->st_gid)) {
828 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
829 path,
830 i->uid_set ? i->uid : UID_INVALID,
831 i->gid_set ? i->gid : GID_INVALID);
832
833 if (fchownat(fd,
834 "",
835 i->uid_set ? i->uid : UID_INVALID,
836 i->gid_set ? i->gid : GID_INVALID,
837 AT_EMPTY_PATH) < 0)
838 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
839 }
840
841shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200842 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100843}
844
Franck Bui5ec9d062018-04-13 17:31:22 +0200845static int path_open_parent_safe(const char *path) {
846 _cleanup_free_ char *dn = NULL;
847 int fd;
848
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100849 if (path_equal(path, "/") || !path_is_normalized(path))
850 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
851 "Failed to open parent of '%s': invalid path.",
852 path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200853
854 dn = dirname_malloc(path);
855 if (!dn)
856 return log_oom();
857
858 fd = chase_symlinks(dn, NULL, CHASE_OPEN|CHASE_SAFE, NULL);
859 if (fd == -EPERM)
860 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
861 if (fd < 0)
862 return log_error_errno(fd, "Failed to validate path %s: %m", path);
863
864 return fd;
865}
866
Franck Buiaddc3e32018-03-20 08:58:48 +0100867static int path_open_safe(const char *path) {
868 int fd;
869
870 /* path_open_safe() returns a file descriptor opened with O_PATH after
871 * verifying that the path doesn't contain unsafe transitions, except
872 * for its final component as the function does not follow symlink. */
873
874 assert(path);
875
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100876 if (!path_is_normalized(path))
877 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
878 "Failed to open invalid path '%s'.",
879 path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100880
881 fd = chase_symlinks(path, NULL, CHASE_OPEN|CHASE_SAFE|CHASE_NOFOLLOW, NULL);
882 if (fd == -EPERM)
883 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
884 if (fd < 0)
885 return log_error_errno(fd, "Failed to validate path %s: %m", path);
886
887 return fd;
888}
889
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500890static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200891 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200892
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200893 assert(i);
894 assert(path);
895
Franck Buiaddc3e32018-03-20 08:58:48 +0100896 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200897 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100898 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200899
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200900 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100901}
902
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200903static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100904 const char *p;
905 int r;
906
907 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500908 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100909
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100910 p = i->argument;
911
Lennart Poettering4034a062015-03-23 18:55:36 +0700912 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100913 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700914
Richard Maw12ba2c42015-06-23 16:26:49 +0000915 r = extract_first_word(&p, &xattr, NULL, EXTRACT_QUOTES|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700916 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200917 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700918 if (r <= 0)
919 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500920
Franck Bui4cef1922017-11-16 11:27:29 +0100921 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100922 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700923 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100924 continue;
925 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500926
Lennart Poettering4034a062015-03-23 18:55:36 +0700927 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200928 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100929 continue;
930 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500931
Lennart Poettering4034a062015-03-23 18:55:36 +0700932 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100933 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500934
Lennart Poettering4034a062015-03-23 18:55:36 +0700935 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100936 }
937
Lennart Poettering4034a062015-03-23 18:55:36 +0700938 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100939}
940
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200941static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100942 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100943 char **name, **value;
944
945 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100946 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200947 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100948
949 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100950
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100951 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200952 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100953 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400954 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
955 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100956 }
957 return 0;
958}
959
Franck Bui936f6bd2018-03-02 17:19:32 +0100960static int path_set_xattrs(Item *i, const char *path) {
961 _cleanup_close_ int fd = -1;
962
963 assert(i);
964 assert(path);
965
Franck Buiaddc3e32018-03-20 08:58:48 +0100966 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100967 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100968 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100969
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200970 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100971}
972
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200973static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200974#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500975 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500976
977 assert(item);
978
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500979 /* If force (= modify) is set, we will not modify the acl
980 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200981
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500982 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500983 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700984 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500985#else
Zbigniew Jędrzejewski-Szmek886cf312018-11-21 08:23:20 +0100986 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500987#endif
988
989 return 0;
990}
991
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200992#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200993static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
994 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500995 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500996 int r;
997
Hans-Peter Deifeld873e872015-03-03 00:35:08 +0100998 /* Returns 0 for success, positive error if already warned,
999 * negative error otherwise. */
1000
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001001 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001002 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001003 if (r < 0)
1004 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001005
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001006 r = calc_acl_mask_if_needed(&dup);
1007 if (r < 0)
1008 return r;
1009 } else {
1010 dup = acl_dup(acl);
1011 if (!dup)
1012 return -errno;
1013
1014 /* the mask was already added earlier if needed */
1015 }
1016
1017 r = add_base_acls_if_needed(&dup, path);
1018 if (r < 0)
1019 return r;
1020
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001021 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001022 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001023 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001024 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001025
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001026 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001027 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001028 /* Return positive to indicate we already warned */
1029 return -log_error_errno(errno,
1030 "Setting %s ACL \"%s\" on %s failed: %m",
1031 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001032 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001033
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001034 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001035}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001036#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001037
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001038static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001039 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001040#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001041 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001042 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001043
1044 assert(item);
1045 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001046 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001047
Franck Buib206ac82018-04-13 11:39:39 +02001048 if (!st) {
1049 if (fstat(fd, &stbuf) < 0)
1050 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1051 st = &stbuf;
1052 }
1053
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001054 if (hardlink_vulnerable(st))
1055 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1056 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1057 path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001058
1059 if (S_ISLNK(st->st_mode)) {
1060 log_debug("Skipping ACL fix for symlink %s.", path);
1061 return 0;
1062 }
1063
1064 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1065
1066 if (item->acl_access)
1067 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->force);
1068
remueller26673852018-07-16 16:56:01 +02001069 /* set only default acls to folders */
1070 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Franck Bui936f6bd2018-03-02 17:19:32 +01001071 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->force);
1072
1073 if (r > 0)
1074 return -r; /* already warned */
1075 if (r == -EOPNOTSUPP) {
1076 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1077 return 0;
1078 }
1079 if (r < 0)
1080 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1081#endif
1082 return r;
1083}
1084
1085static int path_set_acls(Item *item, const char *path) {
1086 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001087#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001088 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001089
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001090 assert(item);
1091 assert(path);
1092
Franck Buiaddc3e32018-03-20 08:58:48 +01001093 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001094 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001095 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001096
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001097 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001098#endif
1099 return r;
1100}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001101
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001102#define ATTRIBUTES_ALL \
1103 (FS_NOATIME_FL | \
1104 FS_SYNC_FL | \
1105 FS_DIRSYNC_FL | \
1106 FS_APPEND_FL | \
1107 FS_COMPR_FL | \
1108 FS_NODUMP_FL | \
1109 FS_EXTENT_FL | \
1110 FS_IMMUTABLE_FL | \
1111 FS_JOURNAL_DATA_FL | \
1112 FS_SECRM_FL | \
1113 FS_UNRM_FL | \
1114 FS_NOTAIL_FL | \
1115 FS_TOPDIR_FL | \
1116 FS_NOCOW_FL)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001117
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001118static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001119
1120 static const struct {
1121 char character;
1122 unsigned value;
1123 } attributes[] = {
1124 { 'A', FS_NOATIME_FL }, /* do not update atime */
1125 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1126 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1127 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1128 { 'c', FS_COMPR_FL }, /* Compress file */
1129 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001130 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001131 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1132 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1133 { 's', FS_SECRM_FL }, /* Secure deletion */
1134 { 'u', FS_UNRM_FL }, /* Undelete */
1135 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001136 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001137 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001138 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001139
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001140 enum {
1141 MODE_ADD,
1142 MODE_DEL,
1143 MODE_SET
1144 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001145
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001146 unsigned value = 0, mask = 0;
1147 const char *p;
1148
1149 assert(item);
1150
1151 p = item->argument;
1152 if (p) {
1153 if (*p == '+') {
1154 mode = MODE_ADD;
1155 p++;
1156 } else if (*p == '-') {
1157 mode = MODE_DEL;
1158 p++;
1159 } else if (*p == '=') {
1160 mode = MODE_SET;
1161 p++;
1162 }
1163 }
1164
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001165 if (isempty(p) && mode != MODE_SET)
1166 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1167 "Setting file attribute on '%s' needs an attribute specification.",
1168 item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001169
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001170 for (; p && *p ; p++) {
1171 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001172
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001173 for (i = 0; i < ELEMENTSOF(attributes); i++)
1174 if (*p == attributes[i].character)
1175 break;
1176
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001177 if (i >= ELEMENTSOF(attributes))
1178 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1179 "Unknown file attribute '%c' on '%s'.",
1180 *p, item->path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001181
1182 v = attributes[i].value;
1183
Andreas Rammhold37420952017-09-29 00:37:23 +02001184 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001185
1186 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001187 }
1188
1189 if (mode == MODE_SET)
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001190 mask |= ATTRIBUTES_ALL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001191
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001192 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001193
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001194 item->attribute_mask = mask;
1195 item->attribute_value = value;
1196 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001197
1198 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001199}
1200
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001201static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001202 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001203 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001204 unsigned f;
1205 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001206
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001207 assert(item);
1208 assert(fd);
1209 assert(path);
1210
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001211 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001212 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001213
Franck Buib206ac82018-04-13 11:39:39 +02001214 if (!st) {
1215 if (fstat(fd, &stbuf) < 0)
1216 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1217 st = &stbuf;
1218 }
1219
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001220 /* Issuing the file attribute ioctls on device nodes is not
1221 * safe, as that will be delivered to the drivers, not the
1222 * file system containing the device node. */
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001223 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1224 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1225 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1226 path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001227
1228 f = item->attribute_value & item->attribute_mask;
1229
1230 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001231 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001232 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001233
Lennart Poetteringf2324782018-03-26 13:25:51 +02001234 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001235 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001236 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001237
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001238 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001239 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001240 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001241 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001242 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001243 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001244
1245 return 0;
1246}
1247
Franck Bui936f6bd2018-03-02 17:19:32 +01001248static int path_set_attribute(Item *item, const char *path) {
1249 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001250
1251 if (!item->attribute_set || item->attribute_mask == 0)
1252 return 0;
1253
Franck Buiaddc3e32018-03-20 08:58:48 +01001254 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001255 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001256 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001257
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001258 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001259}
1260
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001261static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001262 _cleanup_close_ int fd = -1, dir_fd = -1;
1263 char *bn;
Franck Bui31c84ff2018-04-13 09:19:24 +02001264 int r;
1265
1266 assert(i);
1267 assert(path);
1268 assert(i->argument);
1269 assert(i->type == WRITE_FILE);
1270
Franck Bui551470e2018-04-13 17:54:09 +02001271 /* Validate the path and keep the fd on the directory for opening the
1272 * file so we're sure that it can't be changed behind our back. */
1273 dir_fd = path_open_parent_safe(path);
1274 if (dir_fd < 0)
1275 return dir_fd;
1276
1277 bn = basename(path);
1278
Franck Bui31c84ff2018-04-13 09:19:24 +02001279 /* Follows symlinks */
Franck Bui551470e2018-04-13 17:54:09 +02001280 fd = openat(dir_fd, bn, O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001281 if (fd < 0) {
1282 if (errno == ENOENT) {
1283 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1284 return 0;
1285 }
1286 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1287 }
1288
1289 /* 'w' is allowed to write into any kind of files. */
1290 log_debug("Writing to \"%s\".", path);
1291
1292 r = loop_write(fd, i->argument, strlen(i->argument), false);
1293 if (r < 0)
1294 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1295
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001296 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001297}
1298
1299static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001300 _cleanup_close_ int fd = -1, dir_fd = -1;
1301 struct stat stbuf, *st = NULL;
1302 int r = 0;
1303 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001304
Lennart Poettering874f1942014-06-10 22:48:56 +02001305 assert(i);
1306 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001307 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001308
Franck Bui5ec9d062018-04-13 17:31:22 +02001309 /* 'f' operates on regular files exclusively. */
1310
1311 /* Validate the path and keep the fd on the directory for opening the
1312 * file so we're sure that it can't be changed behind our back. */
1313 dir_fd = path_open_parent_safe(path);
1314 if (dir_fd < 0)
1315 return dir_fd;
1316
1317 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001318
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001319 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001320 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001321 fd = openat(dir_fd, bn, O_CREAT|O_EXCL|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001322 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001323 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001324
1325 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001326 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1327 * file already exists. It returns EROFS only if it needs to
1328 * create the file. */
1329 if (errno != EEXIST)
1330 return log_error_errno(errno, "Failed to create file %s: %m", path);
1331
1332 /* Re-open the file. At that point it must exist since open(2)
1333 * failed with EEXIST. We still need to check if the perms/mode
1334 * need to be changed. For read-only filesystems, we let
1335 * fd_set_perms() report the error if the perms need to be
1336 * modified. */
1337 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1338 if (fd < 0)
1339 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1340
1341 if (fstat(fd, &stbuf) < 0)
1342 return log_error_errno(errno, "stat(%s) failed: %m", path);
1343
1344 if (!S_ISREG(stbuf.st_mode)) {
1345 log_error("%s exists and is not a regular file.", path);
1346 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001347 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001348
Franck Bui5ec9d062018-04-13 17:31:22 +02001349 st = &stbuf;
1350 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001351
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001352 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001353
Franck Bui5ec9d062018-04-13 17:31:22 +02001354 if (i->argument) {
1355 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001356
Franck Bui5ec9d062018-04-13 17:31:22 +02001357 r = loop_write(fd, i->argument, strlen(i->argument), false);
1358 if (r < 0)
1359 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1360 }
1361 }
1362
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001363 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001364}
1365
1366static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001367 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001368 struct stat stbuf, *st = NULL;
1369 bool erofs = false;
1370 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001371 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001372
1373 assert(i);
1374 assert(path);
1375 assert(i->type == TRUNCATE_FILE);
1376
1377 /* We want to operate on regular file exclusively especially since
1378 * O_TRUNC is unspecified if the file is neither a regular file nor a
1379 * fifo nor a terminal device. Therefore we first open the file and make
1380 * sure it's a regular one before truncating it. */
1381
Franck Bui14ab8042018-04-13 17:50:49 +02001382 /* Validate the path and keep the fd on the directory for opening the
1383 * file so we're sure that it can't be changed behind our back. */
1384 dir_fd = path_open_parent_safe(path);
1385 if (dir_fd < 0)
1386 return dir_fd;
1387
1388 bn = basename(path);
1389
Franck Bui5ec9d062018-04-13 17:31:22 +02001390 RUN_WITH_UMASK(0000) {
1391 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001392 fd = openat(dir_fd, bn, O_CREAT|O_NOFOLLOW|O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001393 mac_selinux_create_file_clear();
1394 }
1395
1396 if (fd < 0) {
1397 if (errno != EROFS)
1398 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1399
1400 /* On a read-only filesystem, we don't want to fail if the
1401 * target is already empty and the perms are set. So we still
1402 * proceed with the sanity checks and let the remaining
1403 * operations fail with EROFS if they try to modify the target
1404 * file. */
1405
Franck Bui14ab8042018-04-13 17:50:49 +02001406 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001407 if (fd < 0) {
1408 if (errno == ENOENT) {
1409 log_error("Cannot create file %s on a read-only file system.", path);
1410 return -EROFS;
1411 }
1412
1413 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1414 }
1415
1416 erofs = true;
1417 }
1418
1419 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001420 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001421
Franck Bui5ec9d062018-04-13 17:31:22 +02001422 if (!S_ISREG(stbuf.st_mode)) {
1423 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001424 return -EEXIST;
1425 }
1426
Franck Bui5ec9d062018-04-13 17:31:22 +02001427 if (stbuf.st_size > 0) {
1428 if (ftruncate(fd, 0) < 0) {
1429 r = erofs ? -EROFS : -errno;
1430 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1431 }
1432 } else
1433 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001434
Franck Bui5ec9d062018-04-13 17:31:22 +02001435 log_debug("\"%s\" has been created.", path);
1436
1437 if (i->argument) {
1438 log_debug("Writing to \"%s\".", path);
1439
1440 r = loop_write(fd, i->argument, strlen(i->argument), false);
1441 if (r < 0) {
1442 r = erofs ? -EROFS : r;
1443 return log_error_errno(r, "Failed to write file %s: %m", path);
1444 }
1445 }
1446
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001447 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001448}
1449
Franck Buib1f7b172018-04-12 12:19:22 +02001450static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001451 _cleanup_close_ int dfd = -1, fd = -1;
1452 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001453 int r;
1454
1455 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1456
Franck Bui16ba55a2018-04-12 12:55:22 +02001457 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001458
Franck Bui16ba55a2018-04-12 12:55:22 +02001459 /* Validate the path and use the returned directory fd for copying the
1460 * target so we're sure that the path can't be changed behind our
1461 * back. */
1462 dfd = path_open_parent_safe(i->path);
1463 if (dfd < 0)
1464 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001465
Franck Bui16ba55a2018-04-12 12:55:22 +02001466 r = copy_tree_at(AT_FDCWD, i->argument,
1467 dfd, bn,
1468 i->uid_set ? i->uid : UID_INVALID,
1469 i->gid_set ? i->gid : GID_INVALID,
1470 COPY_REFLINK);
Franck Buib1f7b172018-04-12 12:19:22 +02001471 if (r < 0) {
1472 struct stat a, b;
1473
Franck Bui16ba55a2018-04-12 12:55:22 +02001474 /* If the target already exists on read-only filesystems, trying
1475 * to create the target will not fail with EEXIST but with
1476 * EROFS. */
1477 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1478 r = -EEXIST;
1479
Franck Buib1f7b172018-04-12 12:19:22 +02001480 if (r != -EEXIST)
1481 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1482
1483 if (stat(i->argument, &a) < 0)
1484 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1485
Franck Bui16ba55a2018-04-12 12:55:22 +02001486 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001487 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1488
1489 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1490 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1491 return 0;
1492 }
1493 }
1494
Franck Bui16ba55a2018-04-12 12:55:22 +02001495 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1496 if (fd < 0)
1497 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1498
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001499 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001500}
1501
Franck Bui074bd732018-04-12 18:10:57 +02001502typedef enum {
1503 CREATION_NORMAL,
1504 CREATION_EXISTING,
1505 CREATION_FORCE,
1506 _CREATION_MODE_MAX,
1507 _CREATION_MODE_INVALID = -1
1508} CreationMode;
1509
1510static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1511 [CREATION_NORMAL] = "Created",
1512 [CREATION_EXISTING] = "Found existing",
1513 [CREATION_FORCE] = "Created replacement",
1514};
1515
1516DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1517
Franck Buif17a8d62018-08-06 12:29:54 +02001518static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001519 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001520 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001521 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001522
Franck Bui4c39d892018-04-27 11:51:14 +02001523 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001524
Franck Buif17a8d62018-08-06 12:29:54 +02001525 if (!creation)
1526 creation = &c;
1527
Franck Bui4c39d892018-04-27 11:51:14 +02001528 pfd = path_open_parent_safe(path);
1529 if (pfd < 0)
1530 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001531
Franck Bui4c39d892018-04-27 11:51:14 +02001532 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001533 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1534
1535 /* Don't create a subvolume unless the root directory is
1536 * one, too. We do this under the assumption that if the
1537 * root directory is just a plain directory (i.e. very
1538 * light-weight), we shouldn't try to split it up into
1539 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1540 * environments and suchlike will get a full brtfs
1541 * subvolume set up below their tree only if they
1542 * specifically set up a btrfs subvolume for the root
1543 * dir too. */
1544
Franck Bui4c39d892018-04-27 11:51:14 +02001545 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001546 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001547 RUN_WITH_UMASK((~mode) & 0777)
1548 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001549 }
1550 } else
1551 r = 0;
1552
Franck Bui4c39d892018-04-27 11:51:14 +02001553 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001554 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001555 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001556
1557 if (r < 0) {
1558 int k;
1559
1560 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001561 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001562
Franck Bui4c39d892018-04-27 11:51:14 +02001563 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001564 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001565 return log_error_errno(r, "%s does not exist and cannot be created as the file system is read-only.", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001566 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001567 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001568 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001569 log_warning("\"%s\" already exists and is not a directory.", path);
1570 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001571 }
1572
Franck Buif17a8d62018-08-06 12:29:54 +02001573 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001574 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001575 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001576
Franck Buif17a8d62018-08-06 12:29:54 +02001577 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001578
1579 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1580 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001581 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1582
Franck Bui4c39d892018-04-27 11:51:14 +02001583 return r;
1584}
1585
1586static int create_directory(Item *i, const char *path) {
1587 _cleanup_close_ int fd = -1;
1588
1589 assert(i);
1590 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1591
Franck Buif17a8d62018-08-06 12:29:54 +02001592 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001593 if (fd == -EEXIST)
1594 return 0;
1595 if (fd < 0)
1596 return fd;
1597
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001598 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001599}
1600
1601static int create_subvolume(Item *i, const char *path) {
1602 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001603 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001604 int r, q = 0;
1605
1606 assert(i);
1607 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1608
Franck Buif17a8d62018-08-06 12:29:54 +02001609 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001610 if (fd == -EEXIST)
1611 return 0;
1612 if (fd < 0)
1613 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001614
Franck Buif17a8d62018-08-06 12:29:54 +02001615 if (creation == CREATION_NORMAL &&
1616 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001617 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001618 if (r == -ENOTTY)
1619 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1620 else if (r == -EROFS)
1621 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1622 else if (r == -ENOPROTOOPT)
1623 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1624 else if (r < 0)
1625 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1626 else if (r > 0)
1627 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1628 else if (r == 0)
1629 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1630 }
1631
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001632 r = fd_set_perms(i, fd, path, NULL);
1633 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001634 return q;
1635
1636 return r;
1637}
1638
Franck Bui54946022018-04-26 15:45:17 +02001639static int empty_directory(Item *i, const char *path) {
1640 int r;
1641
1642 assert(i);
1643 assert(i->type == EMPTY_DIRECTORY);
1644
1645 r = is_dir(path, false);
1646 if (r == -ENOENT) {
1647 /* Option "e" operates only on existing objects. Do not
1648 * print errors about non-existent files or directories */
1649 log_debug("Skipping missing directory: %s", path);
1650 return 0;
1651 }
1652 if (r < 0)
1653 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001654 if (r == 0)
1655 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1656 "'%s' already exists and is not a directory.",
1657 path);
Franck Bui54946022018-04-26 15:45:17 +02001658
1659 return path_set_perms(i, path);
1660}
1661
Franck Bui074bd732018-04-12 18:10:57 +02001662static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001663 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001664 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001665 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001666 int r;
1667
1668 assert(i);
1669 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1670
Franck Buic7700a72018-04-12 18:33:54 +02001671 bn = basename(i->path);
1672
1673 /* Validate the path and use the returned directory fd for copying the
1674 * target so we're sure that the path can't be changed behind our
1675 * back. */
1676 dfd = path_open_parent_safe(i->path);
1677 if (dfd < 0)
1678 return dfd;
1679
Franck Bui074bd732018-04-12 18:10:57 +02001680 RUN_WITH_UMASK(0000) {
1681 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001682 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001683 mac_selinux_create_file_clear();
1684 }
1685
1686 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001687 struct stat st;
1688
Franck Bui074bd732018-04-12 18:10:57 +02001689 if (errno == EPERM) {
1690 log_debug("We lack permissions, possibly because of cgroup configuration; "
1691 "skipping creation of device node %s.", i->path);
1692 return 0;
1693 }
1694
1695 if (errno != EEXIST)
1696 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1697
Franck Buic7700a72018-04-12 18:33:54 +02001698 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001699 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1700
1701 if ((st.st_mode & S_IFMT) != file_type) {
1702
1703 if (i->force) {
1704
1705 RUN_WITH_UMASK(0000) {
1706 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001707 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001708 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1709 mac_selinux_create_file_clear();
1710 }
1711
1712 if (r < 0)
1713 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1714 creation = CREATION_FORCE;
1715 } else {
1716 log_debug("%s is not a device node.", i->path);
1717 return 0;
1718 }
1719 } else
1720 creation = CREATION_EXISTING;
1721 } else
1722 creation = CREATION_NORMAL;
1723
1724 log_debug("%s %s device node \"%s\" %u:%u.",
1725 creation_mode_verb_to_string(creation),
1726 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1727 i->path, major(i->mode), minor(i->mode));
1728
Franck Buic7700a72018-04-12 18:33:54 +02001729 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1730 if (fd < 0)
1731 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1732
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001733 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001734}
1735
Franck Buia2fc2f82018-04-27 18:11:26 +02001736static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001737 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001738 CreationMode creation;
1739 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001740 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001741 int r;
1742
Franck Bui7ea5a872018-04-27 18:17:32 +02001743 pfd = path_open_parent_safe(path);
1744 if (pfd < 0)
1745 return pfd;
1746
1747 bn = basename(path);
1748
Franck Buia2fc2f82018-04-27 18:11:26 +02001749 RUN_WITH_UMASK(0000) {
1750 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001751 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001752 mac_selinux_create_file_clear();
1753 }
1754
1755 if (r < 0) {
1756 if (errno != EEXIST)
1757 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1758
Franck Bui7ea5a872018-04-27 18:17:32 +02001759 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001760 return log_error_errno(errno, "stat(%s) failed: %m", path);
1761
1762 if (!S_ISFIFO(st.st_mode)) {
1763
1764 if (i->force) {
1765 RUN_WITH_UMASK(0000) {
1766 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001767 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001768 mac_selinux_create_file_clear();
1769 }
1770
1771 if (r < 0)
1772 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1773 creation = CREATION_FORCE;
1774 } else {
1775 log_warning("\"%s\" already exists and is not a fifo.", path);
1776 return 0;
1777 }
1778 } else
1779 creation = CREATION_EXISTING;
1780 } else
1781 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001782
Franck Buia2fc2f82018-04-27 18:11:26 +02001783 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1784
Franck Bui7ea5a872018-04-27 18:17:32 +02001785 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1786 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001787 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001788
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001789 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001790}
1791
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001792typedef int (*action_t)(Item *i, const char *path);
1793typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001794
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001795static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001796 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001797 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001798
1799 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001800 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001801 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001802
1803 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001804 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001805 goto finish;
1806 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001807
1808 /* This returns the first error we run into, but nevertheless
1809 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001810 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001811
Franck Bui14f34802018-05-24 14:17:07 +02001812 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001813 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001814 _cleanup_closedir_ DIR *d = NULL;
1815 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001816
Franck Bui936f6bd2018-03-02 17:19:32 +01001817 /* The passed 'fd' was opened with O_PATH. We need to convert
1818 * it into a 'regular' fd before reading the directory content. */
1819 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001820
Franck Bui936f6bd2018-03-02 17:19:32 +01001821 d = opendir(procfs_path);
1822 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001823 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1824 if (r == 0)
1825 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001826 goto finish;
1827 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001828
Franck Bui936f6bd2018-03-02 17:19:32 +01001829 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001830 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001831
Franck Bui936f6bd2018-03-02 17:19:32 +01001832 if (dot_or_dot_dot(de->d_name))
1833 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001834
Franck Bui936f6bd2018-03-02 17:19:32 +01001835 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001836 if (de_fd < 0)
1837 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001838 else {
1839 _cleanup_free_ char *de_path = NULL;
1840
Zbigniew Jędrzejewski-Szmek62a85ee2018-11-30 10:43:57 +01001841 de_path = path_join(path, de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001842 if (!de_path)
1843 q = log_oom();
1844 else
1845 /* Pass ownership of dirent fd over */
1846 q = item_do(i, de_fd, de_path, action);
1847 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001848
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001849 if (q < 0 && r == 0)
1850 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001851 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001852 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001853finish:
1854 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001855 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001856}
1857
Franck Bui936f6bd2018-03-02 17:19:32 +01001858static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001859 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001860 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001861 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001862 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001863 char **fn;
1864
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001865 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1866 if (k < 0 && k != -ENOENT)
1867 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001868
1869 STRV_FOREACH(fn, g.gl_pathv) {
1870 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001871 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001872 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001873 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001874
Franck Bui936f6bd2018-03-02 17:19:32 +01001875 return r;
1876}
1877
1878static int glob_item_recursively(Item *i, fdaction_t action) {
1879 _cleanup_globfree_ glob_t g = {
1880 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1881 };
1882 int r = 0, k;
1883 char **fn;
1884
1885 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1886 if (k < 0 && k != -ENOENT)
1887 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1888
1889 STRV_FOREACH(fn, g.gl_pathv) {
1890 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001891
1892 /* Make sure we won't trigger/follow file object (such as
1893 * device nodes, automounts, ...) pointed out by 'fn' with
1894 * O_PATH. Note, when O_PATH is used, flags other than
1895 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1896
1897 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1898 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001899 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1900 if (r == 0)
1901 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001902 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001903 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001904
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001905 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001906 if (k < 0 && r == 0)
1907 r = k;
1908
1909 /* we passed fd ownership to the previous call */
1910 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001911 }
1912
Michal Schmidt99e68c02011-12-15 23:45:26 +01001913 return r;
1914}
1915
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001916static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001917 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001918 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001919
1920 assert(i);
1921
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001922 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1923
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001924 switch (i->type) {
1925
1926 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001927 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001928 case REMOVE_PATH:
1929 case RECURSIVE_REMOVE_PATH:
1930 return 0;
1931
1932 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001933 RUN_WITH_UMASK(0000)
1934 (void) mkdir_parents_label(i->path, 0755);
1935
Franck Bui31c84ff2018-04-13 09:19:24 +02001936 r = create_file(i, i->path);
Dave Reisner1845fdd2012-09-27 20:48:13 -04001937 if (r < 0)
1938 return r;
1939 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -05001940
Franck Bui5ec9d062018-04-13 17:31:22 +02001941 case TRUNCATE_FILE:
1942 RUN_WITH_UMASK(0000)
1943 (void) mkdir_parents_label(i->path, 0755);
1944
1945 r = truncate_file(i, i->path);
1946 if (r < 0)
1947 return r;
1948 break;
1949
Franck Bui7b887f22018-04-12 12:18:19 +02001950 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001951 RUN_WITH_UMASK(0000)
1952 (void) mkdir_parents_label(i->path, 0755);
1953
Franck Buib1f7b172018-04-12 12:19:22 +02001954 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001955 if (r < 0)
1956 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001957 break;
1958
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001959 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001960 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001961 if (r < 0)
1962 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001963
1964 break;
1965
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001966 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001967 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001968 RUN_WITH_UMASK(0000)
1969 (void) mkdir_parents_label(i->path, 0755);
1970
1971 r = create_directory(i, i->path);
1972 if (r < 0)
1973 return r;
1974 break;
1975
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001976 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001977 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1978 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001979 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001980 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001981
Franck Bui4c39d892018-04-27 11:51:14 +02001982 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001983 if (r < 0)
1984 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001985 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001986
Franck Bui4ad36842018-04-26 14:54:20 +02001987 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001988 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001989 if (r < 0)
1990 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001991 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001992
1993 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02001994 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001995 (void) mkdir_parents_label(i->path, 0755);
1996
Franck Buia2fc2f82018-04-27 18:11:26 +02001997 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001998 if (r < 0)
1999 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02002000 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01002001
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002002 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01002003 RUN_WITH_UMASK(0000)
2004 (void) mkdir_parents_label(i->path, 0755);
2005
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002006 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002007 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002008 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002009
Lennart Poettering468d7262012-01-17 15:04:12 +01002010 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002011 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002012
Michal Schmidt4a62c712014-11-28 19:57:32 +01002013 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002014 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002015
2016 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002017 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002018
2019 if (i->force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002020 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002021 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002022 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002023
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002024 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002025 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2026 if (r < 0)
2027 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2028
2029 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002030 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002031 mac_selinux_create_file_clear();
2032 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002033 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002034 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002035
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002036 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002037 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002038 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002039 return 0;
2040 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002041 } else
2042 creation = CREATION_EXISTING;
2043 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002044
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002045 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002046 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002047 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002048 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002049
2050 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002051 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002052 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002053 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2054 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002055
2056 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2057 return 0;
2058 }
2059
Lennart Poettering7fa10742018-01-23 14:14:19 +01002060 RUN_WITH_UMASK(0000)
2061 (void) mkdir_parents_label(i->path, 0755);
2062
Franck Bui074bd732018-04-12 18:10:57 +02002063 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002064 if (r < 0)
2065 return r;
2066
2067 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002068
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002069 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002070 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002071 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002072 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002073 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002074 break;
2075
Michal Schmidta8d88782011-12-15 23:11:07 +01002076 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002077 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002078 if (r < 0)
2079 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002080 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002081
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002082 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002083 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002084 if (r < 0)
2085 return r;
2086 break;
2087
2088 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002089 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002090 if (r < 0)
2091 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002092 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002093
2094 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002095 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002096 if (r < 0)
2097 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002098 break;
2099
2100 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002101 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002102 if (r < 0)
2103 return r;
2104 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002105
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002106 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002107 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002108 if (r < 0)
2109 return r;
2110 break;
2111
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002112 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002113 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002114 if (r < 0)
2115 return r;
2116 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002117 }
2118
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002119 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002120}
2121
Michal Schmidta0896122011-12-15 21:32:50 +01002122static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002123 int r;
2124
2125 assert(i);
2126
2127 switch (i->type) {
2128
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002129 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002130 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002131 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002132
2133 break;
2134
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002135 case RECURSIVE_REMOVE_PATH:
Lennart Poettering2c575972018-10-29 19:24:56 +01002136 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002137 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering2c575972018-10-29 19:24:56 +01002138 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002139 if (r < 0 && r != -ENOENT)
2140 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002141
2142 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002143
2144 default:
2145 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002146 }
2147
2148 return 0;
2149}
2150
Michal Schmidta0896122011-12-15 21:32:50 +01002151static int remove_item(Item *i) {
Lennart Poettering2c575972018-10-29 19:24:56 +01002152 int r;
2153
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002154 assert(i);
2155
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002156 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2157
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002158 switch (i->type) {
2159
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002160 case TRUNCATE_DIRECTORY:
Lennart Poettering2c575972018-10-29 19:24:56 +01002161 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2162 log_debug("rm -rf \"%s\"", i->path);
2163 r = rm_rf(i->path, REMOVE_PHYSICAL);
2164 if (r < 0 && r != -ENOENT)
2165 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2166
2167 return 0;
2168
2169 case REMOVE_PATH:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002170 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002171 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002172
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002173 default:
2174 return 0;
2175 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002176}
2177
Michal Sekletar78a92a52013-01-18 16:13:08 +01002178static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002179 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002180 struct stat s, ps;
2181 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002182 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002183 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002184
2185 assert(i);
2186
2187 if (!i->age_set)
2188 return 0;
2189
2190 n = now(CLOCK_REALTIME);
2191 if (n < i->age)
2192 return 0;
2193
2194 cutoff = n - i->age;
2195
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002196 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002197 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002198 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002199 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002200 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002201 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002202
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002203 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002204 }
2205
Michal Schmidt4a62c712014-11-28 19:57:32 +01002206 if (fstat(dirfd(d), &s) < 0)
2207 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002208
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002209 if (!S_ISDIR(s.st_mode))
2210 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2211 "%s is not a directory.", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002212
Michal Schmidt4a62c712014-11-28 19:57:32 +01002213 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2214 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002215
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002216 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002217
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002218 log_debug("Cleanup threshold for %s \"%s\" is %s",
2219 mountpoint ? "mount point" : "directory",
2220 instance,
2221 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2222
2223 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2224 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002225}
2226
2227static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002228 assert(i);
2229
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002230 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2231
Michal Sekletar78a92a52013-01-18 16:13:08 +01002232 switch (i->type) {
2233 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002234 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002235 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2236 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002237 case TRUNCATE_DIRECTORY:
2238 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002239 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002240 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002241 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002242 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002243 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002244 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002245 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002246 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002247 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002248}
2249
Lennart Poettering599ebe22018-10-25 23:22:18 +02002250static int process_item(Item *i, OperationMask operation) {
Lennart Poettering811a1582018-10-26 20:56:37 +02002251 OperationMask todo;
2252 int r, q, p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002253
2254 assert(i);
2255
Lennart Poettering811a1582018-10-26 20:56:37 +02002256 todo = operation & ~i->done;
2257 if (todo == 0) /* Everything already done? */
Lennart Poettering1910cd02014-06-11 01:37:35 +02002258 return 0;
2259
Lennart Poettering811a1582018-10-26 20:56:37 +02002260 i->done |= operation;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002261
Lennart Poettering21af3382018-10-26 21:07:38 +02002262 r = chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL);
2263 if (r == -EREMOTE) {
Lennart Poettering48d96902018-11-20 15:56:55 +01002264 log_debug_errno(r, "Item '%s' is below autofs, skipping.", i->path);
Lennart Poettering811a1582018-10-26 20:56:37 +02002265 return 0;
Lennart Poettering21af3382018-10-26 21:07:38 +02002266 } else if (r < 0)
Lennart Poettering48d96902018-11-20 15:56:55 +01002267 log_debug_errno(r, "Failed to determine whether '%s' is below autofs, ignoring: %m", i->path);
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05002268
Lennart Poettering599ebe22018-10-25 23:22:18 +02002269 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002270 /* Failure can only be tolerated for create */
2271 if (i->allow_failure)
2272 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002273
Lennart Poettering599ebe22018-10-25 23:22:18 +02002274 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2275 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
Lennart Poettering1a967b62018-10-25 23:19:00 +02002276
Lennart Poettering811a1582018-10-26 20:56:37 +02002277 return r < 0 ? r :
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002278 q < 0 ? q :
2279 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002280}
2281
Lennart Poettering599ebe22018-10-25 23:22:18 +02002282static int process_item_array(ItemArray *array, OperationMask operation) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002283 int r = 0;
2284 size_t n;
Lennart Poettering753615e2014-06-12 23:07:17 +02002285
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002286 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002287
Lennart Poettering811a1582018-10-26 20:56:37 +02002288 /* Create any parent first. */
2289 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2290 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2291
2292 /* Clean up all children first */
2293 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2294 Iterator i;
2295 ItemArray *c;
2296
2297 SET_FOREACH(c, array->children, i) {
2298 int k;
2299
2300 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2301 if (k < 0 && r == 0)
2302 r = k;
2303 }
2304 }
2305
Lennart Poettering96d10d72018-10-25 13:51:01 +02002306 for (n = 0; n < array->n_items; n++) {
2307 int k;
2308
Lennart Poettering599ebe22018-10-25 23:22:18 +02002309 k = process_item(array->items + n, operation);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002310 if (k < 0 && r == 0)
2311 r = k;
2312 }
2313
2314 return r;
2315}
2316
2317static void item_free_contents(Item *i) {
2318 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002319 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002320 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002321 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002322
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002323#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002324 acl_free(i->acl_access);
2325 acl_free(i->acl_default);
2326#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002327}
2328
Yu Watanabe87938c32018-11-26 01:00:54 +09002329static ItemArray* item_array_free(ItemArray *a) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002330 size_t n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002331
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002332 if (!a)
Yu Watanabe87938c32018-11-26 01:00:54 +09002333 return NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002334
Lennart Poettering96d10d72018-10-25 13:51:01 +02002335 for (n = 0; n < a->n_items; n++)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002336 item_free_contents(a->items + n);
Lennart Poettering96d10d72018-10-25 13:51:01 +02002337
Lennart Poettering811a1582018-10-26 20:56:37 +02002338 set_free(a->children);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002339 free(a->items);
Yu Watanabe87938c32018-11-26 01:00:54 +09002340 return mfree(a);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002341}
2342
Yu Watanabe93bab282018-09-18 08:39:24 +09002343static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002344 /* Make sure that the ownership taking item is put first, so
2345 * that we first create the node, and then can adjust it */
2346
Yu Watanabe93bab282018-09-18 08:39:24 +09002347 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002348 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002349 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002350 return 1;
2351
Yu Watanabe93bab282018-09-18 08:39:24 +09002352 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002353}
2354
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002355static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002356 assert(a);
2357 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002358 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002359
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002360 if (takes_ownership(a->type) && takes_ownership(b->type))
2361 /* check if the items are the same */
2362 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002363
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002364 a->uid_set == b->uid_set &&
2365 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002366
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002367 a->gid_set == b->gid_set &&
2368 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002369
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002370 a->mode_set == b->mode_set &&
2371 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002372
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002373 a->age_set == b->age_set &&
2374 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002375
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002376 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002377
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002378 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002379
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002380 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002381
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002382 return true;
2383}
2384
Dave Reisnera2aced42013-07-24 11:10:05 -04002385static bool should_include_path(const char *path) {
2386 char **prefix;
2387
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002388 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002389 if (path_startswith(path, *prefix)) {
2390 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2391 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002392 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002393 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002394
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002395 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002396 if (path_startswith(path, *prefix)) {
2397 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002398 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002399 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002400
Dave Reisner5c795112013-07-24 11:19:24 -04002401 /* no matches, so we should include this path only if we
2402 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002403 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002404 return true;
2405
2406 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2407 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002408}
2409
Franck Bui4cef1922017-11-16 11:27:29 +01002410static int specifier_expansion_from_arg(Item *i) {
2411 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2412 char **xattr;
2413 int r;
2414
2415 assert(i);
2416
2417 if (i->argument == NULL)
2418 return 0;
2419
2420 switch (i->type) {
2421 case COPY_FILES:
2422 case CREATE_SYMLINK:
2423 case CREATE_FILE:
2424 case TRUNCATE_FILE:
2425 case WRITE_FILE:
2426 r = cunescape(i->argument, 0, &unescaped);
2427 if (r < 0)
2428 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2429
2430 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2431 if (r < 0)
2432 return r;
2433
2434 free_and_replace(i->argument, resolved);
2435 break;
2436
2437 case SET_XATTR:
2438 case RECURSIVE_SET_XATTR:
2439 assert(i->xattrs);
2440
2441 STRV_FOREACH (xattr, i->xattrs) {
2442 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2443 if (r < 0)
2444 return r;
2445
2446 free_and_replace(*xattr, resolved);
2447 }
2448 break;
2449
2450 default:
2451 break;
2452 }
2453 return 0;
2454}
2455
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002456static int patch_var_run(const char *fname, unsigned line, char **path) {
2457 const char *k;
2458 char *n;
2459
2460 assert(path);
2461 assert(*path);
2462
2463 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2464 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2465 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2466 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2467 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2468 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2469 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2470 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2471 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2472
2473 k = path_startswith(*path, "/var/run/");
2474 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2475 return 0;
2476
2477 n = strjoin("/run/", k);
2478 if (!n)
2479 return log_oom();
2480
2481 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2482 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2483 * to the user, let's still inform the user that these snippets should really be updated. */
2484
2485 log_notice("[%s:%u] Line references path below legacy directory /var/run/, updating %s → %s; please update the tmpfiles.d/ drop-in file accordingly.", fname, line, *path, n);
2486
Lennart Poettering81fa4472018-10-25 13:57:32 +02002487 free_and_replace(*path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002488
2489 return 0;
2490}
2491
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002492static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002493
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002494 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002495 _cleanup_(item_free_contents) Item i = {};
2496 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002497 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002498 int r, pos;
William Douglas6d7b5432018-09-10 12:07:29 -07002499 bool force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002500
2501 assert(fname);
2502 assert(line >= 1);
2503 assert(buffer);
2504
Richard Maw68685602015-06-23 16:20:53 +00002505 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002506 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002507 NULL,
Richard Maw12ba2c42015-06-23 16:26:49 +00002508 EXTRACT_QUOTES,
Lennart Poettering4034a062015-03-23 18:55:36 +07002509 &action,
2510 &path,
2511 &mode,
2512 &user,
2513 &group,
2514 &age,
2515 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002516 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002517 if (IN_SET(r, -EINVAL, -EBADSLT))
2518 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002519 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002520 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Lennart Poettering4b936992018-05-10 11:29:11 -07002521 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002522 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002523 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002524 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002525 }
2526
Lennart Poetteringaa5f6812015-04-21 01:10:19 +02002527 if (!isempty(buffer) && !streq(buffer, "-")) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002528 i.argument = strdup(buffer);
2529 if (!i.argument)
2530 return log_oom();
2531 }
2532
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002533 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002534 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002535 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002536 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002537 }
2538
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002539 for (pos = 1; action[pos]; pos++) {
2540 if (action[pos] == '!' && !boot)
2541 boot = true;
2542 else if (action[pos] == '+' && !force)
2543 force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002544 else if (action[pos] == '-' && !allow_failure)
2545 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002546 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002547 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002548 log_error("[%s:%u] Unknown modifiers in command '%s'",
2549 fname, line, action);
2550 return -EINVAL;
2551 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002552 }
2553
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002554 if (boot && !arg_boot) {
2555 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2556 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002557 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002558 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002559
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002560 i.type = action[0];
2561 i.force = force;
William Douglas6d7b5432018-09-10 12:07:29 -07002562 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002563
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002564 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002565 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002566 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002567 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002568 if (IN_SET(r, -EINVAL, -EBADSLT))
2569 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002570 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002571 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002572
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002573 r = patch_var_run(fname, line, &i.path);
2574 if (r < 0)
2575 return r;
2576
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002577 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002578
Michal Schmidt777b87e2011-12-16 18:27:35 +01002579 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002580 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002581 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2582 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002583 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002584 case TRUNCATE_DIRECTORY:
2585 case CREATE_FIFO:
2586 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002587 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002588 case REMOVE_PATH:
2589 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002590 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002591 case RELABEL_PATH:
2592 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002593 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002594 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002595
2596 break;
2597
2598 case CREATE_FILE:
2599 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002600 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002601
2602 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002603 if (!i.argument) {
2604 i.argument = strappend("/usr/share/factory/", i.path);
2605 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002606 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002607 }
2608 break;
2609
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002610 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002611 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002612 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002613 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002614 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002615 }
2616 break;
2617
Lennart Poettering849958d2014-06-10 23:02:40 +02002618 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002619 if (!i.argument) {
2620 i.argument = strappend("/usr/share/factory/", i.path);
2621 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002622 return log_oom();
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002623 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002624 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002625 log_error("[%s:%u] Source path is not absolute.", fname, line);
2626 return -EBADMSG;
2627 }
2628
Yu Watanabe858d36c2018-05-31 23:39:31 +09002629 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002630 break;
2631
Lennart Poettering468d7262012-01-17 15:04:12 +01002632 case CREATE_CHAR_DEVICE:
Lennart Poettering3a47c402018-06-29 12:01:02 +02002633 case CREATE_BLOCK_DEVICE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002634 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002635 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002636 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002637 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002638 }
2639
Lennart Poettering3a47c402018-06-29 12:01:02 +02002640 r = parse_dev(i.argument, &i.major_minor);
2641 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002642 *invalid_config = true;
Lennart Poettering3a47c402018-06-29 12:01:02 +02002643 log_error_errno(r, "[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i.argument);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002644 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002645 }
2646
Lennart Poettering468d7262012-01-17 15:04:12 +01002647 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002648
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002649 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002650 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002651 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002652 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002653 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2654 return -EBADMSG;
2655 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002656 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002657 if (r < 0)
2658 return r;
2659 break;
2660
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002661 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002662 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002663 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002664 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002665 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2666 return -EBADMSG;
2667 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002668 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002669 if (r < 0)
2670 return r;
2671 break;
2672
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002673 case SET_ATTRIBUTE:
2674 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002675 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002676 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002677 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002678 return -EBADMSG;
2679 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002680 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002681 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002682 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002683 if (r < 0)
2684 return r;
2685 break;
2686
Michal Schmidt777b87e2011-12-16 18:27:35 +01002687 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002688 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002689 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002690 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002691 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002692
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002693 if (!path_is_absolute(i.path)) {
2694 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002695 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002696 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002697 }
2698
Yu Watanabe858d36c2018-05-31 23:39:31 +09002699 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002700
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002701 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002702 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002703
Franck Bui4cef1922017-11-16 11:27:29 +01002704 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002705 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002706 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002707 if (r < 0) {
2708 if (IN_SET(r, -EINVAL, -EBADSLT))
2709 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002710 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2711 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002712 }
Franck Bui4cef1922017-11-16 11:27:29 +01002713
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002714 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002715 char *p;
2716
Lennart Poettering1d13f642015-05-13 17:42:10 +02002717 p = prefix_root(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002718 if (!p)
2719 return log_oom();
2720
Lennart Poettering81fa4472018-10-25 13:57:32 +02002721 free_and_replace(i.path, p);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002722 }
2723
Lennart Poettering90937fe2015-04-10 16:04:16 +02002724 if (!isempty(user) && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002725 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002726
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002727 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002728 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002729 *invalid_config = true;
2730 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002731 }
2732
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002733 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002734 }
2735
Lennart Poettering90937fe2015-04-10 16:04:16 +02002736 if (!isempty(group) && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002737 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002738
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002739 r = get_group_creds(&g, &i.gid, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002740 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002741 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002742 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002743 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002744 }
2745
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002746 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002747 }
2748
Lennart Poettering90937fe2015-04-10 16:04:16 +02002749 if (!isempty(mode) && !streq(mode, "-")) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002750 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002751 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002752
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002753 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002754 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002755 mm++;
2756 }
2757
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002758 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002759 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002760 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002761 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002762 }
2763
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002764 i.mode = m;
2765 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002766 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002767 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 +02002768
Lennart Poettering90937fe2015-04-10 16:04:16 +02002769 if (!isempty(age) && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002770 const char *a = age;
2771
2772 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002773 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002774 a++;
2775 }
2776
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002777 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002778 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002779 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002780 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002781 }
2782
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002783 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002784 }
2785
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002786 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002787
Lennart Poetteringef43a392015-04-22 18:18:56 +02002788 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002789 if (existing) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002790 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002791
Lennart Poettering96d10d72018-10-25 13:51:01 +02002792 for (n = 0; n < existing->n_items; n++) {
Martin Pitt6487ada2015-03-05 14:58:56 +01002793 if (!item_compatible(existing->items + n, &i)) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002794 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2795 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002796 return 0;
2797 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002798 }
2799 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002800 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002801 if (!existing)
2802 return log_oom();
2803
Lennart Poetteringef43a392015-04-22 18:18:56 +02002804 r = ordered_hashmap_put(h, i.path, existing);
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002805 if (r < 0) {
2806 free(existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002807 return log_oom();
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002808 }
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002809 }
2810
Lennart Poettering96d10d72018-10-25 13:51:01 +02002811 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002812 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002813
Lennart Poettering7ab75292018-10-25 13:53:07 +02002814 existing->items[existing->n_items++] = i;
2815 i = (struct Item) {};
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002816
2817 /* Sort item array, to enforce stable ordering of application */
Lennart Poettering96d10d72018-10-25 13:51:01 +02002818 typesafe_qsort(existing->items, existing->n_items, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002819
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002820 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002821}
2822
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002823static int cat_config(char **config_dirs, char **args) {
2824 _cleanup_strv_free_ char **files = NULL;
2825 int r;
2826
2827 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2828 if (r < 0)
2829 return r;
2830
2831 return cat_files(NULL, files, 0);
2832}
2833
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002834static int help(void) {
2835 _cleanup_free_ char *link = NULL;
2836 int r;
2837
2838 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2839 if (r < 0)
2840 return log_oom();
2841
Lennart Poettering522d4a42011-02-13 15:08:15 +01002842 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2843 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002844 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002845 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002846 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002847 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002848 " --create Create marked files/directories\n"
2849 " --clean Clean up marked directories\n"
2850 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002851 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002852 " --prefix=PATH Only apply rules with the specified prefix\n"
2853 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002854 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002855 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002856 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002857 "\nSee the %s for details.\n"
2858 , program_invocation_short_name
2859 , link
2860 );
2861
2862 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002863}
2864
2865static int parse_argv(int argc, char *argv[]) {
2866
2867 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002868 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002869 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002870 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002871 ARG_CREATE,
2872 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002873 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002874 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002875 ARG_PREFIX,
2876 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002877 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002878 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002879 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002880 };
2881
2882 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002883 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002884 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002885 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002886 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002887 { "create", no_argument, NULL, ARG_CREATE },
2888 { "clean", no_argument, NULL, ARG_CLEAN },
2889 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002890 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002891 { "prefix", required_argument, NULL, ARG_PREFIX },
2892 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002893 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002894 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002895 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002896 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002897 };
2898
Lennart Poettering0f474362015-10-22 19:28:31 +02002899 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002900
2901 assert(argc >= 0);
2902 assert(argv);
2903
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002904 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002905
2906 switch (c) {
2907
2908 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002909 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002910
2911 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002912 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002913
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002914 case ARG_CAT_CONFIG:
2915 arg_cat_config = true;
2916 break;
2917
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002918 case ARG_USER:
2919 arg_user = true;
2920 break;
2921
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002922 case ARG_CREATE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002923 arg_operation |= OPERATION_CREATE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002924 break;
2925
2926 case ARG_CLEAN:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002927 arg_operation |= OPERATION_CLEAN;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002928 break;
2929
2930 case ARG_REMOVE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002931 arg_operation |= OPERATION_REMOVE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002932 break;
2933
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002934 case ARG_BOOT:
2935 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002936 break;
2937
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002938 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002939 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002940 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002941 break;
2942
Dave Reisner5c795112013-07-24 11:19:24 -04002943 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002944 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002945 return log_oom();
2946 break;
2947
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002948 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002949 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002950 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002951 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002952 break;
2953
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002954 case ARG_REPLACE:
2955 if (!path_is_absolute(optarg) ||
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002956 !endswith(optarg, ".conf"))
2957 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2958 "The argument to --replace= must an absolute path to a config file");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002959
2960 arg_replace = optarg;
2961 break;
2962
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002963 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01002964 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002965 break;
2966
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002967 case '?':
2968 return -EINVAL;
2969
2970 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002971 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002972 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002973
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002974 if (arg_operation == 0 && !arg_cat_config)
2975 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2976 "You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002977
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002978 if (arg_replace && arg_cat_config)
2979 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2980 "Option --replace= is not supported with --cat-config");
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002981
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002982 if (arg_replace && optind >= argc)
2983 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2984 "When --replace= is given, some configuration items must be specified");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002985
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002986 return 1;
2987}
2988
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002989static 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 -04002990 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002991 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002992 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02002993 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002994 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002995 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002996
2997 assert(fn);
2998
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002999 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003000 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003001 fn = "<stdin>";
3002 f = stdin;
3003 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003004 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003005 if (r < 0) {
3006 if (ignore_enoent && r == -ENOENT) {
3007 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3008 return 0;
3009 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003010
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003011 return log_error_errno(r, "Failed to open '%s': %m", fn);
3012 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003013 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003014 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003015 }
3016
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003017 for (;;) {
3018 _cleanup_free_ char *line = NULL;
3019 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003020 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003021 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003022
3023 k = read_line(f, LONG_LINE_MAX, &line);
3024 if (k < 0)
3025 return log_error_errno(k, "Failed to read '%s': %m", fn);
3026 if (k == 0)
3027 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003028
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003029 v++;
3030
3031 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003032 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003033 continue;
3034
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003035 k = parse_line(fn, v, l, &invalid_line);
3036 if (k < 0) {
3037 if (invalid_line)
3038 /* Allow reporting with a special code if the caller requested this */
3039 *invalid_config = true;
3040 else if (r == 0)
3041 /* The first error becomes our return value */
3042 r = k;
3043 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003044 }
3045
Michal Sekletar78a92a52013-01-18 16:13:08 +01003046 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003047 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003048 Iterator iter;
3049 Item *j, *candidate_item = NULL;
3050
3051 if (i->type != IGNORE_DIRECTORY_PATH)
3052 continue;
3053
Lennart Poetteringef43a392015-04-22 18:18:56 +02003054 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003055 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 +01003056 continue;
3057
3058 if (path_equal(j->path, i->path)) {
3059 candidate_item = j;
3060 break;
3061 }
3062
3063 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3064 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3065 candidate_item = j;
3066 }
3067
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003068 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003069 i->age = candidate_item->age;
3070 i->age_set = true;
3071 }
3072 }
3073
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003074 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003075 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003076 if (r == 0)
3077 r = -EIO;
3078 }
3079
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003080 return r;
3081}
3082
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003083static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3084 char **arg;
3085 int r;
3086
3087 STRV_FOREACH(arg, args) {
3088 r = read_config_file(config_dirs, *arg, false, invalid_config);
3089 if (r < 0)
3090 return r;
3091 }
3092
3093 return 0;
3094}
3095
3096static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3097 _cleanup_strv_free_ char **files = NULL;
3098 _cleanup_free_ char *p = NULL;
3099 char **f;
3100 int r;
3101
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003102 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003103 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003104 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003105
3106 STRV_FOREACH(f, files)
3107 if (p && path_equal(*f, p)) {
3108 log_debug("Parsing arguments at position \"%s\"…", *f);
3109
3110 r = parse_arguments(config_dirs, args, invalid_config);
3111 if (r < 0)
3112 return r;
3113 } else
3114 /* Just warn, ignore result otherwise.
3115 * read_config_file() has some debug output, so no need to print anything. */
3116 (void) read_config_file(config_dirs, *f, true, invalid_config);
3117
3118 return 0;
3119}
3120
Lennart Poettering811a1582018-10-26 20:56:37 +02003121static int link_parent(ItemArray *a) {
3122 const char *path;
3123 char *prefix;
3124 int r;
3125
3126 assert(a);
3127
Lennart Poettering09f467a2018-11-20 16:32:19 +01003128 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
Lennart Poettering811a1582018-10-26 20:56:37 +02003129 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3130 * before their children, and clean up/remove children before their parents. */
3131
3132 if (a->n_items <= 0)
3133 return 0;
3134
3135 path = a->items[0].path;
3136 prefix = alloca(strlen(path) + 1);
3137 PATH_FOREACH_PREFIX(prefix, path) {
3138 ItemArray *j;
3139
3140 j = ordered_hashmap_get(items, prefix);
Lennart Poetteringbd0ce242018-11-20 16:32:23 +01003141 if (!j)
3142 j = ordered_hashmap_get(globs, prefix);
Lennart Poettering811a1582018-10-26 20:56:37 +02003143 if (j) {
3144 r = set_ensure_allocated(&j->children, NULL);
3145 if (r < 0)
3146 return log_oom();
3147
3148 r = set_put(j->children, a);
3149 if (r < 0)
3150 return log_oom();
3151
3152 a->parent = j;
3153 return 1;
3154 }
3155 }
3156
3157 return 0;
3158}
3159
Yu Watanabe87938c32018-11-26 01:00:54 +09003160DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3161 ItemArray, item_array_free);
3162
3163static int run(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003164 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003165 bool invalid_config = false;
Lennart Poettering64adb372018-10-26 21:19:36 +02003166 Iterator iterator;
3167 ItemArray *a;
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003168 enum {
3169 PHASE_REMOVE_AND_CLEAN,
3170 PHASE_CREATE,
3171 _PHASE_MAX
3172 } phase;
Yu Watanabe87938c32018-11-26 01:00:54 +09003173 int r, k;
Lennart Poettering5008d582010-09-28 02:34:02 +02003174
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003175 r = parse_argv(argc, argv);
3176 if (r <= 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003177 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003178
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003179 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003180
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003181 if (arg_user) {
3182 r = user_config_paths(&config_dirs);
Yu Watanabe87938c32018-11-26 01:00:54 +09003183 if (r < 0)
3184 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003185 } else {
3186 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
Yu Watanabe87938c32018-11-26 01:00:54 +09003187 if (!config_dirs)
3188 return log_oom();
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003189 }
3190
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003191 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003192 _cleanup_free_ char *t = NULL;
3193
3194 t = strv_join(config_dirs, "\n\t");
3195 if (t)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003196 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003197 }
3198
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003199 if (arg_cat_config) {
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003200 (void) pager_open(arg_pager_flags);
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003201
Yu Watanabe87938c32018-11-26 01:00:54 +09003202 return cat_config(config_dirs, argv + optind);
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003203 }
3204
3205 umask(0022);
3206
3207 mac_selinux_init();
3208
Yu Watanabe87938c32018-11-26 01:00:54 +09003209 items = ordered_hashmap_new(&item_array_hash_ops);
3210 globs = ordered_hashmap_new(&item_array_hash_ops);
3211 if (!items || !globs)
3212 return log_oom();
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003213
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003214 /* If command line arguments are specified along with --replace, read all
3215 * configuration files and insert the positional arguments at the specified
3216 * place. Otherwise, if command line arguments are specified, execute just
3217 * them, and finally, without --replace= or any positional arguments, just
3218 * read configuration and execute it.
3219 */
3220 if (arg_replace || optind >= argc)
3221 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3222 else
3223 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3224 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003225 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02003226
Lennart Poettering811a1582018-10-26 20:56:37 +02003227 /* Let's now link up all child/parent relationships */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003228 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Lennart Poettering811a1582018-10-26 20:56:37 +02003229 r = link_parent(a);
3230 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003231 return r;
Lennart Poettering811a1582018-10-26 20:56:37 +02003232 }
3233 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3234 r = link_parent(a);
3235 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003236 return r;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003237 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003238
Lennart Poettering64adb372018-10-26 21:19:36 +02003239 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3240 * operations. i.e. that we first clean out the platform we then build on. */
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003241 for (phase = 0; phase < _PHASE_MAX; phase++) {
Lennart Poettering64adb372018-10-26 21:19:36 +02003242 OperationMask op;
Lennart Poettering5008d582010-09-28 02:34:02 +02003243
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003244 if (phase == PHASE_REMOVE_AND_CLEAN)
Lennart Poettering64adb372018-10-26 21:19:36 +02003245 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003246 else if (phase == PHASE_CREATE)
Lennart Poettering64adb372018-10-26 21:19:36 +02003247 op = arg_operation & OPERATION_CREATE;
3248 else
3249 assert_not_reached("unexpected phase");
3250
3251 if (op == 0) /* Nothing requested in this phase */
3252 continue;
3253
3254 /* The non-globbing ones usually create things, hence we apply them first */
3255 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3256 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003257 if (k < 0 && r >= 0)
3258 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003259 }
3260
3261 /* The globbing ones usually alter things, hence we apply them second. */
3262 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3263 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003264 if (k < 0 && r >= 0)
3265 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003266 }
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003267 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003268
Yu Watanabe87938c32018-11-26 01:00:54 +09003269 if (ERRNO_IS_RESOURCE(-r))
3270 return r;
3271 if (invalid_config)
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003272 return EX_DATAERR;
Yu Watanabe87938c32018-11-26 01:00:54 +09003273 if (r < 0)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003274 return EX_CANTCREAT;
Yu Watanabe87938c32018-11-26 01:00:54 +09003275 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02003276}
Yu Watanabe87938c32018-11-26 01:00:54 +09003277
3278DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);