blob: 437b8bb4498a3df8fd2eb1d86b1a5b60249ed64e [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 Poettering63d3d0a2020-07-28 18:22:53 +020029#include "dissect-image.h"
Lennart Poettering4f5dd392015-10-23 18:52:53 +020030#include "escape.h"
Lennart Poettering3ffd4af2015-10-25 13:14:12 +010031#include "fd-util.h"
Lennart Poettering0d39fa92015-10-26 18:05:03 +010032#include "fileio.h"
Zbigniew Jędrzejewski-Szmekf97b34a2016-11-07 10:14:59 -050033#include "format-util.h"
Lennart Poetteringf4f15632015-10-26 21:16:26 +010034#include "fs-util.h"
Lennart Poettering7d50b322015-10-27 01:48:17 +010035#include "glob-util.h"
Lennart Poetteringc0044932015-10-25 14:08:25 +010036#include "io-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020037#include "label.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020038#include "log.h"
Dave Reisner54693d92012-09-15 12:58:49 -040039#include "macro.h"
Yu Watanabe87938c32018-11-26 01:00:54 +090040#include "main-func.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020041#include "mkdir.h"
Lennart Poettering63d3d0a2020-07-28 18:22:53 +020042#include "mount-util.h"
Zbigniew Jędrzejewski-Szmek049af8a2018-11-29 10:24:39 +010043#include "mountpoint-util.h"
Lennart Poetteringa3451c22020-05-05 22:45:54 +020044#include "offline-passwd.h"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +020045#include "pager.h"
Lennart Poettering6bedfcb2015-10-26 16:18:16 +010046#include "parse-util.h"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +010047#include "path-lookup.h"
Kay Sievers9eb977d2012-05-07 21:36:12 +020048#include "path-util.h"
Zbigniew Jędrzejewski-Szmek294bf0c2018-11-20 15:42:57 +010049#include "pretty-print.h"
Lennart Poetteringe5358402019-01-18 16:34:52 +010050#include "rlimit-util.h"
Lennart Poetteringc6878632015-04-04 11:52:57 +020051#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010052#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020053#include "set.h"
Lennart Poettering760877e2019-03-13 12:14:47 +010054#include "sort-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020055#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010056#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010057#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010058#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020059#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020060#include "strv.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010061#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010062#include "user-util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020063
Andreas Jaeger01000472010-09-29 10:08:24 +020064/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020065 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020066 * properly owned directories beneath /tmp, /var/tmp, /run, which are
67 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020068
Lennart Poettering1a967b62018-10-25 23:19:00 +020069typedef enum OperationMask {
70 OPERATION_CREATE = 1 << 0,
71 OPERATION_REMOVE = 1 << 1,
72 OPERATION_CLEAN = 1 << 2,
73} OperationMask;
74
Michal Schmidt66ccd032011-12-15 21:31:14 +010075typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010076 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020077 CREATE_FILE = 'f',
Zach Smitheccebf42019-10-28 09:32:16 -070078 TRUNCATE_FILE = 'F', /* deprecated: use f+ */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020079 CREATE_DIRECTORY = 'd',
80 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010081 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020082 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
83 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020084 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010085 CREATE_SYMLINK = 'L',
86 CREATE_CHAR_DEVICE = 'c',
87 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020088 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010089
90 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +020091 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -040092 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -050093 SET_XATTR = 't',
94 RECURSIVE_SET_XATTR = 'T',
95 SET_ACL = 'a',
96 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +020097 SET_ATTRIBUTE = 'h',
98 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020099 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +0100100 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200101 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +0100102 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +0100103 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200104 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +0200105 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +0100106} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200107
108typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100109 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200110
111 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100112 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100113 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200114#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500115 acl_t acl_access;
116 acl_t acl_default;
117#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200118 uid_t uid;
119 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200120 mode_t mode;
121 usec_t age;
122
Lennart Poettering468d7262012-01-17 15:04:12 +0100123 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200124 unsigned attribute_value;
125 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100126
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200127 bool uid_set:1;
128 bool gid_set:1;
129 bool mode_set:1;
130 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200131 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200132 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200133
134 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200135
Zach Smithc55ac242019-10-03 18:09:35 -0700136 bool append_or_force:1;
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200137
William Douglas6d7b5432018-09-10 12:07:29 -0700138 bool allow_failure:1;
139
Lennart Poettering811a1582018-10-26 20:56:37 +0200140 OperationMask done;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200141} Item;
142
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500143typedef struct ItemArray {
144 Item *items;
Lennart Poettering96d10d72018-10-25 13:51:01 +0200145 size_t n_items;
Lennart Poettering64768712018-10-25 13:48:25 +0200146 size_t allocated;
Lennart Poettering811a1582018-10-26 20:56:37 +0200147
148 struct ItemArray *parent;
149 Set *children;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500150} ItemArray;
151
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100152typedef enum DirectoryType {
Lennart Poettering133bbca2018-10-26 10:32:48 +0200153 DIRECTORY_RUNTIME,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100154 DIRECTORY_STATE,
155 DIRECTORY_CACHE,
156 DIRECTORY_LOGS,
157 _DIRECTORY_TYPE_MAX,
158} DirectoryType;
159
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200160static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100161static bool arg_user = false;
Lennart Poettering1a967b62018-10-25 23:19:00 +0200162static OperationMask arg_operation = 0;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500163static bool arg_boot = false;
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +0100164static PagerFlags arg_pager_flags = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200165
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200166static char **arg_include_prefixes = NULL;
167static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700168static char *arg_root = NULL;
Lennart Poettering63d3d0a2020-07-28 18:22:53 +0200169static char *arg_image = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100170static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100171
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200172#define MAX_DEPTH 256
173
Lennart Poetteringef43a392015-04-22 18:18:56 +0200174static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200175static Set *unix_sockets = NULL;
176
Yu Watanabe87938c32018-11-26 01:00:54 +0900177STATIC_DESTRUCTOR_REGISTER(items, ordered_hashmap_freep);
178STATIC_DESTRUCTOR_REGISTER(globs, ordered_hashmap_freep);
179STATIC_DESTRUCTOR_REGISTER(unix_sockets, set_free_freep);
180STATIC_DESTRUCTOR_REGISTER(arg_include_prefixes, freep);
181STATIC_DESTRUCTOR_REGISTER(arg_exclude_prefixes, freep);
182STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
Lennart Poettering63d3d0a2020-07-28 18:22:53 +0200183STATIC_DESTRUCTOR_REGISTER(arg_image, freep);
Yu Watanabe87938c32018-11-26 01:00:54 +0900184
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100185static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret);
186static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100187
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200188static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100189 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100190 { 'b', specifier_boot_id, NULL },
191 { 'H', specifier_host_name, NULL },
Zbigniew Jędrzejewski-Szmeke97708f2020-05-07 16:16:19 +0200192 { 'l', specifier_short_host_name, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100193 { 'v', specifier_kernel_release, NULL },
Lennart Poettering268f5a52020-04-28 20:03:56 +0200194 { 'a', specifier_architecture, NULL },
195 { 'o', specifier_os_id, NULL },
196 { 'w', specifier_os_version_id, NULL },
197 { 'B', specifier_os_build_id, NULL },
198 { 'W', specifier_os_variant_id, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100199
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700200 { 'g', specifier_group_name, NULL },
201 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100202 { 'U', specifier_user_id, NULL },
203 { 'u', specifier_user_name, NULL },
204 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200205
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100206 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
207 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
208 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
209 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200210 { 'T', specifier_tmp_dir, NULL },
211 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200212 {}
213};
214
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100215static int specifier_machine_id_safe(char specifier, const void *data, const void *userdata, char **ret) {
Franck Bui4cef1922017-11-16 11:27:29 +0100216 int r;
217
Franck Buid8dab752018-01-10 23:28:44 +0100218 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
219 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100220 * gracefully. */
221
222 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100223 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100224 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100225
226 return r;
227}
228
Zbigniew Jędrzejewski-Szmek303ee602018-12-12 16:45:33 +0100229static int specifier_directory(char specifier, const void *data, const void *userdata, char **ret) {
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100230 struct table_entry {
231 uint64_t type;
232 const char *suffix;
233 };
234
235 static const struct table_entry paths_system[] = {
236 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
237 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
238 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
239 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
240 };
241
242 static const struct table_entry paths_user[] = {
243 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
244 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
245 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
246 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
247 };
248
249 unsigned i;
250 const struct table_entry *paths;
251
252 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
253 paths = arg_user ? paths_user : paths_system;
254
255 i = PTR_TO_UINT(data);
256 assert(i < ELEMENTSOF(paths_system));
257
Zbigniew Jędrzejewski-Szmek51327bc2020-03-23 19:50:59 +0100258 return sd_path_lookup(paths[i].type, paths[i].suffix, ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100259}
260
Franck Bui4cef1922017-11-16 11:27:29 +0100261static int log_unresolvable_specifier(const char *filename, unsigned line) {
262 static bool notified = false;
263
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100264 /* In system mode, this is called when /etc is not fully initialized (e.g.
265 * in a chroot environment) where some specifiers are unresolvable. In user
266 * mode, this is called when some variables are not defined. These cases are
267 * not considered as an error so log at LOG_NOTICE only for the first time
268 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100269
Lennart Poetteringd02933f2020-04-29 00:07:06 +0200270 log_syntax(NULL,
271 notified ? LOG_DEBUG : LOG_NOTICE,
272 filename, line, 0,
273 "Failed to resolve specifier: %s, skipping",
274 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100275
276 if (!notified)
277 log_notice("All rules containing unresolvable specifiers will be skipped.");
278
279 notified = true;
280 return 0;
281}
282
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100283static int user_config_paths(char*** ret) {
284 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
285 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
286 _cleanup_strv_free_ char **res = NULL;
287 int r;
288
289 r = xdg_user_dirs(&config_dirs, &data_dirs);
290 if (r < 0)
291 return r;
292
293 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
294 if (r < 0 && r != -ENXIO)
295 return r;
296
297 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
298 if (r < 0 && r != -ENXIO)
299 return r;
300
301 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
302 if (r < 0 && r != -ENXIO)
303 return r;
304
305 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
306 if (r < 0)
307 return r;
308
309 r = strv_extend(&res, persistent_config);
310 if (r < 0)
311 return r;
312
313 r = strv_extend(&res, runtime_config);
314 if (r < 0)
315 return r;
316
317 r = strv_extend(&res, data_home);
318 if (r < 0)
319 return r;
320
321 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
322 if (r < 0)
323 return r;
324
325 r = path_strv_make_absolute_cwd(res);
326 if (r < 0)
327 return r;
328
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100329 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100330 return 0;
331}
332
Michal Schmidt66ccd032011-12-15 21:31:14 +0100333static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200334 return IN_SET(t,
335 WRITE_FILE,
336 IGNORE_PATH,
337 IGNORE_DIRECTORY_PATH,
338 REMOVE_PATH,
339 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400340 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200341 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200342 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500343 RECURSIVE_RELABEL_PATH,
344 SET_XATTR,
345 RECURSIVE_SET_XATTR,
346 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200347 RECURSIVE_SET_ACL,
348 SET_ATTRIBUTE,
349 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100350}
351
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500352static bool takes_ownership(ItemType t) {
353 return IN_SET(t,
354 CREATE_FILE,
355 TRUNCATE_FILE,
356 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400357 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500358 TRUNCATE_DIRECTORY,
359 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200360 CREATE_SUBVOLUME_INHERIT_QUOTA,
361 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500362 CREATE_FIFO,
363 CREATE_SYMLINK,
364 CREATE_CHAR_DEVICE,
365 CREATE_BLOCK_DEVICE,
366 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500367 WRITE_FILE,
368 IGNORE_PATH,
369 IGNORE_DIRECTORY_PATH,
370 REMOVE_PATH,
371 RECURSIVE_REMOVE_PATH);
372}
373
Lennart Poetteringef43a392015-04-22 18:18:56 +0200374static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500375 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100376 Iterator i;
377
Lennart Poetteringef43a392015-04-22 18:18:56 +0200378 ORDERED_HASHMAP_FOREACH(j, h, i) {
Lennart Poettering96d10d72018-10-25 13:51:01 +0200379 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500380
Lennart Poettering96d10d72018-10-25 13:51:01 +0200381 for (n = 0; n < j->n_items; n++) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500382 Item *item = j->items + n;
383
384 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
385 return item;
386 }
387 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100388
389 return NULL;
390}
391
Yu Watanabe71a0be72018-11-26 00:48:15 +0900392static int load_unix_sockets(void) {
393 _cleanup_set_free_free_ Set *sockets = NULL;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200394 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100395 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100396
397 if (unix_sockets)
Yu Watanabe71a0be72018-11-26 00:48:15 +0900398 return 0;
Lennart Poettering17b90522011-02-14 21:55:06 +0100399
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100400 /* 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 +0100401
Yu Watanabe71a0be72018-11-26 00:48:15 +0900402 sockets = set_new(&path_hash_ops);
403 if (!sockets)
404 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100405
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100406 f = fopen("/proc/net/unix", "re");
Yu Watanabe71a0be72018-11-26 00:48:15 +0900407 if (!f)
408 return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
409 "Failed to open /proc/net/unix, ignoring: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100410
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100411 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100412 r = read_line(f, LONG_LINE_MAX, NULL);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900413 if (r < 0)
414 return log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
415 if (r == 0)
416 return log_warning_errno(SYNTHETIC_ERRNO(EIO), "Premature end of file reading /proc/net/unix.");
Lennart Poettering17b90522011-02-14 21:55:06 +0100417
418 for (;;) {
Yu Watanabe71a0be72018-11-26 00:48:15 +0900419 _cleanup_free_ char *line = NULL, *s = NULL;
420 char *p;
Lennart Poettering17b90522011-02-14 21:55:06 +0100421
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100422 r = read_line(f, LONG_LINE_MAX, &line);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900423 if (r < 0)
424 return log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100425 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100426 break;
427
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100428 p = strchr(line, ':');
429 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100430 continue;
431
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100432 if (strlen(p) < 37)
433 continue;
434
435 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100436 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100437 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100438 p += strspn(p, WHITESPACE);
439
440 if (*p != '/')
441 continue;
442
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100443 s = strdup(p);
Yu Watanabe71a0be72018-11-26 00:48:15 +0900444 if (!s)
445 return log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100446
Yu Watanabe858d36c2018-05-31 23:39:31 +0900447 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100448
Yu Watanabe71a0be72018-11-26 00:48:15 +0900449 r = set_consume(sockets, s);
450 if (r == -EEXIST)
451 continue;
452 if (r < 0)
453 return log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
454
455 TAKE_PTR(s);
Lennart Poettering17b90522011-02-14 21:55:06 +0100456 }
457
Yu Watanabe71a0be72018-11-26 00:48:15 +0900458 unix_sockets = TAKE_PTR(sockets);
459 return 1;
Lennart Poettering17b90522011-02-14 21:55:06 +0100460}
461
462static bool unix_socket_alive(const char *fn) {
463 assert(fn);
464
Yu Watanabe71a0be72018-11-26 00:48:15 +0900465 if (load_unix_sockets() < 0)
466 return true; /* We don't know, so assume yes */
Lennart Poettering17b90522011-02-14 21:55:06 +0100467
Yu Watanabe71a0be72018-11-26 00:48:15 +0900468 return !!set_get(unix_sockets, (char*) fn);
Lennart Poettering17b90522011-02-14 21:55:06 +0100469}
470
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500471static DIR* xopendirat_nomod(int dirfd, const char *path) {
472 DIR *dir;
473
474 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700475 if (dir)
476 return dir;
477
478 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
479 if (errno != EPERM)
480 return NULL;
481
482 dir = xopendirat(dirfd, path, O_NOFOLLOW);
483 if (!dir)
484 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500485
486 return dir;
487}
488
489static DIR* opendir_nomod(const char *path) {
490 return xopendirat_nomod(AT_FDCWD, path);
491}
492
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200493static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100494 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200495 const char *p,
496 DIR *d,
497 const struct stat *ds,
498 usec_t cutoff,
499 dev_t rootdev,
500 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200501 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500502 bool keep_this_level) {
503
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200504 struct dirent *dent;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200505 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200506 int r = 0;
507
Reverend Homer8fb3f002016-12-09 12:04:30 +0300508 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200509 struct stat s;
510 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200511 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200512
Lennart Poettering49bfc872017-02-02 00:06:18 +0100513 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200514 continue;
515
516 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200517 if (errno == ENOENT)
518 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200519
Kay Sieversca2f4172013-10-17 03:20:46 +0200520 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100521 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
522 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200523 continue;
524 }
525
526 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500527 if (s.st_dev != rootdev) {
528 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200529 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500530 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200531
Kay Sievers99d680a2013-03-13 13:12:36 +0100532 /* Try to detect bind mounts of the same filesystem instance; they
533 * do not differ in device major/minors. This type of query is not
534 * supported on all kernels or filesystem types though. */
Lennart Poettering60bdc0c2019-06-18 12:42:30 +0200535 if (S_ISDIR(s.st_mode)) {
536 int q;
537
538 q = fd_is_mount_point(dirfd(d), dent->d_name, 0);
539 if (q < 0)
540 log_debug_errno(q, "Failed to determine whether \"%s/%s\" is a mount point, ignoring: %m", p, dent->d_name);
541 else if (q > 0) {
542 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.", p, dent->d_name);
543 continue;
544 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500545 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100546
Lennart Poettering113ed3b2019-06-18 12:41:02 +0200547 sub_path = path_join(p, dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200548 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700549 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200550 goto finish;
551 }
552
553 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200554 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500555 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200556 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500557 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200558
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500559 if (find_glob(globs, sub_path)) {
560 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100561 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500562 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100563
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200564 if (S_ISDIR(s.st_mode)) {
Lennart Poettering52b32b22019-01-18 16:09:30 +0100565 _cleanup_closedir_ DIR *sub_dir = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200566
567 if (mountpoint &&
568 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500569 s.st_uid == 0) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100570 log_debug("Ignoring directory \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200571 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500572 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200573
574 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500575 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200576 else {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200577 int q;
578
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500579 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200580 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500581 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100582 r = log_warning_errno(errno, "Opening directory \"%s\" failed, ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200583
584 continue;
585 }
586
Lennart Poettering52b32b22019-01-18 16:09:30 +0100587 if (flock(dirfd(sub_dir), LOCK_EX|LOCK_NB) < 0) {
588 log_debug_errno(errno, "Couldn't acquire shared BSD lock on directory \"%s\", skipping: %m", p);
589 continue;
590 }
591
Michal Sekletar78a92a52013-01-18 16:13:08 +0100592 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200593 if (q < 0)
594 r = q;
595 }
596
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100597 /* Note: if you are wondering why we don't support the sticky bit for excluding
598 * directories from cleaning like we do it for other file system objects: well, the
599 * sticky bit already has a meaning for directories, so we don't want to overload
600 * that. */
Lennart Poettering24f3a372012-06-20 09:05:50 +0200601
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500602 if (keep_this_level) {
Lennart Poettering781bc442019-01-18 16:07:45 +0100603 log_debug("Keeping directory \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200604 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500605 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200606
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200607 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500608 age = timespec_load(&s.st_mtim);
609 if (age >= cutoff) {
610 char a[FORMAT_TIMESTAMP_MAX];
611 /* Follows spelling in stat(1). */
612 log_debug("Directory \"%s\": modify time %s is too new.",
613 sub_path,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100614 format_timestamp_style(a, sizeof(a), age, TIMESTAMP_US));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200615 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500616 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200617
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500618 age = timespec_load(&s.st_atim);
619 if (age >= cutoff) {
620 char a[FORMAT_TIMESTAMP_MAX];
621 log_debug("Directory \"%s\": access time %s is too new.",
622 sub_path,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100623 format_timestamp_style(a, sizeof(a), age, TIMESTAMP_US));
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500624 continue;
625 }
626
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500627 log_debug("Removing directory \"%s\".", sub_path);
628 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100629 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
Lennart Poettering781bc442019-01-18 16:07:45 +0100630 r = log_warning_errno(errno, "Failed to remove directory \"%s\", ignoring: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200631
632 } else {
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100633 /* Skip files for which the sticky bit is set. These are semantics we define, and are
634 * unknown elsewhere. See XDG_RUNTIME_DIR specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500635 if (s.st_mode & S_ISVTX) {
636 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100637 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200638 }
639
Lennart Poettering20b6bb92019-06-18 12:41:31 +0200640 if (mountpoint &&
641 S_ISREG(s.st_mode) &&
642 s.st_uid == 0 &&
643 STR_IN_SET(dent->d_name,
644 ".journal",
645 "aquota.user",
646 "aquota.group")) {
647 log_debug("Skipping \"%s\".", sub_path);
648 continue;
649 }
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500650
Lennart Poettering17b90522011-02-14 21:55:06 +0100651 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500652 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
653 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100654 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500655 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100656
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100657 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500658 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
659 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100660 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500661 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100662
Lennart Poetteringa23fabc2019-01-18 15:52:31 +0100663 /* Keep files on this level around if this is requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500664 if (keep_this_level) {
665 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200666 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200667 }
668
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500669 age = timespec_load(&s.st_mtim);
670 if (age >= cutoff) {
671 char a[FORMAT_TIMESTAMP_MAX];
672 /* Follows spelling in stat(1). */
673 log_debug("File \"%s\": modify time %s is too new.",
674 sub_path,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100675 format_timestamp_style(a, sizeof(a), age, TIMESTAMP_US));
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500676 continue;
677 }
678
679 age = timespec_load(&s.st_atim);
680 if (age >= cutoff) {
681 char a[FORMAT_TIMESTAMP_MAX];
682 log_debug("File \"%s\": access time %s is too new.",
683 sub_path,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100684 format_timestamp_style(a, sizeof(a), age, TIMESTAMP_US));
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500685 continue;
686 }
687
688 age = timespec_load(&s.st_ctim);
689 if (age >= cutoff) {
690 char a[FORMAT_TIMESTAMP_MAX];
691 log_debug("File \"%s\": change time %s is too new.",
692 sub_path,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100693 format_timestamp_style(a, sizeof(a), age, TIMESTAMP_US));
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500694 continue;
695 }
696
Lennart Poettering781bc442019-01-18 16:07:45 +0100697 log_debug("Removing \"%s\".", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500698 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
699 if (errno != ENOENT)
Lennart Poettering781bc442019-01-18 16:07:45 +0100700 r = log_warning_errno(errno, "Failed to remove \"%s\", ignoring: %m", sub_path);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500701
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200702 deleted = true;
703 }
704 }
705
706finish:
707 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500708 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
Lennart Poettering76e15a92019-01-18 15:51:13 +0100709 usec_t age1, age2;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200710
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500711 age1 = timespec_load(&ds->st_atim);
712 age2 = timespec_load(&ds->st_mtim);
Lennart Poettering76e15a92019-01-18 15:51:13 +0100713
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500714 log_debug("Restoring access and modification time on \"%s\": %s, %s",
715 p,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +0100716 format_timestamp_style(a, sizeof(a), age1, TIMESTAMP_US),
717 format_timestamp_style(b, sizeof(b), age2, TIMESTAMP_US));
Lennart Poettering76e15a92019-01-18 15:51:13 +0100718
719 /* Restore original directory timestamps */
720 if (futimens(dirfd(d), (struct timespec[]) {
721 ds->st_atim,
722 ds->st_mtim }) < 0)
723 log_warning_errno(errno, "Failed to revert timestamps of '%s', ignoring: %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200724 }
725
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200726 return r;
727}
728
Lennart Poettering5579f852018-01-23 14:03:34 +0100729static bool dangerous_hardlinks(void) {
730 _cleanup_free_ char *value = NULL;
731 static int cached = -1;
732 int r;
733
734 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
735 * what the upstream default is. */
736
737 if (cached >= 0)
738 return cached;
739
740 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
741 if (r < 0) {
742 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
743 return true;
744 }
745
746 r = parse_boolean(value);
747 if (r < 0) {
748 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
749 return true;
750 }
751
752 cached = r == 0;
753 return cached;
754}
755
Franck Bui774f79b2018-03-02 16:13:07 +0100756static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100757 assert(st);
758
759 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
760}
761
Lennart Poettering8b364a32019-04-29 13:21:40 +0200762static mode_t process_mask_perms(mode_t mode, mode_t current) {
763
764 if ((current & 0111) == 0)
765 mode &= ~0111;
766 if ((current & 0222) == 0)
767 mode &= ~0222;
768 if ((current & 0444) == 0)
769 mode &= ~0444;
770 if (!S_ISDIR(current))
771 mode &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
772
773 return mode;
774}
775
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200776static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200777 struct stat stbuf;
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200778 mode_t new_mode;
779 bool do_chown;
Franck Bui936f6bd2018-03-02 17:19:32 +0100780
781 assert(i);
782 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200783 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100784
785 if (!i->mode_set && !i->uid_set && !i->gid_set)
786 goto shortcut;
787
Franck Buib206ac82018-04-13 11:39:39 +0200788 if (!st) {
789 if (fstat(fd, &stbuf) < 0)
790 return log_error_errno(errno, "fstat(%s) failed: %m", path);
791 st = &stbuf;
792 }
793
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100794 if (hardlink_vulnerable(st))
795 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
796 "Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
797 path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100798
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200799 /* Do we need a chown()? */
800 do_chown =
801 (i->uid_set && i->uid != st->st_uid) ||
802 (i->gid_set && i->gid != st->st_gid);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200803
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200804 /* Calculate the mode to apply */
805 new_mode = i->mode_set ? (i->mask_perms ?
806 process_mask_perms(i->mode, st->st_mode) :
807 i->mode) :
808 (st->st_mode & 07777);
Lennart Poettering8b364a32019-04-29 13:21:40 +0200809
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200810 if (i->mode_set && do_chown) {
811 /* Before we issue the chmod() let's reduce the access mode to the common bits of the old and
812 * the new mode. That way there's no time window where the file exists under the old owner
813 * with more than the old access modes — and not under the new owner with more than the new
814 * access modes either. */
815
Franck Bui936f6bd2018-03-02 17:19:32 +0100816 if (S_ISLNK(st->st_mode))
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200817 log_debug("Skipping temporary mode fix for symlink %s.", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100818 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200819 mode_t m = new_mode & st->st_mode; /* Mask new mode by old mode */
Franck Bui936f6bd2018-03-02 17:19:32 +0100820
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200821 if (((m ^ st->st_mode) & 07777) == 0)
822 log_debug("\"%s\" matches temporary mode %o already.", path, m);
Franck Bui936f6bd2018-03-02 17:19:32 +0100823 else {
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200824 log_debug("Temporarily changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200825 if (fchmod_opath(fd, m) < 0)
826 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100827 }
828 }
829 }
830
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200831 if (do_chown) {
Franck Bui936f6bd2018-03-02 17:19:32 +0100832 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
833 path,
834 i->uid_set ? i->uid : UID_INVALID,
835 i->gid_set ? i->gid : GID_INVALID);
836
837 if (fchownat(fd,
838 "",
839 i->uid_set ? i->uid : UID_INVALID,
840 i->gid_set ? i->gid : GID_INVALID,
841 AT_EMPTY_PATH) < 0)
842 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
843 }
844
Lennart Poetteringa9f55d02019-04-29 16:11:52 +0200845 /* Now, apply the final mode. We do this in two cases: when the user set a mode explicitly, or after a
846 * chown(), since chown()'s mangle the access mode in regards to sgid/suid in some conditions. */
847 if (i->mode_set || do_chown) {
848 if (S_ISLNK(st->st_mode))
849 log_debug("Skipping mode fix for symlink %s.", path);
850 else {
851 /* Check if the chmod() is unnecessary. Note that if we did a chown() before we always
852 * chmod() here again, since it might have mangled the bits. */
853 if (!do_chown && ((new_mode ^ st->st_mode) & 07777) == 0)
854 log_debug("\"%s\" matches mode %o already.", path, new_mode);
855 else {
856 log_debug("Changing \"%s\" to mode %o.", path, new_mode);
857 if (fchmod_opath(fd, new_mode) < 0)
858 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
859 }
860 }
861 }
862
Franck Bui936f6bd2018-03-02 17:19:32 +0100863shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200864 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100865}
866
Franck Bui5ec9d062018-04-13 17:31:22 +0200867static int path_open_parent_safe(const char *path) {
868 _cleanup_free_ char *dn = NULL;
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200869 int r, fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200870
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100871 if (path_equal(path, "/") || !path_is_normalized(path))
872 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
873 "Failed to open parent of '%s': invalid path.",
874 path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200875
876 dn = dirname_malloc(path);
877 if (!dn)
878 return log_oom();
879
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200880 r = chase_symlinks(dn, arg_root, CHASE_SAFE|CHASE_WARN, NULL, &fd);
881 if (r < 0 && r != -ENOLINK)
882 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Bui5ec9d062018-04-13 17:31:22 +0200883
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200884 return r < 0 ? r : fd;
Franck Bui5ec9d062018-04-13 17:31:22 +0200885}
886
Franck Buiaddc3e32018-03-20 08:58:48 +0100887static int path_open_safe(const char *path) {
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200888 int r, fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100889
890 /* path_open_safe() returns a file descriptor opened with O_PATH after
891 * verifying that the path doesn't contain unsafe transitions, except
892 * for its final component as the function does not follow symlink. */
893
894 assert(path);
895
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +0100896 if (!path_is_normalized(path))
897 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
898 "Failed to open invalid path '%s'.",
899 path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100900
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200901 r = chase_symlinks(path, arg_root, CHASE_SAFE|CHASE_WARN|CHASE_NOFOLLOW, NULL, &fd);
902 if (r < 0 && r != -ENOLINK)
903 return log_error_errno(r, "Failed to validate path %s: %m", path);
Franck Buiaddc3e32018-03-20 08:58:48 +0100904
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +0200905 return r < 0 ? r : fd;
Franck Buiaddc3e32018-03-20 08:58:48 +0100906}
907
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500908static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200909 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200910
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200911 assert(i);
912 assert(path);
913
Franck Buiaddc3e32018-03-20 08:58:48 +0100914 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200915 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100916 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200917
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200918 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100919}
920
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200921static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100922 const char *p;
923 int r;
924
925 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500926 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100927
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100928 p = i->argument;
929
Lennart Poettering4034a062015-03-23 18:55:36 +0700930 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100931 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700932
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +0200933 r = extract_first_word(&p, &xattr, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700934 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200935 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700936 if (r <= 0)
937 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500938
Franck Bui4cef1922017-11-16 11:27:29 +0100939 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100940 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700941 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100942 continue;
943 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500944
Lennart Poettering4034a062015-03-23 18:55:36 +0700945 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200946 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100947 continue;
948 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500949
Lennart Poettering4034a062015-03-23 18:55:36 +0700950 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100951 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500952
Lennart Poettering4034a062015-03-23 18:55:36 +0700953 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100954 }
955
Lennart Poettering4034a062015-03-23 18:55:36 +0700956 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100957}
958
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200959static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100960 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100961 char **name, **value;
962
963 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100964 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200965 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100966
967 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100968
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100969 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200970 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100971 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400972 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
973 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100974 }
975 return 0;
976}
977
Franck Bui936f6bd2018-03-02 17:19:32 +0100978static int path_set_xattrs(Item *i, const char *path) {
979 _cleanup_close_ int fd = -1;
980
981 assert(i);
982 assert(path);
983
Franck Buiaddc3e32018-03-20 08:58:48 +0100984 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100985 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100986 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100987
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200988 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100989}
990
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200991static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200992#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500993 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500994
995 assert(item);
996
Zach Smithc55ac242019-10-03 18:09:35 -0700997 /* If append_or_force (= modify) is set, we will not modify the acl
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500998 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200999
Zach Smithc55ac242019-10-03 18:09:35 -07001000 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->append_or_force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001001 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +07001002 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001003#else
Zbigniew Jędrzejewski-Szmek886cf312018-11-21 08:23:20 +01001004 log_warning_errno(SYNTHETIC_ERRNO(ENOSYS), "ACLs are not supported. Ignoring");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001005#endif
1006
1007 return 0;
1008}
1009
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001010#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001011static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
1012 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001013 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001014 int r;
1015
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001016 /* Returns 0 for success, positive error if already warned,
1017 * negative error otherwise. */
1018
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001019 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001020 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001021 if (r < 0)
1022 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001023
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001024 r = calc_acl_mask_if_needed(&dup);
1025 if (r < 0)
1026 return r;
1027 } else {
1028 dup = acl_dup(acl);
1029 if (!dup)
1030 return -errno;
1031
1032 /* the mask was already added earlier if needed */
1033 }
1034
1035 r = add_base_acls_if_needed(&dup, path);
1036 if (r < 0)
1037 return r;
1038
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001039 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001040 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001041 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001042 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001043
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001044 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001045 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001046 /* Return positive to indicate we already warned */
1047 return -log_error_errno(errno,
1048 "Setting %s ACL \"%s\" on %s failed: %m",
1049 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001050 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001051
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001052 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001053}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001054#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001055
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001056static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001057 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001058#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001059 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001060 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001061
1062 assert(item);
1063 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001064 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001065
Franck Buib206ac82018-04-13 11:39:39 +02001066 if (!st) {
1067 if (fstat(fd, &stbuf) < 0)
1068 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1069 st = &stbuf;
1070 }
1071
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001072 if (hardlink_vulnerable(st))
1073 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
1074 "Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.",
1075 path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001076
1077 if (S_ISLNK(st->st_mode)) {
1078 log_debug("Skipping ACL fix for symlink %s.", path);
1079 return 0;
1080 }
1081
1082 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1083
1084 if (item->acl_access)
Zach Smithc55ac242019-10-03 18:09:35 -07001085 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001086
remueller26673852018-07-16 16:56:01 +02001087 /* set only default acls to folders */
1088 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Zach Smithc55ac242019-10-03 18:09:35 -07001089 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->append_or_force);
Franck Bui936f6bd2018-03-02 17:19:32 +01001090
1091 if (r > 0)
1092 return -r; /* already warned */
Lennart Poetteringf8606622020-04-23 14:52:10 +02001093
1094 /* The above procfs paths don't work if /proc is not mounted. */
1095 if (r == -ENOENT && proc_mounted() == 0)
1096 r = -ENOSYS;
1097
Franck Bui936f6bd2018-03-02 17:19:32 +01001098 if (r == -EOPNOTSUPP) {
1099 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1100 return 0;
1101 }
1102 if (r < 0)
1103 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1104#endif
1105 return r;
1106}
1107
1108static int path_set_acls(Item *item, const char *path) {
1109 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001110#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001111 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001112
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001113 assert(item);
1114 assert(path);
1115
Franck Buiaddc3e32018-03-20 08:58:48 +01001116 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001117 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001118 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001119
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001120 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001121#endif
1122 return r;
1123}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001124
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001125static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001126
1127 static const struct {
1128 char character;
1129 unsigned value;
1130 } attributes[] = {
1131 { 'A', FS_NOATIME_FL }, /* do not update atime */
1132 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1133 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1134 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1135 { 'c', FS_COMPR_FL }, /* Compress file */
1136 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001137 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001138 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1139 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1140 { 's', FS_SECRM_FL }, /* Secure deletion */
1141 { 'u', FS_UNRM_FL }, /* Undelete */
1142 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001143 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001144 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Lennart Poettering75006472019-03-28 18:35:03 +01001145 { 'P', FS_PROJINHERIT_FL }, /* Inherit the quota project ID */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001146 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001147
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001148 enum {
1149 MODE_ADD,
1150 MODE_DEL,
1151 MODE_SET
1152 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001153
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001154 unsigned value = 0, mask = 0;
1155 const char *p;
1156
1157 assert(item);
1158
1159 p = item->argument;
1160 if (p) {
1161 if (*p == '+') {
1162 mode = MODE_ADD;
1163 p++;
1164 } else if (*p == '-') {
1165 mode = MODE_DEL;
1166 p++;
1167 } else if (*p == '=') {
1168 mode = MODE_SET;
1169 p++;
1170 }
1171 }
1172
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001173 if (isempty(p) && mode != MODE_SET)
1174 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1175 "Setting file attribute on '%s' needs an attribute specification.",
1176 item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001177
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001178 for (; p && *p ; p++) {
1179 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001180
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001181 for (i = 0; i < ELEMENTSOF(attributes); i++)
1182 if (*p == attributes[i].character)
1183 break;
1184
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001185 if (i >= ELEMENTSOF(attributes))
1186 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1187 "Unknown file attribute '%c' on '%s'.",
1188 *p, item->path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001189
1190 v = attributes[i].value;
1191
Andreas Rammhold37420952017-09-29 00:37:23 +02001192 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001193
1194 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001195 }
1196
1197 if (mode == MODE_SET)
Lennart Poetteringd629ba72019-03-28 18:41:39 +01001198 mask |= CHATTR_ALL_FL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001199
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001200 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001201
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001202 item->attribute_mask = mask;
1203 item->attribute_value = value;
1204 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001205
1206 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001207}
1208
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001209static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001210 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001211 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001212 unsigned f;
1213 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001214
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001215 assert(item);
1216 assert(fd);
1217 assert(path);
1218
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001219 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001220 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001221
Franck Buib206ac82018-04-13 11:39:39 +02001222 if (!st) {
1223 if (fstat(fd, &stbuf) < 0)
1224 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1225 st = &stbuf;
1226 }
1227
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001228 /* Issuing the file attribute ioctls on device nodes is not
1229 * safe, as that will be delivered to the drivers, not the
1230 * file system containing the device node. */
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001231 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode))
1232 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1233 "Setting file flags is only supported on regular files and directories, cannot set on '%s'.",
1234 path);
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001235
1236 f = item->attribute_value & item->attribute_mask;
1237
1238 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001239 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001240 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001241
Lennart Poetteringf2324782018-03-26 13:25:51 +02001242 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001243 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001244 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001245
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001246 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001247 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001248 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001249 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001250 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001251 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001252
1253 return 0;
1254}
1255
Franck Bui936f6bd2018-03-02 17:19:32 +01001256static int path_set_attribute(Item *item, const char *path) {
1257 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001258
1259 if (!item->attribute_set || item->attribute_mask == 0)
1260 return 0;
1261
Franck Buiaddc3e32018-03-20 08:58:48 +01001262 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001263 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001264 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001265
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001266 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001267}
1268
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001269static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001270 _cleanup_close_ int fd = -1, dir_fd = -1;
1271 char *bn;
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001272 int r;
Franck Bui31c84ff2018-04-13 09:19:24 +02001273
1274 assert(i);
1275 assert(path);
1276 assert(i->argument);
1277 assert(i->type == WRITE_FILE);
1278
Franck Bui551470e2018-04-13 17:54:09 +02001279 /* Validate the path and keep the fd on the directory for opening the
1280 * file so we're sure that it can't be changed behind our back. */
1281 dir_fd = path_open_parent_safe(path);
1282 if (dir_fd < 0)
1283 return dir_fd;
1284
1285 bn = basename(path);
1286
Franck Bui31c84ff2018-04-13 09:19:24 +02001287 /* Follows symlinks */
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001288 fd = openat(dir_fd, bn,
1289 O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY|(i->append_or_force ? O_APPEND : 0),
1290 i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001291 if (fd < 0) {
1292 if (errno == ENOENT) {
1293 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1294 return 0;
1295 }
Lennart Poettering1baaf8a2020-05-25 16:19:17 +02001296
1297 if (i->allow_failure)
1298 return log_debug_errno(errno, "Failed to open file \"%s\", ignoring: %m", path);
1299
Franck Bui31c84ff2018-04-13 09:19:24 +02001300 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1301 }
1302
1303 /* 'w' is allowed to write into any kind of files. */
1304 log_debug("Writing to \"%s\".", path);
1305
1306 r = loop_write(fd, i->argument, strlen(i->argument), false);
1307 if (r < 0)
1308 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1309
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001310 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001311}
1312
1313static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001314 _cleanup_close_ int fd = -1, dir_fd = -1;
1315 struct stat stbuf, *st = NULL;
1316 int r = 0;
1317 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001318
Lennart Poettering874f1942014-06-10 22:48:56 +02001319 assert(i);
1320 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001321 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001322
Franck Bui5ec9d062018-04-13 17:31:22 +02001323 /* 'f' operates on regular files exclusively. */
1324
1325 /* Validate the path and keep the fd on the directory for opening the
1326 * file so we're sure that it can't be changed behind our back. */
1327 dir_fd = path_open_parent_safe(path);
1328 if (dir_fd < 0)
1329 return dir_fd;
1330
1331 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001332
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001333 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001334 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001335 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 +02001336 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001337 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001338
1339 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001340 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1341 * file already exists. It returns EROFS only if it needs to
1342 * create the file. */
1343 if (errno != EEXIST)
1344 return log_error_errno(errno, "Failed to create file %s: %m", path);
1345
1346 /* Re-open the file. At that point it must exist since open(2)
1347 * failed with EEXIST. We still need to check if the perms/mode
1348 * need to be changed. For read-only filesystems, we let
1349 * fd_set_perms() report the error if the perms need to be
1350 * modified. */
1351 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1352 if (fd < 0)
1353 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1354
1355 if (fstat(fd, &stbuf) < 0)
1356 return log_error_errno(errno, "stat(%s) failed: %m", path);
1357
1358 if (!S_ISREG(stbuf.st_mode)) {
1359 log_error("%s exists and is not a regular file.", path);
1360 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001361 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001362
Franck Bui5ec9d062018-04-13 17:31:22 +02001363 st = &stbuf;
1364 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001365
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001366 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001367
Franck Bui5ec9d062018-04-13 17:31:22 +02001368 if (i->argument) {
1369 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001370
Franck Bui5ec9d062018-04-13 17:31:22 +02001371 r = loop_write(fd, i->argument, strlen(i->argument), false);
1372 if (r < 0)
1373 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1374 }
1375 }
1376
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001377 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001378}
1379
1380static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001381 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001382 struct stat stbuf, *st = NULL;
1383 bool erofs = false;
1384 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001385 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001386
1387 assert(i);
1388 assert(path);
Zach Smitheccebf42019-10-28 09:32:16 -07001389 assert(i->type == TRUNCATE_FILE || (i->type == CREATE_FILE && i->append_or_force));
Franck Bui5ec9d062018-04-13 17:31:22 +02001390
1391 /* We want to operate on regular file exclusively especially since
1392 * O_TRUNC is unspecified if the file is neither a regular file nor a
1393 * fifo nor a terminal device. Therefore we first open the file and make
1394 * sure it's a regular one before truncating it. */
1395
Franck Bui14ab8042018-04-13 17:50:49 +02001396 /* Validate the path and keep the fd on the directory for opening the
1397 * file so we're sure that it can't be changed behind our back. */
1398 dir_fd = path_open_parent_safe(path);
1399 if (dir_fd < 0)
1400 return dir_fd;
1401
1402 bn = basename(path);
1403
Franck Bui5ec9d062018-04-13 17:31:22 +02001404 RUN_WITH_UMASK(0000) {
1405 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001406 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 +02001407 mac_selinux_create_file_clear();
1408 }
1409
1410 if (fd < 0) {
1411 if (errno != EROFS)
1412 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1413
1414 /* On a read-only filesystem, we don't want to fail if the
1415 * target is already empty and the perms are set. So we still
1416 * proceed with the sanity checks and let the remaining
1417 * operations fail with EROFS if they try to modify the target
1418 * file. */
1419
Franck Bui14ab8042018-04-13 17:50:49 +02001420 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001421 if (fd < 0) {
1422 if (errno == ENOENT) {
1423 log_error("Cannot create file %s on a read-only file system.", path);
1424 return -EROFS;
1425 }
1426
1427 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1428 }
1429
1430 erofs = true;
1431 }
1432
1433 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001434 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001435
Franck Bui5ec9d062018-04-13 17:31:22 +02001436 if (!S_ISREG(stbuf.st_mode)) {
1437 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001438 return -EEXIST;
1439 }
1440
Franck Bui5ec9d062018-04-13 17:31:22 +02001441 if (stbuf.st_size > 0) {
1442 if (ftruncate(fd, 0) < 0) {
1443 r = erofs ? -EROFS : -errno;
1444 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1445 }
1446 } else
1447 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001448
Franck Bui5ec9d062018-04-13 17:31:22 +02001449 log_debug("\"%s\" has been created.", path);
1450
1451 if (i->argument) {
1452 log_debug("Writing to \"%s\".", path);
1453
1454 r = loop_write(fd, i->argument, strlen(i->argument), false);
1455 if (r < 0) {
1456 r = erofs ? -EROFS : r;
1457 return log_error_errno(r, "Failed to write file %s: %m", path);
1458 }
1459 }
1460
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001461 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001462}
1463
Franck Buib1f7b172018-04-12 12:19:22 +02001464static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001465 _cleanup_close_ int dfd = -1, fd = -1;
1466 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001467 int r;
1468
1469 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1470
Franck Bui16ba55a2018-04-12 12:55:22 +02001471 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001472
Franck Bui16ba55a2018-04-12 12:55:22 +02001473 /* Validate the path and use the returned directory fd for copying the
1474 * target so we're sure that the path can't be changed behind our
1475 * back. */
1476 dfd = path_open_parent_safe(i->path);
1477 if (dfd < 0)
1478 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001479
Franck Bui16ba55a2018-04-12 12:55:22 +02001480 r = copy_tree_at(AT_FDCWD, i->argument,
1481 dfd, bn,
1482 i->uid_set ? i->uid : UID_INVALID,
1483 i->gid_set ? i->gid : GID_INVALID,
Christian Göttsche80e7c842019-11-28 12:18:04 +01001484 COPY_REFLINK | COPY_MERGE_EMPTY | COPY_MAC_CREATE);
Franck Buib1f7b172018-04-12 12:19:22 +02001485 if (r < 0) {
1486 struct stat a, b;
1487
Franck Bui16ba55a2018-04-12 12:55:22 +02001488 /* If the target already exists on read-only filesystems, trying
1489 * to create the target will not fail with EEXIST but with
1490 * EROFS. */
1491 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1492 r = -EEXIST;
1493
Franck Buib1f7b172018-04-12 12:19:22 +02001494 if (r != -EEXIST)
1495 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1496
1497 if (stat(i->argument, &a) < 0)
1498 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1499
Franck Bui16ba55a2018-04-12 12:55:22 +02001500 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001501 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1502
1503 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1504 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1505 return 0;
1506 }
1507 }
1508
Franck Bui16ba55a2018-04-12 12:55:22 +02001509 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1510 if (fd < 0)
1511 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1512
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001513 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001514}
1515
Franck Bui074bd732018-04-12 18:10:57 +02001516typedef enum {
1517 CREATION_NORMAL,
1518 CREATION_EXISTING,
1519 CREATION_FORCE,
1520 _CREATION_MODE_MAX,
1521 _CREATION_MODE_INVALID = -1
1522} CreationMode;
1523
Lennart Poetteringb82f71c2019-03-22 19:19:32 +01001524static const char *const creation_mode_verb_table[_CREATION_MODE_MAX] = {
Franck Bui074bd732018-04-12 18:10:57 +02001525 [CREATION_NORMAL] = "Created",
1526 [CREATION_EXISTING] = "Found existing",
1527 [CREATION_FORCE] = "Created replacement",
1528};
1529
1530DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1531
Franck Buif17a8d62018-08-06 12:29:54 +02001532static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001533 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001534 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001535 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001536
Franck Bui4c39d892018-04-27 11:51:14 +02001537 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001538
Franck Buif17a8d62018-08-06 12:29:54 +02001539 if (!creation)
1540 creation = &c;
1541
Franck Bui4c39d892018-04-27 11:51:14 +02001542 pfd = path_open_parent_safe(path);
1543 if (pfd < 0)
1544 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001545
Franck Bui4c39d892018-04-27 11:51:14 +02001546 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001547 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1548
1549 /* Don't create a subvolume unless the root directory is
1550 * one, too. We do this under the assumption that if the
1551 * root directory is just a plain directory (i.e. very
1552 * light-weight), we shouldn't try to split it up into
1553 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1554 * environments and suchlike will get a full brtfs
1555 * subvolume set up below their tree only if they
1556 * specifically set up a btrfs subvolume for the root
1557 * dir too. */
1558
Franck Bui4c39d892018-04-27 11:51:14 +02001559 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001560 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001561 RUN_WITH_UMASK((~mode) & 0777)
1562 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001563 }
1564 } else
1565 r = 0;
1566
Franck Bui4c39d892018-04-27 11:51:14 +02001567 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001568 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001569 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001570
1571 if (r < 0) {
1572 int k;
1573
1574 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001575 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001576
Franck Bui4c39d892018-04-27 11:51:14 +02001577 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001578 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001579 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 +02001580 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001581 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001582 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001583 log_warning("\"%s\" already exists and is not a directory.", path);
1584 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001585 }
1586
Franck Buif17a8d62018-08-06 12:29:54 +02001587 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001588 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001589 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001590
Franck Buif17a8d62018-08-06 12:29:54 +02001591 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001592
1593 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1594 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001595 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1596
Franck Bui4c39d892018-04-27 11:51:14 +02001597 return r;
1598}
1599
1600static int create_directory(Item *i, const char *path) {
1601 _cleanup_close_ int fd = -1;
1602
1603 assert(i);
1604 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1605
Franck Buif17a8d62018-08-06 12:29:54 +02001606 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001607 if (fd == -EEXIST)
1608 return 0;
1609 if (fd < 0)
1610 return fd;
1611
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001612 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001613}
1614
1615static int create_subvolume(Item *i, const char *path) {
1616 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001617 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001618 int r, q = 0;
1619
1620 assert(i);
1621 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1622
Franck Buif17a8d62018-08-06 12:29:54 +02001623 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001624 if (fd == -EEXIST)
1625 return 0;
1626 if (fd < 0)
1627 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001628
Franck Buif17a8d62018-08-06 12:29:54 +02001629 if (creation == CREATION_NORMAL &&
1630 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001631 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001632 if (r == -ENOTTY)
1633 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1634 else if (r == -EROFS)
1635 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
Lennart Poettering4b019d22020-05-26 12:52:57 +02001636 else if (r == -ENOTCONN)
Franck Bui4ad36842018-04-26 14:54:20 +02001637 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1638 else if (r < 0)
1639 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1640 else if (r > 0)
1641 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1642 else if (r == 0)
1643 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1644 }
1645
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001646 r = fd_set_perms(i, fd, path, NULL);
1647 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001648 return q;
1649
1650 return r;
1651}
1652
Franck Bui54946022018-04-26 15:45:17 +02001653static int empty_directory(Item *i, const char *path) {
1654 int r;
1655
1656 assert(i);
1657 assert(i->type == EMPTY_DIRECTORY);
1658
1659 r = is_dir(path, false);
1660 if (r == -ENOENT) {
1661 /* Option "e" operates only on existing objects. Do not
1662 * print errors about non-existent files or directories */
1663 log_debug("Skipping missing directory: %s", path);
1664 return 0;
1665 }
1666 if (r < 0)
1667 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01001668 if (r == 0)
1669 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
1670 "'%s' already exists and is not a directory.",
1671 path);
Franck Bui54946022018-04-26 15:45:17 +02001672
1673 return path_set_perms(i, path);
1674}
1675
Franck Bui074bd732018-04-12 18:10:57 +02001676static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001677 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001678 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001679 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001680 int r;
1681
1682 assert(i);
1683 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1684
Franck Buic7700a72018-04-12 18:33:54 +02001685 bn = basename(i->path);
1686
1687 /* Validate the path and use the returned directory fd for copying the
1688 * target so we're sure that the path can't be changed behind our
1689 * back. */
1690 dfd = path_open_parent_safe(i->path);
1691 if (dfd < 0)
1692 return dfd;
1693
Franck Bui074bd732018-04-12 18:10:57 +02001694 RUN_WITH_UMASK(0000) {
1695 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001696 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001697 mac_selinux_create_file_clear();
1698 }
1699
1700 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001701 struct stat st;
1702
Franck Bui074bd732018-04-12 18:10:57 +02001703 if (errno == EPERM) {
1704 log_debug("We lack permissions, possibly because of cgroup configuration; "
1705 "skipping creation of device node %s.", i->path);
1706 return 0;
1707 }
1708
1709 if (errno != EEXIST)
1710 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1711
Franck Buic7700a72018-04-12 18:33:54 +02001712 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001713 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1714
1715 if ((st.st_mode & S_IFMT) != file_type) {
1716
Zach Smithc55ac242019-10-03 18:09:35 -07001717 if (i->append_or_force) {
Franck Bui074bd732018-04-12 18:10:57 +02001718
1719 RUN_WITH_UMASK(0000) {
1720 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001721 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001722 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1723 mac_selinux_create_file_clear();
1724 }
1725
1726 if (r < 0)
1727 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1728 creation = CREATION_FORCE;
1729 } else {
1730 log_debug("%s is not a device node.", i->path);
1731 return 0;
1732 }
1733 } else
1734 creation = CREATION_EXISTING;
1735 } else
1736 creation = CREATION_NORMAL;
1737
1738 log_debug("%s %s device node \"%s\" %u:%u.",
1739 creation_mode_verb_to_string(creation),
1740 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1741 i->path, major(i->mode), minor(i->mode));
1742
Franck Buic7700a72018-04-12 18:33:54 +02001743 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1744 if (fd < 0)
1745 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1746
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001747 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001748}
1749
Franck Buia2fc2f82018-04-27 18:11:26 +02001750static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001751 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001752 CreationMode creation;
1753 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001754 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001755 int r;
1756
Franck Bui7ea5a872018-04-27 18:17:32 +02001757 pfd = path_open_parent_safe(path);
1758 if (pfd < 0)
1759 return pfd;
1760
1761 bn = basename(path);
1762
Franck Buia2fc2f82018-04-27 18:11:26 +02001763 RUN_WITH_UMASK(0000) {
1764 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001765 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001766 mac_selinux_create_file_clear();
1767 }
1768
1769 if (r < 0) {
1770 if (errno != EEXIST)
1771 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1772
Franck Bui7ea5a872018-04-27 18:17:32 +02001773 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001774 return log_error_errno(errno, "stat(%s) failed: %m", path);
1775
1776 if (!S_ISFIFO(st.st_mode)) {
1777
Zach Smithc55ac242019-10-03 18:09:35 -07001778 if (i->append_or_force) {
Franck Buia2fc2f82018-04-27 18:11:26 +02001779 RUN_WITH_UMASK(0000) {
1780 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001781 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001782 mac_selinux_create_file_clear();
1783 }
1784
1785 if (r < 0)
1786 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1787 creation = CREATION_FORCE;
1788 } else {
1789 log_warning("\"%s\" already exists and is not a fifo.", path);
1790 return 0;
1791 }
1792 } else
1793 creation = CREATION_EXISTING;
1794 } else
1795 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001796
Franck Buia2fc2f82018-04-27 18:11:26 +02001797 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1798
Franck Bui7ea5a872018-04-27 18:17:32 +02001799 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1800 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001801 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001802
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001803 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001804}
1805
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001806typedef int (*action_t)(Item *i, const char *path);
1807typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001808
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001809static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001810 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001811 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001812
1813 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001814 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001815 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001816
1817 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001818 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001819 goto finish;
1820 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001821
1822 /* This returns the first error we run into, but nevertheless
1823 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001824 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001825
Franck Bui14f34802018-05-24 14:17:07 +02001826 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001827 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001828 _cleanup_closedir_ DIR *d = NULL;
1829 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001830
Franck Bui936f6bd2018-03-02 17:19:32 +01001831 /* The passed 'fd' was opened with O_PATH. We need to convert
1832 * it into a 'regular' fd before reading the directory content. */
1833 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001834
Franck Bui936f6bd2018-03-02 17:19:32 +01001835 d = opendir(procfs_path);
1836 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001837 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1838 if (r == 0)
1839 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001840 goto finish;
1841 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001842
Franck Bui936f6bd2018-03-02 17:19:32 +01001843 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001844 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001845
Franck Bui936f6bd2018-03-02 17:19:32 +01001846 if (dot_or_dot_dot(de->d_name))
1847 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001848
Franck Bui936f6bd2018-03-02 17:19:32 +01001849 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001850 if (de_fd < 0)
1851 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001852 else {
1853 _cleanup_free_ char *de_path = NULL;
1854
Zbigniew Jędrzejewski-Szmek62a85ee2018-11-30 10:43:57 +01001855 de_path = path_join(path, de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001856 if (!de_path)
1857 q = log_oom();
1858 else
1859 /* Pass ownership of dirent fd over */
1860 q = item_do(i, de_fd, de_path, action);
1861 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001862
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001863 if (q < 0 && r == 0)
1864 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001865 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001866 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001867finish:
1868 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001869 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001870}
1871
Franck Bui936f6bd2018-03-02 17:19:32 +01001872static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001873 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001874 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001875 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001876 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001877 char **fn;
1878
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001879 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1880 if (k < 0 && k != -ENOENT)
1881 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001882
1883 STRV_FOREACH(fn, g.gl_pathv) {
1884 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001885 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001886 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001887 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001888
Franck Bui936f6bd2018-03-02 17:19:32 +01001889 return r;
1890}
1891
1892static int glob_item_recursively(Item *i, fdaction_t action) {
1893 _cleanup_globfree_ glob_t g = {
1894 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1895 };
1896 int r = 0, k;
1897 char **fn;
1898
1899 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1900 if (k < 0 && k != -ENOENT)
1901 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1902
1903 STRV_FOREACH(fn, g.gl_pathv) {
1904 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001905
1906 /* Make sure we won't trigger/follow file object (such as
1907 * device nodes, automounts, ...) pointed out by 'fn' with
1908 * O_PATH. Note, when O_PATH is used, flags other than
1909 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1910
1911 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1912 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001913 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1914 if (r == 0)
1915 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001916 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001917 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001918
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001919 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001920 if (k < 0 && r == 0)
1921 r = k;
1922
1923 /* we passed fd ownership to the previous call */
1924 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001925 }
1926
Michal Schmidt99e68c02011-12-15 23:45:26 +01001927 return r;
1928}
1929
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001930static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001931 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001932 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001933
1934 assert(i);
1935
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001936 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1937
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001938 switch (i->type) {
1939
1940 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001941 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001942 case REMOVE_PATH:
1943 case RECURSIVE_REMOVE_PATH:
1944 return 0;
1945
Zach Smitheccebf42019-10-28 09:32:16 -07001946 case TRUNCATE_FILE:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001947 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001948 RUN_WITH_UMASK(0000)
1949 (void) mkdir_parents_label(i->path, 0755);
1950
Zach Smitheccebf42019-10-28 09:32:16 -07001951 if ((i->type == CREATE_FILE && i->append_or_force) || i->type == TRUNCATE_FILE)
1952 r = truncate_file(i, i->path);
1953 else
1954 r = create_file(i, i->path);
Lennart Poettering265ffa12013-09-17 16:33:30 -05001955
Franck Bui5ec9d062018-04-13 17:31:22 +02001956 if (r < 0)
1957 return r;
1958 break;
1959
Franck Bui7b887f22018-04-12 12:18:19 +02001960 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001961 RUN_WITH_UMASK(0000)
1962 (void) mkdir_parents_label(i->path, 0755);
1963
Franck Buib1f7b172018-04-12 12:19:22 +02001964 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001965 if (r < 0)
1966 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001967 break;
1968
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001969 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001970 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001971 if (r < 0)
1972 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001973
1974 break;
1975
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001976 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001977 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001978 RUN_WITH_UMASK(0000)
1979 (void) mkdir_parents_label(i->path, 0755);
1980
1981 r = create_directory(i, i->path);
1982 if (r < 0)
1983 return r;
1984 break;
1985
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001986 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001987 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1988 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001989 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001990 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001991
Franck Bui4c39d892018-04-27 11:51:14 +02001992 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001993 if (r < 0)
1994 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001995 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001996
Franck Bui4ad36842018-04-26 14:54:20 +02001997 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001998 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001999 if (r < 0)
2000 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002001 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02002002
2003 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02002004 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01002005 (void) mkdir_parents_label(i->path, 0755);
2006
Franck Buia2fc2f82018-04-27 18:11:26 +02002007 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002008 if (r < 0)
2009 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02002010 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01002011
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002012 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01002013 RUN_WITH_UMASK(0000)
2014 (void) mkdir_parents_label(i->path, 0755);
2015
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002016 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002017 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002018 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002019
Lennart Poettering468d7262012-01-17 15:04:12 +01002020 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002021 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002022
Michal Schmidt4a62c712014-11-28 19:57:32 +01002023 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002024 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002025
2026 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002027 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002028
Zach Smithc55ac242019-10-03 18:09:35 -07002029 if (i->append_or_force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002030 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002031 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002032 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002033
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002034 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002035 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2036 if (r < 0)
2037 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2038
2039 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002040 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002041 mac_selinux_create_file_clear();
2042 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002043 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002044 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002045
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002046 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002047 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002048 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002049 return 0;
2050 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002051 } else
2052 creation = CREATION_EXISTING;
2053 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002054
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002055 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002056 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002057 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002058 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002059
2060 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002061 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002062 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002063 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2064 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002065
2066 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2067 return 0;
2068 }
2069
Lennart Poettering7fa10742018-01-23 14:14:19 +01002070 RUN_WITH_UMASK(0000)
2071 (void) mkdir_parents_label(i->path, 0755);
2072
Franck Bui074bd732018-04-12 18:10:57 +02002073 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002074 if (r < 0)
2075 return r;
2076
2077 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002078
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002079 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002080 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002081 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002082 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002083 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002084 break;
2085
Michal Schmidta8d88782011-12-15 23:11:07 +01002086 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002087 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002088 if (r < 0)
2089 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002090 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002091
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002092 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002093 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002094 if (r < 0)
2095 return r;
2096 break;
2097
2098 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002099 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002100 if (r < 0)
2101 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002102 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002103
2104 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002105 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002106 if (r < 0)
2107 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002108 break;
2109
2110 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002111 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002112 if (r < 0)
2113 return r;
2114 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002115
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002116 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002117 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002118 if (r < 0)
2119 return r;
2120 break;
2121
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002122 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002123 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002124 if (r < 0)
2125 return r;
2126 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002127 }
2128
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002129 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002130}
2131
Michal Schmidta0896122011-12-15 21:32:50 +01002132static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002133 int r;
2134
2135 assert(i);
2136
2137 switch (i->type) {
2138
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002139 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002140 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002141 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002142
2143 break;
2144
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002145 case RECURSIVE_REMOVE_PATH:
Lennart Poettering2c575972018-10-29 19:24:56 +01002146 /* 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 -05002147 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering2c575972018-10-29 19:24:56 +01002148 r = rm_rf(instance, REMOVE_ROOT|REMOVE_SUBVOLUME|REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002149 if (r < 0 && r != -ENOENT)
2150 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002151
2152 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002153
2154 default:
2155 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002156 }
2157
2158 return 0;
2159}
2160
Michal Schmidta0896122011-12-15 21:32:50 +01002161static int remove_item(Item *i) {
Lennart Poettering2c575972018-10-29 19:24:56 +01002162 int r;
2163
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002164 assert(i);
2165
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002166 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2167
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002168 switch (i->type) {
2169
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002170 case TRUNCATE_DIRECTORY:
Lennart Poettering2c575972018-10-29 19:24:56 +01002171 /* FIXME: we probably should use dir_cleanup() here instead of rm_rf() so that 'x' is honoured. */
2172 log_debug("rm -rf \"%s\"", i->path);
2173 r = rm_rf(i->path, REMOVE_PHYSICAL);
2174 if (r < 0 && r != -ENOENT)
2175 return log_error_errno(r, "rm_rf(%s): %m", i->path);
2176
2177 return 0;
2178
2179 case REMOVE_PATH:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002180 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002181 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002182
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002183 default:
2184 return 0;
2185 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002186}
2187
Michal Sekletar78a92a52013-01-18 16:13:08 +01002188static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002189 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002190 struct stat s, ps;
2191 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002192 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002193 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002194
2195 assert(i);
2196
2197 if (!i->age_set)
2198 return 0;
2199
2200 n = now(CLOCK_REALTIME);
2201 if (n < i->age)
2202 return 0;
2203
2204 cutoff = n - i->age;
2205
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002206 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002207 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002208 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002209 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002210 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002211 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002212
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002213 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002214 }
2215
Michal Schmidt4a62c712014-11-28 19:57:32 +01002216 if (fstat(dirfd(d), &s) < 0)
2217 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002218
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01002219 if (!S_ISDIR(s.st_mode))
2220 return log_error_errno(SYNTHETIC_ERRNO(ENOTDIR),
2221 "%s is not a directory.", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002222
Michal Schmidt4a62c712014-11-28 19:57:32 +01002223 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2224 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002225
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002226 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002227
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002228 log_debug("Cleanup threshold for %s \"%s\" is %s",
2229 mountpoint ? "mount point" : "directory",
2230 instance,
Luca Boccassi7b3eb5c2020-06-19 11:24:09 +01002231 format_timestamp_style(timestamp, sizeof(timestamp), cutoff, TIMESTAMP_US));
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002232
2233 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2234 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002235}
2236
2237static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002238 assert(i);
2239
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002240 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2241
Michal Sekletar78a92a52013-01-18 16:13:08 +01002242 switch (i->type) {
2243 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002244 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002245 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2246 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002247 case TRUNCATE_DIRECTORY:
2248 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002249 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002250 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002251 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002252 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002253 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002254 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002255 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002256 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002257 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002258}
2259
Lennart Poettering599ebe22018-10-25 23:22:18 +02002260static int process_item(Item *i, OperationMask operation) {
Lennart Poettering811a1582018-10-26 20:56:37 +02002261 OperationMask todo;
2262 int r, q, p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002263
2264 assert(i);
2265
Lennart Poettering811a1582018-10-26 20:56:37 +02002266 todo = operation & ~i->done;
2267 if (todo == 0) /* Everything already done? */
Lennart Poettering1910cd02014-06-11 01:37:35 +02002268 return 0;
2269
Lennart Poettering811a1582018-10-26 20:56:37 +02002270 i->done |= operation;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002271
Zbigniew Jędrzejewski-Szmeka5648b82019-10-24 10:33:20 +02002272 r = chase_symlinks(i->path, arg_root, CHASE_NO_AUTOFS|CHASE_WARN, NULL, NULL);
Lennart Poettering21af3382018-10-26 21:07:38 +02002273 if (r == -EREMOTE) {
Franck Bui145b8d0f2018-11-30 15:43:13 +01002274 log_notice_errno(r, "Skipping %s", i->path);
Lennart Poettering811a1582018-10-26 20:56:37 +02002275 return 0;
Franck Bui145b8d0f2018-11-30 15:43:13 +01002276 }
2277 if (r < 0)
Lennart Poettering48d96902018-11-20 15:56:55 +01002278 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 -05002279
Lennart Poettering599ebe22018-10-25 23:22:18 +02002280 r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002281 /* Failure can only be tolerated for create */
2282 if (i->allow_failure)
2283 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002284
Lennart Poettering599ebe22018-10-25 23:22:18 +02002285 q = FLAGS_SET(operation, OPERATION_REMOVE) ? remove_item(i) : 0;
2286 p = FLAGS_SET(operation, OPERATION_CLEAN) ? clean_item(i) : 0;
Lennart Poettering1a967b62018-10-25 23:19:00 +02002287
Lennart Poettering811a1582018-10-26 20:56:37 +02002288 return r < 0 ? r :
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002289 q < 0 ? q :
2290 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002291}
2292
Lennart Poettering599ebe22018-10-25 23:22:18 +02002293static int process_item_array(ItemArray *array, OperationMask operation) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002294 int r = 0;
2295 size_t n;
Lennart Poettering753615e2014-06-12 23:07:17 +02002296
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002297 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002298
Lennart Poettering811a1582018-10-26 20:56:37 +02002299 /* Create any parent first. */
2300 if (FLAGS_SET(operation, OPERATION_CREATE) && array->parent)
2301 r = process_item_array(array->parent, operation & OPERATION_CREATE);
2302
2303 /* Clean up all children first */
2304 if ((operation & (OPERATION_REMOVE|OPERATION_CLEAN)) && !set_isempty(array->children)) {
2305 Iterator i;
2306 ItemArray *c;
2307
2308 SET_FOREACH(c, array->children, i) {
2309 int k;
2310
2311 k = process_item_array(c, operation & (OPERATION_REMOVE|OPERATION_CLEAN));
2312 if (k < 0 && r == 0)
2313 r = k;
2314 }
2315 }
2316
Lennart Poettering96d10d72018-10-25 13:51:01 +02002317 for (n = 0; n < array->n_items; n++) {
2318 int k;
2319
Lennart Poettering599ebe22018-10-25 23:22:18 +02002320 k = process_item(array->items + n, operation);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002321 if (k < 0 && r == 0)
2322 r = k;
2323 }
2324
2325 return r;
2326}
2327
2328static void item_free_contents(Item *i) {
2329 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002330 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002331 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002332 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002333
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002334#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002335 acl_free(i->acl_access);
2336 acl_free(i->acl_default);
2337#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002338}
2339
Yu Watanabe87938c32018-11-26 01:00:54 +09002340static ItemArray* item_array_free(ItemArray *a) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002341 size_t n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002342
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002343 if (!a)
Yu Watanabe87938c32018-11-26 01:00:54 +09002344 return NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002345
Lennart Poettering96d10d72018-10-25 13:51:01 +02002346 for (n = 0; n < a->n_items; n++)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002347 item_free_contents(a->items + n);
Lennart Poettering96d10d72018-10-25 13:51:01 +02002348
Lennart Poettering811a1582018-10-26 20:56:37 +02002349 set_free(a->children);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002350 free(a->items);
Yu Watanabe87938c32018-11-26 01:00:54 +09002351 return mfree(a);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002352}
2353
Yu Watanabe93bab282018-09-18 08:39:24 +09002354static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002355 /* Make sure that the ownership taking item is put first, so
2356 * that we first create the node, and then can adjust it */
2357
Yu Watanabe93bab282018-09-18 08:39:24 +09002358 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002359 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002360 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002361 return 1;
2362
Yu Watanabe93bab282018-09-18 08:39:24 +09002363 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002364}
2365
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002366static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002367 assert(a);
2368 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002369 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002370
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002371 if (takes_ownership(a->type) && takes_ownership(b->type))
2372 /* check if the items are the same */
2373 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002374
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002375 a->uid_set == b->uid_set &&
2376 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002377
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002378 a->gid_set == b->gid_set &&
2379 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002380
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002381 a->mode_set == b->mode_set &&
2382 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002383
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002384 a->age_set == b->age_set &&
2385 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002386
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002387 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002388
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002389 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002390
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002391 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002392
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002393 return true;
2394}
2395
Dave Reisnera2aced42013-07-24 11:10:05 -04002396static bool should_include_path(const char *path) {
2397 char **prefix;
2398
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002399 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002400 if (path_startswith(path, *prefix)) {
2401 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2402 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002403 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002404 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002405
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002406 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002407 if (path_startswith(path, *prefix)) {
2408 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002409 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002410 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002411
Lennart Poettering6b000af2020-06-23 08:31:16 +02002412 /* no matches, so we should include this path only if we have no allow list at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002413 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002414 return true;
2415
2416 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2417 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002418}
2419
Franck Bui4cef1922017-11-16 11:27:29 +01002420static int specifier_expansion_from_arg(Item *i) {
2421 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2422 char **xattr;
2423 int r;
2424
2425 assert(i);
2426
Frantisek Sumsal4e361ac2019-04-28 14:28:49 +02002427 if (!i->argument)
Franck Bui4cef1922017-11-16 11:27:29 +01002428 return 0;
2429
2430 switch (i->type) {
2431 case COPY_FILES:
2432 case CREATE_SYMLINK:
2433 case CREATE_FILE:
2434 case TRUNCATE_FILE:
2435 case WRITE_FILE:
2436 r = cunescape(i->argument, 0, &unescaped);
2437 if (r < 0)
2438 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2439
2440 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2441 if (r < 0)
2442 return r;
2443
2444 free_and_replace(i->argument, resolved);
2445 break;
2446
2447 case SET_XATTR:
2448 case RECURSIVE_SET_XATTR:
Lennart Poetteringdfe01842020-04-29 00:13:52 +02002449 STRV_FOREACH(xattr, i->xattrs) {
Franck Bui4cef1922017-11-16 11:27:29 +01002450 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2451 if (r < 0)
2452 return r;
2453
2454 free_and_replace(*xattr, resolved);
2455 }
2456 break;
2457
2458 default:
2459 break;
2460 }
2461 return 0;
2462}
2463
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002464static int patch_var_run(const char *fname, unsigned line, char **path) {
2465 const char *k;
2466 char *n;
2467
2468 assert(path);
2469 assert(*path);
2470
2471 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2472 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2473 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2474 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2475 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2476 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2477 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2478 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2479 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2480
2481 k = path_startswith(*path, "/var/run/");
2482 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2483 return 0;
2484
Yu Watanabe2d9b74b2019-06-24 23:59:38 +09002485 n = path_join("/run", k);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002486 if (!n)
2487 return log_oom();
2488
2489 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2490 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2491 * to the user, let's still inform the user that these snippets should really be updated. */
Lennart Poetteringafb7e1c2019-07-10 13:00:44 +02002492 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 -04002493
Lennart Poettering81fa4472018-10-25 13:57:32 +02002494 free_and_replace(*path, n);
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002495
2496 return 0;
2497}
2498
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002499static int find_uid(const char *user, uid_t *ret_uid, Hashmap **cache) {
2500 int r;
2501
2502 assert(user);
2503 assert(ret_uid);
2504
2505 /* First: parse as numeric UID string */
2506 r = parse_uid(user, ret_uid);
2507 if (r >= 0)
2508 return r;
2509
2510 /* Second: pass to NSS if we are running "online" */
2511 if (!arg_root)
2512 return get_user_creds(&user, ret_uid, NULL, NULL, NULL, 0);
2513
2514 /* Third, synthesize "root" unconditionally */
2515 if (streq(user, "root")) {
2516 *ret_uid = 0;
2517 return 0;
2518 }
2519
2520 /* Fourth: use fgetpwent() to read /etc/passwd directly, if we are "offline" */
2521 return name_to_uid_offline(arg_root, user, ret_uid, cache);
2522}
2523
2524static int find_gid(const char *group, gid_t *ret_gid, Hashmap **cache) {
2525 int r;
2526
2527 assert(group);
2528 assert(ret_gid);
2529
2530 /* First: parse as numeric GID string */
2531 r = parse_gid(group, ret_gid);
2532 if (r >= 0)
2533 return r;
2534
2535 /* Second: pass to NSS if we are running "online" */
2536 if (!arg_root)
2537 return get_group_creds(&group, ret_gid, 0);
2538
2539 /* Third, synthesize "root" unconditionally */
2540 if (streq(group, "root")) {
2541 *ret_gid = 0;
2542 return 0;
2543 }
2544
2545 /* Fourth: use fgetgrent() to read /etc/group directly, if we are "offline" */
2546 return name_to_gid_offline(arg_root, group, ret_gid, cache);
2547}
2548
2549static int parse_line(
2550 const char *fname,
2551 unsigned line,
2552 const char *buffer,
2553 bool *invalid_config,
2554 Hashmap **uid_cache,
2555 Hashmap **gid_cache) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002556
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002557 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002558 _cleanup_(item_free_contents) Item i = {};
2559 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002560 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002561 int r, pos;
Zach Smithc55ac242019-10-03 18:09:35 -07002562 bool append_or_force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002563
2564 assert(fname);
2565 assert(line >= 1);
2566 assert(buffer);
2567
Richard Maw68685602015-06-23 16:20:53 +00002568 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002569 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002570 NULL,
Zbigniew Jędrzejewski-Szmek4ec85142019-06-28 11:15:05 +02002571 EXTRACT_UNQUOTE,
Lennart Poettering4034a062015-03-23 18:55:36 +07002572 &action,
2573 &path,
2574 &mode,
2575 &user,
2576 &group,
2577 &age,
2578 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002579 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002580 if (IN_SET(r, -EINVAL, -EBADSLT))
2581 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002582 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002583 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to parse line: %m");
Lennart Poettering4b936992018-05-10 11:29:11 -07002584 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002585 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002586 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Syntax error.");
Lennart Poettering5008d582010-09-28 02:34:02 +02002587 }
2588
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002589 if (!empty_or_dash(buffer)) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002590 i.argument = strdup(buffer);
2591 if (!i.argument)
2592 return log_oom();
2593 }
2594
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002595 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002596 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002597 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Command too short '%s'.", action);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002598 }
2599
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002600 for (pos = 1; action[pos]; pos++) {
2601 if (action[pos] == '!' && !boot)
2602 boot = true;
Zach Smithc55ac242019-10-03 18:09:35 -07002603 else if (action[pos] == '+' && !append_or_force)
2604 append_or_force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002605 else if (action[pos] == '-' && !allow_failure)
2606 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002607 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002608 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002609 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 -05002610 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002611 }
2612
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002613 if (boot && !arg_boot) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002614 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 -05002615 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002616 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002617
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002618 i.type = action[0];
Zach Smithc55ac242019-10-03 18:09:35 -07002619 i.append_or_force = append_or_force;
William Douglas6d7b5432018-09-10 12:07:29 -07002620 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002621
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002622 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002623 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002624 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002625 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002626 if (IN_SET(r, -EINVAL, -EBADSLT))
2627 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002628 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 +01002629 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002630
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002631 r = patch_var_run(fname, line, &i.path);
2632 if (r < 0)
2633 return r;
2634
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002635 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002636
Michal Schmidt777b87e2011-12-16 18:27:35 +01002637 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002638 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002639 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2640 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002641 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002642 case TRUNCATE_DIRECTORY:
2643 case CREATE_FIFO:
2644 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002645 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002646 case REMOVE_PATH:
2647 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002648 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002649 case RELABEL_PATH:
2650 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002651 if (i.argument)
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002652 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 +02002653
2654 break;
2655
2656 case CREATE_FILE:
2657 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002658 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002659
2660 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002661 if (!i.argument) {
Lennart Poetteringb910cc72019-07-11 19:14:16 +02002662 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002663 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002664 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002665 }
2666 break;
2667
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002668 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002669 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002670 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002671 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Write file requires argument.");
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002672 }
2673 break;
2674
Lennart Poettering849958d2014-06-10 23:02:40 +02002675 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002676 if (!i.argument) {
Lennart Poettering7dc64772020-05-05 22:48:50 +02002677 i.argument = path_join("/usr/share/factory", i.path);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002678 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002679 return log_oom();
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002680
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002681 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002682 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002683 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 +02002684
Lennart Poettering7dc64772020-05-05 22:48:50 +02002685 }
2686
2687 if (!empty_or_root(arg_root)) {
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002688 char *p;
2689
Lennart Poetteringd34cd572019-07-11 18:41:14 +02002690 p = path_join(arg_root, i.argument);
Zbigniew Jędrzejewski-Szmek626f8d12019-06-05 14:46:04 +02002691 if (!p)
2692 return log_oom();
2693 free_and_replace(i.argument, p);
Lennart Poettering849958d2014-06-10 23:02:40 +02002694 }
2695
Yu Watanabe858d36c2018-05-31 23:39:31 +09002696 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002697 break;
2698
Lennart Poettering468d7262012-01-17 15:04:12 +01002699 case CREATE_CHAR_DEVICE:
Lennart Poettering3a47c402018-06-29 12:01:02 +02002700 case CREATE_BLOCK_DEVICE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002701 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002702 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002703 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG), "Device file requires argument.");
Lennart Poettering468d7262012-01-17 15:04:12 +01002704 }
2705
Lennart Poettering3a47c402018-06-29 12:01:02 +02002706 r = parse_dev(i.argument, &i.major_minor);
2707 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002708 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002709 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 +01002710 }
2711
Lennart Poettering468d7262012-01-17 15:04:12 +01002712 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002713
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002714 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002715 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002716 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002717 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002718 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2719 "Set extended attribute requires argument.");
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002720 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002721 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002722 if (r < 0)
2723 return r;
2724 break;
2725
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002726 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002727 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002728 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002729 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002730 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2731 "Set ACLs requires argument.");
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002732 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002733 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002734 if (r < 0)
2735 return r;
2736 break;
2737
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002738 case SET_ATTRIBUTE:
2739 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002740 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002741 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002742 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2743 "Set file attribute requires argument.");
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002744 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002745 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002746 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002747 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002748 if (r < 0)
2749 return r;
2750 break;
2751
Michal Schmidt777b87e2011-12-16 18:27:35 +01002752 default:
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002753 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002754 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2755 "Unknown command type '%c'.", (char) i.type);
Lennart Poettering5008d582010-09-28 02:34:02 +02002756 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002757
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002758 if (!path_is_absolute(i.path)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002759 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002760 return log_syntax(NULL, LOG_ERR, fname, line, SYNTHETIC_ERRNO(EBADMSG),
2761 "Path '%s' not absolute.", i.path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002762 }
2763
Yu Watanabe858d36c2018-05-31 23:39:31 +09002764 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002765
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002766 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002767 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002768
Franck Bui4cef1922017-11-16 11:27:29 +01002769 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002770 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002771 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002772 if (r < 0) {
2773 if (IN_SET(r, -EINVAL, -EBADSLT))
2774 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002775 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 +01002776 }
Franck Bui4cef1922017-11-16 11:27:29 +01002777
Lennart Poettering7dc64772020-05-05 22:48:50 +02002778 if (!empty_or_root(arg_root)) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002779 char *p;
2780
Lennart Poetteringc6134d32019-06-19 15:20:13 +02002781 p = path_join(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002782 if (!p)
2783 return log_oom();
Lennart Poettering81fa4472018-10-25 13:57:32 +02002784 free_and_replace(i.path, p);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002785 }
2786
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002787 if (!empty_or_dash(user)) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002788 r = find_uid(user, &i.uid, uid_cache);
Lennart Poettering4b678342011-07-23 01:17:59 +02002789 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002790 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002791 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve user '%s': %m", user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002792 }
2793
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002794 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002795 }
2796
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002797 if (!empty_or_dash(group)) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02002798 r = find_gid(group, &i.gid, gid_cache);
Lennart Poettering4b678342011-07-23 01:17:59 +02002799 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002800 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002801 return log_syntax(NULL, LOG_ERR, fname, line, r, "Failed to resolve group '%s'.", group);
Lennart Poettering5008d582010-09-28 02:34:02 +02002802 }
2803
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002804 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002805 }
2806
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002807 if (!empty_or_dash(mode)) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002808 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002809 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002810
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002811 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002812 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002813 mm++;
2814 }
2815
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002816 r = parse_mode(mm, &m);
2817 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002818 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002819 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid mode '%s'.", mode);
Lennart Poettering5008d582010-09-28 02:34:02 +02002820 }
2821
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002822 i.mode = m;
2823 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002824 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002825 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 +02002826
Lennart Poetteringe7b88b72019-04-08 12:03:33 +02002827 if (!empty_or_dash(age)) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002828 const char *a = age;
2829
2830 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002831 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002832 a++;
2833 }
2834
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002835 r = parse_sec(a, &i.age);
2836 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002837 *invalid_config = true;
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002838 return log_syntax(NULL, LOG_ERR, fname, line, r, "Invalid age '%s'.", age);
Lennart Poettering5008d582010-09-28 02:34:02 +02002839 }
2840
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002841 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002842 }
2843
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002844 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002845
Lennart Poetteringef43a392015-04-22 18:18:56 +02002846 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002847 if (existing) {
Lennart Poettering96d10d72018-10-25 13:51:01 +02002848 size_t n;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002849
Lennart Poettering96d10d72018-10-25 13:51:01 +02002850 for (n = 0; n < existing->n_items; n++) {
Zach Smithd0ea5c52019-10-03 18:19:18 -07002851 if (!item_compatible(existing->items + n, &i) && !i.append_or_force) {
Lennart Poetteringd02933f2020-04-29 00:07:06 +02002852 log_syntax(NULL, LOG_NOTICE, fname, line, 0, "Duplicate line for path \"%s\", ignoring.", i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002853 return 0;
2854 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002855 }
2856 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002857 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002858 if (!existing)
2859 return log_oom();
2860
Lennart Poetteringef43a392015-04-22 18:18:56 +02002861 r = ordered_hashmap_put(h, i.path, existing);
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002862 if (r < 0) {
2863 free(existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002864 return log_oom();
Lennart Poetteringccd114f2018-10-25 13:57:44 +02002865 }
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002866 }
2867
Lennart Poettering96d10d72018-10-25 13:51:01 +02002868 if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->n_items + 1))
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002869 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002870
Lennart Poettering7ab75292018-10-25 13:53:07 +02002871 existing->items[existing->n_items++] = i;
2872 i = (struct Item) {};
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002873
2874 /* Sort item array, to enforce stable ordering of application */
Lennart Poettering96d10d72018-10-25 13:51:01 +02002875 typesafe_qsort(existing->items, existing->n_items, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002876
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002877 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002878}
2879
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002880static int cat_config(char **config_dirs, char **args) {
2881 _cleanup_strv_free_ char **files = NULL;
2882 int r;
2883
2884 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2885 if (r < 0)
2886 return r;
2887
2888 return cat_files(NULL, files, 0);
2889}
2890
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002891static int exclude_default_prefixes(void) {
2892 int r;
2893
2894 /* Provide an easy way to exclude virtual/memory file systems from what we do here. Useful in
2895 * combination with --root= where we probably don't want to apply stuff to these dirs as they are
2896 * likely over-mounted if the root directory is actually used, and it wouldbe less than ideal to have
2897 * all kinds of files created/adjusted underneath these mount points. */
2898
2899 r = strv_extend_strv(
2900 &arg_exclude_prefixes,
2901 STRV_MAKE("/dev",
2902 "/proc",
2903 "/run",
2904 "/sys"),
2905 true);
2906 if (r < 0)
2907 return log_oom();
2908
2909 return 0;
2910}
2911
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002912static int help(void) {
2913 _cleanup_free_ char *link = NULL;
2914 int r;
2915
2916 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2917 if (r < 0)
2918 return log_oom();
2919
Lennart Poettering522d4a42011-02-13 15:08:15 +01002920 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2921 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002922 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002923 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002924 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002925 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002926 " --create Create marked files/directories\n"
2927 " --clean Clean up marked directories\n"
2928 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002929 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002930 " --prefix=PATH Only apply rules with the specified prefix\n"
2931 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002932 " -E Ignore rules prefixed with /dev, /proc, /run, /sys\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002933 " --root=PATH Operate on an alternate filesystem root\n"
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02002934 " --image=PATH Operate on disk image as filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002935 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002936 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002937 "\nSee the %s for details.\n"
2938 , program_invocation_short_name
2939 , link
2940 );
2941
2942 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002943}
2944
2945static int parse_argv(int argc, char *argv[]) {
2946
2947 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002948 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002949 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002950 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002951 ARG_CREATE,
2952 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002953 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002954 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002955 ARG_PREFIX,
2956 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002957 ARG_ROOT,
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02002958 ARG_IMAGE,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002959 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002960 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002961 };
2962
2963 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002964 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002965 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002966 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002967 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002968 { "create", no_argument, NULL, ARG_CREATE },
2969 { "clean", no_argument, NULL, ARG_CLEAN },
2970 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002971 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002972 { "prefix", required_argument, NULL, ARG_PREFIX },
2973 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002974 { "root", required_argument, NULL, ARG_ROOT },
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02002975 { "image", required_argument, NULL, ARG_IMAGE },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002976 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002977 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002978 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002979 };
2980
Lennart Poettering0f474362015-10-22 19:28:31 +02002981 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002982
2983 assert(argc >= 0);
2984 assert(argv);
2985
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02002986 while ((c = getopt_long(argc, argv, "hE", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002987
2988 switch (c) {
2989
2990 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002991 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002992
2993 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002994 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002995
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002996 case ARG_CAT_CONFIG:
2997 arg_cat_config = true;
2998 break;
2999
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003000 case ARG_USER:
3001 arg_user = true;
3002 break;
3003
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003004 case ARG_CREATE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02003005 arg_operation |= OPERATION_CREATE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003006 break;
3007
3008 case ARG_CLEAN:
Lennart Poettering1a967b62018-10-25 23:19:00 +02003009 arg_operation |= OPERATION_CLEAN;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003010 break;
3011
3012 case ARG_REMOVE:
Lennart Poettering1a967b62018-10-25 23:19:00 +02003013 arg_operation |= OPERATION_REMOVE;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003014 break;
3015
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05003016 case ARG_BOOT:
3017 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05003018 break;
3019
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003020 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003021 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04003022 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003023 break;
3024
Dave Reisner5c795112013-07-24 11:19:24 -04003025 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003026 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04003027 return log_oom();
3028 break;
3029
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02003030 case ARG_ROOT:
3031 r = parse_path_argument_and_warn(optarg, /* suppress_root= */ false, &arg_root);
3032 if (r < 0)
3033 return r;
3034 break;
3035
3036 case ARG_IMAGE:
3037 r = parse_path_argument_and_warn(optarg, /* suppress_root= */ false, &arg_image);
3038 if (r < 0)
3039 return r;
3040
3041 /* Imply -E here since it makes little sense to create files persistently in the /run mointpoint of a disk image */
3042 _fallthrough_;
3043
Lennart Poetteringdd04fb32020-07-28 17:52:23 +02003044 case 'E':
3045 r = exclude_default_prefixes();
3046 if (r < 0)
3047 return r;
3048
3049 break;
3050
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003051 case ARG_REPLACE:
3052 if (!path_is_absolute(optarg) ||
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003053 !endswith(optarg, ".conf"))
3054 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3055 "The argument to --replace= must an absolute path to a config file");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003056
3057 arg_replace = optarg;
3058 break;
3059
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003060 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003061 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003062 break;
3063
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003064 case '?':
3065 return -EINVAL;
3066
3067 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01003068 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003069 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003070
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003071 if (arg_operation == 0 && !arg_cat_config)
3072 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3073 "You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003074
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003075 if (arg_replace && arg_cat_config)
3076 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3077 "Option --replace= is not supported with --cat-config");
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003078
Zbigniew Jędrzejewski-Szmekbaaa35a2018-11-20 23:40:44 +01003079 if (arg_replace && optind >= argc)
3080 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3081 "When --replace= is given, some configuration items must be specified");
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003082
Lennart Poetteringb63aaca2020-07-28 17:52:48 +02003083 if (arg_root && arg_user)
3084 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3085 "Combination of --user and --root= is not supported.");
3086
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02003087 if (arg_image && arg_root)
3088 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Please specify either --root= or --image=, the combination of both is not supported.");
3089
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003090 return 1;
3091}
3092
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003093static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
Lennart Poetteringa3451c22020-05-05 22:45:54 +02003094 _cleanup_(hashmap_freep) Hashmap *uid_cache = NULL, *gid_cache = NULL;
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003095 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01003096 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05003097 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003098 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01003099 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02003100 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003101
3102 assert(fn);
3103
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003104 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003105 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003106 fn = "<stdin>";
3107 f = stdin;
3108 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003109 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003110 if (r < 0) {
3111 if (ignore_enoent && r == -ENOENT) {
3112 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
3113 return 0;
3114 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003115
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003116 return log_error_errno(r, "Failed to open '%s': %m", fn);
3117 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003118 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003119 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003120 }
3121
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003122 for (;;) {
3123 _cleanup_free_ char *line = NULL;
3124 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003125 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003126 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003127
3128 k = read_line(f, LONG_LINE_MAX, &line);
3129 if (k < 0)
3130 return log_error_errno(k, "Failed to read '%s': %m", fn);
3131 if (k == 0)
3132 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003133
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003134 v++;
3135
3136 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003137 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003138 continue;
3139
Lennart Poetteringa3451c22020-05-05 22:45:54 +02003140 k = parse_line(fn, v, l, &invalid_line, &uid_cache, &gid_cache);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003141 if (k < 0) {
3142 if (invalid_line)
3143 /* Allow reporting with a special code if the caller requested this */
3144 *invalid_config = true;
3145 else if (r == 0)
3146 /* The first error becomes our return value */
3147 r = k;
3148 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003149 }
3150
Michal Sekletar78a92a52013-01-18 16:13:08 +01003151 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003152 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003153 Iterator iter;
3154 Item *j, *candidate_item = NULL;
3155
3156 if (i->type != IGNORE_DIRECTORY_PATH)
3157 continue;
3158
Lennart Poetteringef43a392015-04-22 18:18:56 +02003159 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003160 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 +01003161 continue;
3162
3163 if (path_equal(j->path, i->path)) {
3164 candidate_item = j;
3165 break;
3166 }
3167
3168 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3169 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3170 candidate_item = j;
3171 }
3172
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003173 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003174 i->age = candidate_item->age;
3175 i->age_set = true;
3176 }
3177 }
3178
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003179 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003180 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003181 if (r == 0)
3182 r = -EIO;
3183 }
3184
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003185 return r;
3186}
3187
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003188static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3189 char **arg;
3190 int r;
3191
3192 STRV_FOREACH(arg, args) {
3193 r = read_config_file(config_dirs, *arg, false, invalid_config);
3194 if (r < 0)
3195 return r;
3196 }
3197
3198 return 0;
3199}
3200
3201static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3202 _cleanup_strv_free_ char **files = NULL;
3203 _cleanup_free_ char *p = NULL;
3204 char **f;
3205 int r;
3206
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003207 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003208 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003209 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003210
3211 STRV_FOREACH(f, files)
3212 if (p && path_equal(*f, p)) {
3213 log_debug("Parsing arguments at position \"%s\"…", *f);
3214
3215 r = parse_arguments(config_dirs, args, invalid_config);
3216 if (r < 0)
3217 return r;
3218 } else
3219 /* Just warn, ignore result otherwise.
3220 * read_config_file() has some debug output, so no need to print anything. */
3221 (void) read_config_file(config_dirs, *f, true, invalid_config);
3222
3223 return 0;
3224}
3225
Lennart Poettering811a1582018-10-26 20:56:37 +02003226static int link_parent(ItemArray *a) {
3227 const char *path;
3228 char *prefix;
3229 int r;
3230
3231 assert(a);
3232
Lennart Poettering09f467a2018-11-20 16:32:19 +01003233 /* Finds the closest "parent" item array for the specified item array. Then registers the specified item array
Lennart Poettering811a1582018-10-26 20:56:37 +02003234 * as child of it, and fills the parent in, linking them both ways. This allows us to later create parents
3235 * before their children, and clean up/remove children before their parents. */
3236
3237 if (a->n_items <= 0)
3238 return 0;
3239
3240 path = a->items[0].path;
Lennart Poettering6e9417f2019-01-26 15:52:18 +01003241 prefix = newa(char, strlen(path) + 1);
Lennart Poettering811a1582018-10-26 20:56:37 +02003242 PATH_FOREACH_PREFIX(prefix, path) {
3243 ItemArray *j;
3244
3245 j = ordered_hashmap_get(items, prefix);
Lennart Poetteringbd0ce242018-11-20 16:32:23 +01003246 if (!j)
3247 j = ordered_hashmap_get(globs, prefix);
Lennart Poettering811a1582018-10-26 20:56:37 +02003248 if (j) {
Zbigniew Jędrzejewski-Szmekde7fef42020-06-05 15:12:29 +02003249 r = set_ensure_put(&j->children, NULL, a);
Lennart Poettering811a1582018-10-26 20:56:37 +02003250 if (r < 0)
3251 return log_oom();
3252
3253 a->parent = j;
3254 return 1;
3255 }
3256 }
3257
3258 return 0;
3259}
3260
Yu Watanabe87938c32018-11-26 01:00:54 +09003261DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(item_array_hash_ops, char, string_hash_func, string_compare_func,
3262 ItemArray, item_array_free);
3263
3264static int run(int argc, char *argv[]) {
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02003265 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
3266 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
3267 _cleanup_(umount_and_rmdir_and_freep) char *unlink_dir = NULL;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003268 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003269 bool invalid_config = false;
Lennart Poettering64adb372018-10-26 21:19:36 +02003270 Iterator iterator;
3271 ItemArray *a;
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003272 enum {
3273 PHASE_REMOVE_AND_CLEAN,
3274 PHASE_CREATE,
3275 _PHASE_MAX
3276 } phase;
Yu Watanabe87938c32018-11-26 01:00:54 +09003277 int r, k;
Lennart Poettering5008d582010-09-28 02:34:02 +02003278
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003279 r = parse_argv(argc, argv);
3280 if (r <= 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003281 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003282
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003283 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003284
Lennart Poetteringe5358402019-01-18 16:34:52 +01003285 /* Descending down file system trees might take a lot of fds */
3286 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
3287
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003288 if (arg_user) {
3289 r = user_config_paths(&config_dirs);
Yu Watanabe87938c32018-11-26 01:00:54 +09003290 if (r < 0)
3291 return log_error_errno(r, "Failed to initialize configuration directory list: %m");
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003292 } else {
3293 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
Yu Watanabe87938c32018-11-26 01:00:54 +09003294 if (!config_dirs)
3295 return log_oom();
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003296 }
3297
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003298 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003299 _cleanup_free_ char *t = NULL;
Lennart Poetteringb8e35012020-07-28 17:53:21 +02003300 char **i;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003301
Lennart Poetteringb8e35012020-07-28 17:53:21 +02003302 STRV_FOREACH(i, config_dirs) {
3303 _cleanup_free_ char *j = NULL;
3304
3305 j = path_join(arg_root, *i);
3306 if (!j)
3307 return log_oom();
3308
3309 if (!strextend(&t, "\n\t", j, NULL))
3310 return log_oom();
3311 }
3312
3313 log_debug("Looking for configuration files in (higher priority first):%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003314 }
3315
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003316 if (arg_cat_config) {
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003317 (void) pager_open(arg_pager_flags);
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003318
Yu Watanabe87938c32018-11-26 01:00:54 +09003319 return cat_config(config_dirs, argv + optind);
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003320 }
3321
3322 umask(0022);
3323
Christian Göttschea9ba0e32020-06-19 19:29:24 +02003324 r = mac_selinux_init();
3325 if (r < 0)
3326 return r;
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003327
Lennart Poettering63d3d0a2020-07-28 18:22:53 +02003328 if (arg_image) {
3329 assert(!arg_root);
3330
3331 r = mount_image_privately_interactively(
3332 arg_image,
3333 DISSECT_IMAGE_REQUIRE_ROOT|DISSECT_IMAGE_VALIDATE_OS|DISSECT_IMAGE_RELAX_VAR_CHECK|DISSECT_IMAGE_FSCK,
3334 &unlink_dir,
3335 &loop_device,
3336 &decrypted_image);
3337 if (r < 0)
3338 return r;
3339
3340 arg_root = strdup(unlink_dir);
3341 if (!arg_root)
3342 return log_oom();
3343 }
3344
Yu Watanabe87938c32018-11-26 01:00:54 +09003345 items = ordered_hashmap_new(&item_array_hash_ops);
3346 globs = ordered_hashmap_new(&item_array_hash_ops);
3347 if (!items || !globs)
3348 return log_oom();
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003349
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003350 /* If command line arguments are specified along with --replace, read all
3351 * configuration files and insert the positional arguments at the specified
3352 * place. Otherwise, if command line arguments are specified, execute just
3353 * them, and finally, without --replace= or any positional arguments, just
3354 * read configuration and execute it.
3355 */
3356 if (arg_replace || optind >= argc)
3357 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3358 else
3359 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3360 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003361 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02003362
Lennart Poettering811a1582018-10-26 20:56:37 +02003363 /* Let's now link up all child/parent relationships */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003364 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Lennart Poettering811a1582018-10-26 20:56:37 +02003365 r = link_parent(a);
3366 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003367 return r;
Lennart Poettering811a1582018-10-26 20:56:37 +02003368 }
3369 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3370 r = link_parent(a);
3371 if (r < 0)
Yu Watanabe87938c32018-11-26 01:00:54 +09003372 return r;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003373 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003374
Lennart Poettering64adb372018-10-26 21:19:36 +02003375 /* If multiple operations are requested, let's first run the remove/clean operations, and only then the create
3376 * operations. i.e. that we first clean out the platform we then build on. */
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003377 for (phase = 0; phase < _PHASE_MAX; phase++) {
Lennart Poettering64adb372018-10-26 21:19:36 +02003378 OperationMask op;
Lennart Poettering5008d582010-09-28 02:34:02 +02003379
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003380 if (phase == PHASE_REMOVE_AND_CLEAN)
Lennart Poettering64adb372018-10-26 21:19:36 +02003381 op = arg_operation & (OPERATION_REMOVE|OPERATION_CLEAN);
Lennart Poettering44ac4f82018-11-20 16:15:09 +01003382 else if (phase == PHASE_CREATE)
Lennart Poettering64adb372018-10-26 21:19:36 +02003383 op = arg_operation & OPERATION_CREATE;
3384 else
3385 assert_not_reached("unexpected phase");
3386
3387 if (op == 0) /* Nothing requested in this phase */
3388 continue;
3389
3390 /* The non-globbing ones usually create things, hence we apply them first */
3391 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
3392 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003393 if (k < 0 && r >= 0)
3394 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003395 }
3396
3397 /* The globbing ones usually alter things, hence we apply them second. */
3398 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
3399 k = process_item_array(a, op);
Yu Watanabe87938c32018-11-26 01:00:54 +09003400 if (k < 0 && r >= 0)
3401 r = k;
Lennart Poettering64adb372018-10-26 21:19:36 +02003402 }
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003403 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003404
Yu Watanabe87938c32018-11-26 01:00:54 +09003405 if (ERRNO_IS_RESOURCE(-r))
3406 return r;
3407 if (invalid_config)
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003408 return EX_DATAERR;
Yu Watanabe87938c32018-11-26 01:00:54 +09003409 if (r < 0)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003410 return EX_CANTCREAT;
Yu Watanabe87938c32018-11-26 01:00:54 +09003411 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02003412}
Yu Watanabe87938c32018-11-26 01:00:54 +09003413
3414DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);