blob: 3c800d5fa8e3db79e2e11c4c2e00711a1162a3f0 [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 Poetteringa3451c22020-05-05 22:45:54 +020042#include "offline-passwd.h"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +020043#include "pager.h"
Lennart Poettering6bedfcb2015-10-26 16:18:16 +010044#include "parse-util.h"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +010045#include "path-lookup.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020046#include "path-util.h"
Zbigniew Jędrzejewski-Szmek294bf0c2018-11-20 15:42:57 +010047#include "pretty-print.h"
Lennart Poetteringe5358402019-01-18 16:34:52 +010048#include "rlimit-util.h"
Lennart Poetteringc6878632015-04-04 11:52:57 +020049#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010050#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020051#include "set.h"
Lennart Poettering760877e2019-03-13 12:14:47 +010052#include "sort-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020053#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010054#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010055#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010056#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020057#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020058#include "strv.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010059#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010060#include "user-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020061
Andreas Jaeger01000472010-09-29 10:08:24 +020062/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020063 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020064 * properly owned directories beneath /tmp, /var/tmp, /run, which are
65 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020066
Lennart Poettering1a967b62018-10-25 23:19:00 +020067typedef enum OperationMask {
68 OPERATION_CREATE = 1 << 0,
69 OPERATION_REMOVE = 1 << 1,
70 OPERATION_CLEAN = 1 << 2,
71} OperationMask;
72
Michal Schmidt66ccd032011-12-15 21:31:14 +010073typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010074 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020075 CREATE_FILE = 'f',
Zach Smitheccebf42019-10-28 09:32:16 -070076 TRUNCATE_FILE = 'F', /* deprecated: use f+ */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020077 CREATE_DIRECTORY = 'd',
78 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010079 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020080 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
81 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020082 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010083 CREATE_SYMLINK = 'L',
84 CREATE_CHAR_DEVICE = 'c',
85 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020086 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010087
88 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +020089 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -040090 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -050091 SET_XATTR = 't',
92 RECURSIVE_SET_XATTR = 'T',
93 SET_ACL = 'a',
94 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +020095 SET_ATTRIBUTE = 'h',
96 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020097 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010098 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020099 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +0100100 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +0100101 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200102 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200103 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +0100104} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200105
106typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100107 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200108
109 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100110 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100111 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200112#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500113 acl_t acl_access;
114 acl_t acl_default;
115#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200116 uid_t uid;
117 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200118 mode_t mode;
119 usec_t age;
120
Lennart Poettering468d7262012-01-17 15:04:12 +0100121 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200122 unsigned attribute_value;
123 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100124
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200125 bool uid_set:1;
126 bool gid_set:1;
127 bool mode_set:1;
128 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200129 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200130 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200131
132 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200133
Zach Smithc55ac242019-10-03 18:09:35 -0700134 bool append_or_force:1;
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200135
William Douglas6d7b5432018-09-10 12:07:29 -0700136 bool allow_failure:1;
137
Lennart Poettering811a1582018-10-26 20:56:37 +0200138 OperationMask done;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200139} Item;
140
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500141typedef struct ItemArray {
142 Item *items;
Lennart Poettering96d10d72018-10-25 13:51:01 +0200143 size_t n_items;
Lennart Poettering64768712018-10-25 13:48:25 +0200144 size_t allocated;
Lennart Poettering811a1582018-10-26 20:56:37 +0200145
146 struct ItemArray *parent;
147 Set *children;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500148} ItemArray;
149
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100150typedef enum DirectoryType {
Lennart Poettering133bbca2018-10-26 10:32:48 +0200151 DIRECTORY_RUNTIME,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100152 DIRECTORY_STATE,
153 DIRECTORY_CACHE,
154 DIRECTORY_LOGS,
155 _DIRECTORY_TYPE_MAX,
156} DirectoryType;
157
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200158static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100159static bool arg_user = false;
Lennart Poettering1a967b62018-10-25 23:19:00 +0200160static OperationMask arg_operation = 0;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500161static bool arg_boot = false;
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +0100162static PagerFlags arg_pager_flags = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200163
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200164static char **arg_include_prefixes = NULL;
165static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700166static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100167static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100168
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200169#define MAX_DEPTH 256
170
Lennart Poetteringef43a392015-04-22 18:18:56 +0200171static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200172static Set *unix_sockets = NULL;
173
Yu Watanabe87938c32018-11-26 01:00:54 +0900174STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
175STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
176STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_free_freep);
177STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
178STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
179STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
180
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100181static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret);
182static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100183
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200184static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100185 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100186 { 'b', specifier_boot_id, NULL },
187 { 'H', specifier_host_name, NULL },
Zbigniew Jędrzejewski-Szmeke97708f2020-05-07 16:16:19 +0200188 { 'l', specifier_short_host_name, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100189 { 'v', specifier_kernel_release, NULL },
Lennart Poettering268f5a52020-04-28 20:03:56 +0200190 { 'a', specifier_architecture, NULL },
191 { 'o', specifier_os_id, NULL },
192 { 'w', specifier_os_version_id, NULL },
193 { 'B', specifier_os_build_id, NULL },
194 { 'W', specifier_os_variant_id, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100195
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700196 { 'g', specifier_group_name, NULL },
197 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100198 { 'U', specifier_user_id, NULL },
199 { 'u', specifier_user_name, NULL },
200 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200201
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100202 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
203 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
204 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
205 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200206 { 'T', specifier_tmp_dir, NULL },
207 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200208 {}
209};
210
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100211static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret) {
Franck Bui4cef1922017-11-16 11:27:29 +0100212 int r;
213
Franck Buid8dab752018-01-10 23:28:44 +0100214 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
215 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100216 * gracefully. */
217
218 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100219 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100220 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100221
222 return r;
223}
224
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100225static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret) {
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100226 struct table_entry {
227 uint64_t type;
228 const char *suffix;
229 };
230
231 static const struct table_entry paths_system[] = {
232 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
233 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
234 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
235 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
236 };
237
238 static const struct table_entry paths_user[] = {
239 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
240 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
241 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
242 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
243 };
244
245 unsigned i;
246 const struct table_entry *paths;
247
248 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
249 paths = arg_user ? paths_user : paths_system;
250
251 i = PTR_TO_UINT(data);
252 assert(i < ELEMENTSOF(paths_system));
253
Zbigniew Jędrzejewski-Szmek51327bc2020-03-23 19:50:59 +0100254 return sd_path_lookup(paths[i].type, paths[i].suffix, ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100255}
256
Franck Bui4cef1922017-11-16 11:27:29 +0100257static int log_unresolvable_specifier(const char *filename, unsigned line) {
258 static bool notified = false;
259
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100260 /* In system mode, this is called when /etc is not fully initialized (e.g.
261 * in a chroot environment) where some specifiers are unresolvable. In user
262 * mode, this is called when some variables are not defined. These cases are
263 * not considered as an error so log at LOG_NOTICE only for the first time
264 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100265
Lennart Poetteringd02933f2020-04-29 00:07:06 +0200266 log_syntax(NULL,
267 notified ? LOG_DEBUG : LOG_NOTICE,
268 filename, line, 0,
269 "Failed to resolve specifier: %s, skipping",
270 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100271
272 if (!notified)
273 log_notice("All rules containing unresolvable specifiers will be skipped.");
274
275 notified = true;
276 return 0;
277}
278
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100279static int user_config_paths(char*** ret) {
280 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
281 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
282 _cleanup_strv_free_ char **res = NULL;
283 int r;
284
285 r = xdg_user_dirs(&config_dirs, &data_dirs);
286 if (r < 0)
287 return r;
288
289 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
290 if (r < 0 && r != -ENXIO)
291 return r;
292
293 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
294 if (r < 0 && r != -ENXIO)
295 return r;
296
297 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
298 if (r < 0 && r != -ENXIO)
299 return r;
300
301 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
302 if (r < 0)
303 return r;
304
305 r = strv_extend(&res, persistent_config);
306 if (r < 0)
307 return r;
308
309 r = strv_extend(&res, runtime_config);
310 if (r < 0)
311 return r;
312
313 r = strv_extend(&res, data_home);
314 if (r < 0)
315 return r;
316
317 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
318 if (r < 0)
319 return r;
320
321 r = path_strv_make_absolute_cwd(res);
322 if (r < 0)
323 return r;
324
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100325 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100326 return 0;
327}
328
Michal Schmidt66ccd032011-12-15 21:31:14 +0100329static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200330 return IN_SET(t,
331 WRITE_FILE,
332 IGNORE_PATH,
333 IGNORE_DIRECTORY_PATH,
334 REMOVE_PATH,
335 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400336 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200337 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200338 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500339 RECURSIVE_RELABEL_PATH,
340 SET_XATTR,
341 RECURSIVE_SET_XATTR,
342 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200343 RECURSIVE_SET_ACL,
344 SET_ATTRIBUTE,
345 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100346}
347
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500348static bool takes_ownership(ItemType t) {
349 return IN_SET(t,
350 CREATE_FILE,
351 TRUNCATE_FILE,
352 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400353 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500354 TRUNCATE_DIRECTORY,
355 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200356 CREATE_SUBVOLUME_INHERIT_QUOTA,
357 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500358 CREATE_FIFO,
359 CREATE_SYMLINK,
360 CREATE_CHAR_DEVICE,
361 CREATE_BLOCK_DEVICE,
362 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500363 WRITE_FILE,
364 IGNORE_PATH,
365 IGNORE_DIRECTORY_PATH,
366 REMOVE_PATH,
367 RECURSIVE_REMOVE_PATH);
368}
369
Lennart Poetteringef43a392015-04-22 18:18:56 +0200370static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500371 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100372 Iterator i;
373
Lennart Poetteringef43a392015-04-22 18:18:56 +0200374 ORDERED_HASHMAP_FOREACH(j, h, i) {
Lennart Poettering96d10d72018-10-25 13:51:01 +0200375 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500376
Lennart Poettering96d10d72018-10-25 13:51:01 +0200377 for (n = 0; n < j->n_items; n++) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500378 Item *item = j->items + n;
379
380 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
381 return item;
382 }
383 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100384
385 return NULL;
386}
387
Yu Watanabe71a0be72018-11-26 00:48:15 +0900388static int load_unix_sockets(void) {
389 _cleanup_set_free_free_ Set *sockets = NULL;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200390 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100391 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100392
393 if (unix_sockets)
Yu Watanabe71a0be72018-11-26 00:48:15 +0900394 return 0;
Lennart Poettering17b90522011-02-14 21:55:06 +0100395
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100396 /* 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 +0100397
Yu Watanabe71a0be72018-11-26 00:48:15 +0900398 sockets = set_new(&path_hash_ops);
399 if (!sockets)
400 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100401
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100402 f = fopen("/proc/net/unix", "re");
Yu Watanabe71a0be72018-11-26 00:48:15 +0900403 if (!f)
404 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
405 "Failed to open /proc/net/unix, ignoring: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100406
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100407 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100408 r = read_line(f, LONG_LINE_MAX, NULL);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900409 if (r < 0)
410 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
411 if (r == 0)
412 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
Lennart Poettering17b90522011-02-14 21:55:06 +0100413
414 for (;;) {
Yu Watanabe71a0be72018-11-26 00:48:15 +0900415 _cleanup_free_ char *line = NULL, *s = NULL;
416 char *p;
Lennart Poettering17b90522011-02-14 21:55:06 +0100417
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100418 r = read_line(f, LONG_LINE_MAX, &line);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900419 if (r < 0)
420 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100421 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100422 break;
423
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100424 p = strchr(line, ':');
425 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100426 continue;
427
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100428 if (strlen(p) < 37)
429 continue;
430
431 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100432 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100433 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100434 p += strspn(p, WHITESPACE);
435
436 if (*p != '/')
437 continue;
438
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100439 s = strdup(p);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900440 if (!s)
441 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100442
Yu Watanabe858d36c2018-05-31 23:39:31 +0900443 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100444
Yu Watanabe71a0be72018-11-26 00:48:15 +0900445 r = set_consume(sockets, s);
446 if (r == -EEXIST)
447 continue;
448 if (r < 0)
449 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
450
451 TAKE_PTR(s);
Lennart Poettering17b90522011-02-14 21:55:06 +0100452 }
453
Yu Watanabe71a0be72018-11-26 00:48:15 +0900454 unix_sockets = TAKE_PTR(sockets);
455 return 1;
Lennart Poettering17b90522011-02-14 21:55:06 +0100456}
457
458static bool unix_socket_alive(const char *fn) {
459 assert(fn);
460
Yu Watanabe71a0be72018-11-26 00:48:15 +0900461 if (load_unix_sockets() < 0)
462 return true; /* We don't know, so assume yes */
Lennart Poettering17b90522011-02-14 21:55:06 +0100463
Yu Watanabe71a0be72018-11-26 00:48:15 +0900464 return !!set_get(unix_sockets, (char*) fn);
Lennart Poettering17b90522011-02-14 21:55:06 +0100465}
466
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500467static DIR* xopendirat_nomod(int dirfd, const char *path) {
468 DIR *dir;
469
470 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700471 if (dir)
472 return dir;
473
474 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
475 if (errno != EPERM)
476 return NULL;
477
478 dir = xopendirat(dirfd, path, O_NOFOLLOW);
479 if (!dir)
480 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500481
482 return dir;
483}
484
485static DIR* opendir_nomod(const char *path) {
486 return xopendirat_nomod(AT_FDCWD, path);
487}
488
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200489static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100490 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200491 const char *p,
492 DIR *d,
493 const struct stat *ds,
494 usec_t cutoff,
495 dev_t rootdev,
496 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200497 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500498 bool keep_this_level) {
499
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200500 struct dirent *dent;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200501 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200502 int r = 0;
503
Reverend Homer8fb3f002016-12-09 12:04:30 +0300504 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200505 struct stat s;
506 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200507 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200508
Lennart Poettering49bfc872017-02-02 00:06:18 +0100509 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200510 continue;
511
512 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200513 if (errno == ENOENT)
514 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200515
Kay Sieversca2f4172013-10-17 03:20:46 +0200516 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100517 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
518 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200519 continue;
520 }
521
522 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500523 if (s.st_dev != rootdev) {
524 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200525 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500526 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200527
Kay Sievers99d680a2013-03-13 13:12:36 +0100528 /* Try to detect bind mounts of the same filesystem instance; they
529 * do not differ in device major/minors. This type of query is not
530 * supported on all kernels or filesystem types though. */
Lennart Poettering60bdc0c2019-06-18 12:42:30 +0200531 if (S_ISDIR(s.st_mode)) {
532 int q;
533
534 q = fd_is_mount_point(dirfd(d), dent->d_name, 0);
535 if (q < 0)
536 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, dent->d_name);
537 else if (q > 0) {
538 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, dent->d_name);
539 continue;
540 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500541 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100542
Lennart Poettering113ed3b2019-06-18 12:41:02 +0200543 sub_path = path_join(p, dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200544 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700545 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200546 goto finish;
547 }
548
549 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200550 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500551 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200552 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500553 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200554
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500555 if (find_glob(globs, sub_path)) {
556 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100557 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500558 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100559
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200560 if (S_ISDIR(s.st_mode)) {
Lennart Poettering52b32b22019-01-18 16:09:30 +0100561 _cleanup_closedir_ DIR *sub_dir = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200562
563 if (mountpoint &&
564 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500565 s.st_uid == 0) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100566 log_debug("Ignoring directory \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200567 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500568 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200569
570 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500571 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200572 else {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200573 int q;
574
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500575 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200576 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500577 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100578 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200579
580 continue;
581 }
582
Lennart Poettering52b32b22019-01-18 16:09:30 +0100583 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
584 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
585 continue;
586 }
587
Michal Sekletar78a92a52013-01-18 16:13:08 +0100588 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200589 if (q < 0)
590 r = q;
591 }
592
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100593 /* Note: if you are wondering why we don't support the sticky bit for excluding
594 * directories from cleaning like we do it for other file system objects: well, the
595 * sticky bit already has a meaning for directories, so we don't want to overload
596 * that. */
Lennart Poettering24f3a372012-06-20 09:05:50 +0200597
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500598 if (keep_this_level) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100599 log_debug("Keeping directory \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200600 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500601 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200602
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200603 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500604 age = timespec_load(&s.st_mtim);
605 if (age >= cutoff) {
606 char a[FORMAT_TIMESTAMP_MAX];
607 /* Follows spelling in stat(1). */
608 log_debug("Directory \"%s\": modify time %s is too new.",
609 sub_path,
610 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200611 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500612 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200613
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500614 age = timespec_load(&s.st_atim);
615 if (age >= cutoff) {
616 char a[FORMAT_TIMESTAMP_MAX];
617 log_debug("Directory \"%s\": access time %s is too new.",
618 sub_path,
619 format_timestamp_us(a, sizeof(a), age));
620 continue;
621 }
622
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500623 log_debug("Removing directory \"%s\".", sub_path);
624 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100625 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
Lennart Poettering781bc442019-01-18 16:07:45 +0100626 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200627
628 } else {
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100629 /* Skip files for which the sticky bit is set. These are semantics we define, and are
630 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500631 if (s.st_mode & S_ISVTX) {
632 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100633 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200634 }
635
Lennart Poettering20b6bb92019-06-18 12:41:31 +0200636 if (mountpoint &&
637 S_ISREG(s.st_mode) &&
638 s.st_uid == 0 &&
639 STR_IN_SET(dent->d_name,
640 ".journal",
641 "aquota.user",
642 "aquota.group")) {
643 log_debug("Skipping \"%s\".", sub_path);
644 continue;
645 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500646
Lennart Poettering17b90522011-02-14 21:55:06 +0100647 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500648 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
649 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100650 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500651 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100652
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100653 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500654 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
655 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100656 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500657 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100658
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100659 /* Keep files on this level around if this is requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500660 if (keep_this_level) {
661 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200662 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200663 }
664
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500665 age = timespec_load(&s.st_mtim);
666 if (age >= cutoff) {
667 char a[FORMAT_TIMESTAMP_MAX];
668 /* Follows spelling in stat(1). */
669 log_debug("File \"%s\": modify time %s is too new.",
670 sub_path,
671 format_timestamp_us(a, sizeof(a), age));
672 continue;
673 }
674
675 age = timespec_load(&s.st_atim);
676 if (age >= cutoff) {
677 char a[FORMAT_TIMESTAMP_MAX];
678 log_debug("File \"%s\": access time %s is too new.",
679 sub_path,
680 format_timestamp_us(a, sizeof(a), age));
681 continue;
682 }
683
684 age = timespec_load(&s.st_ctim);
685 if (age >= cutoff) {
686 char a[FORMAT_TIMESTAMP_MAX];
687 log_debug("File \"%s\": change time %s is too new.",
688 sub_path,
689 format_timestamp_us(a, sizeof(a), age));
690 continue;
691 }
692
Lennart Poettering781bc442019-01-18 16:07:45 +0100693 log_debug("Removing \"%s\".", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500694 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
695 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100696 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500697
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200698 deleted = true;
699 }
700 }
701
702finish:
703 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500704 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
Lennart Poettering76e15a92019-01-18 15:51:13 +0100705 usec_t age1, age2;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200706
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500707 age1 = timespec_load(&ds->st_atim);
708 age2 = timespec_load(&ds->st_mtim);
Lennart Poettering76e15a92019-01-18 15:51:13 +0100709
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500710 log_debug("Restoring access and modification time on \"%s\": %s, %s",
711 p,
712 format_timestamp_us(a, sizeof(a), age1),
713 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering76e15a92019-01-18 15:51:13 +0100714
715 /* Restore original directory timestamps */
716 if (futimens(dirfd(d), (struct timespec[]) {
717 ds->st_atim,
718 ds->st_mtim }) < 0)
719 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200720 }
721
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200722 return r;
723}
724
Lennart Poettering5579f852018-01-23 14:03:34 +0100725static bool dangerous_hardlinks(void) {
726 _cleanup_free_ char *value = NULL;
727 static int cached = -1;
728 int r;
729
730 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
731 * what the upstream default is. */
732
733 if (cached >= 0)
734 return cached;
735
736 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
737 if (r < 0) {
738 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
739 return true;
740 }
741
742 r = parse_boolean(value);
743 if (r < 0) {
744 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
745 return true;
746 }
747
748 cached = r == 0;
749 return cached;
750}
751
Franck Bui774f79b2018-03-02 16:13:07 +0100752static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100753 assert(st);
754
755 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
756}
757
Lennart Poettering8b364a32019-04-29 13:21:40 +0200758static mode_t process_mask_perms(mode_t mode, mode_t current) {
759
760 if ((current & 0111) == 0)
761 mode &= ~0111;
762 if ((current & 0222) == 0)
763 mode &= ~0222;
764 if ((current & 0444) == 0)
765 mode &= ~0444;
766 if (!S_ISDIR(current))
767 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
768
769 return mode;
770}
771
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200772static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200773 struct stat stbuf;
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200774 mode_t new_mode;
775 bool do_chown;
Franck Bui936f6bd2018-03-02 17:19:32 +0100776
777 assert(i);
778 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200779 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100780
781 if (!i->mode_set && !i->uid_set && !i->gid_set)
782 goto shortcut;
783
Franck Buib206ac82018-04-13 11:39:39 +0200784 if (!st) {
785 if (fstat(fd, &stbuf) < 0)
786 return log_error_errno(errno, "fstat(%s) failed: %m", path);
787 st = &stbuf;
788 }
789
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100790 if (hardlink_vulnerable(st))
791 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
792 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
793 path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100794
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200795 /* Do we need a chown()? */
796 do_chown =
797 (i->uid_set && i->uid != st->st_uid) ||
798 (i->gid_set && i->gid != st->st_gid);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200799
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200800 /* Calculate the mode to apply */
801 new_mode = i->mode_set ? (i->mask_perms ?
802 process_mask_perms(i->mode, st->st_mode) :
803 i->mode) :
804 (st->st_mode & 07777);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200805
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200806 if (i->mode_set && do_chown) {
807 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
808 * the new mode. That way there's no time window where the file exists under the old owner
809 * with more than the old access modes — and not under the new owner with more than the new
810 * access modes either. */
811
Franck Bui936f6bd2018-03-02 17:19:32 +0100812 if (S_ISLNK(st->st_mode))
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200813 log_debug("Skipping temporary mode fix for symlink %s.", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100814 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200815 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
Franck Bui936f6bd2018-03-02 17:19:32 +0100816
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200817 if (((m ^ st->st_mode) & 07777) == 0)
818 log_debug("\"%s\" matches temporary mode %o already.", path, m);
Franck Bui936f6bd2018-03-02 17:19:32 +0100819 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200820 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200821 if (fchmod_opath(fd, m) < 0)
822 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100823 }
824 }
825 }
826
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200827 if (do_chown) {
Franck Bui936f6bd2018-03-02 17:19:32 +0100828 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
829 path,
830 i->uid_set ? i->uid : UID_INVALID,
831 i->gid_set ? i->gid : GID_INVALID);
832
833 if (fchownat(fd,
834 "",
835 i->uid_set ? i->uid : UID_INVALID,
836 i->gid_set ? i->gid : GID_INVALID,
837 AT_EMPTY_PATH) < 0)
838 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
839 }
840
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200841 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
842 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
843 if (i->mode_set || do_chown) {
844 if (S_ISLNK(st->st_mode))
845 log_debug("Skipping mode fix for symlink %s.", path);
846 else {
847 /* Check if the chmod() is unnecessary. Note that if we did a chown() before we always
848 * chmod() here again, since it might have mangled the bits. */
849 if (!do_chown && ((new_mode ^ st->st_mode) & 07777) == 0)
850 log_debug("\"%s\" matches mode %o already.", path, new_mode);
851 else {
852 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
853 if (fchmod_opath(fd, new_mode) < 0)
854 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
855 }
856 }
857 }
858
Franck Bui936f6bd2018-03-02 17:19:32 +0100859shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200860 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100861}
862
Franck Bui5ec9d062018-04-13 17:31:22 +0200863static int path_open_parent_safe(const char *path) {
864 _cleanup_free_ char *dn = NULL;
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200865 int r, fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200866
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100867 if (path_equal(path, "/") || !path_is_normalized(path))
868 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
869 "Failed to open parent of '%s': invalid path.",
870 path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200871
872 dn = dirname_malloc(path);
873 if (!dn)
874 return log_oom();
875
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200876 r = chase_symlinks(dn, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
877 if (r < 0 && r != -ENOLINK)
878 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200879
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200880 return r < 0 ? r : fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200881}
882
Franck Buiaddc3e32018-03-20 08:58:48 +0100883static int path_open_safe(const char *path) {
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200884 int r, fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100885
886 /* path_open_safe() returns a file descriptor opened with O_PATH after
887 * verifying that the path doesn't contain unsafe transitions, except
888 * for its final component as the function does not follow symlink. */
889
890 assert(path);
891
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100892 if (!path_is_normalized(path))
893 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
894 "Failed to open invalid path '%s'.",
895 path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100896
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200897 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
898 if (r < 0 && r != -ENOLINK)
899 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100900
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200901 return r < 0 ? r : fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100902}
903
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500904static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200905 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200906
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200907 assert(i);
908 assert(path);
909
Franck Buiaddc3e32018-03-20 08:58:48 +0100910 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200911 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100912 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200913
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200914 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100915}
916
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200917static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100918 const char *p;
919 int r;
920
921 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500922 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100923
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100924 p = i->argument;
925
Lennart Poettering4034a062015-03-23 18:55:36 +0700926 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100927 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700928
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +0200929 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700930 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200931 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700932 if (r <= 0)
933 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500934
Franck Bui4cef1922017-11-16 11:27:29 +0100935 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100936 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700937 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100938 continue;
939 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500940
Lennart Poettering4034a062015-03-23 18:55:36 +0700941 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200942 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100943 continue;
944 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500945
Lennart Poettering4034a062015-03-23 18:55:36 +0700946 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100947 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500948
Lennart Poettering4034a062015-03-23 18:55:36 +0700949 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100950 }
951
Lennart Poettering4034a062015-03-23 18:55:36 +0700952 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100953}
954
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200955static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100956 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100957 char **name, **value;
958
959 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100960 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200961 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100962
963 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100964
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100965 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200966 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100967 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400968 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
969 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100970 }
971 return 0;
972}
973
Franck Bui936f6bd2018-03-02 17:19:32 +0100974static int path_set_xattrs(Item *i, const char *path) {
975 _cleanup_close_ int fd = -1;
976
977 assert(i);
978 assert(path);
979
Franck Buiaddc3e32018-03-20 08:58:48 +0100980 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100981 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100982 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100983
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200984 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100985}
986
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200987static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200988#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500989 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500990
991 assert(item);
992
Zach Smithc55ac242019-10-03 18:09:35 -0700993 /* If append_or_force (= modify) is set, we will not modify the acl
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500994 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200995
Zach Smithc55ac242019-10-03 18:09:35 -0700996 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500997 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700998 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500999#else
Zbigniew Jędrzejewski-Szmek886cf312018-11-21 08:23:20 +01001000 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001001#endif
1002
1003 return 0;
1004}
1005
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001006#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001007static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
1008 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001009 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001010 int r;
1011
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001012 /* Returns 0 for success, positive error if already warned,
1013 * negative error otherwise. */
1014
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001015 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001016 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001017 if (r < 0)
1018 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001019
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001020 r = calc_acl_mask_if_needed(&dup);
1021 if (r < 0)
1022 return r;
1023 } else {
1024 dup = acl_dup(acl);
1025 if (!dup)
1026 return -errno;
1027
1028 /* the mask was already added earlier if needed */
1029 }
1030
1031 r = add_base_acls_if_needed(&dup, path);
1032 if (r < 0)
1033 return r;
1034
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001035 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001036 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001037 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001038 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001039
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001040 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001041 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001042 /* Return positive to indicate we already warned */
1043 return -log_error_errno(errno,
1044 "Setting %s ACL \"%s\" on %s failed: %m",
1045 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001046 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001047
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001048 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001049}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001050#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001051
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001052static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001053 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001054#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001055 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001056 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001057
1058 assert(item);
1059 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001060 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001061
Franck Buib206ac82018-04-13 11:39:39 +02001062 if (!st) {
1063 if (fstat(fd, &stbuf) < 0)
1064 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1065 st = &stbuf;
1066 }
1067
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001068 if (hardlink_vulnerable(st))
1069 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1070 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1071 path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001072
1073 if (S_ISLNK(st->st_mode)) {
1074 log_debug("Skipping ACL fix for symlink %s.", path);
1075 return 0;
1076 }
1077
1078 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1079
1080 if (item->acl_access)
Zach Smithc55ac242019-10-03 18:09:35 -07001081 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001082
remueller26673852018-07-16 16:56:01 +02001083 /* set only default acls to folders */
1084 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Zach Smithc55ac242019-10-03 18:09:35 -07001085 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001086
1087 if (r > 0)
1088 return -r; /* already warned */
Lennart Poetteringf8606622020-04-23 14:52:10 +02001089
1090 /* The above procfs paths don't work if /proc is not mounted. */
1091 if (r == -ENOENT && proc_mounted() == 0)
1092 r = -ENOSYS;
1093
Franck Bui936f6bd2018-03-02 17:19:32 +01001094 if (r == -EOPNOTSUPP) {
1095 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1096 return 0;
1097 }
1098 if (r < 0)
1099 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1100#endif
1101 return r;
1102}
1103
1104static int path_set_acls(Item *item, const char *path) {
1105 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001106#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001107 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001108
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001109 assert(item);
1110 assert(path);
1111
Franck Buiaddc3e32018-03-20 08:58:48 +01001112 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001113 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001114 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001115
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001116 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001117#endif
1118 return r;
1119}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001120
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001121static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001122
1123 static const struct {
1124 char character;
1125 unsigned value;
1126 } attributes[] = {
1127 { 'A', FS_NOATIME_FL }, /* do not update atime */
1128 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1129 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1130 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1131 { 'c', FS_COMPR_FL }, /* Compress file */
1132 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001133 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001134 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1135 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1136 { 's', FS_SECRM_FL }, /* Secure deletion */
1137 { 'u', FS_UNRM_FL }, /* Undelete */
1138 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001139 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001140 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Lennart Poettering75006472019-03-28 18:35:03 +01001141 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001142 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001143
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001144 enum {
1145 MODE_ADD,
1146 MODE_DEL,
1147 MODE_SET
1148 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001149
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001150 unsigned value = 0, mask = 0;
1151 const char *p;
1152
1153 assert(item);
1154
1155 p = item->argument;
1156 if (p) {
1157 if (*p == '+') {
1158 mode = MODE_ADD;
1159 p++;
1160 } else if (*p == '-') {
1161 mode = MODE_DEL;
1162 p++;
1163 } else if (*p == '=') {
1164 mode = MODE_SET;
1165 p++;
1166 }
1167 }
1168
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001169 if (isempty(p) && mode != MODE_SET)
1170 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1171 "Setting file attribute on '%s' needs an attribute specification.",
1172 item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001173
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001174 for (; p && *p ; p++) {
1175 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001176
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001177 for (i = 0; i < ELEMENTSOF(attributes); i++)
1178 if (*p == attributes[i].character)
1179 break;
1180
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001181 if (i >= ELEMENTSOF(attributes))
1182 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1183 "Unknown file attribute '%c' on '%s'.",
1184 *p, item->path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001185
1186 v = attributes[i].value;
1187
Andreas Rammhold37420952017-09-29 00:37:23 +02001188 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001189
1190 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001191 }
1192
1193 if (mode == MODE_SET)
Lennart Poetteringd629ba72019-03-28 18:41:39 +01001194 mask |= CHATTR_ALL_FL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001195
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001196 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001197
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001198 item->attribute_mask = mask;
1199 item->attribute_value = value;
1200 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001201
1202 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001203}
1204
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001205static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001206 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001207 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001208 unsigned f;
1209 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001210
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001211 assert(item);
1212 assert(fd);
1213 assert(path);
1214
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001215 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001216 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001217
Franck Buib206ac82018-04-13 11:39:39 +02001218 if (!st) {
1219 if (fstat(fd, &stbuf) < 0)
1220 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1221 st = &stbuf;
1222 }
1223
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001224 /* Issuing the file attribute ioctls on device nodes is not
1225 * safe, as that will be delivered to the drivers, not the
1226 * file system containing the device node. */
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001227 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1228 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1229 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1230 path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001231
1232 f = item->attribute_value & item->attribute_mask;
1233
1234 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001235 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001236 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001237
Lennart Poetteringf2324782018-03-26 13:25:51 +02001238 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001239 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001240 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001241
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001242 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001243 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001244 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001245 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001246 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001247 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001248
1249 return 0;
1250}
1251
Franck Bui936f6bd2018-03-02 17:19:32 +01001252static int path_set_attribute(Item *item, const char *path) {
1253 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001254
1255 if (!item->attribute_set || item->attribute_mask == 0)
1256 return 0;
1257
Franck Buiaddc3e32018-03-20 08:58:48 +01001258 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001259 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001260 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001261
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001262 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001263}
1264
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001265static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001266 _cleanup_close_ int fd = -1, dir_fd = -1;
1267 char *bn;
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001268 int r;
Franck Bui31c84ff2018-04-13 09:19:24 +02001269
1270 assert(i);
1271 assert(path);
1272 assert(i->argument);
1273 assert(i->type == WRITE_FILE);
1274
Franck Bui551470e2018-04-13 17:54:09 +02001275 /* Validate the path and keep the fd on the directory for opening the
1276 * file so we're sure that it can't be changed behind our back. */
1277 dir_fd = path_open_parent_safe(path);
1278 if (dir_fd < 0)
1279 return dir_fd;
1280
1281 bn = basename(path);
1282
Franck Bui31c84ff2018-04-13 09:19:24 +02001283 /* Follows symlinks */
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001284 fd = openat(dir_fd, bn,
1285 O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY|(i->append_or_force ? O_APPEND : 0),
1286 i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001287 if (fd < 0) {
1288 if (errno == ENOENT) {
1289 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1290 return 0;
1291 }
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001292
1293 if (i->allow_failure)
1294 return log_debug_errno(errno, "Failed to open file \"%s\", ignoring: %m", path);
1295
Franck Bui31c84ff2018-04-13 09:19:24 +02001296 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1297 }
1298
1299 /* 'w' is allowed to write into any kind of files. */
1300 log_debug("Writing to \"%s\".", path);
1301
1302 r = loop_write(fd, i->argument, strlen(i->argument), false);
1303 if (r < 0)
1304 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1305
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001306 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001307}
1308
1309static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001310 _cleanup_close_ int fd = -1, dir_fd = -1;
1311 struct stat stbuf, *st = NULL;
1312 int r = 0;
1313 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001314
Lennart Poettering874f1942014-06-10 22:48:56 +02001315 assert(i);
1316 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001317 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001318
Franck Bui5ec9d062018-04-13 17:31:22 +02001319 /* 'f' operates on regular files exclusively. */
1320
1321 /* Validate the path and keep the fd on the directory for opening the
1322 * file so we're sure that it can't be changed behind our back. */
1323 dir_fd = path_open_parent_safe(path);
1324 if (dir_fd < 0)
1325 return dir_fd;
1326
1327 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001328
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001329 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001330 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001331 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 +02001332 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001333 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001334
1335 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001336 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1337 * file already exists. It returns EROFS only if it needs to
1338 * create the file. */
1339 if (errno != EEXIST)
1340 return log_error_errno(errno, "Failed to create file %s: %m", path);
1341
1342 /* Re-open the file. At that point it must exist since open(2)
1343 * failed with EEXIST. We still need to check if the perms/mode
1344 * need to be changed. For read-only filesystems, we let
1345 * fd_set_perms() report the error if the perms need to be
1346 * modified. */
1347 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1348 if (fd < 0)
1349 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1350
1351 if (fstat(fd, &stbuf) < 0)
1352 return log_error_errno(errno, "stat(%s) failed: %m", path);
1353
1354 if (!S_ISREG(stbuf.st_mode)) {
1355 log_error("%s exists and is not a regular file.", path);
1356 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001357 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001358
Franck Bui5ec9d062018-04-13 17:31:22 +02001359 st = &stbuf;
1360 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001361
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001362 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001363
Franck Bui5ec9d062018-04-13 17:31:22 +02001364 if (i->argument) {
1365 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001366
Franck Bui5ec9d062018-04-13 17:31:22 +02001367 r = loop_write(fd, i->argument, strlen(i->argument), false);
1368 if (r < 0)
1369 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1370 }
1371 }
1372
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001373 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001374}
1375
1376static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001377 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001378 struct stat stbuf, *st = NULL;
1379 bool erofs = false;
1380 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001381 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001382
1383 assert(i);
1384 assert(path);
Zach Smitheccebf42019-10-28 09:32:16 -07001385 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
Franck Bui5ec9d062018-04-13 17:31:22 +02001386
1387 /* We want to operate on regular file exclusively especially since
1388 * O_TRUNC is unspecified if the file is neither a regular file nor a
1389 * fifo nor a terminal device. Therefore we first open the file and make
1390 * sure it's a regular one before truncating it. */
1391
Franck Bui14ab8042018-04-13 17:50:49 +02001392 /* Validate the path and keep the fd on the directory for opening the
1393 * file so we're sure that it can't be changed behind our back. */
1394 dir_fd = path_open_parent_safe(path);
1395 if (dir_fd < 0)
1396 return dir_fd;
1397
1398 bn = basename(path);
1399
Franck Bui5ec9d062018-04-13 17:31:22 +02001400 RUN_WITH_UMASK(0000) {
1401 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001402 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 +02001403 mac_selinux_create_file_clear();
1404 }
1405
1406 if (fd < 0) {
1407 if (errno != EROFS)
1408 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1409
1410 /* On a read-only filesystem, we don't want to fail if the
1411 * target is already empty and the perms are set. So we still
1412 * proceed with the sanity checks and let the remaining
1413 * operations fail with EROFS if they try to modify the target
1414 * file. */
1415
Franck Bui14ab8042018-04-13 17:50:49 +02001416 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001417 if (fd < 0) {
1418 if (errno == ENOENT) {
1419 log_error("Cannot create file %s on a read-only file system.", path);
1420 return -EROFS;
1421 }
1422
1423 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1424 }
1425
1426 erofs = true;
1427 }
1428
1429 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001430 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001431
Franck Bui5ec9d062018-04-13 17:31:22 +02001432 if (!S_ISREG(stbuf.st_mode)) {
1433 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001434 return -EEXIST;
1435 }
1436
Franck Bui5ec9d062018-04-13 17:31:22 +02001437 if (stbuf.st_size > 0) {
1438 if (ftruncate(fd, 0) < 0) {
1439 r = erofs ? -EROFS : -errno;
1440 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1441 }
1442 } else
1443 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001444
Franck Bui5ec9d062018-04-13 17:31:22 +02001445 log_debug("\"%s\" has been created.", path);
1446
1447 if (i->argument) {
1448 log_debug("Writing to \"%s\".", path);
1449
1450 r = loop_write(fd, i->argument, strlen(i->argument), false);
1451 if (r < 0) {
1452 r = erofs ? -EROFS : r;
1453 return log_error_errno(r, "Failed to write file %s: %m", path);
1454 }
1455 }
1456
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001457 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001458}
1459
Franck Buib1f7b172018-04-12 12:19:22 +02001460static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001461 _cleanup_close_ int dfd = -1, fd = -1;
1462 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001463 int r;
1464
1465 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1466
Franck Bui16ba55a2018-04-12 12:55:22 +02001467 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001468
Franck Bui16ba55a2018-04-12 12:55:22 +02001469 /* Validate the path and use the returned directory fd for copying the
1470 * target so we're sure that the path can't be changed behind our
1471 * back. */
1472 dfd = path_open_parent_safe(i->path);
1473 if (dfd < 0)
1474 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001475
Franck Bui16ba55a2018-04-12 12:55:22 +02001476 r = copy_tree_at(AT_FDCWD, i->argument,
1477 dfd, bn,
1478 i->uid_set ? i->uid : UID_INVALID,
1479 i->gid_set ? i->gid : GID_INVALID,
Christian Göttsche80e7c842019-11-28 12:18:04 +01001480 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE);
Franck Buib1f7b172018-04-12 12:19:22 +02001481 if (r < 0) {
1482 struct stat a, b;
1483
Franck Bui16ba55a2018-04-12 12:55:22 +02001484 /* If the target already exists on read-only filesystems, trying
1485 * to create the target will not fail with EEXIST but with
1486 * EROFS. */
1487 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1488 r = -EEXIST;
1489
Franck Buib1f7b172018-04-12 12:19:22 +02001490 if (r != -EEXIST)
1491 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1492
1493 if (stat(i->argument, &a) < 0)
1494 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1495
Franck Bui16ba55a2018-04-12 12:55:22 +02001496 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001497 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1498
1499 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1500 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1501 return 0;
1502 }
1503 }
1504
Franck Bui16ba55a2018-04-12 12:55:22 +02001505 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1506 if (fd < 0)
1507 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1508
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001509 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001510}
1511
Franck Bui074bd732018-04-12 18:10:57 +02001512typedef enum {
1513 CREATION_NORMAL,
1514 CREATION_EXISTING,
1515 CREATION_FORCE,
1516 _CREATION_MODE_MAX,
1517 _CREATION_MODE_INVALID = -1
1518} CreationMode;
1519
Lennart Poetteringb82f71c2019-03-22 19:19:32 +01001520static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
Franck Bui074bd732018-04-12 18:10:57 +02001521 [CREATION_NORMAL] = "Created",
1522 [CREATION_EXISTING] = "Found existing",
1523 [CREATION_FORCE] = "Created replacement",
1524};
1525
1526DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1527
Franck Buif17a8d62018-08-06 12:29:54 +02001528static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001529 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001530 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001531 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001532
Franck Bui4c39d892018-04-27 11:51:14 +02001533 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001534
Franck Buif17a8d62018-08-06 12:29:54 +02001535 if (!creation)
1536 creation = &c;
1537
Franck Bui4c39d892018-04-27 11:51:14 +02001538 pfd = path_open_parent_safe(path);
1539 if (pfd < 0)
1540 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001541
Franck Bui4c39d892018-04-27 11:51:14 +02001542 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001543 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1544
1545 /* Don't create a subvolume unless the root directory is
1546 * one, too. We do this under the assumption that if the
1547 * root directory is just a plain directory (i.e. very
1548 * light-weight), we shouldn't try to split it up into
1549 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1550 * environments and suchlike will get a full brtfs
1551 * subvolume set up below their tree only if they
1552 * specifically set up a btrfs subvolume for the root
1553 * dir too. */
1554
Franck Bui4c39d892018-04-27 11:51:14 +02001555 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001556 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001557 RUN_WITH_UMASK((~mode) & 0777)
1558 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001559 }
1560 } else
1561 r = 0;
1562
Franck Bui4c39d892018-04-27 11:51:14 +02001563 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001564 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001565 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001566
1567 if (r < 0) {
1568 int k;
1569
1570 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001571 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001572
Franck Bui4c39d892018-04-27 11:51:14 +02001573 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001574 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001575 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 +02001576 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001577 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001578 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001579 log_warning("\"%s\" already exists and is not a directory.", path);
1580 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001581 }
1582
Franck Buif17a8d62018-08-06 12:29:54 +02001583 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001584 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001585 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001586
Franck Buif17a8d62018-08-06 12:29:54 +02001587 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001588
1589 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1590 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001591 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1592
Franck Bui4c39d892018-04-27 11:51:14 +02001593 return r;
1594}
1595
1596static int create_directory(Item *i, const char *path) {
1597 _cleanup_close_ int fd = -1;
1598
1599 assert(i);
1600 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1601
Franck Buif17a8d62018-08-06 12:29:54 +02001602 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001603 if (fd == -EEXIST)
1604 return 0;
1605 if (fd < 0)
1606 return fd;
1607
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001608 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001609}
1610
1611static int create_subvolume(Item *i, const char *path) {
1612 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001613 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001614 int r, q = 0;
1615
1616 assert(i);
1617 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1618
Franck Buif17a8d62018-08-06 12:29:54 +02001619 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001620 if (fd == -EEXIST)
1621 return 0;
1622 if (fd < 0)
1623 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001624
Franck Buif17a8d62018-08-06 12:29:54 +02001625 if (creation == CREATION_NORMAL &&
1626 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001627 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001628 if (r == -ENOTTY)
1629 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1630 else if (r == -EROFS)
1631 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
Lennart Poettering4b019d22020-05-26 12:52:57 +02001632 else if (r == -ENOTCONN)
Franck Bui4ad36842018-04-26 14:54:20 +02001633 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1634 else if (r < 0)
1635 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1636 else if (r > 0)
1637 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1638 else if (r == 0)
1639 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1640 }
1641
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001642 r = fd_set_perms(i, fd, path, NULL);
1643 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001644 return q;
1645
1646 return r;
1647}
1648
Franck Bui54946022018-04-26 15:45:17 +02001649static int empty_directory(Item *i, const char *path) {
1650 int r;
1651
1652 assert(i);
1653 assert(i->type == EMPTY_DIRECTORY);
1654
1655 r = is_dir(path, false);
1656 if (r == -ENOENT) {
1657 /* Option "e" operates only on existing objects. Do not
1658 * print errors about non-existent files or directories */
1659 log_debug("Skipping missing directory: %s", path);
1660 return 0;
1661 }
1662 if (r < 0)
1663 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001664 if (r == 0)
1665 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1666 "'%s' already exists and is not a directory.",
1667 path);
Franck Bui54946022018-04-26 15:45:17 +02001668
1669 return path_set_perms(i, path);
1670}
1671
Franck Bui074bd732018-04-12 18:10:57 +02001672static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001673 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001674 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001675 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001676 int r;
1677
1678 assert(i);
1679 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1680
Franck Buic7700a72018-04-12 18:33:54 +02001681 bn = basename(i->path);
1682
1683 /* Validate the path and use the returned directory fd for copying the
1684 * target so we're sure that the path can't be changed behind our
1685 * back. */
1686 dfd = path_open_parent_safe(i->path);
1687 if (dfd < 0)
1688 return dfd;
1689
Franck Bui074bd732018-04-12 18:10:57 +02001690 RUN_WITH_UMASK(0000) {
1691 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001692 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001693 mac_selinux_create_file_clear();
1694 }
1695
1696 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001697 struct stat st;
1698
Franck Bui074bd732018-04-12 18:10:57 +02001699 if (errno == EPERM) {
1700 log_debug("We lack permissions, possibly because of cgroup configuration; "
1701 "skipping creation of device node %s.", i->path);
1702 return 0;
1703 }
1704
1705 if (errno != EEXIST)
1706 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1707
Franck Buic7700a72018-04-12 18:33:54 +02001708 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001709 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1710
1711 if ((st.st_mode & S_IFMT) != file_type) {
1712
Zach Smithc55ac242019-10-03 18:09:35 -07001713 if (i->append_or_force) {
Franck Bui074bd732018-04-12 18:10:57 +02001714
1715 RUN_WITH_UMASK(0000) {
1716 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001717 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001718 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1719 mac_selinux_create_file_clear();
1720 }
1721
1722 if (r < 0)
1723 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1724 creation = CREATION_FORCE;
1725 } else {
1726 log_debug("%s is not a device node.", i->path);
1727 return 0;
1728 }
1729 } else
1730 creation = CREATION_EXISTING;
1731 } else
1732 creation = CREATION_NORMAL;
1733
1734 log_debug("%s %s device node \"%s\" %u:%u.",
1735 creation_mode_verb_to_string(creation),
1736 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1737 i->path, major(i->mode), minor(i->mode));
1738
Franck Buic7700a72018-04-12 18:33:54 +02001739 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1740 if (fd < 0)
1741 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1742
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001743 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001744}
1745
Franck Buia2fc2f82018-04-27 18:11:26 +02001746static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001747 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001748 CreationMode creation;
1749 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001750 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001751 int r;
1752
Franck Bui7ea5a872018-04-27 18:17:32 +02001753 pfd = path_open_parent_safe(path);
1754 if (pfd < 0)
1755 return pfd;
1756
1757 bn = basename(path);
1758
Franck Buia2fc2f82018-04-27 18:11:26 +02001759 RUN_WITH_UMASK(0000) {
1760 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001761 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001762 mac_selinux_create_file_clear();
1763 }
1764
1765 if (r < 0) {
1766 if (errno != EEXIST)
1767 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1768
Franck Bui7ea5a872018-04-27 18:17:32 +02001769 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001770 return log_error_errno(errno, "stat(%s) failed: %m", path);
1771
1772 if (!S_ISFIFO(st.st_mode)) {
1773
Zach Smithc55ac242019-10-03 18:09:35 -07001774 if (i->append_or_force) {
Franck Buia2fc2f82018-04-27 18:11:26 +02001775 RUN_WITH_UMASK(0000) {
1776 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001777 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001778 mac_selinux_create_file_clear();
1779 }
1780
1781 if (r < 0)
1782 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1783 creation = CREATION_FORCE;
1784 } else {
1785 log_warning("\"%s\" already exists and is not a fifo.", path);
1786 return 0;
1787 }
1788 } else
1789 creation = CREATION_EXISTING;
1790 } else
1791 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001792
Franck Buia2fc2f82018-04-27 18:11:26 +02001793 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1794
Franck Bui7ea5a872018-04-27 18:17:32 +02001795 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1796 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001797 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001798
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001799 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001800}
1801
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001802typedef int (*action_t)(Item *i, const char *path);
1803typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001804
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001805static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001806 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001807 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001808
1809 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001810 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001811 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001812
1813 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001814 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001815 goto finish;
1816 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001817
1818 /* This returns the first error we run into, but nevertheless
1819 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001820 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001821
Franck Bui14f34802018-05-24 14:17:07 +02001822 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001823 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001824 _cleanup_closedir_ DIR *d = NULL;
1825 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001826
Franck Bui936f6bd2018-03-02 17:19:32 +01001827 /* The passed 'fd' was opened with O_PATH. We need to convert
1828 * it into a 'regular' fd before reading the directory content. */
1829 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001830
Franck Bui936f6bd2018-03-02 17:19:32 +01001831 d = opendir(procfs_path);
1832 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001833 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1834 if (r == 0)
1835 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001836 goto finish;
1837 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001838
Franck Bui936f6bd2018-03-02 17:19:32 +01001839 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001840 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001841
Franck Bui936f6bd2018-03-02 17:19:32 +01001842 if (dot_or_dot_dot(de->d_name))
1843 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001844
Franck Bui936f6bd2018-03-02 17:19:32 +01001845 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001846 if (de_fd < 0)
1847 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001848 else {
1849 _cleanup_free_ char *de_path = NULL;
1850
Zbigniew Jędrzejewski-Szmek62a85ee2018-11-30 10:43:57 +01001851 de_path = path_join(path, de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001852 if (!de_path)
1853 q = log_oom();
1854 else
1855 /* Pass ownership of dirent fd over */
1856 q = item_do(i, de_fd, de_path, action);
1857 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001858
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001859 if (q < 0 && r == 0)
1860 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001861 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001862 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001863finish:
1864 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001865 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001866}
1867
Franck Bui936f6bd2018-03-02 17:19:32 +01001868static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001869 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001870 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001871 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001872 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001873 char **fn;
1874
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001875 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1876 if (k < 0 && k != -ENOENT)
1877 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001878
1879 STRV_FOREACH(fn, g.gl_pathv) {
1880 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001881 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001882 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001883 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001884
Franck Bui936f6bd2018-03-02 17:19:32 +01001885 return r;
1886}
1887
1888static int glob_item_recursively(Item *i, fdaction_t action) {
1889 _cleanup_globfree_ glob_t g = {
1890 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1891 };
1892 int r = 0, k;
1893 char **fn;
1894
1895 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1896 if (k < 0 && k != -ENOENT)
1897 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1898
1899 STRV_FOREACH(fn, g.gl_pathv) {
1900 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001901
1902 /* Make sure we won't trigger/follow file object (such as
1903 * device nodes, automounts, ...) pointed out by 'fn' with
1904 * O_PATH. Note, when O_PATH is used, flags other than
1905 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1906
1907 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1908 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001909 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1910 if (r == 0)
1911 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001912 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001913 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001914
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001915 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001916 if (k < 0 && r == 0)
1917 r = k;
1918
1919 /* we passed fd ownership to the previous call */
1920 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001921 }
1922
Michal Schmidt99e68c02011-12-15 23:45:26 +01001923 return r;
1924}
1925
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001926static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001927 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001928 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001929
1930 assert(i);
1931
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001932 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1933
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001934 switch (i->type) {
1935
1936 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001937 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001938 case REMOVE_PATH:
1939 case RECURSIVE_REMOVE_PATH:
1940 return 0;
1941
Zach Smitheccebf42019-10-28 09:32:16 -07001942 case TRUNCATE_FILE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001943 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001944 RUN_WITH_UMASK(0000)
1945 (void) mkdir_parents_label(i->path, 0755);
1946
Zach Smitheccebf42019-10-28 09:32:16 -07001947 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
1948 r = truncate_file(i, i->path);
1949 else
1950 r = create_file(i, i->path);
Lennart Poettering265ffa12013-09-17 16:33:30 -05001951
Franck Bui5ec9d062018-04-13 17:31:22 +02001952 if (r < 0)
1953 return r;
1954 break;
1955
Franck Bui7b887f22018-04-12 12:18:19 +02001956 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001957 RUN_WITH_UMASK(0000)
1958 (void) mkdir_parents_label(i->path, 0755);
1959
Franck Buib1f7b172018-04-12 12:19:22 +02001960 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001961 if (r < 0)
1962 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001963 break;
1964
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001965 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001966 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001967 if (r < 0)
1968 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001969
1970 break;
1971
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001972 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001973 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001974 RUN_WITH_UMASK(0000)
1975 (void) mkdir_parents_label(i->path, 0755);
1976
1977 r = create_directory(i, i->path);
1978 if (r < 0)
1979 return r;
1980 break;
1981
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001982 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001983 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1984 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001985 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001986 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001987
Franck Bui4c39d892018-04-27 11:51:14 +02001988 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001989 if (r < 0)
1990 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001991 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001992
Franck Bui4ad36842018-04-26 14:54:20 +02001993 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001994 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001995 if (r < 0)
1996 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001997 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001998
1999 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02002000 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01002001 (void) mkdir_parents_label(i->path, 0755);
2002
Franck Buia2fc2f82018-04-27 18:11:26 +02002003 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002004 if (r < 0)
2005 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02002006 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01002007
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002008 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01002009 RUN_WITH_UMASK(0000)
2010 (void) mkdir_parents_label(i->path, 0755);
2011
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002012 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002013 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002014 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002015
Lennart Poettering468d7262012-01-17 15:04:12 +01002016 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002017 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002018
Michal Schmidt4a62c712014-11-28 19:57:32 +01002019 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002020 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002021
2022 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002023 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002024
Zach Smithc55ac242019-10-03 18:09:35 -07002025 if (i->append_or_force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002026 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002027 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002028 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002029
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002030 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002031 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2032 if (r < 0)
2033 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2034
2035 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002036 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002037 mac_selinux_create_file_clear();
2038 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002039 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002040 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002041
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002042 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002043 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002044 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002045 return 0;
2046 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002047 } else
2048 creation = CREATION_EXISTING;
2049 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002050
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002051 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002052 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002053 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002054 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002055
2056 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002057 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002058 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002059 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2060 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002061
2062 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2063 return 0;
2064 }
2065
Lennart Poettering7fa10742018-01-23 14:14:19 +01002066 RUN_WITH_UMASK(0000)
2067 (void) mkdir_parents_label(i->path, 0755);
2068
Franck Bui074bd732018-04-12 18:10:57 +02002069 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002070 if (r < 0)
2071 return r;
2072
2073 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002074
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002075 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002076 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002077 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002078 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002079 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002080 break;
2081
Michal Schmidta8d88782011-12-15 23:11:07 +01002082 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002083 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002084 if (r < 0)
2085 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002086 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002087
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002088 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002089 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002090 if (r < 0)
2091 return r;
2092 break;
2093
2094 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002095 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002096 if (r < 0)
2097 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002098 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002099
2100 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002101 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002102 if (r < 0)
2103 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002104 break;
2105
2106 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002107 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002108 if (r < 0)
2109 return r;
2110 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002111
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002112 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002113 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002114 if (r < 0)
2115 return r;
2116 break;
2117
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002118 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002119 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002120 if (r < 0)
2121 return r;
2122 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002123 }
2124
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002125 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002126}
2127
Michal Schmidta0896122011-12-15 21:32:50 +01002128static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002129 int r;
2130
2131 assert(i);
2132
2133 switch (i->type) {
2134
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002135 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002136 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002137 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002138
2139 break;
2140
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002141 case RECURSIVE_REMOVE_PATH:
Lennart Poettering2c575972018-10-29 19:24:56 +01002142 /* 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 -05002143 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering2c575972018-10-29 19:24:56 +01002144 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002145 if (r < 0 && r != -ENOENT)
2146 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002147
2148 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002149
2150 default:
2151 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002152 }
2153
2154 return 0;
2155}
2156
Michal Schmidta0896122011-12-15 21:32:50 +01002157static int remove_item(Item *i) {
Lennart Poettering2c575972018-10-29 19:24:56 +01002158 int r;
2159
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002160 assert(i);
2161
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002162 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2163
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002164 switch (i->type) {
2165
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002166 case TRUNCATE_DIRECTORY:
Lennart Poettering2c575972018-10-29 19:24:56 +01002167 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2168 log_debug("rm -rf \"%s\"", i->path);
2169 r = rm_rf(i->path, REMOVE_PHYSICAL);
2170 if (r < 0 && r != -ENOENT)
2171 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2172
2173 return 0;
2174
2175 case REMOVE_PATH:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002176 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002177 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002178
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002179 default:
2180 return 0;
2181 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002182}
2183
Michal Sekletar78a92a52013-01-18 16:13:08 +01002184static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002185 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002186 struct stat s, ps;
2187 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002188 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002189 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002190
2191 assert(i);
2192
2193 if (!i->age_set)
2194 return 0;
2195
2196 n = now(CLOCK_REALTIME);
2197 if (n < i->age)
2198 return 0;
2199
2200 cutoff = n - i->age;
2201
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002202 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002203 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002204 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002205 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002206 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002207 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002208
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002209 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002210 }
2211
Michal Schmidt4a62c712014-11-28 19:57:32 +01002212 if (fstat(dirfd(d), &s) < 0)
2213 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002214
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002215 if (!S_ISDIR(s.st_mode))
2216 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2217 "%s is not a directory.", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002218
Michal Schmidt4a62c712014-11-28 19:57:32 +01002219 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2220 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002221
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002222 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002223
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002224 log_debug("Cleanup threshold for %s \"%s\" is %s",
2225 mountpoint ? "mount point" : "directory",
2226 instance,
2227 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2228
2229 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2230 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002231}
2232
2233static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002234 assert(i);
2235
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002236 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2237
Michal Sekletar78a92a52013-01-18 16:13:08 +01002238 switch (i->type) {
2239 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002240 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002241 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2242 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002243 case TRUNCATE_DIRECTORY:
2244 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002245 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002246 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002247 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002248 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002249 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002250 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002251 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002252 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002253 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002254}
2255
Lennart Poettering599ebe22018-10-25 23:22:18 +02002256static int process_item(Item *i, OperationMask operation) {
Lennart Poettering811a1582018-10-26 20:56:37 +02002257 OperationMask todo;
2258 int r, q, p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002259
2260 assert(i);
2261
Lennart Poettering811a1582018-10-26 20:56:37 +02002262 todo = operation & ~i->done;
2263 if (todo == 0) /* Everything already done? */
Lennart Poettering1910cd02014-06-11 01:37:35 +02002264 return 0;
2265
Lennart Poettering811a1582018-10-26 20:56:37 +02002266 i->done |= operation;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002267
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +02002268 r = chase_symlinks(i->path, arg_root, CHASE_NO_AUTOFS|CHASE_WARN, NULL, NULL);
Lennart Poettering21af3382018-10-26 21:07:38 +02002269 if (r == -EREMOTE) {
Franck Bui145b8d0f2018-11-30 15:43:13 +01002270 log_notice_errno(r, "Skipping %s", i->path);
Lennart Poettering811a1582018-10-26 20:56:37 +02002271 return 0;
Franck Bui145b8d0f2018-11-30 15:43:13 +01002272 }
2273 if (r < 0)
Lennart Poettering48d96902018-11-20 15:56:55 +01002274 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 -05002275
Lennart Poettering599ebe22018-10-25 23:22:18 +02002276 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002277 /* Failure can only be tolerated for create */
2278 if (i->allow_failure)
2279 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002280
Lennart Poettering599ebe22018-10-25 23:22:18 +02002281 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2282 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
Lennart Poettering1a967b62018-10-25 23:19:00 +02002283
Lennart Poettering811a1582018-10-26 20:56:37 +02002284 return r < 0 ? r :
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002285 q < 0 ? q :
2286 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002287}
2288
Lennart Poettering599ebe22018-10-25 23:22:18 +02002289static int process_item_array(ItemArray *array, OperationMask operation) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002290 int r = 0;
2291 size_t n;
Lennart Poettering753615e2014-06-12 23:07:17 +02002292
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002293 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002294
Lennart Poettering811a1582018-10-26 20:56:37 +02002295 /* Create any parent first. */
2296 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2297 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2298
2299 /* Clean up all children first */
2300 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2301 Iterator i;
2302 ItemArray *c;
2303
2304 SET_FOREACH(c, array->children, i) {
2305 int k;
2306
2307 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2308 if (k < 0 && r == 0)
2309 r = k;
2310 }
2311 }
2312
Lennart Poettering96d10d72018-10-25 13:51:01 +02002313 for (n = 0; n < array->n_items; n++) {
2314 int k;
2315
Lennart Poettering599ebe22018-10-25 23:22:18 +02002316 k = process_item(array->items + n, operation);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002317 if (k < 0 && r == 0)
2318 r = k;
2319 }
2320
2321 return r;
2322}
2323
2324static void item_free_contents(Item *i) {
2325 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002326 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002327 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002328 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002329
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002330#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002331 acl_free(i->acl_access);
2332 acl_free(i->acl_default);
2333#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002334}
2335
Yu Watanabe87938c32018-11-26 01:00:54 +09002336static ItemArray* item_array_free(ItemArray *a) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002337 size_t n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002338
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002339 if (!a)
Yu Watanabe87938c32018-11-26 01:00:54 +09002340 return NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002341
Lennart Poettering96d10d72018-10-25 13:51:01 +02002342 for (n = 0; n < a->n_items; n++)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002343 item_free_contents(a->items + n);
Lennart Poettering96d10d72018-10-25 13:51:01 +02002344
Lennart Poettering811a1582018-10-26 20:56:37 +02002345 set_free(a->children);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002346 free(a->items);
Yu Watanabe87938c32018-11-26 01:00:54 +09002347 return mfree(a);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002348}
2349
Yu Watanabe93bab282018-09-18 08:39:24 +09002350static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002351 /* Make sure that the ownership taking item is put first, so
2352 * that we first create the node, and then can adjust it */
2353
Yu Watanabe93bab282018-09-18 08:39:24 +09002354 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002355 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002356 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002357 return 1;
2358
Yu Watanabe93bab282018-09-18 08:39:24 +09002359 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002360}
2361
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002362static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002363 assert(a);
2364 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002365 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002366
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002367 if (takes_ownership(a->type) && takes_ownership(b->type))
2368 /* check if the items are the same */
2369 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002370
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002371 a->uid_set == b->uid_set &&
2372 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002373
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002374 a->gid_set == b->gid_set &&
2375 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002376
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002377 a->mode_set == b->mode_set &&
2378 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002379
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002380 a->age_set == b->age_set &&
2381 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002382
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002383 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002384
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002385 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002386
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002387 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002388
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002389 return true;
2390}
2391
Dave Reisnera2aced42013-07-24 11:10:05 -04002392static bool should_include_path(const char *path) {
2393 char **prefix;
2394
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002395 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002396 if (path_startswith(path, *prefix)) {
2397 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2398 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002399 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002400 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002401
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002402 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002403 if (path_startswith(path, *prefix)) {
2404 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002405 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002406 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002407
Lennart Poettering6b000af2020-06-23 08:31:16 +02002408 /* no matches, so we should include this path only if we have no allow list at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002409 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002410 return true;
2411
2412 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2413 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002414}
2415
Franck Bui4cef1922017-11-16 11:27:29 +01002416static int specifier_expansion_from_arg(Item *i) {
2417 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2418 char **xattr;
2419 int r;
2420
2421 assert(i);
2422
Frantisek Sumsal4e361ac2019-04-28 14:28:49 +02002423 if (!i->argument)
Franck Bui4cef1922017-11-16 11:27:29 +01002424 return 0;
2425
2426 switch (i->type) {
2427 case COPY_FILES:
2428 case CREATE_SYMLINK:
2429 case CREATE_FILE:
2430 case TRUNCATE_FILE:
2431 case WRITE_FILE:
2432 r = cunescape(i->argument, 0, &unescaped);
2433 if (r < 0)
2434 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2435
2436 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2437 if (r < 0)
2438 return r;
2439
2440 free_and_replace(i->argument, resolved);
2441 break;
2442
2443 case SET_XATTR:
2444 case RECURSIVE_SET_XATTR:
Lennart Poetteringdfe01842020-04-29 00:13:52 +02002445 STRV_FOREACH(xattr, i->xattrs) {
Franck Bui4cef1922017-11-16 11:27:29 +01002446 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2447 if (r < 0)
2448 return r;
2449
2450 free_and_replace(*xattr, resolved);
2451 }
2452 break;
2453
2454 default:
2455 break;
2456 }
2457 return 0;
2458}
2459
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002460static int patch_var_run(const char *fname, unsigned line, char **path) {
2461 const char *k;
2462 char *n;
2463
2464 assert(path);
2465 assert(*path);
2466
2467 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2468 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2469 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2470 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2471 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2472 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2473 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2474 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2475 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2476
2477 k = path_startswith(*path, "/var/run/");
2478 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2479 return 0;
2480
Yu Watanabe2d9b74b2019-06-24 23:59:38 +09002481 n = path_join("/run", k);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002482 if (!n)
2483 return log_oom();
2484
2485 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2486 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2487 * to the user, let's still inform the user that these snippets should really be updated. */
Lennart Poetteringafb7e1c2019-07-10 13:00:44 +02002488 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 -04002489
Lennart Poettering81fa4472018-10-25 13:57:32 +02002490 free_and_replace(*path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002491
2492 return 0;
2493}
2494
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002495static int find_uid(const char *user, uid_t *ret_uid, Hashmap **cache) {
2496 int r;
2497
2498 assert(user);
2499 assert(ret_uid);
2500
2501 /* First: parse as numeric UID string */
2502 r = parse_uid(user, ret_uid);
2503 if (r >= 0)
2504 return r;
2505
2506 /* Second: pass to NSS if we are running "online" */
2507 if (!arg_root)
2508 return get_user_creds(&user, ret_uid, NULL, NULL, NULL, 0);
2509
2510 /* Third, synthesize "root" unconditionally */
2511 if (streq(user, "root")) {
2512 *ret_uid = 0;
2513 return 0;
2514 }
2515
2516 /* Fourth: use fgetpwent() to read /etc/passwd directly, if we are "offline" */
2517 return name_to_uid_offline(arg_root, user, ret_uid, cache);
2518}
2519
2520static int find_gid(const char *group, gid_t *ret_gid, Hashmap **cache) {
2521 int r;
2522
2523 assert(group);
2524 assert(ret_gid);
2525
2526 /* First: parse as numeric GID string */
2527 r = parse_gid(group, ret_gid);
2528 if (r >= 0)
2529 return r;
2530
2531 /* Second: pass to NSS if we are running "online" */
2532 if (!arg_root)
2533 return get_group_creds(&group, ret_gid, 0);
2534
2535 /* Third, synthesize "root" unconditionally */
2536 if (streq(group, "root")) {
2537 *ret_gid = 0;
2538 return 0;
2539 }
2540
2541 /* Fourth: use fgetgrent() to read /etc/group directly, if we are "offline" */
2542 return name_to_gid_offline(arg_root, group, ret_gid, cache);
2543}
2544
2545static int parse_line(
2546 const char *fname,
2547 unsigned line,
2548 const char *buffer,
2549 bool *invalid_config,
2550 Hashmap **uid_cache,
2551 Hashmap **gid_cache) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002552
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002553 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002554 _cleanup_(item_free_contents) Item i = {};
2555 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002556 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002557 int r, pos;
Zach Smithc55ac242019-10-03 18:09:35 -07002558 bool append_or_force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002559
2560 assert(fname);
2561 assert(line >= 1);
2562 assert(buffer);
2563
Richard Maw68685602015-06-23 16:20:53 +00002564 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002565 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002566 NULL,
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +02002567 EXTRACT_UNQUOTE,
Lennart Poettering4034a062015-03-23 18:55:36 +07002568 &action,
2569 &path,
2570 &mode,
2571 &user,
2572 &group,
2573 &age,
2574 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002575 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002576 if (IN_SET(r, -EINVAL, -EBADSLT))
2577 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002578 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002579 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to parse line: %m");
Lennart Poettering4b936992018-05-10 11:29:11 -07002580 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002581 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002582 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Syntax error.");
Lennart Poettering5008d582010-09-28 02:34:02 +02002583 }
2584
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002585 if (!empty_or_dash(buffer)) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002586 i.argument = strdup(buffer);
2587 if (!i.argument)
2588 return log_oom();
2589 }
2590
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002591 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002592 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002593 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Command too short '%s'.", action);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002594 }
2595
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002596 for (pos = 1; action[pos]; pos++) {
2597 if (action[pos] == '!' && !boot)
2598 boot = true;
Zach Smithc55ac242019-10-03 18:09:35 -07002599 else if (action[pos] == '+' && !append_or_force)
2600 append_or_force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002601 else if (action[pos] == '-' && !allow_failure)
2602 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002603 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002604 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002605 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 -05002606 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002607 }
2608
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002609 if (boot && !arg_boot) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002610 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 -05002611 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002612 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002613
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002614 i.type = action[0];
Zach Smithc55ac242019-10-03 18:09:35 -07002615 i.append_or_force = append_or_force;
William Douglas6d7b5432018-09-10 12:07:29 -07002616 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002617
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002618 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002619 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002620 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002621 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002622 if (IN_SET(r, -EINVAL, -EBADSLT))
2623 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002624 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 +01002625 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002626
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002627 r = patch_var_run(fname, line, &i.path);
2628 if (r < 0)
2629 return r;
2630
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002631 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002632
Michal Schmidt777b87e2011-12-16 18:27:35 +01002633 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002634 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002635 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2636 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002637 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002638 case TRUNCATE_DIRECTORY:
2639 case CREATE_FIFO:
2640 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002641 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002642 case REMOVE_PATH:
2643 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002644 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002645 case RELABEL_PATH:
2646 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002647 if (i.argument)
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002648 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 +02002649
2650 break;
2651
2652 case CREATE_FILE:
2653 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002654 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002655
2656 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002657 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002658 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002659 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002660 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002661 }
2662 break;
2663
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002664 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002665 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002666 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002667 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Write file requires argument.");
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002668 }
2669 break;
2670
Lennart Poettering849958d2014-06-10 23:02:40 +02002671 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002672 if (!i.argument) {
Lennart Poettering7dc64772020-05-05 22:48:50 +02002673 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002674 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002675 return log_oom();
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002676
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002677 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002678 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002679 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 +02002680
Lennart Poettering7dc64772020-05-05 22:48:50 +02002681 }
2682
2683 if (!empty_or_root(arg_root)) {
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002684 char *p;
2685
Lennart Poetteringd34cd572019-07-11 18:41:14 +02002686 p = path_join(arg_root, i.argument);
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002687 if (!p)
2688 return log_oom();
2689 free_and_replace(i.argument, p);
Lennart Poettering849958d2014-06-10 23:02:40 +02002690 }
2691
Yu Watanabe858d36c2018-05-31 23:39:31 +09002692 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002693 break;
2694
Lennart Poettering468d7262012-01-17 15:04:12 +01002695 case CREATE_CHAR_DEVICE:
Lennart Poettering3a47c402018-06-29 12:01:02 +02002696 case CREATE_BLOCK_DEVICE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002697 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002698 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002699 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Device file requires argument.");
Lennart Poettering468d7262012-01-17 15:04:12 +01002700 }
2701
Lennart Poettering3a47c402018-06-29 12:01:02 +02002702 r = parse_dev(i.argument, &i.major_minor);
2703 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002704 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002705 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 +01002706 }
2707
Lennart Poettering468d7262012-01-17 15:04:12 +01002708 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002709
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002710 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002711 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002712 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002713 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002714 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2715 "Set extended attribute requires argument.");
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002716 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002717 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002718 if (r < 0)
2719 return r;
2720 break;
2721
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002722 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002723 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002724 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002725 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002726 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2727 "Set ACLs requires argument.");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002728 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002729 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002730 if (r < 0)
2731 return r;
2732 break;
2733
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002734 case SET_ATTRIBUTE:
2735 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002736 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002737 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002738 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2739 "Set file attribute requires argument.");
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002740 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002741 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002742 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002743 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002744 if (r < 0)
2745 return r;
2746 break;
2747
Michal Schmidt777b87e2011-12-16 18:27:35 +01002748 default:
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002749 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002750 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2751 "Unknown command type '%c'.", (char) i.type);
Lennart Poettering5008d582010-09-28 02:34:02 +02002752 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002753
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002754 if (!path_is_absolute(i.path)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002755 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002756 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2757 "Path '%s' not absolute.", i.path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002758 }
2759
Yu Watanabe858d36c2018-05-31 23:39:31 +09002760 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002761
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002762 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002763 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002764
Franck Bui4cef1922017-11-16 11:27:29 +01002765 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002766 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002767 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002768 if (r < 0) {
2769 if (IN_SET(r, -EINVAL, -EBADSLT))
2770 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002771 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 +01002772 }
Franck Bui4cef1922017-11-16 11:27:29 +01002773
Lennart Poettering7dc64772020-05-05 22:48:50 +02002774 if (!empty_or_root(arg_root)) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002775 char *p;
2776
Lennart Poetteringc6134d32019-06-19 15:20:13 +02002777 p = path_join(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002778 if (!p)
2779 return log_oom();
Lennart Poettering81fa4472018-10-25 13:57:32 +02002780 free_and_replace(i.path, p);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002781 }
2782
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002783 if (!empty_or_dash(user)) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002784 r = find_uid(user, &i.uid, uid_cache);
Lennart Poettering4b678342011-07-23 01:17:59 +02002785 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002786 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002787 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve user '%s': %m", user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002788 }
2789
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002790 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002791 }
2792
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002793 if (!empty_or_dash(group)) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002794 r = find_gid(group, &i.gid, gid_cache);
Lennart Poettering4b678342011-07-23 01:17:59 +02002795 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002796 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002797 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve group '%s'.", group);
Lennart Poettering5008d582010-09-28 02:34:02 +02002798 }
2799
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002800 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002801 }
2802
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002803 if (!empty_or_dash(mode)) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002804 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002805 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002806
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002807 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002808 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002809 mm++;
2810 }
2811
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002812 r = parse_mode(mm, &m);
2813 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002814 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002815 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid mode '%s'.", mode);
Lennart Poettering5008d582010-09-28 02:34:02 +02002816 }
2817
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002818 i.mode = m;
2819 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002820 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002821 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 +02002822
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002823 if (!empty_or_dash(age)) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002824 const char *a = age;
2825
2826 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002827 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002828 a++;
2829 }
2830
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002831 r = parse_sec(a, &i.age);
2832 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002833 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002834 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age '%s'.", age);
Lennart Poettering5008d582010-09-28 02:34:02 +02002835 }
2836
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002837 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002838 }
2839
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002840 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002841
Lennart Poetteringef43a392015-04-22 18:18:56 +02002842 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002843 if (existing) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002844 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002845
Lennart Poettering96d10d72018-10-25 13:51:01 +02002846 for (n = 0; n < existing->n_items; n++) {
Zach Smithd0ea5c52019-10-03 18:19:18 -07002847 if (!item_compatible(existing->items + n, &i) && !i.append_or_force) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002848 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Duplicate line for path \"%s\", ignoring.", i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002849 return 0;
2850 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002851 }
2852 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002853 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002854 if (!existing)
2855 return log_oom();
2856
Lennart Poetteringef43a392015-04-22 18:18:56 +02002857 r = ordered_hashmap_put(h, i.path, existing);
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002858 if (r < 0) {
2859 free(existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002860 return log_oom();
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002861 }
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002862 }
2863
Lennart Poettering96d10d72018-10-25 13:51:01 +02002864 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002865 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002866
Lennart Poettering7ab75292018-10-25 13:53:07 +02002867 existing->items[existing->n_items++] = i;
2868 i = (struct Item) {};
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002869
2870 /* Sort item array, to enforce stable ordering of application */
Lennart Poettering96d10d72018-10-25 13:51:01 +02002871 typesafe_qsort(existing->items, existing->n_items, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002872
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002873 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002874}
2875
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002876static int cat_config(char **config_dirs, char **args) {
2877 _cleanup_strv_free_ char **files = NULL;
2878 int r;
2879
2880 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2881 if (r < 0)
2882 return r;
2883
2884 return cat_files(NULL, files, 0);
2885}
2886
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002887static int exclude_default_prefixes(void) {
2888 int r;
2889
2890 /* Provide an easy way to exclude virtual/memory file systems from what we do here. Useful in
2891 * combination with --root= where we probably don't want to apply stuff to these dirs as they are
2892 * likely over-mounted if the root directory is actually used, and it wouldbe less than ideal to have
2893 * all kinds of files created/adjusted underneath these mount points. */
2894
2895 r = strv_extend_strv(
2896 &arg_exclude_prefixes,
2897 STRV_MAKE("/dev",
2898 "/proc",
2899 "/run",
2900 "/sys"),
2901 true);
2902 if (r < 0)
2903 return log_oom();
2904
2905 return 0;
2906}
2907
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002908static int help(void) {
2909 _cleanup_free_ char *link = NULL;
2910 int r;
2911
2912 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2913 if (r < 0)
2914 return log_oom();
2915
Lennart Poettering522d4a42011-02-13 15:08:15 +01002916 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2917 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002918 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002919 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002920 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002921 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002922 " --create Create marked files/directories\n"
2923 " --clean Clean up marked directories\n"
2924 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002925 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002926 " --prefix=PATH Only apply rules with the specified prefix\n"
2927 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002928 " -E Ignore rules prefixed with /dev, /proc, /run, /sys\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002929 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002930 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002931 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002932 "\nSee the %s for details.\n"
2933 , program_invocation_short_name
2934 , link
2935 );
2936
2937 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002938}
2939
2940static int parse_argv(int argc, char *argv[]) {
2941
2942 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002943 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002944 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002945 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002946 ARG_CREATE,
2947 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002948 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002949 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002950 ARG_PREFIX,
2951 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002952 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002953 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002954 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002955 };
2956
2957 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002958 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002959 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002960 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002961 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002962 { "create", no_argument, NULL, ARG_CREATE },
2963 { "clean", no_argument, NULL, ARG_CLEAN },
2964 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002965 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002966 { "prefix", required_argument, NULL, ARG_PREFIX },
2967 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002968 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002969 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002970 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002971 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002972 };
2973
Lennart Poettering0f474362015-10-22 19:28:31 +02002974 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002975
2976 assert(argc >= 0);
2977 assert(argv);
2978
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002979 while ((c = getopt_long(argc, argv, "hE", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002980
2981 switch (c) {
2982
2983 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002984 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002985
2986 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002987 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002988
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002989 case ARG_CAT_CONFIG:
2990 arg_cat_config = true;
2991 break;
2992
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002993 case ARG_USER:
2994 arg_user = true;
2995 break;
2996
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002997 case ARG_CREATE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02002998 arg_operation |= OPERATION_CREATE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002999 break;
3000
3001 case ARG_CLEAN:
Lennart Poettering1a967b62018-10-25 23:19:00 +02003002 arg_operation |= OPERATION_CLEAN;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003003 break;
3004
3005 case ARG_REMOVE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02003006 arg_operation |= OPERATION_REMOVE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003007 break;
3008
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05003009 case ARG_BOOT:
3010 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05003011 break;
3012
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003013 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003014 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04003015 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003016 break;
3017
Dave Reisner5c795112013-07-24 11:19:24 -04003018 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003019 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04003020 return log_oom();
3021 break;
3022
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02003023 case 'E':
3024 r = exclude_default_prefixes();
3025 if (r < 0)
3026 return r;
3027
3028 break;
3029
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07003030 case ARG_ROOT:
Lennart Poettering7dc64772020-05-05 22:48:50 +02003031 r = parse_path_argument_and_warn(optarg, /* suppress_root= */ false, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02003032 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02003033 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07003034 break;
3035
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003036 case ARG_REPLACE:
3037 if (!path_is_absolute(optarg) ||
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003038 !endswith(optarg, ".conf"))
3039 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3040 "The argument to --replace= must an absolute path to a config file");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003041
3042 arg_replace = optarg;
3043 break;
3044
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003045 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003046 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003047 break;
3048
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003049 case '?':
3050 return -EINVAL;
3051
3052 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01003053 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003054 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003055
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003056 if (arg_operation == 0 && !arg_cat_config)
3057 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3058 "You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003059
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003060 if (arg_replace && arg_cat_config)
3061 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3062 "Option --replace= is not supported with --cat-config");
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003063
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003064 if (arg_replace && optind >= argc)
3065 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3066 "When --replace= is given, some configuration items must be specified");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003067
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003068 return 1;
3069}
3070
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003071static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02003072 _cleanup_(hashmap_freep) Hashmap *uid_cache = NULL, *gid_cache = NULL;
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003073 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01003074 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05003075 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003076 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01003077 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02003078 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003079
3080 assert(fn);
3081
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003082 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003083 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003084 fn = "<stdin>";
3085 f = stdin;
3086 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003087 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003088 if (r < 0) {
3089 if (ignore_enoent && r == -ENOENT) {
3090 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3091 return 0;
3092 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003093
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003094 return log_error_errno(r, "Failed to open '%s': %m", fn);
3095 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003096 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003097 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003098 }
3099
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003100 for (;;) {
3101 _cleanup_free_ char *line = NULL;
3102 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003103 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003104 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003105
3106 k = read_line(f, LONG_LINE_MAX, &line);
3107 if (k < 0)
3108 return log_error_errno(k, "Failed to read '%s': %m", fn);
3109 if (k == 0)
3110 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003111
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003112 v++;
3113
3114 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003115 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003116 continue;
3117
Lennart Poetteringa3451c22020-05-05 22:45:54 +02003118 k = parse_line(fn, v, l, &invalid_line, &uid_cache, &gid_cache);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003119 if (k < 0) {
3120 if (invalid_line)
3121 /* Allow reporting with a special code if the caller requested this */
3122 *invalid_config = true;
3123 else if (r == 0)
3124 /* The first error becomes our return value */
3125 r = k;
3126 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003127 }
3128
Michal Sekletar78a92a52013-01-18 16:13:08 +01003129 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003130 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003131 Iterator iter;
3132 Item *j, *candidate_item = NULL;
3133
3134 if (i->type != IGNORE_DIRECTORY_PATH)
3135 continue;
3136
Lennart Poetteringef43a392015-04-22 18:18:56 +02003137 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003138 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 +01003139 continue;
3140
3141 if (path_equal(j->path, i->path)) {
3142 candidate_item = j;
3143 break;
3144 }
3145
3146 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3147 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3148 candidate_item = j;
3149 }
3150
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003151 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003152 i->age = candidate_item->age;
3153 i->age_set = true;
3154 }
3155 }
3156
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003157 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003158 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003159 if (r == 0)
3160 r = -EIO;
3161 }
3162
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003163 return r;
3164}
3165
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003166static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3167 char **arg;
3168 int r;
3169
3170 STRV_FOREACH(arg, args) {
3171 r = read_config_file(config_dirs, *arg, false, invalid_config);
3172 if (r < 0)
3173 return r;
3174 }
3175
3176 return 0;
3177}
3178
3179static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3180 _cleanup_strv_free_ char **files = NULL;
3181 _cleanup_free_ char *p = NULL;
3182 char **f;
3183 int r;
3184
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003185 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003186 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003187 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003188
3189 STRV_FOREACH(f, files)
3190 if (p && path_equal(*f, p)) {
3191 log_debug("Parsing arguments at position \"%s\"…", *f);
3192
3193 r = parse_arguments(config_dirs, args, invalid_config);
3194 if (r < 0)
3195 return r;
3196 } else
3197 /* Just warn, ignore result otherwise.
3198 * read_config_file() has some debug output, so no need to print anything. */
3199 (void) read_config_file(config_dirs, *f, true, invalid_config);
3200
3201 return 0;
3202}
3203
Lennart Poettering811a1582018-10-26 20:56:37 +02003204static int link_parent(ItemArray *a) {
3205 const char *path;
3206 char *prefix;
3207 int r;
3208
3209 assert(a);
3210
Lennart Poettering09f467a2018-11-20 16:32:19 +01003211 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
Lennart Poettering811a1582018-10-26 20:56:37 +02003212 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3213 * before their children, and clean up/remove children before their parents. */
3214
3215 if (a->n_items <= 0)
3216 return 0;
3217
3218 path = a->items[0].path;
Lennart Poettering6e9417f2019-01-26 15:52:18 +01003219 prefix = newa(char, strlen(path) + 1);
Lennart Poettering811a1582018-10-26 20:56:37 +02003220 PATH_FOREACH_PREFIX(prefix, path) {
3221 ItemArray *j;
3222
3223 j = ordered_hashmap_get(items, prefix);
Lennart Poetteringbd0ce242018-11-20 16:32:23 +01003224 if (!j)
3225 j = ordered_hashmap_get(globs, prefix);
Lennart Poettering811a1582018-10-26 20:56:37 +02003226 if (j) {
Zbigniew Jędrzejewski-Szmekde7fef42020-06-05 15:12:29 +02003227 r = set_ensure_put(&j->children, NULL, a);
Lennart Poettering811a1582018-10-26 20:56:37 +02003228 if (r < 0)
3229 return log_oom();
3230
3231 a->parent = j;
3232 return 1;
3233 }
3234 }
3235
3236 return 0;
3237}
3238
Yu Watanabe87938c32018-11-26 01:00:54 +09003239DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3240 ItemArray, item_array_free);
3241
3242static int run(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003243 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003244 bool invalid_config = false;
Lennart Poettering64adb372018-10-26 21:19:36 +02003245 Iterator iterator;
3246 ItemArray *a;
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003247 enum {
3248 PHASE_REMOVE_AND_CLEAN,
3249 PHASE_CREATE,
3250 _PHASE_MAX
3251 } phase;
Yu Watanabe87938c32018-11-26 01:00:54 +09003252 int r, k;
Lennart Poettering5008d582010-09-28 02:34:02 +02003253
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003254 r = parse_argv(argc, argv);
3255 if (r <= 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003256 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003257
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003258 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003259
Lennart Poetteringe5358402019-01-18 16:34:52 +01003260 /* Descending down file system trees might take a lot of fds */
3261 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
3262
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003263 if (arg_user) {
3264 r = user_config_paths(&config_dirs);
Yu Watanabe87938c32018-11-26 01:00:54 +09003265 if (r < 0)
3266 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003267 } else {
3268 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
Yu Watanabe87938c32018-11-26 01:00:54 +09003269 if (!config_dirs)
3270 return log_oom();
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003271 }
3272
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003273 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003274 _cleanup_free_ char *t = NULL;
3275
3276 t = strv_join(config_dirs, "\n\t");
3277 if (t)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003278 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003279 }
3280
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003281 if (arg_cat_config) {
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003282 (void) pager_open(arg_pager_flags);
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003283
Yu Watanabe87938c32018-11-26 01:00:54 +09003284 return cat_config(config_dirs, argv + optind);
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003285 }
3286
3287 umask(0022);
3288
Christian Göttschea9ba0e32020-06-19 19:29:24 +02003289 r = mac_selinux_init();
3290 if (r < 0)
3291 return r;
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003292
Yu Watanabe87938c32018-11-26 01:00:54 +09003293 items = ordered_hashmap_new(&item_array_hash_ops);
3294 globs = ordered_hashmap_new(&item_array_hash_ops);
3295 if (!items || !globs)
3296 return log_oom();
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003297
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003298 /* If command line arguments are specified along with --replace, read all
3299 * configuration files and insert the positional arguments at the specified
3300 * place. Otherwise, if command line arguments are specified, execute just
3301 * them, and finally, without --replace= or any positional arguments, just
3302 * read configuration and execute it.
3303 */
3304 if (arg_replace || optind >= argc)
3305 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3306 else
3307 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3308 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003309 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02003310
Lennart Poettering811a1582018-10-26 20:56:37 +02003311 /* Let's now link up all child/parent relationships */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003312 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Lennart Poettering811a1582018-10-26 20:56:37 +02003313 r = link_parent(a);
3314 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003315 return r;
Lennart Poettering811a1582018-10-26 20:56:37 +02003316 }
3317 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3318 r = link_parent(a);
3319 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003320 return r;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003321 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003322
Lennart Poettering64adb372018-10-26 21:19:36 +02003323 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3324 * operations. i.e. that we first clean out the platform we then build on. */
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003325 for (phase = 0; phase < _PHASE_MAX; phase++) {
Lennart Poettering64adb372018-10-26 21:19:36 +02003326 OperationMask op;
Lennart Poettering5008d582010-09-28 02:34:02 +02003327
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003328 if (phase == PHASE_REMOVE_AND_CLEAN)
Lennart Poettering64adb372018-10-26 21:19:36 +02003329 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003330 else if (phase == PHASE_CREATE)
Lennart Poettering64adb372018-10-26 21:19:36 +02003331 op = arg_operation & OPERATION_CREATE;
3332 else
3333 assert_not_reached("unexpected phase");
3334
3335 if (op == 0) /* Nothing requested in this phase */
3336 continue;
3337
3338 /* The non-globbing ones usually create things, hence we apply them first */
3339 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3340 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003341 if (k < 0 && r >= 0)
3342 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003343 }
3344
3345 /* The globbing ones usually alter things, hence we apply them second. */
3346 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3347 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003348 if (k < 0 && r >= 0)
3349 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003350 }
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003351 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003352
Yu Watanabe87938c32018-11-26 01:00:54 +09003353 if (ERRNO_IS_RESOURCE(-r))
3354 return r;
3355 if (invalid_config)
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003356 return EX_DATAERR;
Yu Watanabe87938c32018-11-26 01:00:54 +09003357 if (r < 0)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003358 return EX_CANTCREAT;
Yu Watanabe87938c32018-11-26 01:00:54 +09003359 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02003360}
Yu Watanabe87938c32018-11-26 01:00:54 +09003361
3362DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);