blob: d1ba5841fd684d7fadadeaa3b093fbdc406a72bd [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>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02007#include <limits.h>
8#include <linux/fs.h>
9#include <stdbool.h>
10#include <stddef.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020011#include <stdlib.h>
Lennart Poettering52b32b22019-01-18 16:09:30 +010012#include <sys/file.h>
Maciej Wereskiebf4e802014-12-04 10:32:10 +010013#include <sys/xattr.h>
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +010014#include <sysexits.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020015#include <time.h>
16#include <unistd.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020017
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +010018#include "sd-path.h"
19
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020020#include "acl-util.h"
Lennart Poetteringb5efdb82015-10-27 03:01:06 +010021#include "alloc-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020022#include "btrfs-util.h"
Lennart Poettering430f0182015-10-26 23:32:16 +010023#include "capability-util.h"
Lennart Poetteringc8b30942015-10-26 20:39:23 +010024#include "chattr-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020025#include "conf-files.h"
26#include "copy.h"
Lennart Poetteringa0f29c72015-11-03 12:26:12 +010027#include "def.h"
Reverend Homer8fb3f002016-12-09 12:04:30 +030028#include "dirent-util.h"
Lennart Poettering4f5dd392015-10-23 18:52:53 +020029#include "escape.h"
Lennart Poettering3ffd4af2015-10-25 13:14:12 +010030#include "fd-util.h"
Lennart Poettering0d39fa92015-10-26 18:05:03 +010031#include "fileio.h"
Zbigniew Jędrzejewski-Szmekf97b34a2016-11-07 10:14:59 -050032#include "format-util.h"
Lennart Poetteringf4f15632015-10-26 21:16:26 +010033#include "fs-util.h"
Lennart Poettering7d50b322015-10-27 01:48:17 +010034#include "glob-util.h"
Lennart Poetteringc0044932015-10-25 14:08:25 +010035#include "io-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020036#include "label.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020037#include "log.h"
Dave Reisner54693d92012-09-15 12:58:49 -040038#include "macro.h"
Yu Watanabe87938c32018-11-26 01:00:54 +090039#include "main-func.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020040#include "mkdir.h"
Zbigniew Jędrzejewski-Szmek049af8a2018-11-29 10:24:39 +010041#include "mountpoint-util.h"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +020042#include "pager.h"
Lennart Poettering6bedfcb2015-10-26 16:18:16 +010043#include "parse-util.h"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +010044#include "path-lookup.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020045#include "path-util.h"
Zbigniew Jędrzejewski-Szmek294bf0c2018-11-20 15:42:57 +010046#include "pretty-print.h"
Lennart Poetteringe5358402019-01-18 16:34:52 +010047#include "rlimit-util.h"
Lennart Poetteringc6878632015-04-04 11:52:57 +020048#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010049#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020050#include "set.h"
Lennart Poettering760877e2019-03-13 12:14:47 +010051#include "sort-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020052#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010053#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010054#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010055#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020056#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020057#include "strv.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010058#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010059#include "user-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020060
Andreas Jaeger01000472010-09-29 10:08:24 +020061/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020062 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020063 * properly owned directories beneath /tmp, /var/tmp, /run, which are
64 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020065
Lennart Poettering1a967b62018-10-25 23:19:00 +020066typedef enum OperationMask {
67 OPERATION_CREATE = 1 << 0,
68 OPERATION_REMOVE = 1 << 1,
69 OPERATION_CLEAN = 1 << 2,
70} OperationMask;
71
Michal Schmidt66ccd032011-12-15 21:31:14 +010072typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010073 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020074 CREATE_FILE = 'f',
Zach Smitheccebf42019-10-28 09:32:16 -070075 TRUNCATE_FILE = 'F', /* deprecated: use f+ */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020076 CREATE_DIRECTORY = 'd',
77 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010078 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020079 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
80 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020081 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010082 CREATE_SYMLINK = 'L',
83 CREATE_CHAR_DEVICE = 'c',
84 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020085 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010086
87 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +020088 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -040089 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -050090 SET_XATTR = 't',
91 RECURSIVE_SET_XATTR = 'T',
92 SET_ACL = 'a',
93 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +020094 SET_ATTRIBUTE = 'h',
95 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020096 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010097 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020098 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010099 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +0100100 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200101 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200102 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +0100103} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200104
105typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100106 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200107
108 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100109 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100110 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200111#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500112 acl_t acl_access;
113 acl_t acl_default;
114#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200115 uid_t uid;
116 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200117 mode_t mode;
118 usec_t age;
119
Lennart Poettering468d7262012-01-17 15:04:12 +0100120 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200121 unsigned attribute_value;
122 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100123
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200124 bool uid_set:1;
125 bool gid_set:1;
126 bool mode_set:1;
127 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200128 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200129 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200130
131 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200132
Zach Smithc55ac242019-10-03 18:09:35 -0700133 bool append_or_force:1;
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200134
William Douglas6d7b5432018-09-10 12:07:29 -0700135 bool allow_failure:1;
136
Lennart Poettering811a1582018-10-26 20:56:37 +0200137 OperationMask done;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200138} Item;
139
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500140typedef struct ItemArray {
141 Item *items;
Lennart Poettering96d10d72018-10-25 13:51:01 +0200142 size_t n_items;
Lennart Poettering64768712018-10-25 13:48:25 +0200143 size_t allocated;
Lennart Poettering811a1582018-10-26 20:56:37 +0200144
145 struct ItemArray *parent;
146 Set *children;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500147} ItemArray;
148
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100149typedef enum DirectoryType {
Lennart Poettering133bbca2018-10-26 10:32:48 +0200150 DIRECTORY_RUNTIME,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100151 DIRECTORY_STATE,
152 DIRECTORY_CACHE,
153 DIRECTORY_LOGS,
154 _DIRECTORY_TYPE_MAX,
155} DirectoryType;
156
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200157static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100158static bool arg_user = false;
Lennart Poettering1a967b62018-10-25 23:19:00 +0200159static OperationMask arg_operation = 0;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500160static bool arg_boot = false;
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +0100161static PagerFlags arg_pager_flags = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200162
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200163static char **arg_include_prefixes = NULL;
164static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700165static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100166static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100167
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200168#define MAX_DEPTH 256
169
Lennart Poetteringef43a392015-04-22 18:18:56 +0200170static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200171static Set *unix_sockets = NULL;
172
Yu Watanabe87938c32018-11-26 01:00:54 +0900173STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
174STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
175STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_free_freep);
176STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
177STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
178STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
179
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100180static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret);
181static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100182
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200183static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100184 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100185 { 'b', specifier_boot_id, NULL },
186 { 'H', specifier_host_name, NULL },
187 { 'v', specifier_kernel_release, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100188
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700189 { 'g', specifier_group_name, NULL },
190 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100191 { 'U', specifier_user_id, NULL },
192 { 'u', specifier_user_name, NULL },
193 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200194
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100195 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
196 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
197 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
198 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200199 { 'T', specifier_tmp_dir, NULL },
200 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200201 {}
202};
203
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100204static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret) {
Franck Bui4cef1922017-11-16 11:27:29 +0100205 int r;
206
Franck Buid8dab752018-01-10 23:28:44 +0100207 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
208 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100209 * gracefully. */
210
211 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100212 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100213 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100214
215 return r;
216}
217
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100218static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret) {
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100219 struct table_entry {
220 uint64_t type;
221 const char *suffix;
222 };
223
224 static const struct table_entry paths_system[] = {
225 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
226 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
227 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
228 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
229 };
230
231 static const struct table_entry paths_user[] = {
232 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
233 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
234 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
235 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
236 };
237
238 unsigned i;
239 const struct table_entry *paths;
240
241 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
242 paths = arg_user ? paths_user : paths_system;
243
244 i = PTR_TO_UINT(data);
245 assert(i < ELEMENTSOF(paths_system));
246
247 return sd_path_home(paths[i].type, paths[i].suffix, ret);
248}
249
Franck Bui4cef1922017-11-16 11:27:29 +0100250static int log_unresolvable_specifier(const char *filename, unsigned line) {
251 static bool notified = false;
252
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100253 /* In system mode, this is called when /etc is not fully initialized (e.g.
254 * in a chroot environment) where some specifiers are unresolvable. In user
255 * mode, this is called when some variables are not defined. These cases are
256 * not considered as an error so log at LOG_NOTICE only for the first time
257 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100258
259 log_full(notified ? LOG_DEBUG : LOG_NOTICE,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100260 "[%s:%u] Failed to resolve specifier: %s, skipping",
261 filename, line,
262 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100263
264 if (!notified)
265 log_notice("All rules containing unresolvable specifiers will be skipped.");
266
267 notified = true;
268 return 0;
269}
270
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100271static int user_config_paths(char*** ret) {
272 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
273 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
274 _cleanup_strv_free_ char **res = NULL;
275 int r;
276
277 r = xdg_user_dirs(&config_dirs, &data_dirs);
278 if (r < 0)
279 return r;
280
281 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
282 if (r < 0 && r != -ENXIO)
283 return r;
284
285 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
286 if (r < 0 && r != -ENXIO)
287 return r;
288
289 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
290 if (r < 0 && r != -ENXIO)
291 return r;
292
293 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
294 if (r < 0)
295 return r;
296
297 r = strv_extend(&res, persistent_config);
298 if (r < 0)
299 return r;
300
301 r = strv_extend(&res, runtime_config);
302 if (r < 0)
303 return r;
304
305 r = strv_extend(&res, data_home);
306 if (r < 0)
307 return r;
308
309 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
310 if (r < 0)
311 return r;
312
313 r = path_strv_make_absolute_cwd(res);
314 if (r < 0)
315 return r;
316
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100317 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100318 return 0;
319}
320
Michal Schmidt66ccd032011-12-15 21:31:14 +0100321static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200322 return IN_SET(t,
323 WRITE_FILE,
324 IGNORE_PATH,
325 IGNORE_DIRECTORY_PATH,
326 REMOVE_PATH,
327 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400328 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200329 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200330 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500331 RECURSIVE_RELABEL_PATH,
332 SET_XATTR,
333 RECURSIVE_SET_XATTR,
334 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200335 RECURSIVE_SET_ACL,
336 SET_ATTRIBUTE,
337 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100338}
339
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500340static bool takes_ownership(ItemType t) {
341 return IN_SET(t,
342 CREATE_FILE,
343 TRUNCATE_FILE,
344 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400345 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500346 TRUNCATE_DIRECTORY,
347 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200348 CREATE_SUBVOLUME_INHERIT_QUOTA,
349 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500350 CREATE_FIFO,
351 CREATE_SYMLINK,
352 CREATE_CHAR_DEVICE,
353 CREATE_BLOCK_DEVICE,
354 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500355 WRITE_FILE,
356 IGNORE_PATH,
357 IGNORE_DIRECTORY_PATH,
358 REMOVE_PATH,
359 RECURSIVE_REMOVE_PATH);
360}
361
Lennart Poetteringef43a392015-04-22 18:18:56 +0200362static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500363 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100364 Iterator i;
365
Lennart Poetteringef43a392015-04-22 18:18:56 +0200366 ORDERED_HASHMAP_FOREACH(j, h, i) {
Lennart Poettering96d10d72018-10-25 13:51:01 +0200367 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500368
Lennart Poettering96d10d72018-10-25 13:51:01 +0200369 for (n = 0; n < j->n_items; n++) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500370 Item *item = j->items + n;
371
372 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
373 return item;
374 }
375 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100376
377 return NULL;
378}
379
Yu Watanabe71a0be72018-11-26 00:48:15 +0900380static int load_unix_sockets(void) {
381 _cleanup_set_free_free_ Set *sockets = NULL;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200382 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100383 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100384
385 if (unix_sockets)
Yu Watanabe71a0be72018-11-26 00:48:15 +0900386 return 0;
Lennart Poettering17b90522011-02-14 21:55:06 +0100387
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100388 /* 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 +0100389
Yu Watanabe71a0be72018-11-26 00:48:15 +0900390 sockets = set_new(&path_hash_ops);
391 if (!sockets)
392 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100393
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100394 f = fopen("/proc/net/unix", "re");
Yu Watanabe71a0be72018-11-26 00:48:15 +0900395 if (!f)
396 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
397 "Failed to open /proc/net/unix, ignoring: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100398
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100399 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100400 r = read_line(f, LONG_LINE_MAX, NULL);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900401 if (r < 0)
402 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
403 if (r == 0)
404 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
Lennart Poettering17b90522011-02-14 21:55:06 +0100405
406 for (;;) {
Yu Watanabe71a0be72018-11-26 00:48:15 +0900407 _cleanup_free_ char *line = NULL, *s = NULL;
408 char *p;
Lennart Poettering17b90522011-02-14 21:55:06 +0100409
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100410 r = read_line(f, LONG_LINE_MAX, &line);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900411 if (r < 0)
412 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100413 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100414 break;
415
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100416 p = strchr(line, ':');
417 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100418 continue;
419
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100420 if (strlen(p) < 37)
421 continue;
422
423 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100424 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100425 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100426 p += strspn(p, WHITESPACE);
427
428 if (*p != '/')
429 continue;
430
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100431 s = strdup(p);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900432 if (!s)
433 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100434
Yu Watanabe858d36c2018-05-31 23:39:31 +0900435 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100436
Yu Watanabe71a0be72018-11-26 00:48:15 +0900437 r = set_consume(sockets, s);
438 if (r == -EEXIST)
439 continue;
440 if (r < 0)
441 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
442
443 TAKE_PTR(s);
Lennart Poettering17b90522011-02-14 21:55:06 +0100444 }
445
Yu Watanabe71a0be72018-11-26 00:48:15 +0900446 unix_sockets = TAKE_PTR(sockets);
447 return 1;
Lennart Poettering17b90522011-02-14 21:55:06 +0100448}
449
450static bool unix_socket_alive(const char *fn) {
451 assert(fn);
452
Yu Watanabe71a0be72018-11-26 00:48:15 +0900453 if (load_unix_sockets() < 0)
454 return true; /* We don't know, so assume yes */
Lennart Poettering17b90522011-02-14 21:55:06 +0100455
Yu Watanabe71a0be72018-11-26 00:48:15 +0900456 return !!set_get(unix_sockets, (char*) fn);
Lennart Poettering17b90522011-02-14 21:55:06 +0100457}
458
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500459static DIR* xopendirat_nomod(int dirfd, const char *path) {
460 DIR *dir;
461
462 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700463 if (dir)
464 return dir;
465
466 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
467 if (errno != EPERM)
468 return NULL;
469
470 dir = xopendirat(dirfd, path, O_NOFOLLOW);
471 if (!dir)
472 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500473
474 return dir;
475}
476
477static DIR* opendir_nomod(const char *path) {
478 return xopendirat_nomod(AT_FDCWD, path);
479}
480
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200481static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100482 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200483 const char *p,
484 DIR *d,
485 const struct stat *ds,
486 usec_t cutoff,
487 dev_t rootdev,
488 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200489 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500490 bool keep_this_level) {
491
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200492 struct dirent *dent;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200493 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200494 int r = 0;
495
Reverend Homer8fb3f002016-12-09 12:04:30 +0300496 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200497 struct stat s;
498 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200499 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200500
Lennart Poettering49bfc872017-02-02 00:06:18 +0100501 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200502 continue;
503
504 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200505 if (errno == ENOENT)
506 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200507
Kay Sieversca2f4172013-10-17 03:20:46 +0200508 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100509 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
510 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200511 continue;
512 }
513
514 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500515 if (s.st_dev != rootdev) {
516 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200517 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500518 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200519
Kay Sievers99d680a2013-03-13 13:12:36 +0100520 /* Try to detect bind mounts of the same filesystem instance; they
521 * do not differ in device major/minors. This type of query is not
522 * supported on all kernels or filesystem types though. */
Lennart Poettering60bdc0c2019-06-18 12:42:30 +0200523 if (S_ISDIR(s.st_mode)) {
524 int q;
525
526 q = fd_is_mount_point(dirfd(d), dent->d_name, 0);
527 if (q < 0)
528 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, dent->d_name);
529 else if (q > 0) {
530 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, dent->d_name);
531 continue;
532 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500533 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100534
Lennart Poettering113ed3b2019-06-18 12:41:02 +0200535 sub_path = path_join(p, dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200536 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700537 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200538 goto finish;
539 }
540
541 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200542 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500543 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200544 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500545 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200546
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500547 if (find_glob(globs, sub_path)) {
548 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100549 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500550 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100551
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200552 if (S_ISDIR(s.st_mode)) {
Lennart Poettering52b32b22019-01-18 16:09:30 +0100553 _cleanup_closedir_ DIR *sub_dir = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200554
555 if (mountpoint &&
556 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500557 s.st_uid == 0) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100558 log_debug("Ignoring directory \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200559 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500560 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200561
562 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500563 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200564 else {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200565 int q;
566
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500567 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200568 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500569 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100570 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200571
572 continue;
573 }
574
Lennart Poettering52b32b22019-01-18 16:09:30 +0100575 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
576 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
577 continue;
578 }
579
Michal Sekletar78a92a52013-01-18 16:13:08 +0100580 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200581 if (q < 0)
582 r = q;
583 }
584
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100585 /* Note: if you are wondering why we don't support the sticky bit for excluding
586 * directories from cleaning like we do it for other file system objects: well, the
587 * sticky bit already has a meaning for directories, so we don't want to overload
588 * that. */
Lennart Poettering24f3a372012-06-20 09:05:50 +0200589
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500590 if (keep_this_level) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100591 log_debug("Keeping directory \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200592 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500593 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200594
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200595 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500596 age = timespec_load(&s.st_mtim);
597 if (age >= cutoff) {
598 char a[FORMAT_TIMESTAMP_MAX];
599 /* Follows spelling in stat(1). */
600 log_debug("Directory \"%s\": modify time %s is too new.",
601 sub_path,
602 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200603 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500604 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200605
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500606 age = timespec_load(&s.st_atim);
607 if (age >= cutoff) {
608 char a[FORMAT_TIMESTAMP_MAX];
609 log_debug("Directory \"%s\": access time %s is too new.",
610 sub_path,
611 format_timestamp_us(a, sizeof(a), age));
612 continue;
613 }
614
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500615 log_debug("Removing directory \"%s\".", sub_path);
616 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100617 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
Lennart Poettering781bc442019-01-18 16:07:45 +0100618 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200619
620 } else {
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100621 /* Skip files for which the sticky bit is set. These are semantics we define, and are
622 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500623 if (s.st_mode & S_ISVTX) {
624 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100625 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200626 }
627
Lennart Poettering20b6bb92019-06-18 12:41:31 +0200628 if (mountpoint &&
629 S_ISREG(s.st_mode) &&
630 s.st_uid == 0 &&
631 STR_IN_SET(dent->d_name,
632 ".journal",
633 "aquota.user",
634 "aquota.group")) {
635 log_debug("Skipping \"%s\".", sub_path);
636 continue;
637 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500638
Lennart Poettering17b90522011-02-14 21:55:06 +0100639 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500640 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
641 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100642 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500643 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100644
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100645 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500646 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
647 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100648 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500649 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100650
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100651 /* Keep files on this level around if this is requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500652 if (keep_this_level) {
653 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200654 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200655 }
656
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500657 age = timespec_load(&s.st_mtim);
658 if (age >= cutoff) {
659 char a[FORMAT_TIMESTAMP_MAX];
660 /* Follows spelling in stat(1). */
661 log_debug("File \"%s\": modify time %s is too new.",
662 sub_path,
663 format_timestamp_us(a, sizeof(a), age));
664 continue;
665 }
666
667 age = timespec_load(&s.st_atim);
668 if (age >= cutoff) {
669 char a[FORMAT_TIMESTAMP_MAX];
670 log_debug("File \"%s\": access time %s is too new.",
671 sub_path,
672 format_timestamp_us(a, sizeof(a), age));
673 continue;
674 }
675
676 age = timespec_load(&s.st_ctim);
677 if (age >= cutoff) {
678 char a[FORMAT_TIMESTAMP_MAX];
679 log_debug("File \"%s\": change time %s is too new.",
680 sub_path,
681 format_timestamp_us(a, sizeof(a), age));
682 continue;
683 }
684
Lennart Poettering781bc442019-01-18 16:07:45 +0100685 log_debug("Removing \"%s\".", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500686 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
687 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100688 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500689
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200690 deleted = true;
691 }
692 }
693
694finish:
695 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500696 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
Lennart Poettering76e15a92019-01-18 15:51:13 +0100697 usec_t age1, age2;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200698
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500699 age1 = timespec_load(&ds->st_atim);
700 age2 = timespec_load(&ds->st_mtim);
Lennart Poettering76e15a92019-01-18 15:51:13 +0100701
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500702 log_debug("Restoring access and modification time on \"%s\": %s, %s",
703 p,
704 format_timestamp_us(a, sizeof(a), age1),
705 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering76e15a92019-01-18 15:51:13 +0100706
707 /* Restore original directory timestamps */
708 if (futimens(dirfd(d), (struct timespec[]) {
709 ds->st_atim,
710 ds->st_mtim }) < 0)
711 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200712 }
713
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200714 return r;
715}
716
Lennart Poettering5579f852018-01-23 14:03:34 +0100717static bool dangerous_hardlinks(void) {
718 _cleanup_free_ char *value = NULL;
719 static int cached = -1;
720 int r;
721
722 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
723 * what the upstream default is. */
724
725 if (cached >= 0)
726 return cached;
727
728 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
729 if (r < 0) {
730 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
731 return true;
732 }
733
734 r = parse_boolean(value);
735 if (r < 0) {
736 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
737 return true;
738 }
739
740 cached = r == 0;
741 return cached;
742}
743
Franck Bui774f79b2018-03-02 16:13:07 +0100744static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100745 assert(st);
746
747 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
748}
749
Lennart Poettering8b364a32019-04-29 13:21:40 +0200750static mode_t process_mask_perms(mode_t mode, mode_t current) {
751
752 if ((current & 0111) == 0)
753 mode &= ~0111;
754 if ((current & 0222) == 0)
755 mode &= ~0222;
756 if ((current & 0444) == 0)
757 mode &= ~0444;
758 if (!S_ISDIR(current))
759 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
760
761 return mode;
762}
763
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200764static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200765 struct stat stbuf;
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200766 mode_t new_mode;
767 bool do_chown;
Franck Bui936f6bd2018-03-02 17:19:32 +0100768
769 assert(i);
770 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200771 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100772
773 if (!i->mode_set && !i->uid_set && !i->gid_set)
774 goto shortcut;
775
Franck Buib206ac82018-04-13 11:39:39 +0200776 if (!st) {
777 if (fstat(fd, &stbuf) < 0)
778 return log_error_errno(errno, "fstat(%s) failed: %m", path);
779 st = &stbuf;
780 }
781
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100782 if (hardlink_vulnerable(st))
783 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
784 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
785 path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100786
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200787 /* Do we need a chown()? */
788 do_chown =
789 (i->uid_set && i->uid != st->st_uid) ||
790 (i->gid_set && i->gid != st->st_gid);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200791
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200792 /* Calculate the mode to apply */
793 new_mode = i->mode_set ? (i->mask_perms ?
794 process_mask_perms(i->mode, st->st_mode) :
795 i->mode) :
796 (st->st_mode & 07777);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200797
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200798 if (i->mode_set && do_chown) {
799 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
800 * the new mode. That way there's no time window where the file exists under the old owner
801 * with more than the old access modes — and not under the new owner with more than the new
802 * access modes either. */
803
Franck Bui936f6bd2018-03-02 17:19:32 +0100804 if (S_ISLNK(st->st_mode))
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200805 log_debug("Skipping temporary mode fix for symlink %s.", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100806 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200807 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
Franck Bui936f6bd2018-03-02 17:19:32 +0100808
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200809 if (((m ^ st->st_mode) & 07777) == 0)
810 log_debug("\"%s\" matches temporary mode %o already.", path, m);
Franck Bui936f6bd2018-03-02 17:19:32 +0100811 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200812 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200813 if (fchmod_opath(fd, m) < 0)
814 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100815 }
816 }
817 }
818
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200819 if (do_chown) {
Franck Bui936f6bd2018-03-02 17:19:32 +0100820 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
821 path,
822 i->uid_set ? i->uid : UID_INVALID,
823 i->gid_set ? i->gid : GID_INVALID);
824
825 if (fchownat(fd,
826 "",
827 i->uid_set ? i->uid : UID_INVALID,
828 i->gid_set ? i->gid : GID_INVALID,
829 AT_EMPTY_PATH) < 0)
830 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
831 }
832
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200833 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
834 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
835 if (i->mode_set || do_chown) {
836 if (S_ISLNK(st->st_mode))
837 log_debug("Skipping mode fix for symlink %s.", path);
838 else {
839 /* Check if the chmod() is unnecessary. Note that if we did a chown() before we always
840 * chmod() here again, since it might have mangled the bits. */
841 if (!do_chown && ((new_mode ^ st->st_mode) & 07777) == 0)
842 log_debug("\"%s\" matches mode %o already.", path, new_mode);
843 else {
844 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
845 if (fchmod_opath(fd, new_mode) < 0)
846 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
847 }
848 }
849 }
850
Franck Bui936f6bd2018-03-02 17:19:32 +0100851shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200852 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100853}
854
Franck Bui5ec9d062018-04-13 17:31:22 +0200855static int path_open_parent_safe(const char *path) {
856 _cleanup_free_ char *dn = NULL;
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200857 int r, fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200858
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100859 if (path_equal(path, "/") || !path_is_normalized(path))
860 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
861 "Failed to open parent of '%s': invalid path.",
862 path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200863
864 dn = dirname_malloc(path);
865 if (!dn)
866 return log_oom();
867
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200868 r = chase_symlinks(dn, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
869 if (r < 0 && r != -ENOLINK)
870 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200871
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200872 return r < 0 ? r : fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200873}
874
Franck Buiaddc3e32018-03-20 08:58:48 +0100875static int path_open_safe(const char *path) {
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200876 int r, fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100877
878 /* path_open_safe() returns a file descriptor opened with O_PATH after
879 * verifying that the path doesn't contain unsafe transitions, except
880 * for its final component as the function does not follow symlink. */
881
882 assert(path);
883
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100884 if (!path_is_normalized(path))
885 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
886 "Failed to open invalid path '%s'.",
887 path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100888
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200889 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
890 if (r < 0 && r != -ENOLINK)
891 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100892
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200893 return r < 0 ? r : fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100894}
895
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500896static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200897 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200898
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200899 assert(i);
900 assert(path);
901
Franck Buiaddc3e32018-03-20 08:58:48 +0100902 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200903 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100904 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200905
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200906 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100907}
908
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200909static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100910 const char *p;
911 int r;
912
913 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500914 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100915
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100916 p = i->argument;
917
Lennart Poettering4034a062015-03-23 18:55:36 +0700918 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100919 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700920
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +0200921 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700922 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200923 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700924 if (r <= 0)
925 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500926
Franck Bui4cef1922017-11-16 11:27:29 +0100927 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100928 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700929 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100930 continue;
931 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500932
Lennart Poettering4034a062015-03-23 18:55:36 +0700933 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200934 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100935 continue;
936 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500937
Lennart Poettering4034a062015-03-23 18:55:36 +0700938 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100939 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500940
Lennart Poettering4034a062015-03-23 18:55:36 +0700941 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100942 }
943
Lennart Poettering4034a062015-03-23 18:55:36 +0700944 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100945}
946
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200947static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100948 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100949 char **name, **value;
950
951 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100952 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200953 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100954
955 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100956
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100957 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200958 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100959 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400960 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
961 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100962 }
963 return 0;
964}
965
Franck Bui936f6bd2018-03-02 17:19:32 +0100966static int path_set_xattrs(Item *i, const char *path) {
967 _cleanup_close_ int fd = -1;
968
969 assert(i);
970 assert(path);
971
Franck Buiaddc3e32018-03-20 08:58:48 +0100972 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100973 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100974 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100975
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200976 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100977}
978
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200979static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200980#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500981 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500982
983 assert(item);
984
Zach Smithc55ac242019-10-03 18:09:35 -0700985 /* If append_or_force (= modify) is set, we will not modify the acl
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500986 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200987
Zach Smithc55ac242019-10-03 18:09:35 -0700988 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500989 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700990 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500991#else
Zbigniew Jędrzejewski-Szmek886cf312018-11-21 08:23:20 +0100992 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500993#endif
994
995 return 0;
996}
997
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200998#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200999static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
1000 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001001 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001002 int r;
1003
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001004 /* Returns 0 for success, positive error if already warned,
1005 * negative error otherwise. */
1006
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001007 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001008 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001009 if (r < 0)
1010 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001011
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001012 r = calc_acl_mask_if_needed(&dup);
1013 if (r < 0)
1014 return r;
1015 } else {
1016 dup = acl_dup(acl);
1017 if (!dup)
1018 return -errno;
1019
1020 /* the mask was already added earlier if needed */
1021 }
1022
1023 r = add_base_acls_if_needed(&dup, path);
1024 if (r < 0)
1025 return r;
1026
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001027 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001028 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001029 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001030 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001031
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001032 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001033 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001034 /* Return positive to indicate we already warned */
1035 return -log_error_errno(errno,
1036 "Setting %s ACL \"%s\" on %s failed: %m",
1037 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001038 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001039
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001040 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001041}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001042#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001043
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001044static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001045 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001046#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001047 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001048 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001049
1050 assert(item);
1051 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001052 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001053
Franck Buib206ac82018-04-13 11:39:39 +02001054 if (!st) {
1055 if (fstat(fd, &stbuf) < 0)
1056 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1057 st = &stbuf;
1058 }
1059
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001060 if (hardlink_vulnerable(st))
1061 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1062 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1063 path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001064
1065 if (S_ISLNK(st->st_mode)) {
1066 log_debug("Skipping ACL fix for symlink %s.", path);
1067 return 0;
1068 }
1069
1070 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1071
1072 if (item->acl_access)
Zach Smithc55ac242019-10-03 18:09:35 -07001073 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001074
remueller26673852018-07-16 16:56:01 +02001075 /* set only default acls to folders */
1076 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Zach Smithc55ac242019-10-03 18:09:35 -07001077 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001078
1079 if (r > 0)
1080 return -r; /* already warned */
1081 if (r == -EOPNOTSUPP) {
1082 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1083 return 0;
1084 }
1085 if (r < 0)
1086 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1087#endif
1088 return r;
1089}
1090
1091static int path_set_acls(Item *item, const char *path) {
1092 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001093#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001094 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001095
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001096 assert(item);
1097 assert(path);
1098
Franck Buiaddc3e32018-03-20 08:58:48 +01001099 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001100 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001101 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001102
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001103 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001104#endif
1105 return r;
1106}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001107
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001108static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001109
1110 static const struct {
1111 char character;
1112 unsigned value;
1113 } attributes[] = {
1114 { 'A', FS_NOATIME_FL }, /* do not update atime */
1115 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1116 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1117 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1118 { 'c', FS_COMPR_FL }, /* Compress file */
1119 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001120 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001121 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1122 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1123 { 's', FS_SECRM_FL }, /* Secure deletion */
1124 { 'u', FS_UNRM_FL }, /* Undelete */
1125 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001126 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001127 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Lennart Poettering75006472019-03-28 18:35:03 +01001128 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001129 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001130
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001131 enum {
1132 MODE_ADD,
1133 MODE_DEL,
1134 MODE_SET
1135 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001136
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001137 unsigned value = 0, mask = 0;
1138 const char *p;
1139
1140 assert(item);
1141
1142 p = item->argument;
1143 if (p) {
1144 if (*p == '+') {
1145 mode = MODE_ADD;
1146 p++;
1147 } else if (*p == '-') {
1148 mode = MODE_DEL;
1149 p++;
1150 } else if (*p == '=') {
1151 mode = MODE_SET;
1152 p++;
1153 }
1154 }
1155
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001156 if (isempty(p) && mode != MODE_SET)
1157 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1158 "Setting file attribute on '%s' needs an attribute specification.",
1159 item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001160
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001161 for (; p && *p ; p++) {
1162 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001163
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001164 for (i = 0; i < ELEMENTSOF(attributes); i++)
1165 if (*p == attributes[i].character)
1166 break;
1167
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001168 if (i >= ELEMENTSOF(attributes))
1169 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1170 "Unknown file attribute '%c' on '%s'.",
1171 *p, item->path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001172
1173 v = attributes[i].value;
1174
Andreas Rammhold37420952017-09-29 00:37:23 +02001175 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001176
1177 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001178 }
1179
1180 if (mode == MODE_SET)
Lennart Poetteringd629ba72019-03-28 18:41:39 +01001181 mask |= CHATTR_ALL_FL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001182
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001183 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001184
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001185 item->attribute_mask = mask;
1186 item->attribute_value = value;
1187 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001188
1189 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001190}
1191
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001192static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001193 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001194 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001195 unsigned f;
1196 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001197
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001198 assert(item);
1199 assert(fd);
1200 assert(path);
1201
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001202 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001203 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001204
Franck Buib206ac82018-04-13 11:39:39 +02001205 if (!st) {
1206 if (fstat(fd, &stbuf) < 0)
1207 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1208 st = &stbuf;
1209 }
1210
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001211 /* Issuing the file attribute ioctls on device nodes is not
1212 * safe, as that will be delivered to the drivers, not the
1213 * file system containing the device node. */
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001214 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1215 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1216 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1217 path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001218
1219 f = item->attribute_value & item->attribute_mask;
1220
1221 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001222 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001223 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001224
Lennart Poetteringf2324782018-03-26 13:25:51 +02001225 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001226 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001227 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001228
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001229 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001230 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001231 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001232 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001233 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001234 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001235
1236 return 0;
1237}
1238
Franck Bui936f6bd2018-03-02 17:19:32 +01001239static int path_set_attribute(Item *item, const char *path) {
1240 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001241
1242 if (!item->attribute_set || item->attribute_mask == 0)
1243 return 0;
1244
Franck Buiaddc3e32018-03-20 08:58:48 +01001245 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001246 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001247 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001248
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001249 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001250}
1251
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001252static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001253 _cleanup_close_ int fd = -1, dir_fd = -1;
1254 char *bn;
Zach Smithd0ea5c52019-10-03 18:19:18 -07001255 int flags, r;
Franck Bui31c84ff2018-04-13 09:19:24 +02001256
1257 assert(i);
1258 assert(path);
1259 assert(i->argument);
1260 assert(i->type == WRITE_FILE);
1261
Franck Bui551470e2018-04-13 17:54:09 +02001262 /* Validate the path and keep the fd on the directory for opening the
1263 * file so we're sure that it can't be changed behind our back. */
1264 dir_fd = path_open_parent_safe(path);
1265 if (dir_fd < 0)
1266 return dir_fd;
1267
1268 bn = basename(path);
1269
Zach Smithd0ea5c52019-10-03 18:19:18 -07001270 flags = O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY;
1271
Franck Bui31c84ff2018-04-13 09:19:24 +02001272 /* Follows symlinks */
Zach Smithd0ea5c52019-10-03 18:19:18 -07001273 fd = openat(dir_fd, bn, i->append_or_force ? flags|O_APPEND : flags, i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001274 if (fd < 0) {
1275 if (errno == ENOENT) {
1276 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1277 return 0;
1278 }
1279 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1280 }
1281
1282 /* 'w' is allowed to write into any kind of files. */
1283 log_debug("Writing to \"%s\".", path);
1284
1285 r = loop_write(fd, i->argument, strlen(i->argument), false);
1286 if (r < 0)
1287 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1288
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001289 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001290}
1291
1292static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001293 _cleanup_close_ int fd = -1, dir_fd = -1;
1294 struct stat stbuf, *st = NULL;
1295 int r = 0;
1296 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001297
Lennart Poettering874f1942014-06-10 22:48:56 +02001298 assert(i);
1299 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001300 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001301
Franck Bui5ec9d062018-04-13 17:31:22 +02001302 /* 'f' operates on regular files exclusively. */
1303
1304 /* Validate the path and keep the fd on the directory for opening the
1305 * file so we're sure that it can't be changed behind our back. */
1306 dir_fd = path_open_parent_safe(path);
1307 if (dir_fd < 0)
1308 return dir_fd;
1309
1310 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001311
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001312 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001313 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001314 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 +02001315 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001316 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001317
1318 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001319 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1320 * file already exists. It returns EROFS only if it needs to
1321 * create the file. */
1322 if (errno != EEXIST)
1323 return log_error_errno(errno, "Failed to create file %s: %m", path);
1324
1325 /* Re-open the file. At that point it must exist since open(2)
1326 * failed with EEXIST. We still need to check if the perms/mode
1327 * need to be changed. For read-only filesystems, we let
1328 * fd_set_perms() report the error if the perms need to be
1329 * modified. */
1330 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1331 if (fd < 0)
1332 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1333
1334 if (fstat(fd, &stbuf) < 0)
1335 return log_error_errno(errno, "stat(%s) failed: %m", path);
1336
1337 if (!S_ISREG(stbuf.st_mode)) {
1338 log_error("%s exists and is not a regular file.", path);
1339 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001340 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001341
Franck Bui5ec9d062018-04-13 17:31:22 +02001342 st = &stbuf;
1343 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001344
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001345 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001346
Franck Bui5ec9d062018-04-13 17:31:22 +02001347 if (i->argument) {
1348 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001349
Franck Bui5ec9d062018-04-13 17:31:22 +02001350 r = loop_write(fd, i->argument, strlen(i->argument), false);
1351 if (r < 0)
1352 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1353 }
1354 }
1355
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001356 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001357}
1358
1359static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001360 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001361 struct stat stbuf, *st = NULL;
1362 bool erofs = false;
1363 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001364 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001365
1366 assert(i);
1367 assert(path);
Zach Smitheccebf42019-10-28 09:32:16 -07001368 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
Franck Bui5ec9d062018-04-13 17:31:22 +02001369
1370 /* We want to operate on regular file exclusively especially since
1371 * O_TRUNC is unspecified if the file is neither a regular file nor a
1372 * fifo nor a terminal device. Therefore we first open the file and make
1373 * sure it's a regular one before truncating it. */
1374
Franck Bui14ab8042018-04-13 17:50:49 +02001375 /* Validate the path and keep the fd on the directory for opening the
1376 * file so we're sure that it can't be changed behind our back. */
1377 dir_fd = path_open_parent_safe(path);
1378 if (dir_fd < 0)
1379 return dir_fd;
1380
1381 bn = basename(path);
1382
Franck Bui5ec9d062018-04-13 17:31:22 +02001383 RUN_WITH_UMASK(0000) {
1384 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001385 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 +02001386 mac_selinux_create_file_clear();
1387 }
1388
1389 if (fd < 0) {
1390 if (errno != EROFS)
1391 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1392
1393 /* On a read-only filesystem, we don't want to fail if the
1394 * target is already empty and the perms are set. So we still
1395 * proceed with the sanity checks and let the remaining
1396 * operations fail with EROFS if they try to modify the target
1397 * file. */
1398
Franck Bui14ab8042018-04-13 17:50:49 +02001399 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001400 if (fd < 0) {
1401 if (errno == ENOENT) {
1402 log_error("Cannot create file %s on a read-only file system.", path);
1403 return -EROFS;
1404 }
1405
1406 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1407 }
1408
1409 erofs = true;
1410 }
1411
1412 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001413 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001414
Franck Bui5ec9d062018-04-13 17:31:22 +02001415 if (!S_ISREG(stbuf.st_mode)) {
1416 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001417 return -EEXIST;
1418 }
1419
Franck Bui5ec9d062018-04-13 17:31:22 +02001420 if (stbuf.st_size > 0) {
1421 if (ftruncate(fd, 0) < 0) {
1422 r = erofs ? -EROFS : -errno;
1423 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1424 }
1425 } else
1426 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001427
Franck Bui5ec9d062018-04-13 17:31:22 +02001428 log_debug("\"%s\" has been created.", path);
1429
1430 if (i->argument) {
1431 log_debug("Writing to \"%s\".", path);
1432
1433 r = loop_write(fd, i->argument, strlen(i->argument), false);
1434 if (r < 0) {
1435 r = erofs ? -EROFS : r;
1436 return log_error_errno(r, "Failed to write file %s: %m", path);
1437 }
1438 }
1439
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001440 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001441}
1442
Franck Buib1f7b172018-04-12 12:19:22 +02001443static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001444 _cleanup_close_ int dfd = -1, fd = -1;
1445 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001446 int r;
1447
1448 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1449
Franck Bui16ba55a2018-04-12 12:55:22 +02001450 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001451
Franck Bui16ba55a2018-04-12 12:55:22 +02001452 /* Validate the path and use the returned directory fd for copying the
1453 * target so we're sure that the path can't be changed behind our
1454 * back. */
1455 dfd = path_open_parent_safe(i->path);
1456 if (dfd < 0)
1457 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001458
Franck Bui16ba55a2018-04-12 12:55:22 +02001459 r = copy_tree_at(AT_FDCWD, i->argument,
1460 dfd, bn,
1461 i->uid_set ? i->uid : UID_INVALID,
1462 i->gid_set ? i->gid : GID_INVALID,
Christian Göttsche80e7c842019-11-28 12:18:04 +01001463 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE);
Franck Buib1f7b172018-04-12 12:19:22 +02001464 if (r < 0) {
1465 struct stat a, b;
1466
Franck Bui16ba55a2018-04-12 12:55:22 +02001467 /* If the target already exists on read-only filesystems, trying
1468 * to create the target will not fail with EEXIST but with
1469 * EROFS. */
1470 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1471 r = -EEXIST;
1472
Franck Buib1f7b172018-04-12 12:19:22 +02001473 if (r != -EEXIST)
1474 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1475
1476 if (stat(i->argument, &a) < 0)
1477 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1478
Franck Bui16ba55a2018-04-12 12:55:22 +02001479 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001480 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1481
1482 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1483 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1484 return 0;
1485 }
1486 }
1487
Franck Bui16ba55a2018-04-12 12:55:22 +02001488 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1489 if (fd < 0)
1490 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1491
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001492 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001493}
1494
Franck Bui074bd732018-04-12 18:10:57 +02001495typedef enum {
1496 CREATION_NORMAL,
1497 CREATION_EXISTING,
1498 CREATION_FORCE,
1499 _CREATION_MODE_MAX,
1500 _CREATION_MODE_INVALID = -1
1501} CreationMode;
1502
Lennart Poetteringb82f71c2019-03-22 19:19:32 +01001503static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
Franck Bui074bd732018-04-12 18:10:57 +02001504 [CREATION_NORMAL] = "Created",
1505 [CREATION_EXISTING] = "Found existing",
1506 [CREATION_FORCE] = "Created replacement",
1507};
1508
1509DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1510
Franck Buif17a8d62018-08-06 12:29:54 +02001511static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001512 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001513 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001514 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001515
Franck Bui4c39d892018-04-27 11:51:14 +02001516 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001517
Franck Buif17a8d62018-08-06 12:29:54 +02001518 if (!creation)
1519 creation = &c;
1520
Franck Bui4c39d892018-04-27 11:51:14 +02001521 pfd = path_open_parent_safe(path);
1522 if (pfd < 0)
1523 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001524
Franck Bui4c39d892018-04-27 11:51:14 +02001525 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001526 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1527
1528 /* Don't create a subvolume unless the root directory is
1529 * one, too. We do this under the assumption that if the
1530 * root directory is just a plain directory (i.e. very
1531 * light-weight), we shouldn't try to split it up into
1532 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1533 * environments and suchlike will get a full brtfs
1534 * subvolume set up below their tree only if they
1535 * specifically set up a btrfs subvolume for the root
1536 * dir too. */
1537
Franck Bui4c39d892018-04-27 11:51:14 +02001538 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001539 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001540 RUN_WITH_UMASK((~mode) & 0777)
1541 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001542 }
1543 } else
1544 r = 0;
1545
Franck Bui4c39d892018-04-27 11:51:14 +02001546 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001547 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001548 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001549
1550 if (r < 0) {
1551 int k;
1552
1553 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001554 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001555
Franck Bui4c39d892018-04-27 11:51:14 +02001556 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001557 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001558 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 +02001559 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001560 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001561 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001562 log_warning("\"%s\" already exists and is not a directory.", path);
1563 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001564 }
1565
Franck Buif17a8d62018-08-06 12:29:54 +02001566 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001567 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001568 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001569
Franck Buif17a8d62018-08-06 12:29:54 +02001570 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001571
1572 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1573 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001574 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1575
Franck Bui4c39d892018-04-27 11:51:14 +02001576 return r;
1577}
1578
1579static int create_directory(Item *i, const char *path) {
1580 _cleanup_close_ int fd = -1;
1581
1582 assert(i);
1583 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1584
Franck Buif17a8d62018-08-06 12:29:54 +02001585 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001586 if (fd == -EEXIST)
1587 return 0;
1588 if (fd < 0)
1589 return fd;
1590
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001591 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001592}
1593
1594static int create_subvolume(Item *i, const char *path) {
1595 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001596 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001597 int r, q = 0;
1598
1599 assert(i);
1600 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1601
Franck Buif17a8d62018-08-06 12:29:54 +02001602 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001603 if (fd == -EEXIST)
1604 return 0;
1605 if (fd < 0)
1606 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001607
Franck Buif17a8d62018-08-06 12:29:54 +02001608 if (creation == CREATION_NORMAL &&
1609 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001610 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001611 if (r == -ENOTTY)
1612 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1613 else if (r == -EROFS)
1614 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1615 else if (r == -ENOPROTOOPT)
1616 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1617 else if (r < 0)
1618 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1619 else if (r > 0)
1620 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1621 else if (r == 0)
1622 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1623 }
1624
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001625 r = fd_set_perms(i, fd, path, NULL);
1626 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001627 return q;
1628
1629 return r;
1630}
1631
Franck Bui54946022018-04-26 15:45:17 +02001632static int empty_directory(Item *i, const char *path) {
1633 int r;
1634
1635 assert(i);
1636 assert(i->type == EMPTY_DIRECTORY);
1637
1638 r = is_dir(path, false);
1639 if (r == -ENOENT) {
1640 /* Option "e" operates only on existing objects. Do not
1641 * print errors about non-existent files or directories */
1642 log_debug("Skipping missing directory: %s", path);
1643 return 0;
1644 }
1645 if (r < 0)
1646 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001647 if (r == 0)
1648 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1649 "'%s' already exists and is not a directory.",
1650 path);
Franck Bui54946022018-04-26 15:45:17 +02001651
1652 return path_set_perms(i, path);
1653}
1654
Franck Bui074bd732018-04-12 18:10:57 +02001655static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001656 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001657 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001658 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001659 int r;
1660
1661 assert(i);
1662 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1663
Franck Buic7700a72018-04-12 18:33:54 +02001664 bn = basename(i->path);
1665
1666 /* Validate the path and use the returned directory fd for copying the
1667 * target so we're sure that the path can't be changed behind our
1668 * back. */
1669 dfd = path_open_parent_safe(i->path);
1670 if (dfd < 0)
1671 return dfd;
1672
Franck Bui074bd732018-04-12 18:10:57 +02001673 RUN_WITH_UMASK(0000) {
1674 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001675 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001676 mac_selinux_create_file_clear();
1677 }
1678
1679 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001680 struct stat st;
1681
Franck Bui074bd732018-04-12 18:10:57 +02001682 if (errno == EPERM) {
1683 log_debug("We lack permissions, possibly because of cgroup configuration; "
1684 "skipping creation of device node %s.", i->path);
1685 return 0;
1686 }
1687
1688 if (errno != EEXIST)
1689 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1690
Franck Buic7700a72018-04-12 18:33:54 +02001691 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001692 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1693
1694 if ((st.st_mode & S_IFMT) != file_type) {
1695
Zach Smithc55ac242019-10-03 18:09:35 -07001696 if (i->append_or_force) {
Franck Bui074bd732018-04-12 18:10:57 +02001697
1698 RUN_WITH_UMASK(0000) {
1699 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001700 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001701 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1702 mac_selinux_create_file_clear();
1703 }
1704
1705 if (r < 0)
1706 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1707 creation = CREATION_FORCE;
1708 } else {
1709 log_debug("%s is not a device node.", i->path);
1710 return 0;
1711 }
1712 } else
1713 creation = CREATION_EXISTING;
1714 } else
1715 creation = CREATION_NORMAL;
1716
1717 log_debug("%s %s device node \"%s\" %u:%u.",
1718 creation_mode_verb_to_string(creation),
1719 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1720 i->path, major(i->mode), minor(i->mode));
1721
Franck Buic7700a72018-04-12 18:33:54 +02001722 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1723 if (fd < 0)
1724 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1725
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001726 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001727}
1728
Franck Buia2fc2f82018-04-27 18:11:26 +02001729static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001730 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001731 CreationMode creation;
1732 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001733 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001734 int r;
1735
Franck Bui7ea5a872018-04-27 18:17:32 +02001736 pfd = path_open_parent_safe(path);
1737 if (pfd < 0)
1738 return pfd;
1739
1740 bn = basename(path);
1741
Franck Buia2fc2f82018-04-27 18:11:26 +02001742 RUN_WITH_UMASK(0000) {
1743 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001744 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001745 mac_selinux_create_file_clear();
1746 }
1747
1748 if (r < 0) {
1749 if (errno != EEXIST)
1750 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1751
Franck Bui7ea5a872018-04-27 18:17:32 +02001752 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001753 return log_error_errno(errno, "stat(%s) failed: %m", path);
1754
1755 if (!S_ISFIFO(st.st_mode)) {
1756
Zach Smithc55ac242019-10-03 18:09:35 -07001757 if (i->append_or_force) {
Franck Buia2fc2f82018-04-27 18:11:26 +02001758 RUN_WITH_UMASK(0000) {
1759 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001760 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001761 mac_selinux_create_file_clear();
1762 }
1763
1764 if (r < 0)
1765 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1766 creation = CREATION_FORCE;
1767 } else {
1768 log_warning("\"%s\" already exists and is not a fifo.", path);
1769 return 0;
1770 }
1771 } else
1772 creation = CREATION_EXISTING;
1773 } else
1774 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001775
Franck Buia2fc2f82018-04-27 18:11:26 +02001776 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1777
Franck Bui7ea5a872018-04-27 18:17:32 +02001778 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1779 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001780 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001781
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001782 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001783}
1784
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001785typedef int (*action_t)(Item *i, const char *path);
1786typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001787
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001788static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001789 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001790 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001791
1792 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001793 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001794 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001795
1796 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001797 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001798 goto finish;
1799 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001800
1801 /* This returns the first error we run into, but nevertheless
1802 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001803 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001804
Franck Bui14f34802018-05-24 14:17:07 +02001805 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001806 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001807 _cleanup_closedir_ DIR *d = NULL;
1808 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001809
Franck Bui936f6bd2018-03-02 17:19:32 +01001810 /* The passed 'fd' was opened with O_PATH. We need to convert
1811 * it into a 'regular' fd before reading the directory content. */
1812 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001813
Franck Bui936f6bd2018-03-02 17:19:32 +01001814 d = opendir(procfs_path);
1815 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001816 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1817 if (r == 0)
1818 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001819 goto finish;
1820 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001821
Franck Bui936f6bd2018-03-02 17:19:32 +01001822 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001823 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001824
Franck Bui936f6bd2018-03-02 17:19:32 +01001825 if (dot_or_dot_dot(de->d_name))
1826 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001827
Franck Bui936f6bd2018-03-02 17:19:32 +01001828 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001829 if (de_fd < 0)
1830 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001831 else {
1832 _cleanup_free_ char *de_path = NULL;
1833
Zbigniew Jędrzejewski-Szmek62a85ee2018-11-30 10:43:57 +01001834 de_path = path_join(path, de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001835 if (!de_path)
1836 q = log_oom();
1837 else
1838 /* Pass ownership of dirent fd over */
1839 q = item_do(i, de_fd, de_path, action);
1840 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001841
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001842 if (q < 0 && r == 0)
1843 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001844 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001845 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001846finish:
1847 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001848 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001849}
1850
Franck Bui936f6bd2018-03-02 17:19:32 +01001851static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001852 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001853 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001854 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001855 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001856 char **fn;
1857
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001858 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1859 if (k < 0 && k != -ENOENT)
1860 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001861
1862 STRV_FOREACH(fn, g.gl_pathv) {
1863 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001864 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001865 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001866 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001867
Franck Bui936f6bd2018-03-02 17:19:32 +01001868 return r;
1869}
1870
1871static int glob_item_recursively(Item *i, fdaction_t action) {
1872 _cleanup_globfree_ glob_t g = {
1873 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1874 };
1875 int r = 0, k;
1876 char **fn;
1877
1878 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1879 if (k < 0 && k != -ENOENT)
1880 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1881
1882 STRV_FOREACH(fn, g.gl_pathv) {
1883 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001884
1885 /* Make sure we won't trigger/follow file object (such as
1886 * device nodes, automounts, ...) pointed out by 'fn' with
1887 * O_PATH. Note, when O_PATH is used, flags other than
1888 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1889
1890 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1891 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001892 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1893 if (r == 0)
1894 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001895 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001896 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001897
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001898 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001899 if (k < 0 && r == 0)
1900 r = k;
1901
1902 /* we passed fd ownership to the previous call */
1903 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001904 }
1905
Michal Schmidt99e68c02011-12-15 23:45:26 +01001906 return r;
1907}
1908
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001909static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001910 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001911 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001912
1913 assert(i);
1914
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001915 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1916
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001917 switch (i->type) {
1918
1919 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001920 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001921 case REMOVE_PATH:
1922 case RECURSIVE_REMOVE_PATH:
1923 return 0;
1924
Zach Smitheccebf42019-10-28 09:32:16 -07001925 case TRUNCATE_FILE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001926 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001927 RUN_WITH_UMASK(0000)
1928 (void) mkdir_parents_label(i->path, 0755);
1929
Zach Smitheccebf42019-10-28 09:32:16 -07001930 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
1931 r = truncate_file(i, i->path);
1932 else
1933 r = create_file(i, i->path);
Lennart Poettering265ffa12013-09-17 16:33:30 -05001934
Franck Bui5ec9d062018-04-13 17:31:22 +02001935 if (r < 0)
1936 return r;
1937 break;
1938
Franck Bui7b887f22018-04-12 12:18:19 +02001939 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001940 RUN_WITH_UMASK(0000)
1941 (void) mkdir_parents_label(i->path, 0755);
1942
Franck Buib1f7b172018-04-12 12:19:22 +02001943 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001944 if (r < 0)
1945 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001946 break;
1947
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001948 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001949 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001950 if (r < 0)
1951 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001952
1953 break;
1954
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001955 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001956 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001957 RUN_WITH_UMASK(0000)
1958 (void) mkdir_parents_label(i->path, 0755);
1959
1960 r = create_directory(i, i->path);
1961 if (r < 0)
1962 return r;
1963 break;
1964
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001965 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001966 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1967 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001968 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001969 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001970
Franck Bui4c39d892018-04-27 11:51:14 +02001971 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001972 if (r < 0)
1973 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001974 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001975
Franck Bui4ad36842018-04-26 14:54:20 +02001976 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001977 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001978 if (r < 0)
1979 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001980 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001981
1982 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02001983 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001984 (void) mkdir_parents_label(i->path, 0755);
1985
Franck Buia2fc2f82018-04-27 18:11:26 +02001986 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001987 if (r < 0)
1988 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001989 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01001990
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001991 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001992 RUN_WITH_UMASK(0000)
1993 (void) mkdir_parents_label(i->path, 0755);
1994
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001995 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01001996 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001997 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02001998
Lennart Poettering468d7262012-01-17 15:04:12 +01001999 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002000 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002001
Michal Schmidt4a62c712014-11-28 19:57:32 +01002002 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002003 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002004
2005 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002006 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002007
Zach Smithc55ac242019-10-03 18:09:35 -07002008 if (i->append_or_force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002009 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002010 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002011 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002012
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002013 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002014 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2015 if (r < 0)
2016 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2017
2018 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002019 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002020 mac_selinux_create_file_clear();
2021 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002022 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002023 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002024
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002025 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002026 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002027 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002028 return 0;
2029 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002030 } else
2031 creation = CREATION_EXISTING;
2032 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002033
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002034 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002035 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002036 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002037 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002038
2039 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002040 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002041 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002042 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2043 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002044
2045 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2046 return 0;
2047 }
2048
Lennart Poettering7fa10742018-01-23 14:14:19 +01002049 RUN_WITH_UMASK(0000)
2050 (void) mkdir_parents_label(i->path, 0755);
2051
Franck Bui074bd732018-04-12 18:10:57 +02002052 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002053 if (r < 0)
2054 return r;
2055
2056 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002057
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002058 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002059 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002060 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002061 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002062 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002063 break;
2064
Michal Schmidta8d88782011-12-15 23:11:07 +01002065 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002066 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002067 if (r < 0)
2068 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002069 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002070
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002071 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002072 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002073 if (r < 0)
2074 return r;
2075 break;
2076
2077 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002078 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002079 if (r < 0)
2080 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002081 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002082
2083 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002084 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002085 if (r < 0)
2086 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002087 break;
2088
2089 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002090 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002091 if (r < 0)
2092 return r;
2093 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002094
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002095 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002096 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002097 if (r < 0)
2098 return r;
2099 break;
2100
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002101 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002102 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002103 if (r < 0)
2104 return r;
2105 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002106 }
2107
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002108 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002109}
2110
Michal Schmidta0896122011-12-15 21:32:50 +01002111static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002112 int r;
2113
2114 assert(i);
2115
2116 switch (i->type) {
2117
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002118 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002119 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002120 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002121
2122 break;
2123
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002124 case RECURSIVE_REMOVE_PATH:
Lennart Poettering2c575972018-10-29 19:24:56 +01002125 /* 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 -05002126 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering2c575972018-10-29 19:24:56 +01002127 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002128 if (r < 0 && r != -ENOENT)
2129 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002130
2131 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002132
2133 default:
2134 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002135 }
2136
2137 return 0;
2138}
2139
Michal Schmidta0896122011-12-15 21:32:50 +01002140static int remove_item(Item *i) {
Lennart Poettering2c575972018-10-29 19:24:56 +01002141 int r;
2142
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002143 assert(i);
2144
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002145 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2146
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002147 switch (i->type) {
2148
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002149 case TRUNCATE_DIRECTORY:
Lennart Poettering2c575972018-10-29 19:24:56 +01002150 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2151 log_debug("rm -rf \"%s\"", i->path);
2152 r = rm_rf(i->path, REMOVE_PHYSICAL);
2153 if (r < 0 && r != -ENOENT)
2154 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2155
2156 return 0;
2157
2158 case REMOVE_PATH:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002159 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002160 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002161
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002162 default:
2163 return 0;
2164 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002165}
2166
Michal Sekletar78a92a52013-01-18 16:13:08 +01002167static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002168 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002169 struct stat s, ps;
2170 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002171 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002172 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002173
2174 assert(i);
2175
2176 if (!i->age_set)
2177 return 0;
2178
2179 n = now(CLOCK_REALTIME);
2180 if (n < i->age)
2181 return 0;
2182
2183 cutoff = n - i->age;
2184
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002185 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002186 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002187 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002188 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002189 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002190 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002191
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002192 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002193 }
2194
Michal Schmidt4a62c712014-11-28 19:57:32 +01002195 if (fstat(dirfd(d), &s) < 0)
2196 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002197
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002198 if (!S_ISDIR(s.st_mode))
2199 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2200 "%s is not a directory.", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002201
Michal Schmidt4a62c712014-11-28 19:57:32 +01002202 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2203 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002204
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002205 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002206
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002207 log_debug("Cleanup threshold for %s \"%s\" is %s",
2208 mountpoint ? "mount point" : "directory",
2209 instance,
2210 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2211
2212 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2213 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002214}
2215
2216static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002217 assert(i);
2218
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002219 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2220
Michal Sekletar78a92a52013-01-18 16:13:08 +01002221 switch (i->type) {
2222 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002223 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002224 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2225 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002226 case TRUNCATE_DIRECTORY:
2227 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002228 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002229 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002230 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002231 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002232 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002233 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002234 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002235 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002236 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002237}
2238
Lennart Poettering599ebe22018-10-25 23:22:18 +02002239static int process_item(Item *i, OperationMask operation) {
Lennart Poettering811a1582018-10-26 20:56:37 +02002240 OperationMask todo;
2241 int r, q, p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002242
2243 assert(i);
2244
Lennart Poettering811a1582018-10-26 20:56:37 +02002245 todo = operation & ~i->done;
2246 if (todo == 0) /* Everything already done? */
Lennart Poettering1910cd02014-06-11 01:37:35 +02002247 return 0;
2248
Lennart Poettering811a1582018-10-26 20:56:37 +02002249 i->done |= operation;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002250
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +02002251 r = chase_symlinks(i->path, arg_root, CHASE_NO_AUTOFS|CHASE_WARN, NULL, NULL);
Lennart Poettering21af3382018-10-26 21:07:38 +02002252 if (r == -EREMOTE) {
Franck Bui145b8d0f2018-11-30 15:43:13 +01002253 log_notice_errno(r, "Skipping %s", i->path);
Lennart Poettering811a1582018-10-26 20:56:37 +02002254 return 0;
Franck Bui145b8d0f2018-11-30 15:43:13 +01002255 }
2256 if (r < 0)
Lennart Poettering48d96902018-11-20 15:56:55 +01002257 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 -05002258
Lennart Poettering599ebe22018-10-25 23:22:18 +02002259 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002260 /* Failure can only be tolerated for create */
2261 if (i->allow_failure)
2262 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002263
Lennart Poettering599ebe22018-10-25 23:22:18 +02002264 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2265 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
Lennart Poettering1a967b62018-10-25 23:19:00 +02002266
Lennart Poettering811a1582018-10-26 20:56:37 +02002267 return r < 0 ? r :
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002268 q < 0 ? q :
2269 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002270}
2271
Lennart Poettering599ebe22018-10-25 23:22:18 +02002272static int process_item_array(ItemArray *array, OperationMask operation) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002273 int r = 0;
2274 size_t n;
Lennart Poettering753615e2014-06-12 23:07:17 +02002275
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002276 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002277
Lennart Poettering811a1582018-10-26 20:56:37 +02002278 /* Create any parent first. */
2279 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2280 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2281
2282 /* Clean up all children first */
2283 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2284 Iterator i;
2285 ItemArray *c;
2286
2287 SET_FOREACH(c, array->children, i) {
2288 int k;
2289
2290 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2291 if (k < 0 && r == 0)
2292 r = k;
2293 }
2294 }
2295
Lennart Poettering96d10d72018-10-25 13:51:01 +02002296 for (n = 0; n < array->n_items; n++) {
2297 int k;
2298
Lennart Poettering599ebe22018-10-25 23:22:18 +02002299 k = process_item(array->items + n, operation);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002300 if (k < 0 && r == 0)
2301 r = k;
2302 }
2303
2304 return r;
2305}
2306
2307static void item_free_contents(Item *i) {
2308 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002309 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002310 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002311 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002312
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002313#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002314 acl_free(i->acl_access);
2315 acl_free(i->acl_default);
2316#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002317}
2318
Yu Watanabe87938c32018-11-26 01:00:54 +09002319static ItemArray* item_array_free(ItemArray *a) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002320 size_t n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002321
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002322 if (!a)
Yu Watanabe87938c32018-11-26 01:00:54 +09002323 return NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002324
Lennart Poettering96d10d72018-10-25 13:51:01 +02002325 for (n = 0; n < a->n_items; n++)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002326 item_free_contents(a->items + n);
Lennart Poettering96d10d72018-10-25 13:51:01 +02002327
Lennart Poettering811a1582018-10-26 20:56:37 +02002328 set_free(a->children);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002329 free(a->items);
Yu Watanabe87938c32018-11-26 01:00:54 +09002330 return mfree(a);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002331}
2332
Yu Watanabe93bab282018-09-18 08:39:24 +09002333static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002334 /* Make sure that the ownership taking item is put first, so
2335 * that we first create the node, and then can adjust it */
2336
Yu Watanabe93bab282018-09-18 08:39:24 +09002337 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002338 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002339 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002340 return 1;
2341
Yu Watanabe93bab282018-09-18 08:39:24 +09002342 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002343}
2344
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002345static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002346 assert(a);
2347 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002348 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002349
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002350 if (takes_ownership(a->type) && takes_ownership(b->type))
2351 /* check if the items are the same */
2352 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002353
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002354 a->uid_set == b->uid_set &&
2355 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002356
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002357 a->gid_set == b->gid_set &&
2358 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002359
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002360 a->mode_set == b->mode_set &&
2361 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002362
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002363 a->age_set == b->age_set &&
2364 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002365
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002366 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002367
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002368 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002369
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002370 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002371
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002372 return true;
2373}
2374
Dave Reisnera2aced42013-07-24 11:10:05 -04002375static bool should_include_path(const char *path) {
2376 char **prefix;
2377
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002378 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002379 if (path_startswith(path, *prefix)) {
2380 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2381 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002382 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002383 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002384
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002385 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002386 if (path_startswith(path, *prefix)) {
2387 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002388 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002389 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002390
Dave Reisner5c795112013-07-24 11:19:24 -04002391 /* no matches, so we should include this path only if we
2392 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002393 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002394 return true;
2395
2396 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2397 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002398}
2399
Franck Bui4cef1922017-11-16 11:27:29 +01002400static int specifier_expansion_from_arg(Item *i) {
2401 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2402 char **xattr;
2403 int r;
2404
2405 assert(i);
2406
Frantisek Sumsal4e361ac2019-04-28 14:28:49 +02002407 if (!i->argument)
Franck Bui4cef1922017-11-16 11:27:29 +01002408 return 0;
2409
2410 switch (i->type) {
2411 case COPY_FILES:
2412 case CREATE_SYMLINK:
2413 case CREATE_FILE:
2414 case TRUNCATE_FILE:
2415 case WRITE_FILE:
2416 r = cunescape(i->argument, 0, &unescaped);
2417 if (r < 0)
2418 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2419
2420 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2421 if (r < 0)
2422 return r;
2423
2424 free_and_replace(i->argument, resolved);
2425 break;
2426
2427 case SET_XATTR:
2428 case RECURSIVE_SET_XATTR:
2429 assert(i->xattrs);
2430
2431 STRV_FOREACH (xattr, i->xattrs) {
2432 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2433 if (r < 0)
2434 return r;
2435
2436 free_and_replace(*xattr, resolved);
2437 }
2438 break;
2439
2440 default:
2441 break;
2442 }
2443 return 0;
2444}
2445
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002446static int patch_var_run(const char *fname, unsigned line, char **path) {
2447 const char *k;
2448 char *n;
2449
2450 assert(path);
2451 assert(*path);
2452
2453 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2454 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2455 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2456 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2457 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2458 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2459 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2460 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2461 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2462
2463 k = path_startswith(*path, "/var/run/");
2464 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2465 return 0;
2466
Yu Watanabe2d9b74b2019-06-24 23:59:38 +09002467 n = path_join("/run", k);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002468 if (!n)
2469 return log_oom();
2470
2471 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2472 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2473 * to the user, let's still inform the user that these snippets should really be updated. */
Lennart Poetteringafb7e1c2019-07-10 13:00:44 +02002474 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Line references path below legacy directory /var/run/, updating %s → %s; please update the tmpfiles.d/ drop-in file accordingly.", *path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002475
Lennart Poettering81fa4472018-10-25 13:57:32 +02002476 free_and_replace(*path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002477
2478 return 0;
2479}
2480
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002481static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002482
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002483 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002484 _cleanup_(item_free_contents) Item i = {};
2485 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002486 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002487 int r, pos;
Zach Smithc55ac242019-10-03 18:09:35 -07002488 bool append_or_force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002489
2490 assert(fname);
2491 assert(line >= 1);
2492 assert(buffer);
2493
Richard Maw68685602015-06-23 16:20:53 +00002494 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002495 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002496 NULL,
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +02002497 EXTRACT_UNQUOTE,
Lennart Poettering4034a062015-03-23 18:55:36 +07002498 &action,
2499 &path,
2500 &mode,
2501 &user,
2502 &group,
2503 &age,
2504 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002505 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002506 if (IN_SET(r, -EINVAL, -EBADSLT))
2507 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002508 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002509 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Lennart Poettering4b936992018-05-10 11:29:11 -07002510 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002511 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002512 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002513 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002514 }
2515
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002516 if (!empty_or_dash(buffer)) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002517 i.argument = strdup(buffer);
2518 if (!i.argument)
2519 return log_oom();
2520 }
2521
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002522 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002523 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002524 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002525 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002526 }
2527
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002528 for (pos = 1; action[pos]; pos++) {
2529 if (action[pos] == '!' && !boot)
2530 boot = true;
Zach Smithc55ac242019-10-03 18:09:35 -07002531 else if (action[pos] == '+' && !append_or_force)
2532 append_or_force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002533 else if (action[pos] == '-' && !allow_failure)
2534 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002535 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002536 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002537 log_error("[%s:%u] Unknown modifiers in command '%s'",
2538 fname, line, action);
2539 return -EINVAL;
2540 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002541 }
2542
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002543 if (boot && !arg_boot) {
2544 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2545 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002546 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002547 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002548
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002549 i.type = action[0];
Zach Smithc55ac242019-10-03 18:09:35 -07002550 i.append_or_force = append_or_force;
William Douglas6d7b5432018-09-10 12:07:29 -07002551 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002552
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002553 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002554 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002555 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002556 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002557 if (IN_SET(r, -EINVAL, -EBADSLT))
2558 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002559 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002560 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002561
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002562 r = patch_var_run(fname, line, &i.path);
2563 if (r < 0)
2564 return r;
2565
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002566 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002567
Michal Schmidt777b87e2011-12-16 18:27:35 +01002568 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002569 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002570 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2571 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002572 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002573 case TRUNCATE_DIRECTORY:
2574 case CREATE_FIFO:
2575 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002576 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002577 case REMOVE_PATH:
2578 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002579 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002580 case RELABEL_PATH:
2581 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002582 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002583 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002584
2585 break;
2586
2587 case CREATE_FILE:
2588 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002589 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002590
2591 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002592 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002593 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002594 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002595 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002596 }
2597 break;
2598
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002599 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002600 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002601 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002602 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002603 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002604 }
2605 break;
2606
Lennart Poettering849958d2014-06-10 23:02:40 +02002607 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002608 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002609 i.argument = path_join(arg_root, "/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002610 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002611 return log_oom();
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002612
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002613 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002614 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002615 log_error("[%s:%u] Source path is not absolute.", fname, line);
2616 return -EBADMSG;
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002617
2618 } else if (arg_root) {
2619 char *p;
2620
Lennart Poetteringd34cd572019-07-11 18:41:14 +02002621 p = path_join(arg_root, i.argument);
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002622 if (!p)
2623 return log_oom();
2624 free_and_replace(i.argument, p);
Lennart Poettering849958d2014-06-10 23:02:40 +02002625 }
2626
Yu Watanabe858d36c2018-05-31 23:39:31 +09002627 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002628 break;
2629
Lennart Poettering468d7262012-01-17 15:04:12 +01002630 case CREATE_CHAR_DEVICE:
Lennart Poettering3a47c402018-06-29 12:01:02 +02002631 case CREATE_BLOCK_DEVICE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002632 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002633 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002634 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002635 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002636 }
2637
Lennart Poettering3a47c402018-06-29 12:01:02 +02002638 r = parse_dev(i.argument, &i.major_minor);
2639 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002640 *invalid_config = true;
Lennart Poettering3a47c402018-06-29 12:01:02 +02002641 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 -04002642 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002643 }
2644
Lennart Poettering468d7262012-01-17 15:04:12 +01002645 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002646
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002647 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002648 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002649 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002650 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002651 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2652 return -EBADMSG;
2653 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002654 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002655 if (r < 0)
2656 return r;
2657 break;
2658
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002659 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002660 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002661 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002662 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002663 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2664 return -EBADMSG;
2665 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002666 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002667 if (r < 0)
2668 return r;
2669 break;
2670
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002671 case SET_ATTRIBUTE:
2672 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002673 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002674 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002675 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002676 return -EBADMSG;
2677 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002678 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002679 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002680 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002681 if (r < 0)
2682 return r;
2683 break;
2684
Michal Schmidt777b87e2011-12-16 18:27:35 +01002685 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002686 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002687 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002688 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002689 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002690
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002691 if (!path_is_absolute(i.path)) {
2692 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002693 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002694 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002695 }
2696
Yu Watanabe858d36c2018-05-31 23:39:31 +09002697 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002698
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002699 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002700 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002701
Franck Bui4cef1922017-11-16 11:27:29 +01002702 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002703 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002704 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002705 if (r < 0) {
2706 if (IN_SET(r, -EINVAL, -EBADSLT))
2707 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002708 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2709 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002710 }
Franck Bui4cef1922017-11-16 11:27:29 +01002711
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002712 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002713 char *p;
2714
Lennart Poetteringc6134d32019-06-19 15:20:13 +02002715 p = path_join(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002716 if (!p)
2717 return log_oom();
Lennart Poettering81fa4472018-10-25 13:57:32 +02002718 free_and_replace(i.path, p);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002719 }
2720
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002721 if (!empty_or_dash(user)) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002722 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002723
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002724 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002725 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002726 *invalid_config = true;
2727 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002728 }
2729
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002730 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002731 }
2732
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002733 if (!empty_or_dash(group)) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002734 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002735
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002736 r = get_group_creds(&g, &i.gid, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002737 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002738 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002739 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002740 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002741 }
2742
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002743 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002744 }
2745
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002746 if (!empty_or_dash(mode)) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002747 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002748 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002749
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002750 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002751 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002752 mm++;
2753 }
2754
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002755 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002756 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002757 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002758 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002759 }
2760
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002761 i.mode = m;
2762 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002763 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002764 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 +02002765
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002766 if (!empty_or_dash(age)) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002767 const char *a = age;
2768
2769 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002770 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002771 a++;
2772 }
2773
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002774 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002775 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002776 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002777 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002778 }
2779
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002780 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002781 }
2782
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002783 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002784
Lennart Poetteringef43a392015-04-22 18:18:56 +02002785 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002786 if (existing) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002787 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002788
Lennart Poettering96d10d72018-10-25 13:51:01 +02002789 for (n = 0; n < existing->n_items; n++) {
Zach Smithd0ea5c52019-10-03 18:19:18 -07002790 if (!item_compatible(existing->items + n, &i) && !i.append_or_force) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002791 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2792 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002793 return 0;
2794 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002795 }
2796 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002797 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002798 if (!existing)
2799 return log_oom();
2800
Lennart Poetteringef43a392015-04-22 18:18:56 +02002801 r = ordered_hashmap_put(h, i.path, existing);
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002802 if (r < 0) {
2803 free(existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002804 return log_oom();
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002805 }
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002806 }
2807
Lennart Poettering96d10d72018-10-25 13:51:01 +02002808 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002809 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002810
Lennart Poettering7ab75292018-10-25 13:53:07 +02002811 existing->items[existing->n_items++] = i;
2812 i = (struct Item) {};
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002813
2814 /* Sort item array, to enforce stable ordering of application */
Lennart Poettering96d10d72018-10-25 13:51:01 +02002815 typesafe_qsort(existing->items, existing->n_items, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002816
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002817 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002818}
2819
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002820static int cat_config(char **config_dirs, char **args) {
2821 _cleanup_strv_free_ char **files = NULL;
2822 int r;
2823
2824 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2825 if (r < 0)
2826 return r;
2827
2828 return cat_files(NULL, files, 0);
2829}
2830
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002831static int help(void) {
2832 _cleanup_free_ char *link = NULL;
2833 int r;
2834
2835 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2836 if (r < 0)
2837 return log_oom();
2838
Lennart Poettering522d4a42011-02-13 15:08:15 +01002839 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2840 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002841 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002842 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002843 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002844 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002845 " --create Create marked files/directories\n"
2846 " --clean Clean up marked directories\n"
2847 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002848 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002849 " --prefix=PATH Only apply rules with the specified prefix\n"
2850 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002851 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002852 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002853 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002854 "\nSee the %s for details.\n"
2855 , program_invocation_short_name
2856 , link
2857 );
2858
2859 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002860}
2861
2862static int parse_argv(int argc, char *argv[]) {
2863
2864 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002865 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002866 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002867 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002868 ARG_CREATE,
2869 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002870 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002871 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002872 ARG_PREFIX,
2873 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002874 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002875 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002876 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002877 };
2878
2879 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002880 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002881 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002882 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002883 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002884 { "create", no_argument, NULL, ARG_CREATE },
2885 { "clean", no_argument, NULL, ARG_CLEAN },
2886 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002887 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002888 { "prefix", required_argument, NULL, ARG_PREFIX },
2889 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002890 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002891 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002892 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002893 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002894 };
2895
Lennart Poettering0f474362015-10-22 19:28:31 +02002896 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002897
2898 assert(argc >= 0);
2899 assert(argv);
2900
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002901 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002902
2903 switch (c) {
2904
2905 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002906 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002907
2908 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002909 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002910
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002911 case ARG_CAT_CONFIG:
2912 arg_cat_config = true;
2913 break;
2914
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002915 case ARG_USER:
2916 arg_user = true;
2917 break;
2918
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002919 case ARG_CREATE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002920 arg_operation |= OPERATION_CREATE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002921 break;
2922
2923 case ARG_CLEAN:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002924 arg_operation |= OPERATION_CLEAN;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002925 break;
2926
2927 case ARG_REMOVE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002928 arg_operation |= OPERATION_REMOVE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002929 break;
2930
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002931 case ARG_BOOT:
2932 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002933 break;
2934
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002935 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002936 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002937 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002938 break;
2939
Dave Reisner5c795112013-07-24 11:19:24 -04002940 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002941 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002942 return log_oom();
2943 break;
2944
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002945 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002946 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002947 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002948 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002949 break;
2950
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002951 case ARG_REPLACE:
2952 if (!path_is_absolute(optarg) ||
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002953 !endswith(optarg, ".conf"))
2954 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2955 "The argument to --replace= must an absolute path to a config file");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002956
2957 arg_replace = optarg;
2958 break;
2959
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002960 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01002961 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002962 break;
2963
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002964 case '?':
2965 return -EINVAL;
2966
2967 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002968 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002969 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002970
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002971 if (arg_operation == 0 && !arg_cat_config)
2972 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2973 "You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002974
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002975 if (arg_replace && arg_cat_config)
2976 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2977 "Option --replace= is not supported with --cat-config");
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002978
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002979 if (arg_replace && optind >= argc)
2980 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2981 "When --replace= is given, some configuration items must be specified");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002982
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002983 return 1;
2984}
2985
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002986static 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 -04002987 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002988 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002989 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02002990 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002991 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002992 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002993
2994 assert(fn);
2995
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002996 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002997 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002998 fn = "<stdin>";
2999 f = stdin;
3000 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003001 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003002 if (r < 0) {
3003 if (ignore_enoent && r == -ENOENT) {
3004 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3005 return 0;
3006 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003007
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003008 return log_error_errno(r, "Failed to open '%s': %m", fn);
3009 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003010 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003011 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003012 }
3013
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003014 for (;;) {
3015 _cleanup_free_ char *line = NULL;
3016 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003017 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003018 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003019
3020 k = read_line(f, LONG_LINE_MAX, &line);
3021 if (k < 0)
3022 return log_error_errno(k, "Failed to read '%s': %m", fn);
3023 if (k == 0)
3024 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003025
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003026 v++;
3027
3028 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003029 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003030 continue;
3031
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003032 k = parse_line(fn, v, l, &invalid_line);
3033 if (k < 0) {
3034 if (invalid_line)
3035 /* Allow reporting with a special code if the caller requested this */
3036 *invalid_config = true;
3037 else if (r == 0)
3038 /* The first error becomes our return value */
3039 r = k;
3040 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003041 }
3042
Michal Sekletar78a92a52013-01-18 16:13:08 +01003043 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003044 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003045 Iterator iter;
3046 Item *j, *candidate_item = NULL;
3047
3048 if (i->type != IGNORE_DIRECTORY_PATH)
3049 continue;
3050
Lennart Poetteringef43a392015-04-22 18:18:56 +02003051 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003052 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 +01003053 continue;
3054
3055 if (path_equal(j->path, i->path)) {
3056 candidate_item = j;
3057 break;
3058 }
3059
3060 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3061 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3062 candidate_item = j;
3063 }
3064
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003065 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003066 i->age = candidate_item->age;
3067 i->age_set = true;
3068 }
3069 }
3070
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003071 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003072 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003073 if (r == 0)
3074 r = -EIO;
3075 }
3076
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003077 return r;
3078}
3079
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003080static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3081 char **arg;
3082 int r;
3083
3084 STRV_FOREACH(arg, args) {
3085 r = read_config_file(config_dirs, *arg, false, invalid_config);
3086 if (r < 0)
3087 return r;
3088 }
3089
3090 return 0;
3091}
3092
3093static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3094 _cleanup_strv_free_ char **files = NULL;
3095 _cleanup_free_ char *p = NULL;
3096 char **f;
3097 int r;
3098
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003099 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003100 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003101 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003102
3103 STRV_FOREACH(f, files)
3104 if (p && path_equal(*f, p)) {
3105 log_debug("Parsing arguments at position \"%s\"…", *f);
3106
3107 r = parse_arguments(config_dirs, args, invalid_config);
3108 if (r < 0)
3109 return r;
3110 } else
3111 /* Just warn, ignore result otherwise.
3112 * read_config_file() has some debug output, so no need to print anything. */
3113 (void) read_config_file(config_dirs, *f, true, invalid_config);
3114
3115 return 0;
3116}
3117
Lennart Poettering811a1582018-10-26 20:56:37 +02003118static int link_parent(ItemArray *a) {
3119 const char *path;
3120 char *prefix;
3121 int r;
3122
3123 assert(a);
3124
Lennart Poettering09f467a2018-11-20 16:32:19 +01003125 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
Lennart Poettering811a1582018-10-26 20:56:37 +02003126 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3127 * before their children, and clean up/remove children before their parents. */
3128
3129 if (a->n_items <= 0)
3130 return 0;
3131
3132 path = a->items[0].path;
Lennart Poettering6e9417f2019-01-26 15:52:18 +01003133 prefix = newa(char, strlen(path) + 1);
Lennart Poettering811a1582018-10-26 20:56:37 +02003134 PATH_FOREACH_PREFIX(prefix, path) {
3135 ItemArray *j;
3136
3137 j = ordered_hashmap_get(items, prefix);
Lennart Poetteringbd0ce242018-11-20 16:32:23 +01003138 if (!j)
3139 j = ordered_hashmap_get(globs, prefix);
Lennart Poettering811a1582018-10-26 20:56:37 +02003140 if (j) {
3141 r = set_ensure_allocated(&j->children, NULL);
3142 if (r < 0)
3143 return log_oom();
3144
3145 r = set_put(j->children, a);
3146 if (r < 0)
3147 return log_oom();
3148
3149 a->parent = j;
3150 return 1;
3151 }
3152 }
3153
3154 return 0;
3155}
3156
Yu Watanabe87938c32018-11-26 01:00:54 +09003157DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3158 ItemArray, item_array_free);
3159
3160static int run(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003161 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003162 bool invalid_config = false;
Lennart Poettering64adb372018-10-26 21:19:36 +02003163 Iterator iterator;
3164 ItemArray *a;
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003165 enum {
3166 PHASE_REMOVE_AND_CLEAN,
3167 PHASE_CREATE,
3168 _PHASE_MAX
3169 } phase;
Yu Watanabe87938c32018-11-26 01:00:54 +09003170 int r, k;
Lennart Poettering5008d582010-09-28 02:34:02 +02003171
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003172 r = parse_argv(argc, argv);
3173 if (r <= 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003174 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003175
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003176 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003177
Lennart Poetteringe5358402019-01-18 16:34:52 +01003178 /* Descending down file system trees might take a lot of fds */
3179 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
3180
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);