blob: 2702b36bddb3d2be16931ee44cd4cd8472ffdc34 [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 },
Zbigniew Jędrzejewski-Szmeke97708f2020-05-07 16:16:19 +0200187 { 'l', specifier_short_host_name, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100188 { 'v', specifier_kernel_release, NULL },
Lennart Poettering268f5a52020-04-28 20:03:56 +0200189 { 'a', specifier_architecture, NULL },
190 { 'o', specifier_os_id, NULL },
191 { 'w', specifier_os_version_id, NULL },
192 { 'B', specifier_os_build_id, NULL },
193 { 'W', specifier_os_variant_id, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100194
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700195 { 'g', specifier_group_name, NULL },
196 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100197 { 'U', specifier_user_id, NULL },
198 { 'u', specifier_user_name, NULL },
199 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200200
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100201 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
202 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
203 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
204 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200205 { 'T', specifier_tmp_dir, NULL },
206 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200207 {}
208};
209
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100210static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret) {
Franck Bui4cef1922017-11-16 11:27:29 +0100211 int r;
212
Franck Buid8dab752018-01-10 23:28:44 +0100213 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
214 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100215 * gracefully. */
216
217 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100218 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100219 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100220
221 return r;
222}
223
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100224static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret) {
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100225 struct table_entry {
226 uint64_t type;
227 const char *suffix;
228 };
229
230 static const struct table_entry paths_system[] = {
231 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
232 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
233 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
234 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
235 };
236
237 static const struct table_entry paths_user[] = {
238 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
239 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
240 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
241 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
242 };
243
244 unsigned i;
245 const struct table_entry *paths;
246
247 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
248 paths = arg_user ? paths_user : paths_system;
249
250 i = PTR_TO_UINT(data);
251 assert(i < ELEMENTSOF(paths_system));
252
Zbigniew Jędrzejewski-Szmek51327bc2020-03-23 19:50:59 +0100253 return sd_path_lookup(paths[i].type, paths[i].suffix, ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100254}
255
Franck Bui4cef1922017-11-16 11:27:29 +0100256static int log_unresolvable_specifier(const char *filename, unsigned line) {
257 static bool notified = false;
258
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100259 /* In system mode, this is called when /etc is not fully initialized (e.g.
260 * in a chroot environment) where some specifiers are unresolvable. In user
261 * mode, this is called when some variables are not defined. These cases are
262 * not considered as an error so log at LOG_NOTICE only for the first time
263 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100264
Lennart Poetteringd02933f2020-04-29 00:07:06 +0200265 log_syntax(NULL,
266 notified ? LOG_DEBUG : LOG_NOTICE,
267 filename, line, 0,
268 "Failed to resolve specifier: %s, skipping",
269 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100270
271 if (!notified)
272 log_notice("All rules containing unresolvable specifiers will be skipped.");
273
274 notified = true;
275 return 0;
276}
277
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100278static int user_config_paths(char*** ret) {
279 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
280 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
281 _cleanup_strv_free_ char **res = NULL;
282 int r;
283
284 r = xdg_user_dirs(&config_dirs, &data_dirs);
285 if (r < 0)
286 return r;
287
288 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
289 if (r < 0 && r != -ENXIO)
290 return r;
291
292 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
293 if (r < 0 && r != -ENXIO)
294 return r;
295
296 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
297 if (r < 0 && r != -ENXIO)
298 return r;
299
300 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
301 if (r < 0)
302 return r;
303
304 r = strv_extend(&res, persistent_config);
305 if (r < 0)
306 return r;
307
308 r = strv_extend(&res, runtime_config);
309 if (r < 0)
310 return r;
311
312 r = strv_extend(&res, data_home);
313 if (r < 0)
314 return r;
315
316 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
317 if (r < 0)
318 return r;
319
320 r = path_strv_make_absolute_cwd(res);
321 if (r < 0)
322 return r;
323
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100324 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100325 return 0;
326}
327
Michal Schmidt66ccd032011-12-15 21:31:14 +0100328static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200329 return IN_SET(t,
330 WRITE_FILE,
331 IGNORE_PATH,
332 IGNORE_DIRECTORY_PATH,
333 REMOVE_PATH,
334 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400335 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200336 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200337 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500338 RECURSIVE_RELABEL_PATH,
339 SET_XATTR,
340 RECURSIVE_SET_XATTR,
341 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200342 RECURSIVE_SET_ACL,
343 SET_ATTRIBUTE,
344 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100345}
346
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500347static bool takes_ownership(ItemType t) {
348 return IN_SET(t,
349 CREATE_FILE,
350 TRUNCATE_FILE,
351 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400352 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500353 TRUNCATE_DIRECTORY,
354 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200355 CREATE_SUBVOLUME_INHERIT_QUOTA,
356 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500357 CREATE_FIFO,
358 CREATE_SYMLINK,
359 CREATE_CHAR_DEVICE,
360 CREATE_BLOCK_DEVICE,
361 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500362 WRITE_FILE,
363 IGNORE_PATH,
364 IGNORE_DIRECTORY_PATH,
365 REMOVE_PATH,
366 RECURSIVE_REMOVE_PATH);
367}
368
Lennart Poetteringef43a392015-04-22 18:18:56 +0200369static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500370 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100371 Iterator i;
372
Lennart Poetteringef43a392015-04-22 18:18:56 +0200373 ORDERED_HASHMAP_FOREACH(j, h, i) {
Lennart Poettering96d10d72018-10-25 13:51:01 +0200374 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500375
Lennart Poettering96d10d72018-10-25 13:51:01 +0200376 for (n = 0; n < j->n_items; n++) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500377 Item *item = j->items + n;
378
379 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
380 return item;
381 }
382 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100383
384 return NULL;
385}
386
Yu Watanabe71a0be72018-11-26 00:48:15 +0900387static int load_unix_sockets(void) {
388 _cleanup_set_free_free_ Set *sockets = NULL;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200389 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100390 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100391
392 if (unix_sockets)
Yu Watanabe71a0be72018-11-26 00:48:15 +0900393 return 0;
Lennart Poettering17b90522011-02-14 21:55:06 +0100394
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100395 /* 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 +0100396
Yu Watanabe71a0be72018-11-26 00:48:15 +0900397 sockets = set_new(&path_hash_ops);
398 if (!sockets)
399 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100400
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100401 f = fopen("/proc/net/unix", "re");
Yu Watanabe71a0be72018-11-26 00:48:15 +0900402 if (!f)
403 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
404 "Failed to open /proc/net/unix, ignoring: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100405
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100406 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100407 r = read_line(f, LONG_LINE_MAX, NULL);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900408 if (r < 0)
409 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
410 if (r == 0)
411 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
Lennart Poettering17b90522011-02-14 21:55:06 +0100412
413 for (;;) {
Yu Watanabe71a0be72018-11-26 00:48:15 +0900414 _cleanup_free_ char *line = NULL, *s = NULL;
415 char *p;
Lennart Poettering17b90522011-02-14 21:55:06 +0100416
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100417 r = read_line(f, LONG_LINE_MAX, &line);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900418 if (r < 0)
419 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100420 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100421 break;
422
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100423 p = strchr(line, ':');
424 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100425 continue;
426
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100427 if (strlen(p) < 37)
428 continue;
429
430 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100431 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100432 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100433 p += strspn(p, WHITESPACE);
434
435 if (*p != '/')
436 continue;
437
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100438 s = strdup(p);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900439 if (!s)
440 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100441
Yu Watanabe858d36c2018-05-31 23:39:31 +0900442 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100443
Yu Watanabe71a0be72018-11-26 00:48:15 +0900444 r = set_consume(sockets, s);
445 if (r == -EEXIST)
446 continue;
447 if (r < 0)
448 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
449
450 TAKE_PTR(s);
Lennart Poettering17b90522011-02-14 21:55:06 +0100451 }
452
Yu Watanabe71a0be72018-11-26 00:48:15 +0900453 unix_sockets = TAKE_PTR(sockets);
454 return 1;
Lennart Poettering17b90522011-02-14 21:55:06 +0100455}
456
457static bool unix_socket_alive(const char *fn) {
458 assert(fn);
459
Yu Watanabe71a0be72018-11-26 00:48:15 +0900460 if (load_unix_sockets() < 0)
461 return true; /* We don't know, so assume yes */
Lennart Poettering17b90522011-02-14 21:55:06 +0100462
Yu Watanabe71a0be72018-11-26 00:48:15 +0900463 return !!set_get(unix_sockets, (char*) fn);
Lennart Poettering17b90522011-02-14 21:55:06 +0100464}
465
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500466static DIR* xopendirat_nomod(int dirfd, const char *path) {
467 DIR *dir;
468
469 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700470 if (dir)
471 return dir;
472
473 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
474 if (errno != EPERM)
475 return NULL;
476
477 dir = xopendirat(dirfd, path, O_NOFOLLOW);
478 if (!dir)
479 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500480
481 return dir;
482}
483
484static DIR* opendir_nomod(const char *path) {
485 return xopendirat_nomod(AT_FDCWD, path);
486}
487
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200488static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100489 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200490 const char *p,
491 DIR *d,
492 const struct stat *ds,
493 usec_t cutoff,
494 dev_t rootdev,
495 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200496 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500497 bool keep_this_level) {
498
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200499 struct dirent *dent;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200500 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200501 int r = 0;
502
Reverend Homer8fb3f002016-12-09 12:04:30 +0300503 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200504 struct stat s;
505 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200506 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200507
Lennart Poettering49bfc872017-02-02 00:06:18 +0100508 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200509 continue;
510
511 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200512 if (errno == ENOENT)
513 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200514
Kay Sieversca2f4172013-10-17 03:20:46 +0200515 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100516 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
517 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200518 continue;
519 }
520
521 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500522 if (s.st_dev != rootdev) {
523 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200524 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500525 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200526
Kay Sievers99d680a2013-03-13 13:12:36 +0100527 /* Try to detect bind mounts of the same filesystem instance; they
528 * do not differ in device major/minors. This type of query is not
529 * supported on all kernels or filesystem types though. */
Lennart Poettering60bdc0c2019-06-18 12:42:30 +0200530 if (S_ISDIR(s.st_mode)) {
531 int q;
532
533 q = fd_is_mount_point(dirfd(d), dent->d_name, 0);
534 if (q < 0)
535 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, dent->d_name);
536 else if (q > 0) {
537 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, dent->d_name);
538 continue;
539 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500540 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100541
Lennart Poettering113ed3b2019-06-18 12:41:02 +0200542 sub_path = path_join(p, dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200543 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700544 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200545 goto finish;
546 }
547
548 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200549 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500550 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200551 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500552 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200553
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500554 if (find_glob(globs, sub_path)) {
555 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100556 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500557 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100558
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200559 if (S_ISDIR(s.st_mode)) {
Lennart Poettering52b32b22019-01-18 16:09:30 +0100560 _cleanup_closedir_ DIR *sub_dir = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200561
562 if (mountpoint &&
563 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500564 s.st_uid == 0) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100565 log_debug("Ignoring directory \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200566 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500567 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200568
569 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500570 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200571 else {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200572 int q;
573
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500574 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200575 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500576 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100577 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200578
579 continue;
580 }
581
Lennart Poettering52b32b22019-01-18 16:09:30 +0100582 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
583 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
584 continue;
585 }
586
Michal Sekletar78a92a52013-01-18 16:13:08 +0100587 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200588 if (q < 0)
589 r = q;
590 }
591
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100592 /* Note: if you are wondering why we don't support the sticky bit for excluding
593 * directories from cleaning like we do it for other file system objects: well, the
594 * sticky bit already has a meaning for directories, so we don't want to overload
595 * that. */
Lennart Poettering24f3a372012-06-20 09:05:50 +0200596
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500597 if (keep_this_level) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100598 log_debug("Keeping directory \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200599 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500600 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200601
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200602 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500603 age = timespec_load(&s.st_mtim);
604 if (age >= cutoff) {
605 char a[FORMAT_TIMESTAMP_MAX];
606 /* Follows spelling in stat(1). */
607 log_debug("Directory \"%s\": modify time %s is too new.",
608 sub_path,
609 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200610 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500611 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200612
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500613 age = timespec_load(&s.st_atim);
614 if (age >= cutoff) {
615 char a[FORMAT_TIMESTAMP_MAX];
616 log_debug("Directory \"%s\": access time %s is too new.",
617 sub_path,
618 format_timestamp_us(a, sizeof(a), age));
619 continue;
620 }
621
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500622 log_debug("Removing directory \"%s\".", sub_path);
623 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100624 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
Lennart Poettering781bc442019-01-18 16:07:45 +0100625 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200626
627 } else {
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100628 /* Skip files for which the sticky bit is set. These are semantics we define, and are
629 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500630 if (s.st_mode & S_ISVTX) {
631 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100632 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200633 }
634
Lennart Poettering20b6bb92019-06-18 12:41:31 +0200635 if (mountpoint &&
636 S_ISREG(s.st_mode) &&
637 s.st_uid == 0 &&
638 STR_IN_SET(dent->d_name,
639 ".journal",
640 "aquota.user",
641 "aquota.group")) {
642 log_debug("Skipping \"%s\".", sub_path);
643 continue;
644 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500645
Lennart Poettering17b90522011-02-14 21:55:06 +0100646 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500647 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
648 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100649 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500650 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100651
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100652 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500653 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
654 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100655 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500656 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100657
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100658 /* Keep files on this level around if this is requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500659 if (keep_this_level) {
660 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200661 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200662 }
663
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500664 age = timespec_load(&s.st_mtim);
665 if (age >= cutoff) {
666 char a[FORMAT_TIMESTAMP_MAX];
667 /* Follows spelling in stat(1). */
668 log_debug("File \"%s\": modify time %s is too new.",
669 sub_path,
670 format_timestamp_us(a, sizeof(a), age));
671 continue;
672 }
673
674 age = timespec_load(&s.st_atim);
675 if (age >= cutoff) {
676 char a[FORMAT_TIMESTAMP_MAX];
677 log_debug("File \"%s\": access time %s is too new.",
678 sub_path,
679 format_timestamp_us(a, sizeof(a), age));
680 continue;
681 }
682
683 age = timespec_load(&s.st_ctim);
684 if (age >= cutoff) {
685 char a[FORMAT_TIMESTAMP_MAX];
686 log_debug("File \"%s\": change time %s is too new.",
687 sub_path,
688 format_timestamp_us(a, sizeof(a), age));
689 continue;
690 }
691
Lennart Poettering781bc442019-01-18 16:07:45 +0100692 log_debug("Removing \"%s\".", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500693 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
694 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100695 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500696
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200697 deleted = true;
698 }
699 }
700
701finish:
702 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500703 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
Lennart Poettering76e15a92019-01-18 15:51:13 +0100704 usec_t age1, age2;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200705
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500706 age1 = timespec_load(&ds->st_atim);
707 age2 = timespec_load(&ds->st_mtim);
Lennart Poettering76e15a92019-01-18 15:51:13 +0100708
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500709 log_debug("Restoring access and modification time on \"%s\": %s, %s",
710 p,
711 format_timestamp_us(a, sizeof(a), age1),
712 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering76e15a92019-01-18 15:51:13 +0100713
714 /* Restore original directory timestamps */
715 if (futimens(dirfd(d), (struct timespec[]) {
716 ds->st_atim,
717 ds->st_mtim }) < 0)
718 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200719 }
720
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200721 return r;
722}
723
Lennart Poettering5579f852018-01-23 14:03:34 +0100724static bool dangerous_hardlinks(void) {
725 _cleanup_free_ char *value = NULL;
726 static int cached = -1;
727 int r;
728
729 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
730 * what the upstream default is. */
731
732 if (cached >= 0)
733 return cached;
734
735 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
736 if (r < 0) {
737 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
738 return true;
739 }
740
741 r = parse_boolean(value);
742 if (r < 0) {
743 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
744 return true;
745 }
746
747 cached = r == 0;
748 return cached;
749}
750
Franck Bui774f79b2018-03-02 16:13:07 +0100751static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100752 assert(st);
753
754 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
755}
756
Lennart Poettering8b364a32019-04-29 13:21:40 +0200757static mode_t process_mask_perms(mode_t mode, mode_t current) {
758
759 if ((current & 0111) == 0)
760 mode &= ~0111;
761 if ((current & 0222) == 0)
762 mode &= ~0222;
763 if ((current & 0444) == 0)
764 mode &= ~0444;
765 if (!S_ISDIR(current))
766 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
767
768 return mode;
769}
770
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200771static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200772 struct stat stbuf;
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200773 mode_t new_mode;
774 bool do_chown;
Franck Bui936f6bd2018-03-02 17:19:32 +0100775
776 assert(i);
777 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200778 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100779
780 if (!i->mode_set && !i->uid_set && !i->gid_set)
781 goto shortcut;
782
Franck Buib206ac82018-04-13 11:39:39 +0200783 if (!st) {
784 if (fstat(fd, &stbuf) < 0)
785 return log_error_errno(errno, "fstat(%s) failed: %m", path);
786 st = &stbuf;
787 }
788
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100789 if (hardlink_vulnerable(st))
790 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
791 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
792 path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100793
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200794 /* Do we need a chown()? */
795 do_chown =
796 (i->uid_set && i->uid != st->st_uid) ||
797 (i->gid_set && i->gid != st->st_gid);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200798
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200799 /* Calculate the mode to apply */
800 new_mode = i->mode_set ? (i->mask_perms ?
801 process_mask_perms(i->mode, st->st_mode) :
802 i->mode) :
803 (st->st_mode & 07777);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200804
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200805 if (i->mode_set && do_chown) {
806 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
807 * the new mode. That way there's no time window where the file exists under the old owner
808 * with more than the old access modes — and not under the new owner with more than the new
809 * access modes either. */
810
Franck Bui936f6bd2018-03-02 17:19:32 +0100811 if (S_ISLNK(st->st_mode))
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200812 log_debug("Skipping temporary mode fix for symlink %s.", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100813 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200814 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
Franck Bui936f6bd2018-03-02 17:19:32 +0100815
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200816 if (((m ^ st->st_mode) & 07777) == 0)
817 log_debug("\"%s\" matches temporary mode %o already.", path, m);
Franck Bui936f6bd2018-03-02 17:19:32 +0100818 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200819 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200820 if (fchmod_opath(fd, m) < 0)
821 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100822 }
823 }
824 }
825
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200826 if (do_chown) {
Franck Bui936f6bd2018-03-02 17:19:32 +0100827 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
828 path,
829 i->uid_set ? i->uid : UID_INVALID,
830 i->gid_set ? i->gid : GID_INVALID);
831
832 if (fchownat(fd,
833 "",
834 i->uid_set ? i->uid : UID_INVALID,
835 i->gid_set ? i->gid : GID_INVALID,
836 AT_EMPTY_PATH) < 0)
837 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
838 }
839
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200840 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
841 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
842 if (i->mode_set || do_chown) {
843 if (S_ISLNK(st->st_mode))
844 log_debug("Skipping mode fix for symlink %s.", path);
845 else {
846 /* Check if the chmod() is unnecessary. Note that if we did a chown() before we always
847 * chmod() here again, since it might have mangled the bits. */
848 if (!do_chown && ((new_mode ^ st->st_mode) & 07777) == 0)
849 log_debug("\"%s\" matches mode %o already.", path, new_mode);
850 else {
851 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
852 if (fchmod_opath(fd, new_mode) < 0)
853 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
854 }
855 }
856 }
857
Franck Bui936f6bd2018-03-02 17:19:32 +0100858shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200859 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100860}
861
Franck Bui5ec9d062018-04-13 17:31:22 +0200862static int path_open_parent_safe(const char *path) {
863 _cleanup_free_ char *dn = NULL;
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200864 int r, fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200865
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100866 if (path_equal(path, "/") || !path_is_normalized(path))
867 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
868 "Failed to open parent of '%s': invalid path.",
869 path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200870
871 dn = dirname_malloc(path);
872 if (!dn)
873 return log_oom();
874
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200875 r = chase_symlinks(dn, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
876 if (r < 0 && r != -ENOLINK)
877 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200878
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200879 return r < 0 ? r : fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200880}
881
Franck Buiaddc3e32018-03-20 08:58:48 +0100882static int path_open_safe(const char *path) {
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200883 int r, fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100884
885 /* path_open_safe() returns a file descriptor opened with O_PATH after
886 * verifying that the path doesn't contain unsafe transitions, except
887 * for its final component as the function does not follow symlink. */
888
889 assert(path);
890
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100891 if (!path_is_normalized(path))
892 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
893 "Failed to open invalid path '%s'.",
894 path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100895
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200896 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
897 if (r < 0 && r != -ENOLINK)
898 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100899
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200900 return r < 0 ? r : fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100901}
902
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500903static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200904 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200905
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200906 assert(i);
907 assert(path);
908
Franck Buiaddc3e32018-03-20 08:58:48 +0100909 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200910 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100911 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200912
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200913 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100914}
915
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200916static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100917 const char *p;
918 int r;
919
920 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500921 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100922
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100923 p = i->argument;
924
Lennart Poettering4034a062015-03-23 18:55:36 +0700925 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100926 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700927
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +0200928 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700929 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200930 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700931 if (r <= 0)
932 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500933
Franck Bui4cef1922017-11-16 11:27:29 +0100934 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100935 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700936 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100937 continue;
938 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500939
Lennart Poettering4034a062015-03-23 18:55:36 +0700940 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200941 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100942 continue;
943 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500944
Lennart Poettering4034a062015-03-23 18:55:36 +0700945 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100946 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500947
Lennart Poettering4034a062015-03-23 18:55:36 +0700948 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100949 }
950
Lennart Poettering4034a062015-03-23 18:55:36 +0700951 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100952}
953
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200954static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100955 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100956 char **name, **value;
957
958 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100959 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200960 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100961
962 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100963
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100964 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200965 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100966 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400967 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
968 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100969 }
970 return 0;
971}
972
Franck Bui936f6bd2018-03-02 17:19:32 +0100973static int path_set_xattrs(Item *i, const char *path) {
974 _cleanup_close_ int fd = -1;
975
976 assert(i);
977 assert(path);
978
Franck Buiaddc3e32018-03-20 08:58:48 +0100979 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100980 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100981 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100982
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200983 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100984}
985
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200986static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200987#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500988 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500989
990 assert(item);
991
Zach Smithc55ac242019-10-03 18:09:35 -0700992 /* If append_or_force (= modify) is set, we will not modify the acl
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500993 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200994
Zach Smithc55ac242019-10-03 18:09:35 -0700995 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500996 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700997 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500998#else
Zbigniew Jędrzejewski-Szmek886cf312018-11-21 08:23:20 +0100999 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001000#endif
1001
1002 return 0;
1003}
1004
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001005#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001006static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
1007 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001008 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001009 int r;
1010
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001011 /* Returns 0 for success, positive error if already warned,
1012 * negative error otherwise. */
1013
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001014 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001015 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001016 if (r < 0)
1017 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001018
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001019 r = calc_acl_mask_if_needed(&dup);
1020 if (r < 0)
1021 return r;
1022 } else {
1023 dup = acl_dup(acl);
1024 if (!dup)
1025 return -errno;
1026
1027 /* the mask was already added earlier if needed */
1028 }
1029
1030 r = add_base_acls_if_needed(&dup, path);
1031 if (r < 0)
1032 return r;
1033
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001034 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001035 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001036 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001037 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001038
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001039 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001040 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001041 /* Return positive to indicate we already warned */
1042 return -log_error_errno(errno,
1043 "Setting %s ACL \"%s\" on %s failed: %m",
1044 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001045 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001046
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001047 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001048}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001049#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001050
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001051static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001052 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001053#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001054 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001055 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001056
1057 assert(item);
1058 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001059 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001060
Franck Buib206ac82018-04-13 11:39:39 +02001061 if (!st) {
1062 if (fstat(fd, &stbuf) < 0)
1063 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1064 st = &stbuf;
1065 }
1066
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001067 if (hardlink_vulnerable(st))
1068 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1069 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1070 path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001071
1072 if (S_ISLNK(st->st_mode)) {
1073 log_debug("Skipping ACL fix for symlink %s.", path);
1074 return 0;
1075 }
1076
1077 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1078
1079 if (item->acl_access)
Zach Smithc55ac242019-10-03 18:09:35 -07001080 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001081
remueller26673852018-07-16 16:56:01 +02001082 /* set only default acls to folders */
1083 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Zach Smithc55ac242019-10-03 18:09:35 -07001084 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001085
1086 if (r > 0)
1087 return -r; /* already warned */
Lennart Poetteringf8606622020-04-23 14:52:10 +02001088
1089 /* The above procfs paths don't work if /proc is not mounted. */
1090 if (r == -ENOENT && proc_mounted() == 0)
1091 r = -ENOSYS;
1092
Franck Bui936f6bd2018-03-02 17:19:32 +01001093 if (r == -EOPNOTSUPP) {
1094 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1095 return 0;
1096 }
1097 if (r < 0)
1098 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1099#endif
1100 return r;
1101}
1102
1103static int path_set_acls(Item *item, const char *path) {
1104 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001105#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001106 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001107
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001108 assert(item);
1109 assert(path);
1110
Franck Buiaddc3e32018-03-20 08:58:48 +01001111 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001112 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001113 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001114
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001115 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001116#endif
1117 return r;
1118}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001119
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001120static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001121
1122 static const struct {
1123 char character;
1124 unsigned value;
1125 } attributes[] = {
1126 { 'A', FS_NOATIME_FL }, /* do not update atime */
1127 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1128 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1129 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1130 { 'c', FS_COMPR_FL }, /* Compress file */
1131 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001132 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001133 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1134 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1135 { 's', FS_SECRM_FL }, /* Secure deletion */
1136 { 'u', FS_UNRM_FL }, /* Undelete */
1137 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001138 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001139 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Lennart Poettering75006472019-03-28 18:35:03 +01001140 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001141 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001142
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001143 enum {
1144 MODE_ADD,
1145 MODE_DEL,
1146 MODE_SET
1147 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001148
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001149 unsigned value = 0, mask = 0;
1150 const char *p;
1151
1152 assert(item);
1153
1154 p = item->argument;
1155 if (p) {
1156 if (*p == '+') {
1157 mode = MODE_ADD;
1158 p++;
1159 } else if (*p == '-') {
1160 mode = MODE_DEL;
1161 p++;
1162 } else if (*p == '=') {
1163 mode = MODE_SET;
1164 p++;
1165 }
1166 }
1167
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001168 if (isempty(p) && mode != MODE_SET)
1169 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1170 "Setting file attribute on '%s' needs an attribute specification.",
1171 item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001172
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001173 for (; p && *p ; p++) {
1174 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001175
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001176 for (i = 0; i < ELEMENTSOF(attributes); i++)
1177 if (*p == attributes[i].character)
1178 break;
1179
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001180 if (i >= ELEMENTSOF(attributes))
1181 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1182 "Unknown file attribute '%c' on '%s'.",
1183 *p, item->path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001184
1185 v = attributes[i].value;
1186
Andreas Rammhold37420952017-09-29 00:37:23 +02001187 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001188
1189 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001190 }
1191
1192 if (mode == MODE_SET)
Lennart Poetteringd629ba72019-03-28 18:41:39 +01001193 mask |= CHATTR_ALL_FL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001194
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001195 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001196
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001197 item->attribute_mask = mask;
1198 item->attribute_value = value;
1199 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001200
1201 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001202}
1203
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001204static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001205 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001206 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001207 unsigned f;
1208 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001209
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001210 assert(item);
1211 assert(fd);
1212 assert(path);
1213
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001214 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001215 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001216
Franck Buib206ac82018-04-13 11:39:39 +02001217 if (!st) {
1218 if (fstat(fd, &stbuf) < 0)
1219 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1220 st = &stbuf;
1221 }
1222
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001223 /* Issuing the file attribute ioctls on device nodes is not
1224 * safe, as that will be delivered to the drivers, not the
1225 * file system containing the device node. */
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001226 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1227 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1228 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1229 path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001230
1231 f = item->attribute_value & item->attribute_mask;
1232
1233 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001234 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001235 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001236
Lennart Poetteringf2324782018-03-26 13:25:51 +02001237 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001238 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001239 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001240
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001241 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001242 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001243 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001244 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001245 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001246 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001247
1248 return 0;
1249}
1250
Franck Bui936f6bd2018-03-02 17:19:32 +01001251static int path_set_attribute(Item *item, const char *path) {
1252 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001253
1254 if (!item->attribute_set || item->attribute_mask == 0)
1255 return 0;
1256
Franck Buiaddc3e32018-03-20 08:58:48 +01001257 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001258 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001259 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001260
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001261 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001262}
1263
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001264static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001265 _cleanup_close_ int fd = -1, dir_fd = -1;
1266 char *bn;
Zach Smithd0ea5c52019-10-03 18:19:18 -07001267 int flags, r;
Franck Bui31c84ff2018-04-13 09:19:24 +02001268
1269 assert(i);
1270 assert(path);
1271 assert(i->argument);
1272 assert(i->type == WRITE_FILE);
1273
Franck Bui551470e2018-04-13 17:54:09 +02001274 /* Validate the path and keep the fd on the directory for opening the
1275 * file so we're sure that it can't be changed behind our back. */
1276 dir_fd = path_open_parent_safe(path);
1277 if (dir_fd < 0)
1278 return dir_fd;
1279
1280 bn = basename(path);
1281
Zach Smithd0ea5c52019-10-03 18:19:18 -07001282 flags = O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY;
1283
Franck Bui31c84ff2018-04-13 09:19:24 +02001284 /* Follows symlinks */
Zach Smithd0ea5c52019-10-03 18:19:18 -07001285 fd = openat(dir_fd, bn, i->append_or_force ? flags|O_APPEND : flags, i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001286 if (fd < 0) {
1287 if (errno == ENOENT) {
1288 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1289 return 0;
1290 }
1291 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1292 }
1293
1294 /* 'w' is allowed to write into any kind of files. */
1295 log_debug("Writing to \"%s\".", path);
1296
1297 r = loop_write(fd, i->argument, strlen(i->argument), false);
1298 if (r < 0)
1299 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1300
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001301 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001302}
1303
1304static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001305 _cleanup_close_ int fd = -1, dir_fd = -1;
1306 struct stat stbuf, *st = NULL;
1307 int r = 0;
1308 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001309
Lennart Poettering874f1942014-06-10 22:48:56 +02001310 assert(i);
1311 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001312 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001313
Franck Bui5ec9d062018-04-13 17:31:22 +02001314 /* 'f' operates on regular files exclusively. */
1315
1316 /* Validate the path and keep the fd on the directory for opening the
1317 * file so we're sure that it can't be changed behind our back. */
1318 dir_fd = path_open_parent_safe(path);
1319 if (dir_fd < 0)
1320 return dir_fd;
1321
1322 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001323
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001324 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001325 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001326 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 +02001327 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001328 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001329
1330 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001331 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1332 * file already exists. It returns EROFS only if it needs to
1333 * create the file. */
1334 if (errno != EEXIST)
1335 return log_error_errno(errno, "Failed to create file %s: %m", path);
1336
1337 /* Re-open the file. At that point it must exist since open(2)
1338 * failed with EEXIST. We still need to check if the perms/mode
1339 * need to be changed. For read-only filesystems, we let
1340 * fd_set_perms() report the error if the perms need to be
1341 * modified. */
1342 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1343 if (fd < 0)
1344 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1345
1346 if (fstat(fd, &stbuf) < 0)
1347 return log_error_errno(errno, "stat(%s) failed: %m", path);
1348
1349 if (!S_ISREG(stbuf.st_mode)) {
1350 log_error("%s exists and is not a regular file.", path);
1351 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001352 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001353
Franck Bui5ec9d062018-04-13 17:31:22 +02001354 st = &stbuf;
1355 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001356
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001357 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001358
Franck Bui5ec9d062018-04-13 17:31:22 +02001359 if (i->argument) {
1360 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001361
Franck Bui5ec9d062018-04-13 17:31:22 +02001362 r = loop_write(fd, i->argument, strlen(i->argument), false);
1363 if (r < 0)
1364 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1365 }
1366 }
1367
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001368 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001369}
1370
1371static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001372 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001373 struct stat stbuf, *st = NULL;
1374 bool erofs = false;
1375 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001376 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001377
1378 assert(i);
1379 assert(path);
Zach Smitheccebf42019-10-28 09:32:16 -07001380 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
Franck Bui5ec9d062018-04-13 17:31:22 +02001381
1382 /* We want to operate on regular file exclusively especially since
1383 * O_TRUNC is unspecified if the file is neither a regular file nor a
1384 * fifo nor a terminal device. Therefore we first open the file and make
1385 * sure it's a regular one before truncating it. */
1386
Franck Bui14ab8042018-04-13 17:50:49 +02001387 /* Validate the path and keep the fd on the directory for opening the
1388 * file so we're sure that it can't be changed behind our back. */
1389 dir_fd = path_open_parent_safe(path);
1390 if (dir_fd < 0)
1391 return dir_fd;
1392
1393 bn = basename(path);
1394
Franck Bui5ec9d062018-04-13 17:31:22 +02001395 RUN_WITH_UMASK(0000) {
1396 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001397 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 +02001398 mac_selinux_create_file_clear();
1399 }
1400
1401 if (fd < 0) {
1402 if (errno != EROFS)
1403 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1404
1405 /* On a read-only filesystem, we don't want to fail if the
1406 * target is already empty and the perms are set. So we still
1407 * proceed with the sanity checks and let the remaining
1408 * operations fail with EROFS if they try to modify the target
1409 * file. */
1410
Franck Bui14ab8042018-04-13 17:50:49 +02001411 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001412 if (fd < 0) {
1413 if (errno == ENOENT) {
1414 log_error("Cannot create file %s on a read-only file system.", path);
1415 return -EROFS;
1416 }
1417
1418 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1419 }
1420
1421 erofs = true;
1422 }
1423
1424 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001425 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001426
Franck Bui5ec9d062018-04-13 17:31:22 +02001427 if (!S_ISREG(stbuf.st_mode)) {
1428 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001429 return -EEXIST;
1430 }
1431
Franck Bui5ec9d062018-04-13 17:31:22 +02001432 if (stbuf.st_size > 0) {
1433 if (ftruncate(fd, 0) < 0) {
1434 r = erofs ? -EROFS : -errno;
1435 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1436 }
1437 } else
1438 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001439
Franck Bui5ec9d062018-04-13 17:31:22 +02001440 log_debug("\"%s\" has been created.", path);
1441
1442 if (i->argument) {
1443 log_debug("Writing to \"%s\".", path);
1444
1445 r = loop_write(fd, i->argument, strlen(i->argument), false);
1446 if (r < 0) {
1447 r = erofs ? -EROFS : r;
1448 return log_error_errno(r, "Failed to write file %s: %m", path);
1449 }
1450 }
1451
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001452 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001453}
1454
Franck Buib1f7b172018-04-12 12:19:22 +02001455static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001456 _cleanup_close_ int dfd = -1, fd = -1;
1457 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001458 int r;
1459
1460 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1461
Franck Bui16ba55a2018-04-12 12:55:22 +02001462 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001463
Franck Bui16ba55a2018-04-12 12:55:22 +02001464 /* Validate the path and use the returned directory fd for copying the
1465 * target so we're sure that the path can't be changed behind our
1466 * back. */
1467 dfd = path_open_parent_safe(i->path);
1468 if (dfd < 0)
1469 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001470
Franck Bui16ba55a2018-04-12 12:55:22 +02001471 r = copy_tree_at(AT_FDCWD, i->argument,
1472 dfd, bn,
1473 i->uid_set ? i->uid : UID_INVALID,
1474 i->gid_set ? i->gid : GID_INVALID,
Christian Göttsche80e7c842019-11-28 12:18:04 +01001475 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE);
Franck Buib1f7b172018-04-12 12:19:22 +02001476 if (r < 0) {
1477 struct stat a, b;
1478
Franck Bui16ba55a2018-04-12 12:55:22 +02001479 /* If the target already exists on read-only filesystems, trying
1480 * to create the target will not fail with EEXIST but with
1481 * EROFS. */
1482 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1483 r = -EEXIST;
1484
Franck Buib1f7b172018-04-12 12:19:22 +02001485 if (r != -EEXIST)
1486 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1487
1488 if (stat(i->argument, &a) < 0)
1489 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1490
Franck Bui16ba55a2018-04-12 12:55:22 +02001491 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001492 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1493
1494 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1495 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1496 return 0;
1497 }
1498 }
1499
Franck Bui16ba55a2018-04-12 12:55:22 +02001500 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1501 if (fd < 0)
1502 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1503
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001504 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001505}
1506
Franck Bui074bd732018-04-12 18:10:57 +02001507typedef enum {
1508 CREATION_NORMAL,
1509 CREATION_EXISTING,
1510 CREATION_FORCE,
1511 _CREATION_MODE_MAX,
1512 _CREATION_MODE_INVALID = -1
1513} CreationMode;
1514
Lennart Poetteringb82f71c2019-03-22 19:19:32 +01001515static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
Franck Bui074bd732018-04-12 18:10:57 +02001516 [CREATION_NORMAL] = "Created",
1517 [CREATION_EXISTING] = "Found existing",
1518 [CREATION_FORCE] = "Created replacement",
1519};
1520
1521DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1522
Franck Buif17a8d62018-08-06 12:29:54 +02001523static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001524 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001525 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001526 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001527
Franck Bui4c39d892018-04-27 11:51:14 +02001528 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001529
Franck Buif17a8d62018-08-06 12:29:54 +02001530 if (!creation)
1531 creation = &c;
1532
Franck Bui4c39d892018-04-27 11:51:14 +02001533 pfd = path_open_parent_safe(path);
1534 if (pfd < 0)
1535 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001536
Franck Bui4c39d892018-04-27 11:51:14 +02001537 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001538 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1539
1540 /* Don't create a subvolume unless the root directory is
1541 * one, too. We do this under the assumption that if the
1542 * root directory is just a plain directory (i.e. very
1543 * light-weight), we shouldn't try to split it up into
1544 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1545 * environments and suchlike will get a full brtfs
1546 * subvolume set up below their tree only if they
1547 * specifically set up a btrfs subvolume for the root
1548 * dir too. */
1549
Franck Bui4c39d892018-04-27 11:51:14 +02001550 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001551 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001552 RUN_WITH_UMASK((~mode) & 0777)
1553 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001554 }
1555 } else
1556 r = 0;
1557
Franck Bui4c39d892018-04-27 11:51:14 +02001558 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001559 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001560 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001561
1562 if (r < 0) {
1563 int k;
1564
1565 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001566 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001567
Franck Bui4c39d892018-04-27 11:51:14 +02001568 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001569 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001570 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 +02001571 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001572 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001573 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001574 log_warning("\"%s\" already exists and is not a directory.", path);
1575 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001576 }
1577
Franck Buif17a8d62018-08-06 12:29:54 +02001578 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001579 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001580 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001581
Franck Buif17a8d62018-08-06 12:29:54 +02001582 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001583
1584 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1585 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001586 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1587
Franck Bui4c39d892018-04-27 11:51:14 +02001588 return r;
1589}
1590
1591static int create_directory(Item *i, const char *path) {
1592 _cleanup_close_ int fd = -1;
1593
1594 assert(i);
1595 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1596
Franck Buif17a8d62018-08-06 12:29:54 +02001597 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001598 if (fd == -EEXIST)
1599 return 0;
1600 if (fd < 0)
1601 return fd;
1602
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001603 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001604}
1605
1606static int create_subvolume(Item *i, const char *path) {
1607 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001608 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001609 int r, q = 0;
1610
1611 assert(i);
1612 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1613
Franck Buif17a8d62018-08-06 12:29:54 +02001614 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001615 if (fd == -EEXIST)
1616 return 0;
1617 if (fd < 0)
1618 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001619
Franck Buif17a8d62018-08-06 12:29:54 +02001620 if (creation == CREATION_NORMAL &&
1621 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001622 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001623 if (r == -ENOTTY)
1624 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1625 else if (r == -EROFS)
1626 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1627 else if (r == -ENOPROTOOPT)
1628 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1629 else if (r < 0)
1630 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1631 else if (r > 0)
1632 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1633 else if (r == 0)
1634 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1635 }
1636
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001637 r = fd_set_perms(i, fd, path, NULL);
1638 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001639 return q;
1640
1641 return r;
1642}
1643
Franck Bui54946022018-04-26 15:45:17 +02001644static int empty_directory(Item *i, const char *path) {
1645 int r;
1646
1647 assert(i);
1648 assert(i->type == EMPTY_DIRECTORY);
1649
1650 r = is_dir(path, false);
1651 if (r == -ENOENT) {
1652 /* Option "e" operates only on existing objects. Do not
1653 * print errors about non-existent files or directories */
1654 log_debug("Skipping missing directory: %s", path);
1655 return 0;
1656 }
1657 if (r < 0)
1658 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001659 if (r == 0)
1660 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1661 "'%s' already exists and is not a directory.",
1662 path);
Franck Bui54946022018-04-26 15:45:17 +02001663
1664 return path_set_perms(i, path);
1665}
1666
Franck Bui074bd732018-04-12 18:10:57 +02001667static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001668 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001669 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001670 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001671 int r;
1672
1673 assert(i);
1674 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1675
Franck Buic7700a72018-04-12 18:33:54 +02001676 bn = basename(i->path);
1677
1678 /* Validate the path and use the returned directory fd for copying the
1679 * target so we're sure that the path can't be changed behind our
1680 * back. */
1681 dfd = path_open_parent_safe(i->path);
1682 if (dfd < 0)
1683 return dfd;
1684
Franck Bui074bd732018-04-12 18:10:57 +02001685 RUN_WITH_UMASK(0000) {
1686 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001687 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001688 mac_selinux_create_file_clear();
1689 }
1690
1691 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001692 struct stat st;
1693
Franck Bui074bd732018-04-12 18:10:57 +02001694 if (errno == EPERM) {
1695 log_debug("We lack permissions, possibly because of cgroup configuration; "
1696 "skipping creation of device node %s.", i->path);
1697 return 0;
1698 }
1699
1700 if (errno != EEXIST)
1701 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1702
Franck Buic7700a72018-04-12 18:33:54 +02001703 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001704 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1705
1706 if ((st.st_mode & S_IFMT) != file_type) {
1707
Zach Smithc55ac242019-10-03 18:09:35 -07001708 if (i->append_or_force) {
Franck Bui074bd732018-04-12 18:10:57 +02001709
1710 RUN_WITH_UMASK(0000) {
1711 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001712 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001713 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1714 mac_selinux_create_file_clear();
1715 }
1716
1717 if (r < 0)
1718 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1719 creation = CREATION_FORCE;
1720 } else {
1721 log_debug("%s is not a device node.", i->path);
1722 return 0;
1723 }
1724 } else
1725 creation = CREATION_EXISTING;
1726 } else
1727 creation = CREATION_NORMAL;
1728
1729 log_debug("%s %s device node \"%s\" %u:%u.",
1730 creation_mode_verb_to_string(creation),
1731 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1732 i->path, major(i->mode), minor(i->mode));
1733
Franck Buic7700a72018-04-12 18:33:54 +02001734 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1735 if (fd < 0)
1736 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1737
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001738 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001739}
1740
Franck Buia2fc2f82018-04-27 18:11:26 +02001741static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001742 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001743 CreationMode creation;
1744 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001745 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001746 int r;
1747
Franck Bui7ea5a872018-04-27 18:17:32 +02001748 pfd = path_open_parent_safe(path);
1749 if (pfd < 0)
1750 return pfd;
1751
1752 bn = basename(path);
1753
Franck Buia2fc2f82018-04-27 18:11:26 +02001754 RUN_WITH_UMASK(0000) {
1755 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001756 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001757 mac_selinux_create_file_clear();
1758 }
1759
1760 if (r < 0) {
1761 if (errno != EEXIST)
1762 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1763
Franck Bui7ea5a872018-04-27 18:17:32 +02001764 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001765 return log_error_errno(errno, "stat(%s) failed: %m", path);
1766
1767 if (!S_ISFIFO(st.st_mode)) {
1768
Zach Smithc55ac242019-10-03 18:09:35 -07001769 if (i->append_or_force) {
Franck Buia2fc2f82018-04-27 18:11:26 +02001770 RUN_WITH_UMASK(0000) {
1771 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001772 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001773 mac_selinux_create_file_clear();
1774 }
1775
1776 if (r < 0)
1777 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1778 creation = CREATION_FORCE;
1779 } else {
1780 log_warning("\"%s\" already exists and is not a fifo.", path);
1781 return 0;
1782 }
1783 } else
1784 creation = CREATION_EXISTING;
1785 } else
1786 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001787
Franck Buia2fc2f82018-04-27 18:11:26 +02001788 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1789
Franck Bui7ea5a872018-04-27 18:17:32 +02001790 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1791 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001792 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001793
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001794 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001795}
1796
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001797typedef int (*action_t)(Item *i, const char *path);
1798typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001799
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001800static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001801 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001802 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001803
1804 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001805 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001806 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001807
1808 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001809 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001810 goto finish;
1811 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001812
1813 /* This returns the first error we run into, but nevertheless
1814 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001815 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001816
Franck Bui14f34802018-05-24 14:17:07 +02001817 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001818 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001819 _cleanup_closedir_ DIR *d = NULL;
1820 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001821
Franck Bui936f6bd2018-03-02 17:19:32 +01001822 /* The passed 'fd' was opened with O_PATH. We need to convert
1823 * it into a 'regular' fd before reading the directory content. */
1824 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001825
Franck Bui936f6bd2018-03-02 17:19:32 +01001826 d = opendir(procfs_path);
1827 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001828 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1829 if (r == 0)
1830 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001831 goto finish;
1832 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001833
Franck Bui936f6bd2018-03-02 17:19:32 +01001834 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001835 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001836
Franck Bui936f6bd2018-03-02 17:19:32 +01001837 if (dot_or_dot_dot(de->d_name))
1838 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001839
Franck Bui936f6bd2018-03-02 17:19:32 +01001840 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001841 if (de_fd < 0)
1842 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001843 else {
1844 _cleanup_free_ char *de_path = NULL;
1845
Zbigniew Jędrzejewski-Szmek62a85ee2018-11-30 10:43:57 +01001846 de_path = path_join(path, de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001847 if (!de_path)
1848 q = log_oom();
1849 else
1850 /* Pass ownership of dirent fd over */
1851 q = item_do(i, de_fd, de_path, action);
1852 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001853
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001854 if (q < 0 && r == 0)
1855 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001856 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001857 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001858finish:
1859 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001860 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001861}
1862
Franck Bui936f6bd2018-03-02 17:19:32 +01001863static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001864 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001865 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001866 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001867 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001868 char **fn;
1869
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001870 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1871 if (k < 0 && k != -ENOENT)
1872 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001873
1874 STRV_FOREACH(fn, g.gl_pathv) {
1875 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001876 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001877 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001878 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001879
Franck Bui936f6bd2018-03-02 17:19:32 +01001880 return r;
1881}
1882
1883static int glob_item_recursively(Item *i, fdaction_t action) {
1884 _cleanup_globfree_ glob_t g = {
1885 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1886 };
1887 int r = 0, k;
1888 char **fn;
1889
1890 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1891 if (k < 0 && k != -ENOENT)
1892 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1893
1894 STRV_FOREACH(fn, g.gl_pathv) {
1895 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001896
1897 /* Make sure we won't trigger/follow file object (such as
1898 * device nodes, automounts, ...) pointed out by 'fn' with
1899 * O_PATH. Note, when O_PATH is used, flags other than
1900 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1901
1902 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1903 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001904 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1905 if (r == 0)
1906 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001907 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001908 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001909
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001910 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001911 if (k < 0 && r == 0)
1912 r = k;
1913
1914 /* we passed fd ownership to the previous call */
1915 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001916 }
1917
Michal Schmidt99e68c02011-12-15 23:45:26 +01001918 return r;
1919}
1920
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001921static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001922 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001923 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001924
1925 assert(i);
1926
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001927 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1928
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001929 switch (i->type) {
1930
1931 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001932 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001933 case REMOVE_PATH:
1934 case RECURSIVE_REMOVE_PATH:
1935 return 0;
1936
Zach Smitheccebf42019-10-28 09:32:16 -07001937 case TRUNCATE_FILE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001938 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001939 RUN_WITH_UMASK(0000)
1940 (void) mkdir_parents_label(i->path, 0755);
1941
Zach Smitheccebf42019-10-28 09:32:16 -07001942 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
1943 r = truncate_file(i, i->path);
1944 else
1945 r = create_file(i, i->path);
Lennart Poettering265ffa12013-09-17 16:33:30 -05001946
Franck Bui5ec9d062018-04-13 17:31:22 +02001947 if (r < 0)
1948 return r;
1949 break;
1950
Franck Bui7b887f22018-04-12 12:18:19 +02001951 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001952 RUN_WITH_UMASK(0000)
1953 (void) mkdir_parents_label(i->path, 0755);
1954
Franck Buib1f7b172018-04-12 12:19:22 +02001955 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001956 if (r < 0)
1957 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001958 break;
1959
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001960 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001961 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001962 if (r < 0)
1963 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001964
1965 break;
1966
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001967 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001968 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001969 RUN_WITH_UMASK(0000)
1970 (void) mkdir_parents_label(i->path, 0755);
1971
1972 r = create_directory(i, i->path);
1973 if (r < 0)
1974 return r;
1975 break;
1976
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001977 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001978 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1979 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001980 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001981 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001982
Franck Bui4c39d892018-04-27 11:51:14 +02001983 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001984 if (r < 0)
1985 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001986 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001987
Franck Bui4ad36842018-04-26 14:54:20 +02001988 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001989 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001990 if (r < 0)
1991 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001992 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001993
1994 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02001995 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001996 (void) mkdir_parents_label(i->path, 0755);
1997
Franck Buia2fc2f82018-04-27 18:11:26 +02001998 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001999 if (r < 0)
2000 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02002001 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01002002
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002003 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01002004 RUN_WITH_UMASK(0000)
2005 (void) mkdir_parents_label(i->path, 0755);
2006
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002007 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002008 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002009 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002010
Lennart Poettering468d7262012-01-17 15:04:12 +01002011 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002012 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002013
Michal Schmidt4a62c712014-11-28 19:57:32 +01002014 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002015 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002016
2017 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002018 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002019
Zach Smithc55ac242019-10-03 18:09:35 -07002020 if (i->append_or_force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002021 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002022 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002023 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002024
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002025 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002026 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2027 if (r < 0)
2028 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2029
2030 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002031 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002032 mac_selinux_create_file_clear();
2033 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002034 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002035 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002036
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002037 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002038 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002039 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002040 return 0;
2041 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002042 } else
2043 creation = CREATION_EXISTING;
2044 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002045
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002046 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002047 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002048 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002049 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002050
2051 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002052 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002053 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002054 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2055 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002056
2057 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2058 return 0;
2059 }
2060
Lennart Poettering7fa10742018-01-23 14:14:19 +01002061 RUN_WITH_UMASK(0000)
2062 (void) mkdir_parents_label(i->path, 0755);
2063
Franck Bui074bd732018-04-12 18:10:57 +02002064 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002065 if (r < 0)
2066 return r;
2067
2068 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002069
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002070 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002071 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002072 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002073 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002074 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002075 break;
2076
Michal Schmidta8d88782011-12-15 23:11:07 +01002077 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002078 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002079 if (r < 0)
2080 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002081 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002082
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002083 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002084 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002085 if (r < 0)
2086 return r;
2087 break;
2088
2089 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002090 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002091 if (r < 0)
2092 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002093 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002094
2095 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002096 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002097 if (r < 0)
2098 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002099 break;
2100
2101 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002102 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002103 if (r < 0)
2104 return r;
2105 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002106
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002107 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002108 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002109 if (r < 0)
2110 return r;
2111 break;
2112
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002113 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002114 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002115 if (r < 0)
2116 return r;
2117 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002118 }
2119
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002120 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002121}
2122
Michal Schmidta0896122011-12-15 21:32:50 +01002123static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002124 int r;
2125
2126 assert(i);
2127
2128 switch (i->type) {
2129
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002130 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002131 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002132 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002133
2134 break;
2135
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002136 case RECURSIVE_REMOVE_PATH:
Lennart Poettering2c575972018-10-29 19:24:56 +01002137 /* 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 -05002138 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering2c575972018-10-29 19:24:56 +01002139 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002140 if (r < 0 && r != -ENOENT)
2141 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002142
2143 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002144
2145 default:
2146 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002147 }
2148
2149 return 0;
2150}
2151
Michal Schmidta0896122011-12-15 21:32:50 +01002152static int remove_item(Item *i) {
Lennart Poettering2c575972018-10-29 19:24:56 +01002153 int r;
2154
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002155 assert(i);
2156
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002157 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2158
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002159 switch (i->type) {
2160
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002161 case TRUNCATE_DIRECTORY:
Lennart Poettering2c575972018-10-29 19:24:56 +01002162 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2163 log_debug("rm -rf \"%s\"", i->path);
2164 r = rm_rf(i->path, REMOVE_PHYSICAL);
2165 if (r < 0 && r != -ENOENT)
2166 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2167
2168 return 0;
2169
2170 case REMOVE_PATH:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002171 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002172 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002173
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002174 default:
2175 return 0;
2176 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002177}
2178
Michal Sekletar78a92a52013-01-18 16:13:08 +01002179static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002180 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002181 struct stat s, ps;
2182 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002183 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002184 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002185
2186 assert(i);
2187
2188 if (!i->age_set)
2189 return 0;
2190
2191 n = now(CLOCK_REALTIME);
2192 if (n < i->age)
2193 return 0;
2194
2195 cutoff = n - i->age;
2196
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002197 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002198 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002199 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002200 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002201 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002202 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002203
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002204 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002205 }
2206
Michal Schmidt4a62c712014-11-28 19:57:32 +01002207 if (fstat(dirfd(d), &s) < 0)
2208 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002209
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002210 if (!S_ISDIR(s.st_mode))
2211 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2212 "%s is not a directory.", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002213
Michal Schmidt4a62c712014-11-28 19:57:32 +01002214 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2215 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002216
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002217 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002218
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002219 log_debug("Cleanup threshold for %s \"%s\" is %s",
2220 mountpoint ? "mount point" : "directory",
2221 instance,
2222 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2223
2224 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2225 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002226}
2227
2228static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002229 assert(i);
2230
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002231 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2232
Michal Sekletar78a92a52013-01-18 16:13:08 +01002233 switch (i->type) {
2234 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002235 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002236 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2237 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002238 case TRUNCATE_DIRECTORY:
2239 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002240 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002241 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002242 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002243 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002244 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002245 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002246 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002247 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002248 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002249}
2250
Lennart Poettering599ebe22018-10-25 23:22:18 +02002251static int process_item(Item *i, OperationMask operation) {
Lennart Poettering811a1582018-10-26 20:56:37 +02002252 OperationMask todo;
2253 int r, q, p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002254
2255 assert(i);
2256
Lennart Poettering811a1582018-10-26 20:56:37 +02002257 todo = operation & ~i->done;
2258 if (todo == 0) /* Everything already done? */
Lennart Poettering1910cd02014-06-11 01:37:35 +02002259 return 0;
2260
Lennart Poettering811a1582018-10-26 20:56:37 +02002261 i->done |= operation;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002262
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +02002263 r = chase_symlinks(i->path, arg_root, CHASE_NO_AUTOFS|CHASE_WARN, NULL, NULL);
Lennart Poettering21af3382018-10-26 21:07:38 +02002264 if (r == -EREMOTE) {
Franck Bui145b8d0f2018-11-30 15:43:13 +01002265 log_notice_errno(r, "Skipping %s", i->path);
Lennart Poettering811a1582018-10-26 20:56:37 +02002266 return 0;
Franck Bui145b8d0f2018-11-30 15:43:13 +01002267 }
2268 if (r < 0)
Lennart Poettering48d96902018-11-20 15:56:55 +01002269 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 -05002270
Lennart Poettering599ebe22018-10-25 23:22:18 +02002271 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002272 /* Failure can only be tolerated for create */
2273 if (i->allow_failure)
2274 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002275
Lennart Poettering599ebe22018-10-25 23:22:18 +02002276 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2277 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
Lennart Poettering1a967b62018-10-25 23:19:00 +02002278
Lennart Poettering811a1582018-10-26 20:56:37 +02002279 return r < 0 ? r :
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002280 q < 0 ? q :
2281 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002282}
2283
Lennart Poettering599ebe22018-10-25 23:22:18 +02002284static int process_item_array(ItemArray *array, OperationMask operation) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002285 int r = 0;
2286 size_t n;
Lennart Poettering753615e2014-06-12 23:07:17 +02002287
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002288 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002289
Lennart Poettering811a1582018-10-26 20:56:37 +02002290 /* Create any parent first. */
2291 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2292 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2293
2294 /* Clean up all children first */
2295 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2296 Iterator i;
2297 ItemArray *c;
2298
2299 SET_FOREACH(c, array->children, i) {
2300 int k;
2301
2302 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2303 if (k < 0 && r == 0)
2304 r = k;
2305 }
2306 }
2307
Lennart Poettering96d10d72018-10-25 13:51:01 +02002308 for (n = 0; n < array->n_items; n++) {
2309 int k;
2310
Lennart Poettering599ebe22018-10-25 23:22:18 +02002311 k = process_item(array->items + n, operation);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002312 if (k < 0 && r == 0)
2313 r = k;
2314 }
2315
2316 return r;
2317}
2318
2319static void item_free_contents(Item *i) {
2320 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002321 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002322 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002323 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002324
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002325#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002326 acl_free(i->acl_access);
2327 acl_free(i->acl_default);
2328#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002329}
2330
Yu Watanabe87938c32018-11-26 01:00:54 +09002331static ItemArray* item_array_free(ItemArray *a) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002332 size_t n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002333
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002334 if (!a)
Yu Watanabe87938c32018-11-26 01:00:54 +09002335 return NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002336
Lennart Poettering96d10d72018-10-25 13:51:01 +02002337 for (n = 0; n < a->n_items; n++)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002338 item_free_contents(a->items + n);
Lennart Poettering96d10d72018-10-25 13:51:01 +02002339
Lennart Poettering811a1582018-10-26 20:56:37 +02002340 set_free(a->children);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002341 free(a->items);
Yu Watanabe87938c32018-11-26 01:00:54 +09002342 return mfree(a);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002343}
2344
Yu Watanabe93bab282018-09-18 08:39:24 +09002345static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002346 /* Make sure that the ownership taking item is put first, so
2347 * that we first create the node, and then can adjust it */
2348
Yu Watanabe93bab282018-09-18 08:39:24 +09002349 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002350 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002351 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002352 return 1;
2353
Yu Watanabe93bab282018-09-18 08:39:24 +09002354 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002355}
2356
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002357static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002358 assert(a);
2359 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002360 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002361
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002362 if (takes_ownership(a->type) && takes_ownership(b->type))
2363 /* check if the items are the same */
2364 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002365
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002366 a->uid_set == b->uid_set &&
2367 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002368
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002369 a->gid_set == b->gid_set &&
2370 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002371
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002372 a->mode_set == b->mode_set &&
2373 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002374
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002375 a->age_set == b->age_set &&
2376 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002377
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002378 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002379
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002380 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002381
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002382 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002383
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002384 return true;
2385}
2386
Dave Reisnera2aced42013-07-24 11:10:05 -04002387static bool should_include_path(const char *path) {
2388 char **prefix;
2389
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002390 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002391 if (path_startswith(path, *prefix)) {
2392 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2393 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002394 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002395 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002396
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002397 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002398 if (path_startswith(path, *prefix)) {
2399 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002400 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002401 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002402
Dave Reisner5c795112013-07-24 11:19:24 -04002403 /* no matches, so we should include this path only if we
2404 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002405 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002406 return true;
2407
2408 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2409 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002410}
2411
Franck Bui4cef1922017-11-16 11:27:29 +01002412static int specifier_expansion_from_arg(Item *i) {
2413 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2414 char **xattr;
2415 int r;
2416
2417 assert(i);
2418
Frantisek Sumsal4e361ac2019-04-28 14:28:49 +02002419 if (!i->argument)
Franck Bui4cef1922017-11-16 11:27:29 +01002420 return 0;
2421
2422 switch (i->type) {
2423 case COPY_FILES:
2424 case CREATE_SYMLINK:
2425 case CREATE_FILE:
2426 case TRUNCATE_FILE:
2427 case WRITE_FILE:
2428 r = cunescape(i->argument, 0, &unescaped);
2429 if (r < 0)
2430 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2431
2432 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2433 if (r < 0)
2434 return r;
2435
2436 free_and_replace(i->argument, resolved);
2437 break;
2438
2439 case SET_XATTR:
2440 case RECURSIVE_SET_XATTR:
Lennart Poetteringdfe01842020-04-29 00:13:52 +02002441 STRV_FOREACH(xattr, i->xattrs) {
Franck Bui4cef1922017-11-16 11:27:29 +01002442 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2443 if (r < 0)
2444 return r;
2445
2446 free_and_replace(*xattr, resolved);
2447 }
2448 break;
2449
2450 default:
2451 break;
2452 }
2453 return 0;
2454}
2455
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002456static int patch_var_run(const char *fname, unsigned line, char **path) {
2457 const char *k;
2458 char *n;
2459
2460 assert(path);
2461 assert(*path);
2462
2463 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2464 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2465 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2466 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2467 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2468 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2469 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2470 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2471 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2472
2473 k = path_startswith(*path, "/var/run/");
2474 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2475 return 0;
2476
Yu Watanabe2d9b74b2019-06-24 23:59:38 +09002477 n = path_join("/run", k);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002478 if (!n)
2479 return log_oom();
2480
2481 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2482 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2483 * to the user, let's still inform the user that these snippets should really be updated. */
Lennart Poetteringafb7e1c2019-07-10 13:00:44 +02002484 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 -04002485
Lennart Poettering81fa4472018-10-25 13:57:32 +02002486 free_and_replace(*path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002487
2488 return 0;
2489}
2490
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002491static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002492
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002493 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002494 _cleanup_(item_free_contents) Item i = {};
2495 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002496 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002497 int r, pos;
Zach Smithc55ac242019-10-03 18:09:35 -07002498 bool append_or_force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002499
2500 assert(fname);
2501 assert(line >= 1);
2502 assert(buffer);
2503
Richard Maw68685602015-06-23 16:20:53 +00002504 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002505 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002506 NULL,
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +02002507 EXTRACT_UNQUOTE,
Lennart Poettering4034a062015-03-23 18:55:36 +07002508 &action,
2509 &path,
2510 &mode,
2511 &user,
2512 &group,
2513 &age,
2514 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002515 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002516 if (IN_SET(r, -EINVAL, -EBADSLT))
2517 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002518 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002519 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to parse line: %m");
Lennart Poettering4b936992018-05-10 11:29:11 -07002520 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002521 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002522 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Syntax error.");
Lennart Poettering5008d582010-09-28 02:34:02 +02002523 }
2524
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002525 if (!empty_or_dash(buffer)) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002526 i.argument = strdup(buffer);
2527 if (!i.argument)
2528 return log_oom();
2529 }
2530
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002531 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002532 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002533 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Command too short '%s'.", action);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002534 }
2535
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002536 for (pos = 1; action[pos]; pos++) {
2537 if (action[pos] == '!' && !boot)
2538 boot = true;
Zach Smithc55ac242019-10-03 18:09:35 -07002539 else if (action[pos] == '+' && !append_or_force)
2540 append_or_force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002541 else if (action[pos] == '-' && !allow_failure)
2542 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002543 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002544 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002545 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Unknown modifiers in command '%s'", action);
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002546 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002547 }
2548
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002549 if (boot && !arg_boot) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002550 log_syntax(NULL, LOG_DEBUG, fname, line, 0, "Ignoring entry %s \"%s\" because --boot is not specified.", action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002551 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002552 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002553
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002554 i.type = action[0];
Zach Smithc55ac242019-10-03 18:09:35 -07002555 i.append_or_force = append_or_force;
William Douglas6d7b5432018-09-10 12:07:29 -07002556 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002557
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002558 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002559 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002560 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002561 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002562 if (IN_SET(r, -EINVAL, -EBADSLT))
2563 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002564 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to replace specifiers in '%s': %m", path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002565 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002566
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002567 r = patch_var_run(fname, line, &i.path);
2568 if (r < 0)
2569 return r;
2570
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002571 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002572
Michal Schmidt777b87e2011-12-16 18:27:35 +01002573 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002574 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002575 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2576 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002577 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002578 case TRUNCATE_DIRECTORY:
2579 case CREATE_FIFO:
2580 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002581 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002582 case REMOVE_PATH:
2583 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002584 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002585 case RELABEL_PATH:
2586 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002587 if (i.argument)
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002588 log_syntax(NULL, LOG_WARNING, fname, line, 0, "%c lines don't take argument fields, ignoring.", i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002589
2590 break;
2591
2592 case CREATE_FILE:
2593 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002594 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002595
2596 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002597 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002598 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002599 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002600 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002601 }
2602 break;
2603
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002604 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002605 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002606 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002607 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Write file requires argument.");
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002608 }
2609 break;
2610
Lennart Poettering849958d2014-06-10 23:02:40 +02002611 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002612 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002613 i.argument = path_join(arg_root, "/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002614 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002615 return log_oom();
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002616
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002617 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002618 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002619 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Source path '%s' is not absolute.", i.argument);
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002620
2621 } else if (arg_root) {
2622 char *p;
2623
Lennart Poetteringd34cd572019-07-11 18:41:14 +02002624 p = path_join(arg_root, i.argument);
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002625 if (!p)
2626 return log_oom();
2627 free_and_replace(i.argument, p);
Lennart Poettering849958d2014-06-10 23:02:40 +02002628 }
2629
Yu Watanabe858d36c2018-05-31 23:39:31 +09002630 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002631 break;
2632
Lennart Poettering468d7262012-01-17 15:04:12 +01002633 case CREATE_CHAR_DEVICE:
Lennart Poettering3a47c402018-06-29 12:01:02 +02002634 case CREATE_BLOCK_DEVICE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002635 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002636 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002637 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Device file requires argument.");
Lennart Poettering468d7262012-01-17 15:04:12 +01002638 }
2639
Lennart Poettering3a47c402018-06-29 12:01:02 +02002640 r = parse_dev(i.argument, &i.major_minor);
2641 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002642 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002643 return log_syntax(NULL, LOG_ERR, fname, line, r, "Can't parse device file major/minor '%s'.", i.argument);
Lennart Poettering468d7262012-01-17 15:04:12 +01002644 }
2645
Lennart Poettering468d7262012-01-17 15:04:12 +01002646 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002647
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002648 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002649 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002650 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002651 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002652 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2653 "Set extended attribute requires argument.");
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002654 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002655 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002656 if (r < 0)
2657 return r;
2658 break;
2659
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002660 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002661 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002662 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002663 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002664 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2665 "Set ACLs requires argument.");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002666 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002667 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002668 if (r < 0)
2669 return r;
2670 break;
2671
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002672 case SET_ATTRIBUTE:
2673 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002674 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002675 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002676 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2677 "Set file attribute requires argument.");
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002678 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002679 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002680 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002681 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002682 if (r < 0)
2683 return r;
2684 break;
2685
Michal Schmidt777b87e2011-12-16 18:27:35 +01002686 default:
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002687 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002688 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2689 "Unknown command type '%c'.", (char) i.type);
Lennart Poettering5008d582010-09-28 02:34:02 +02002690 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002691
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002692 if (!path_is_absolute(i.path)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002693 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002694 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2695 "Path '%s' not absolute.", i.path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002696 }
2697
Yu Watanabe858d36c2018-05-31 23:39:31 +09002698 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002699
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002700 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002701 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002702
Franck Bui4cef1922017-11-16 11:27:29 +01002703 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002704 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002705 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002706 if (r < 0) {
2707 if (IN_SET(r, -EINVAL, -EBADSLT))
2708 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002709 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to substitute specifiers in argument: %m");
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;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002727 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve user '%s': %m", 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 Poetteringd02933f2020-04-29 00:07:06 +02002739 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve group '%s'.", group);
Lennart Poettering5008d582010-09-28 02:34:02 +02002740 }
2741
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002742 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002743 }
2744
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002745 if (!empty_or_dash(mode)) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002746 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002747 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002748
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002749 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002750 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002751 mm++;
2752 }
2753
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002754 r = parse_mode(mm, &m);
2755 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002756 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002757 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid mode '%s'.", mode);
Lennart Poettering5008d582010-09-28 02:34:02 +02002758 }
2759
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002760 i.mode = m;
2761 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002762 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002763 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 +02002764
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002765 if (!empty_or_dash(age)) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002766 const char *a = age;
2767
2768 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002769 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002770 a++;
2771 }
2772
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002773 r = parse_sec(a, &i.age);
2774 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002775 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002776 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age '%s'.", age);
Lennart Poettering5008d582010-09-28 02:34:02 +02002777 }
2778
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002779 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002780 }
2781
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002782 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002783
Lennart Poetteringef43a392015-04-22 18:18:56 +02002784 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002785 if (existing) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002786 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002787
Lennart Poettering96d10d72018-10-25 13:51:01 +02002788 for (n = 0; n < existing->n_items; n++) {
Zach Smithd0ea5c52019-10-03 18:19:18 -07002789 if (!item_compatible(existing->items + n, &i) && !i.append_or_force) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002790 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Duplicate line for path \"%s\", ignoring.", i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002791 return 0;
2792 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002793 }
2794 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002795 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002796 if (!existing)
2797 return log_oom();
2798
Lennart Poetteringef43a392015-04-22 18:18:56 +02002799 r = ordered_hashmap_put(h, i.path, existing);
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002800 if (r < 0) {
2801 free(existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002802 return log_oom();
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002803 }
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002804 }
2805
Lennart Poettering96d10d72018-10-25 13:51:01 +02002806 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002807 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002808
Lennart Poettering7ab75292018-10-25 13:53:07 +02002809 existing->items[existing->n_items++] = i;
2810 i = (struct Item) {};
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002811
2812 /* Sort item array, to enforce stable ordering of application */
Lennart Poettering96d10d72018-10-25 13:51:01 +02002813 typesafe_qsort(existing->items, existing->n_items, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002814
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002815 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002816}
2817
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002818static int cat_config(char **config_dirs, char **args) {
2819 _cleanup_strv_free_ char **files = NULL;
2820 int r;
2821
2822 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2823 if (r < 0)
2824 return r;
2825
2826 return cat_files(NULL, files, 0);
2827}
2828
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002829static int help(void) {
2830 _cleanup_free_ char *link = NULL;
2831 int r;
2832
2833 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2834 if (r < 0)
2835 return log_oom();
2836
Lennart Poettering522d4a42011-02-13 15:08:15 +01002837 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2838 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002839 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002840 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002841 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002842 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002843 " --create Create marked files/directories\n"
2844 " --clean Clean up marked directories\n"
2845 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002846 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002847 " --prefix=PATH Only apply rules with the specified prefix\n"
2848 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002849 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002850 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002851 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002852 "\nSee the %s for details.\n"
2853 , program_invocation_short_name
2854 , link
2855 );
2856
2857 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002858}
2859
2860static int parse_argv(int argc, char *argv[]) {
2861
2862 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002863 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002864 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002865 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002866 ARG_CREATE,
2867 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002868 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002869 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002870 ARG_PREFIX,
2871 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002872 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002873 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002874 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002875 };
2876
2877 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002878 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002879 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002880 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002881 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002882 { "create", no_argument, NULL, ARG_CREATE },
2883 { "clean", no_argument, NULL, ARG_CLEAN },
2884 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002885 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002886 { "prefix", required_argument, NULL, ARG_PREFIX },
2887 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002888 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002889 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002890 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002891 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002892 };
2893
Lennart Poettering0f474362015-10-22 19:28:31 +02002894 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002895
2896 assert(argc >= 0);
2897 assert(argv);
2898
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002899 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002900
2901 switch (c) {
2902
2903 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002904 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002905
2906 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002907 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002908
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002909 case ARG_CAT_CONFIG:
2910 arg_cat_config = true;
2911 break;
2912
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002913 case ARG_USER:
2914 arg_user = true;
2915 break;
2916
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002917 case ARG_CREATE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002918 arg_operation |= OPERATION_CREATE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002919 break;
2920
2921 case ARG_CLEAN:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002922 arg_operation |= OPERATION_CLEAN;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002923 break;
2924
2925 case ARG_REMOVE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002926 arg_operation |= OPERATION_REMOVE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002927 break;
2928
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002929 case ARG_BOOT:
2930 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002931 break;
2932
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002933 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002934 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002935 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002936 break;
2937
Dave Reisner5c795112013-07-24 11:19:24 -04002938 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002939 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002940 return log_oom();
2941 break;
2942
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002943 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002944 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002945 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002946 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002947 break;
2948
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002949 case ARG_REPLACE:
2950 if (!path_is_absolute(optarg) ||
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002951 !endswith(optarg, ".conf"))
2952 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2953 "The argument to --replace= must an absolute path to a config file");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002954
2955 arg_replace = optarg;
2956 break;
2957
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002958 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01002959 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002960 break;
2961
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002962 case '?':
2963 return -EINVAL;
2964
2965 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002966 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002967 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002968
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002969 if (arg_operation == 0 && !arg_cat_config)
2970 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2971 "You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002972
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002973 if (arg_replace && arg_cat_config)
2974 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2975 "Option --replace= is not supported with --cat-config");
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002976
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002977 if (arg_replace && optind >= argc)
2978 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2979 "When --replace= is given, some configuration items must be specified");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002980
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002981 return 1;
2982}
2983
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002984static 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 -04002985 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002986 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002987 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02002988 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002989 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002990 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002991
2992 assert(fn);
2993
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002994 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002995 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002996 fn = "<stdin>";
2997 f = stdin;
2998 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002999 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003000 if (r < 0) {
3001 if (ignore_enoent && r == -ENOENT) {
3002 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3003 return 0;
3004 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003005
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003006 return log_error_errno(r, "Failed to open '%s': %m", fn);
3007 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003008 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003009 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003010 }
3011
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003012 for (;;) {
3013 _cleanup_free_ char *line = NULL;
3014 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003015 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003016 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003017
3018 k = read_line(f, LONG_LINE_MAX, &line);
3019 if (k < 0)
3020 return log_error_errno(k, "Failed to read '%s': %m", fn);
3021 if (k == 0)
3022 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003023
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003024 v++;
3025
3026 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003027 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003028 continue;
3029
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003030 k = parse_line(fn, v, l, &invalid_line);
3031 if (k < 0) {
3032 if (invalid_line)
3033 /* Allow reporting with a special code if the caller requested this */
3034 *invalid_config = true;
3035 else if (r == 0)
3036 /* The first error becomes our return value */
3037 r = k;
3038 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003039 }
3040
Michal Sekletar78a92a52013-01-18 16:13:08 +01003041 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003042 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003043 Iterator iter;
3044 Item *j, *candidate_item = NULL;
3045
3046 if (i->type != IGNORE_DIRECTORY_PATH)
3047 continue;
3048
Lennart Poetteringef43a392015-04-22 18:18:56 +02003049 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003050 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 +01003051 continue;
3052
3053 if (path_equal(j->path, i->path)) {
3054 candidate_item = j;
3055 break;
3056 }
3057
3058 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3059 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3060 candidate_item = j;
3061 }
3062
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003063 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003064 i->age = candidate_item->age;
3065 i->age_set = true;
3066 }
3067 }
3068
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003069 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003070 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003071 if (r == 0)
3072 r = -EIO;
3073 }
3074
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003075 return r;
3076}
3077
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003078static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3079 char **arg;
3080 int r;
3081
3082 STRV_FOREACH(arg, args) {
3083 r = read_config_file(config_dirs, *arg, false, invalid_config);
3084 if (r < 0)
3085 return r;
3086 }
3087
3088 return 0;
3089}
3090
3091static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3092 _cleanup_strv_free_ char **files = NULL;
3093 _cleanup_free_ char *p = NULL;
3094 char **f;
3095 int r;
3096
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003097 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003098 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003099 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003100
3101 STRV_FOREACH(f, files)
3102 if (p && path_equal(*f, p)) {
3103 log_debug("Parsing arguments at position \"%s\"…", *f);
3104
3105 r = parse_arguments(config_dirs, args, invalid_config);
3106 if (r < 0)
3107 return r;
3108 } else
3109 /* Just warn, ignore result otherwise.
3110 * read_config_file() has some debug output, so no need to print anything. */
3111 (void) read_config_file(config_dirs, *f, true, invalid_config);
3112
3113 return 0;
3114}
3115
Lennart Poettering811a1582018-10-26 20:56:37 +02003116static int link_parent(ItemArray *a) {
3117 const char *path;
3118 char *prefix;
3119 int r;
3120
3121 assert(a);
3122
Lennart Poettering09f467a2018-11-20 16:32:19 +01003123 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
Lennart Poettering811a1582018-10-26 20:56:37 +02003124 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3125 * before their children, and clean up/remove children before their parents. */
3126
3127 if (a->n_items <= 0)
3128 return 0;
3129
3130 path = a->items[0].path;
Lennart Poettering6e9417f2019-01-26 15:52:18 +01003131 prefix = newa(char, strlen(path) + 1);
Lennart Poettering811a1582018-10-26 20:56:37 +02003132 PATH_FOREACH_PREFIX(prefix, path) {
3133 ItemArray *j;
3134
3135 j = ordered_hashmap_get(items, prefix);
Lennart Poetteringbd0ce242018-11-20 16:32:23 +01003136 if (!j)
3137 j = ordered_hashmap_get(globs, prefix);
Lennart Poettering811a1582018-10-26 20:56:37 +02003138 if (j) {
3139 r = set_ensure_allocated(&j->children, NULL);
3140 if (r < 0)
3141 return log_oom();
3142
3143 r = set_put(j->children, a);
3144 if (r < 0)
3145 return log_oom();
3146
3147 a->parent = j;
3148 return 1;
3149 }
3150 }
3151
3152 return 0;
3153}
3154
Yu Watanabe87938c32018-11-26 01:00:54 +09003155DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3156 ItemArray, item_array_free);
3157
3158static int run(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003159 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003160 bool invalid_config = false;
Lennart Poettering64adb372018-10-26 21:19:36 +02003161 Iterator iterator;
3162 ItemArray *a;
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003163 enum {
3164 PHASE_REMOVE_AND_CLEAN,
3165 PHASE_CREATE,
3166 _PHASE_MAX
3167 } phase;
Yu Watanabe87938c32018-11-26 01:00:54 +09003168 int r, k;
Lennart Poettering5008d582010-09-28 02:34:02 +02003169
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003170 r = parse_argv(argc, argv);
3171 if (r <= 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003172 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003173
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003174 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003175
Lennart Poetteringe5358402019-01-18 16:34:52 +01003176 /* Descending down file system trees might take a lot of fds */
3177 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
3178
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003179 if (arg_user) {
3180 r = user_config_paths(&config_dirs);
Yu Watanabe87938c32018-11-26 01:00:54 +09003181 if (r < 0)
3182 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003183 } else {
3184 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
Yu Watanabe87938c32018-11-26 01:00:54 +09003185 if (!config_dirs)
3186 return log_oom();
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003187 }
3188
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003189 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003190 _cleanup_free_ char *t = NULL;
3191
3192 t = strv_join(config_dirs, "\n\t");
3193 if (t)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003194 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003195 }
3196
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003197 if (arg_cat_config) {
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003198 (void) pager_open(arg_pager_flags);
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003199
Yu Watanabe87938c32018-11-26 01:00:54 +09003200 return cat_config(config_dirs, argv + optind);
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003201 }
3202
3203 umask(0022);
3204
3205 mac_selinux_init();
3206
Yu Watanabe87938c32018-11-26 01:00:54 +09003207 items = ordered_hashmap_new(&item_array_hash_ops);
3208 globs = ordered_hashmap_new(&item_array_hash_ops);
3209 if (!items || !globs)
3210 return log_oom();
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003211
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003212 /* If command line arguments are specified along with --replace, read all
3213 * configuration files and insert the positional arguments at the specified
3214 * place. Otherwise, if command line arguments are specified, execute just
3215 * them, and finally, without --replace= or any positional arguments, just
3216 * read configuration and execute it.
3217 */
3218 if (arg_replace || optind >= argc)
3219 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3220 else
3221 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3222 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003223 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02003224
Lennart Poettering811a1582018-10-26 20:56:37 +02003225 /* Let's now link up all child/parent relationships */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003226 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Lennart Poettering811a1582018-10-26 20:56:37 +02003227 r = link_parent(a);
3228 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003229 return r;
Lennart Poettering811a1582018-10-26 20:56:37 +02003230 }
3231 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3232 r = link_parent(a);
3233 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003234 return r;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003235 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003236
Lennart Poettering64adb372018-10-26 21:19:36 +02003237 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3238 * operations. i.e. that we first clean out the platform we then build on. */
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003239 for (phase = 0; phase < _PHASE_MAX; phase++) {
Lennart Poettering64adb372018-10-26 21:19:36 +02003240 OperationMask op;
Lennart Poettering5008d582010-09-28 02:34:02 +02003241
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003242 if (phase == PHASE_REMOVE_AND_CLEAN)
Lennart Poettering64adb372018-10-26 21:19:36 +02003243 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003244 else if (phase == PHASE_CREATE)
Lennart Poettering64adb372018-10-26 21:19:36 +02003245 op = arg_operation & OPERATION_CREATE;
3246 else
3247 assert_not_reached("unexpected phase");
3248
3249 if (op == 0) /* Nothing requested in this phase */
3250 continue;
3251
3252 /* The non-globbing ones usually create things, hence we apply them first */
3253 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3254 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003255 if (k < 0 && r >= 0)
3256 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003257 }
3258
3259 /* The globbing ones usually alter things, hence we apply them second. */
3260 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3261 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003262 if (k < 0 && r >= 0)
3263 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003264 }
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003265 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003266
Yu Watanabe87938c32018-11-26 01:00:54 +09003267 if (ERRNO_IS_RESOURCE(-r))
3268 return r;
3269 if (invalid_config)
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003270 return EX_DATAERR;
Yu Watanabe87938c32018-11-26 01:00:54 +09003271 if (r < 0)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003272 return EX_CANTCREAT;
Yu Watanabe87938c32018-11-26 01:00:54 +09003273 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02003274}
Yu Watanabe87938c32018-11-26 01:00:54 +09003275
3276DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);