blob: 617bcc186a9275d17eb8c3bbbede9dc1c543adbc [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek53e1b682017-11-18 17:09:20 +01001/* SPDX-License-Identifier: LGPL-2.1+ */
Lennart Poettering5008d582010-09-28 02:34:02 +02002
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02003#include <errno.h>
4#include <fcntl.h>
5#include <fnmatch.h>
6#include <getopt.h>
7#include <glob.h>
8#include <limits.h>
9#include <linux/fs.h>
10#include <stdbool.h>
11#include <stddef.h>
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020012#include <stdio.h>
13#include <stdlib.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020014#include <string.h>
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -050015#include <sys/stat.h>
Maciej Wereskiebf4e802014-12-04 10:32:10 +010016#include <sys/xattr.h>
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +010017#include <sysexits.h>
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020018#include <time.h>
19#include <unistd.h>
Lennart Poettering5008d582010-09-28 02:34:02 +020020
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +010021#include "sd-path.h"
22
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020023#include "acl-util.h"
Lennart Poetteringb5efdb82015-10-27 03:01:06 +010024#include "alloc-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020025#include "btrfs-util.h"
Lennart Poettering430f0182015-10-26 23:32:16 +010026#include "capability-util.h"
Lennart Poetteringc8b30942015-10-26 20:39:23 +010027#include "chattr-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020028#include "conf-files.h"
29#include "copy.h"
Lennart Poetteringa0f29c72015-11-03 12:26:12 +010030#include "def.h"
Reverend Homer8fb3f002016-12-09 12:04:30 +030031#include "dirent-util.h"
Lennart Poettering4f5dd392015-10-23 18:52:53 +020032#include "escape.h"
Lennart Poettering3ffd4af2015-10-25 13:14:12 +010033#include "fd-util.h"
Lennart Poettering0d39fa92015-10-26 18:05:03 +010034#include "fileio.h"
Zbigniew Jędrzejewski-Szmekf97b34a2016-11-07 10:14:59 -050035#include "format-util.h"
Lennart Poetteringf4f15632015-10-26 21:16:26 +010036#include "fs-util.h"
Lennart Poettering7d50b322015-10-27 01:48:17 +010037#include "glob-util.h"
Lennart Poetteringc0044932015-10-25 14:08:25 +010038#include "io-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020039#include "label.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020040#include "log.h"
Dave Reisner54693d92012-09-15 12:58:49 -040041#include "macro.h"
Zbigniew Jędrzejewski-Szmekd39efe72013-03-13 20:20:54 -040042#include "missing.h"
Kay Sievers49e942b2012-04-10 21:54:31 +020043#include "mkdir.h"
Lennart Poettering4e036b72015-10-27 13:45:00 +010044#include "mount-util.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"
Lennart Poetteringc6878632015-04-04 11:52:57 +020049#include "rm-rf.h"
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010050#include "selinux-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020051#include "set.h"
52#include "specifier.h"
Lennart Poettering8fcde012015-10-26 22:01:44 +010053#include "stat-util.h"
Lennart Poettering15a5e952015-10-27 01:26:31 +010054#include "stdio-util.h"
Lennart Poettering8b434402015-10-26 22:31:05 +010055#include "string-table.h"
Lennart Poettering07630ce2015-10-24 22:58:24 +020056#include "string-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020057#include "strv.h"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +020058#include "terminal-util.h"
Lennart Poetteringaffb60b2015-10-26 23:20:41 +010059#include "umask-util.h"
Lennart Poetteringb1d4f8e2015-10-25 22:32:30 +010060#include "user-util.h"
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +020061#include "util.h"
Lennart Poettering5008d582010-09-28 02:34:02 +020062
Andreas Jaeger01000472010-09-29 10:08:24 +020063/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
Lennart Poettering5008d582010-09-28 02:34:02 +020064 * them in the file system. This is intended to be used to create
Kay Sieversdb019b82011-04-04 15:33:00 +020065 * properly owned directories beneath /tmp, /var/tmp, /run, which are
66 * volatile and hence need to be recreated on bootup. */
Lennart Poettering5008d582010-09-28 02:34:02 +020067
Michal Schmidt66ccd032011-12-15 21:31:14 +010068typedef enum ItemType {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010069 /* These ones take file names */
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020070 CREATE_FILE = 'f',
71 TRUNCATE_FILE = 'F',
72 CREATE_DIRECTORY = 'd',
73 TRUNCATE_DIRECTORY = 'D',
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +010074 CREATE_SUBVOLUME = 'v',
Lennart Poettering5fb13eb2015-10-21 19:46:23 +020075 CREATE_SUBVOLUME_INHERIT_QUOTA = 'q',
76 CREATE_SUBVOLUME_NEW_QUOTA = 'Q',
Lennart Poetteringee17ee72011-07-12 03:56:56 +020077 CREATE_FIFO = 'p',
Lennart Poettering468d7262012-01-17 15:04:12 +010078 CREATE_SYMLINK = 'L',
79 CREATE_CHAR_DEVICE = 'c',
80 CREATE_BLOCK_DEVICE = 'b',
Lennart Poettering849958d2014-06-10 23:02:40 +020081 COPY_FILES = 'C',
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +010082
83 /* These ones take globs */
Lennart Poettering17493fa2015-04-10 16:22:22 +020084 WRITE_FILE = 'w',
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -040085 EMPTY_DIRECTORY = 'e',
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -050086 SET_XATTR = 't',
87 RECURSIVE_SET_XATTR = 'T',
88 SET_ACL = 'a',
89 RECURSIVE_SET_ACL = 'A',
Lennart Poettering17493fa2015-04-10 16:22:22 +020090 SET_ATTRIBUTE = 'h',
91 RECURSIVE_SET_ATTRIBUTE = 'H',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020092 IGNORE_PATH = 'x',
Michal Sekletar78a92a52013-01-18 16:13:08 +010093 IGNORE_DIRECTORY_PATH = 'X',
Lennart Poettering3b63d2d2010-10-18 22:38:41 +020094 REMOVE_PATH = 'r',
Michal Schmidta8d88782011-12-15 23:11:07 +010095 RECURSIVE_REMOVE_PATH = 'R',
Michal Schmidt777b87e2011-12-16 18:27:35 +010096 RELABEL_PATH = 'z',
Lennart Poetteringe73a03e2014-06-10 23:42:16 +020097 RECURSIVE_RELABEL_PATH = 'Z',
Lennart Poettering17493fa2015-04-10 16:22:22 +020098 ADJUST_MODE = 'm', /* legacy, 'z' is identical to this */
Michal Schmidt66ccd032011-12-15 21:31:14 +010099} ItemType;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200100
101typedef struct Item {
Michal Schmidt66ccd032011-12-15 21:31:14 +0100102 ItemType type;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200103
104 char *path;
Lennart Poettering468d7262012-01-17 15:04:12 +0100105 char *argument;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100106 char **xattrs;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200107#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500108 acl_t acl_access;
109 acl_t acl_default;
110#endif
Lennart Poettering5008d582010-09-28 02:34:02 +0200111 uid_t uid;
112 gid_t gid;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200113 mode_t mode;
114 usec_t age;
115
Lennart Poettering468d7262012-01-17 15:04:12 +0100116 dev_t major_minor;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200117 unsigned attribute_value;
118 unsigned attribute_mask;
Lennart Poettering468d7262012-01-17 15:04:12 +0100119
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200120 bool uid_set:1;
121 bool gid_set:1;
122 bool mode_set:1;
123 bool age_set:1;
Lennart Poetteringabef3f92014-06-11 10:14:07 +0200124 bool mask_perms:1;
Lennart Poettering88ec4df2015-04-08 22:35:52 +0200125 bool attribute_set:1;
Lennart Poettering24f3a372012-06-20 09:05:50 +0200126
127 bool keep_first_level:1;
Lennart Poettering1910cd02014-06-11 01:37:35 +0200128
Lennart Poettering2e78fa72014-06-16 13:21:07 +0200129 bool force:1;
130
William Douglas6d7b5432018-09-10 12:07:29 -0700131 bool allow_failure:1;
132
Lennart Poettering1910cd02014-06-11 01:37:35 +0200133 bool done:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200134} Item;
135
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500136typedef struct ItemArray {
137 Item *items;
138 size_t count;
139 size_t size;
140} ItemArray;
141
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100142typedef enum DirectoryType {
143 DIRECTORY_RUNTIME = 0,
144 DIRECTORY_STATE,
145 DIRECTORY_CACHE,
146 DIRECTORY_LOGS,
147 _DIRECTORY_TYPE_MAX,
148} DirectoryType;
149
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200150static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100151static bool arg_user = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200152static bool arg_create = false;
153static bool arg_clean = false;
154static bool arg_remove = false;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500155static bool arg_boot = false;
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +0100156static PagerFlags arg_pager_flags = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200157
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200158static char **arg_include_prefixes = NULL;
159static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700160static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100161static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100162
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200163#define MAX_DEPTH 256
164
Lennart Poetteringef43a392015-04-22 18:18:56 +0200165static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200166static Set *unix_sockets = NULL;
167
Franck Bui4cef1922017-11-16 11:27:29 +0100168static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100169static int specifier_directory(char specifier, void *data, void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100170
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200171static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100172 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100173 { 'b', specifier_boot_id, NULL },
174 { 'H', specifier_host_name, NULL },
175 { 'v', specifier_kernel_release, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100176
Davide Cavalcab75f0c62018-10-13 01:26:48 -0700177 { 'g', specifier_group_name, NULL },
178 { 'G', specifier_group_id, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100179 { 'U', specifier_user_id, NULL },
180 { 'u', specifier_user_name, NULL },
181 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200182
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100183 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
184 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
185 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
186 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200187 { 'T', specifier_tmp_dir, NULL },
188 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200189 {}
190};
191
Franck Bui4cef1922017-11-16 11:27:29 +0100192static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret) {
193 int r;
194
Franck Buid8dab752018-01-10 23:28:44 +0100195 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
196 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100197 * gracefully. */
198
199 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100200 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100201 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100202
203 return r;
204}
205
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100206static int specifier_directory(char specifier, void *data, void *userdata, char **ret) {
207 struct table_entry {
208 uint64_t type;
209 const char *suffix;
210 };
211
212 static const struct table_entry paths_system[] = {
213 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
214 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
215 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
216 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
217 };
218
219 static const struct table_entry paths_user[] = {
220 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
221 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
222 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
223 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
224 };
225
226 unsigned i;
227 const struct table_entry *paths;
228
229 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
230 paths = arg_user ? paths_user : paths_system;
231
232 i = PTR_TO_UINT(data);
233 assert(i < ELEMENTSOF(paths_system));
234
235 return sd_path_home(paths[i].type, paths[i].suffix, ret);
236}
237
Franck Bui4cef1922017-11-16 11:27:29 +0100238static int log_unresolvable_specifier(const char *filename, unsigned line) {
239 static bool notified = false;
240
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100241 /* In system mode, this is called when /etc is not fully initialized (e.g.
242 * in a chroot environment) where some specifiers are unresolvable. In user
243 * mode, this is called when some variables are not defined. These cases are
244 * not considered as an error so log at LOG_NOTICE only for the first time
245 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100246
247 log_full(notified ? LOG_DEBUG : LOG_NOTICE,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100248 "[%s:%u] Failed to resolve specifier: %s, skipping",
249 filename, line,
250 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100251
252 if (!notified)
253 log_notice("All rules containing unresolvable specifiers will be skipped.");
254
255 notified = true;
256 return 0;
257}
258
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100259static int user_config_paths(char*** ret) {
260 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
261 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
262 _cleanup_strv_free_ char **res = NULL;
263 int r;
264
265 r = xdg_user_dirs(&config_dirs, &data_dirs);
266 if (r < 0)
267 return r;
268
269 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
270 if (r < 0 && r != -ENXIO)
271 return r;
272
273 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
274 if (r < 0 && r != -ENXIO)
275 return r;
276
277 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
278 if (r < 0 && r != -ENXIO)
279 return r;
280
281 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
282 if (r < 0)
283 return r;
284
285 r = strv_extend(&res, persistent_config);
286 if (r < 0)
287 return r;
288
289 r = strv_extend(&res, runtime_config);
290 if (r < 0)
291 return r;
292
293 r = strv_extend(&res, data_home);
294 if (r < 0)
295 return r;
296
297 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
298 if (r < 0)
299 return r;
300
301 r = path_strv_make_absolute_cwd(res);
302 if (r < 0)
303 return r;
304
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100305 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100306 return 0;
307}
308
Michal Schmidt66ccd032011-12-15 21:31:14 +0100309static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200310 return IN_SET(t,
311 WRITE_FILE,
312 IGNORE_PATH,
313 IGNORE_DIRECTORY_PATH,
314 REMOVE_PATH,
315 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400316 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200317 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200318 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500319 RECURSIVE_RELABEL_PATH,
320 SET_XATTR,
321 RECURSIVE_SET_XATTR,
322 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200323 RECURSIVE_SET_ACL,
324 SET_ATTRIBUTE,
325 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100326}
327
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500328static bool takes_ownership(ItemType t) {
329 return IN_SET(t,
330 CREATE_FILE,
331 TRUNCATE_FILE,
332 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400333 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500334 TRUNCATE_DIRECTORY,
335 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200336 CREATE_SUBVOLUME_INHERIT_QUOTA,
337 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500338 CREATE_FIFO,
339 CREATE_SYMLINK,
340 CREATE_CHAR_DEVICE,
341 CREATE_BLOCK_DEVICE,
342 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500343 WRITE_FILE,
344 IGNORE_PATH,
345 IGNORE_DIRECTORY_PATH,
346 REMOVE_PATH,
347 RECURSIVE_REMOVE_PATH);
348}
349
Lennart Poetteringef43a392015-04-22 18:18:56 +0200350static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500351 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100352 Iterator i;
353
Lennart Poetteringef43a392015-04-22 18:18:56 +0200354 ORDERED_HASHMAP_FOREACH(j, h, i) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500355 unsigned n;
356
357 for (n = 0; n < j->count; n++) {
358 Item *item = j->items + n;
359
360 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
361 return item;
362 }
363 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100364
365 return NULL;
366}
367
Lennart Poettering17b90522011-02-14 21:55:06 +0100368static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200369 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100370 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100371
372 if (unix_sockets)
373 return;
374
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100375 /* 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 +0100376
Lennart Poettering548f6932018-02-08 18:58:35 +0100377 unix_sockets = set_new(&path_hash_ops);
378 if (!unix_sockets) {
379 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100380 return;
Lennart Poettering548f6932018-02-08 18:58:35 +0100381 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100382
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100383 f = fopen("/proc/net/unix", "re");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100384 if (!f) {
385 log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
386 "Failed to open /proc/net/unix, ignoring: %m");
387 goto fail;
388 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100389
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100390 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100391 r = read_line(f, LONG_LINE_MAX, NULL);
392 if (r < 0) {
393 log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100394 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100395 }
396 if (r == 0) {
397 log_warning("Premature end of file reading /proc/net/unix.");
398 goto fail;
399 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100400
401 for (;;) {
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100402 _cleanup_free_ char *line = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100403 char *p, *s;
Lennart Poettering17b90522011-02-14 21:55:06 +0100404
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100405 r = read_line(f, LONG_LINE_MAX, &line);
406 if (r < 0) {
407 log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
408 goto fail;
409 }
410 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100411 break;
412
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100413 p = strchr(line, ':');
414 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100415 continue;
416
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100417 if (strlen(p) < 37)
418 continue;
419
420 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100421 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100422 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100423 p += strspn(p, WHITESPACE);
424
425 if (*p != '/')
426 continue;
427
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100428 s = strdup(p);
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100429 if (!s) {
430 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100431 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100432 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100433
Yu Watanabe858d36c2018-05-31 23:39:31 +0900434 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100435
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100436 r = set_consume(unix_sockets, s);
437 if (r < 0 && r != -EEXIST) {
438 log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400439 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100440 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100441 }
442
443 return;
444
445fail:
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100446 unix_sockets = set_free_free(unix_sockets);
Lennart Poettering17b90522011-02-14 21:55:06 +0100447}
448
449static bool unix_socket_alive(const char *fn) {
450 assert(fn);
451
452 load_unix_sockets();
453
454 if (unix_sockets)
455 return !!set_get(unix_sockets, (char*) fn);
456
457 /* We don't know, so assume yes */
458 return true;
459}
460
Kay Sievers99d680a2013-03-13 13:12:36 +0100461static int dir_is_mount_point(DIR *d, const char *subdir) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200462
Kay Sievers99d680a2013-03-13 13:12:36 +0100463 int mount_id_parent, mount_id;
464 int r_p, r;
465
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100466 r_p = name_to_handle_at_loop(dirfd(d), ".", NULL, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100467 if (r_p < 0)
468 r_p = -errno;
469
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100470 r = name_to_handle_at_loop(dirfd(d), subdir, NULL, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100471 if (r < 0)
472 r = -errno;
473
474 /* got no handle; make no assumptions, return error */
475 if (r_p < 0 && r < 0)
476 return r_p;
477
478 /* got both handles; if they differ, it is a mount point */
479 if (r_p >= 0 && r >= 0)
480 return mount_id_parent != mount_id;
481
482 /* got only one handle; assume different mount points if one
483 * of both queries was not supported by the filesystem */
Yu Watanabe4c701092017-10-04 23:01:32 +0900484 if (IN_SET(r_p, -ENOSYS, -EOPNOTSUPP) || IN_SET(r, -ENOSYS, -EOPNOTSUPP))
Kay Sievers99d680a2013-03-13 13:12:36 +0100485 return true;
486
487 /* return error */
488 if (r_p < 0)
489 return r_p;
490 return r;
491}
492
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500493static DIR* xopendirat_nomod(int dirfd, const char *path) {
494 DIR *dir;
495
496 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700497 if (dir)
498 return dir;
499
500 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
501 if (errno != EPERM)
502 return NULL;
503
504 dir = xopendirat(dirfd, path, O_NOFOLLOW);
505 if (!dir)
506 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500507
508 return dir;
509}
510
511static DIR* opendir_nomod(const char *path) {
512 return xopendirat_nomod(AT_FDCWD, path);
513}
514
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200515static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100516 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200517 const char *p,
518 DIR *d,
519 const struct stat *ds,
520 usec_t cutoff,
521 dev_t rootdev,
522 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200523 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500524 bool keep_this_level) {
525
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200526 struct dirent *dent;
527 struct timespec times[2];
528 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200529 int r = 0;
530
Reverend Homer8fb3f002016-12-09 12:04:30 +0300531 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200532 struct stat s;
533 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200534 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200535
Lennart Poettering49bfc872017-02-02 00:06:18 +0100536 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200537 continue;
538
539 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200540 if (errno == ENOENT)
541 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200542
Kay Sieversca2f4172013-10-17 03:20:46 +0200543 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100544 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
545 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200546 continue;
547 }
548
549 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500550 if (s.st_dev != rootdev) {
551 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200552 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500553 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200554
Kay Sievers99d680a2013-03-13 13:12:36 +0100555 /* Try to detect bind mounts of the same filesystem instance; they
556 * do not differ in device major/minors. This type of query is not
557 * supported on all kernels or filesystem types though. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500558 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0) {
559 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.",
560 p, dent->d_name);
Kay Sievers99d680a2013-03-13 13:12:36 +0100561 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500562 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100563
Zbigniew Jędrzejewski-Szmek605405c2016-10-23 11:43:27 -0400564 sub_path = strjoin(p, "/", dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200565 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700566 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200567 goto finish;
568 }
569
570 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200571 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500572 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200573 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500574 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200575
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500576 if (find_glob(globs, sub_path)) {
577 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100578 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500579 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100580
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200581 if (S_ISDIR(s.st_mode)) {
582
583 if (mountpoint &&
584 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500585 s.st_uid == 0) {
586 log_debug("Ignoring \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200587 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500588 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200589
590 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500591 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200592 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200593 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200594 int q;
595
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500596 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200597 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500598 if (errno != ENOENT)
599 r = log_error_errno(errno, "opendir(%s) failed: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200600
601 continue;
602 }
603
Michal Sekletar78a92a52013-01-18 16:13:08 +0100604 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200605 if (q < 0)
606 r = q;
607 }
608
Lennart Poettering24f3a372012-06-20 09:05:50 +0200609 /* Note: if you are wondering why we don't
610 * support the sticky bit for excluding
611 * directories from cleaning like we do it for
612 * other file system objects: well, the sticky
613 * bit already has a meaning for directories,
614 * so we don't want to overload that. */
615
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500616 if (keep_this_level) {
617 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200618 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500619 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200620
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200621 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500622 age = timespec_load(&s.st_mtim);
623 if (age >= cutoff) {
624 char a[FORMAT_TIMESTAMP_MAX];
625 /* Follows spelling in stat(1). */
626 log_debug("Directory \"%s\": modify time %s is too new.",
627 sub_path,
628 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200629 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500630 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200631
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500632 age = timespec_load(&s.st_atim);
633 if (age >= cutoff) {
634 char a[FORMAT_TIMESTAMP_MAX];
635 log_debug("Directory \"%s\": access time %s is too new.",
636 sub_path,
637 format_timestamp_us(a, sizeof(a), age));
638 continue;
639 }
640
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500641 log_debug("Removing directory \"%s\".", sub_path);
642 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100643 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
644 r = log_error_errno(errno, "rmdir(%s): %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200645
646 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100647 /* Skip files for which the sticky bit is
648 * set. These are semantics we define, and are
649 * unknown elsewhere. See XDG_RUNTIME_DIR
650 * specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500651 if (s.st_mode & S_ISVTX) {
652 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100653 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200654 }
655
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500656 if (mountpoint && S_ISREG(s.st_mode))
Zbigniew Jędrzejewski-Szmek1542c012015-06-13 13:14:37 -0400657 if (s.st_uid == 0 && STR_IN_SET(dent->d_name,
658 ".journal",
659 "aquota.user",
660 "aquota.group")) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500661 log_debug("Skipping \"%s\".", sub_path);
662 continue;
663 }
664
Lennart Poettering17b90522011-02-14 21:55:06 +0100665 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500666 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
667 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100668 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500669 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100670
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100671 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500672 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
673 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100674 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500675 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100676
Lennart Poettering24f3a372012-06-20 09:05:50 +0200677 /* Keep files on this level around if this is
678 * requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500679 if (keep_this_level) {
680 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200681 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200682 }
683
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500684 age = timespec_load(&s.st_mtim);
685 if (age >= cutoff) {
686 char a[FORMAT_TIMESTAMP_MAX];
687 /* Follows spelling in stat(1). */
688 log_debug("File \"%s\": modify time %s is too new.",
689 sub_path,
690 format_timestamp_us(a, sizeof(a), age));
691 continue;
692 }
693
694 age = timespec_load(&s.st_atim);
695 if (age >= cutoff) {
696 char a[FORMAT_TIMESTAMP_MAX];
697 log_debug("File \"%s\": access time %s is too new.",
698 sub_path,
699 format_timestamp_us(a, sizeof(a), age));
700 continue;
701 }
702
703 age = timespec_load(&s.st_ctim);
704 if (age >= cutoff) {
705 char a[FORMAT_TIMESTAMP_MAX];
706 log_debug("File \"%s\": change time %s is too new.",
707 sub_path,
708 format_timestamp_us(a, sizeof(a), age));
709 continue;
710 }
711
712 log_debug("unlink \"%s\"", sub_path);
713
714 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
715 if (errno != ENOENT)
716 r = log_error_errno(errno, "unlink(%s): %m", sub_path);
717
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200718 deleted = true;
719 }
720 }
721
722finish:
723 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500724 usec_t age1, age2;
725 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
726
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200727 /* Restore original directory timestamps */
728 times[0] = ds->st_atim;
729 times[1] = ds->st_mtim;
730
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500731 age1 = timespec_load(&ds->st_atim);
732 age2 = timespec_load(&ds->st_mtim);
733 log_debug("Restoring access and modification time on \"%s\": %s, %s",
734 p,
735 format_timestamp_us(a, sizeof(a), age1),
736 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200737 if (futimens(dirfd(d), times) < 0)
Michal Schmidt56f64d92014-11-28 19:29:59 +0100738 log_error_errno(errno, "utimensat(%s): %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200739 }
740
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200741 return r;
742}
743
Lennart Poettering5579f852018-01-23 14:03:34 +0100744static bool dangerous_hardlinks(void) {
745 _cleanup_free_ char *value = NULL;
746 static int cached = -1;
747 int r;
748
749 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
750 * what the upstream default is. */
751
752 if (cached >= 0)
753 return cached;
754
755 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
756 if (r < 0) {
757 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
758 return true;
759 }
760
761 r = parse_boolean(value);
762 if (r < 0) {
763 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
764 return true;
765 }
766
767 cached = r == 0;
768 return cached;
769}
770
Franck Bui774f79b2018-03-02 16:13:07 +0100771static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100772 assert(st);
773
774 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
775}
776
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200777static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200778 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +0100779
780 assert(i);
781 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200782 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100783
784 if (!i->mode_set && !i->uid_set && !i->gid_set)
785 goto shortcut;
786
Franck Buib206ac82018-04-13 11:39:39 +0200787 if (!st) {
788 if (fstat(fd, &stbuf) < 0)
789 return log_error_errno(errno, "fstat(%s) failed: %m", path);
790 st = &stbuf;
791 }
792
Franck Bui936f6bd2018-03-02 17:19:32 +0100793 if (hardlink_vulnerable(st)) {
794 log_error("Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
795 return -EPERM;
796 }
797
798 if (i->mode_set) {
799 if (S_ISLNK(st->st_mode))
800 log_debug("Skipping mode fix for symlink %s.", path);
801 else {
802 mode_t m = i->mode;
803
804 if (i->mask_perms) {
805 if (!(st->st_mode & 0111))
806 m &= ~0111;
807 if (!(st->st_mode & 0222))
808 m &= ~0222;
809 if (!(st->st_mode & 0444))
810 m &= ~0444;
811 if (!S_ISDIR(st->st_mode))
812 m &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
813 }
814
815 if (m == (st->st_mode & 07777))
816 log_debug("\"%s\" has correct mode %o already.", path, st->st_mode);
817 else {
Franck Bui936f6bd2018-03-02 17:19:32 +0100818 log_debug("Changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200819 if (fchmod_opath(fd, m) < 0)
820 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100821 }
822 }
823 }
824
825 if ((i->uid_set && i->uid != st->st_uid) ||
826 (i->gid_set && i->gid != st->st_gid)) {
827 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
828 path,
829 i->uid_set ? i->uid : UID_INVALID,
830 i->gid_set ? i->gid : GID_INVALID);
831
832 if (fchownat(fd,
833 "",
834 i->uid_set ? i->uid : UID_INVALID,
835 i->gid_set ? i->gid : GID_INVALID,
836 AT_EMPTY_PATH) < 0)
837 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
838 }
839
840shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200841 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100842}
843
Franck Bui5ec9d062018-04-13 17:31:22 +0200844static int path_open_parent_safe(const char *path) {
845 _cleanup_free_ char *dn = NULL;
846 int fd;
847
848 if (path_equal(path, "/") || !path_is_normalized(path)) {
849 log_error("Failed to open parent of '%s': invalid path.", path);
850 return -EINVAL;
851 }
852
853 dn = dirname_malloc(path);
854 if (!dn)
855 return log_oom();
856
857 fd = chase_symlinks(dn, NULL, CHASE_OPEN|CHASE_SAFE, NULL);
858 if (fd == -EPERM)
859 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
860 if (fd < 0)
861 return log_error_errno(fd, "Failed to validate path %s: %m", path);
862
863 return fd;
864}
865
Franck Buiaddc3e32018-03-20 08:58:48 +0100866static int path_open_safe(const char *path) {
867 int fd;
868
869 /* path_open_safe() returns a file descriptor opened with O_PATH after
870 * verifying that the path doesn't contain unsafe transitions, except
871 * for its final component as the function does not follow symlink. */
872
873 assert(path);
874
875 if (!path_is_normalized(path)) {
876 log_error("Failed to open invalid path '%s'.", path);
877 return -EINVAL;
878 }
879
880 fd = chase_symlinks(path, NULL, CHASE_OPEN|CHASE_SAFE|CHASE_NOFOLLOW, NULL);
881 if (fd == -EPERM)
882 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
883 if (fd < 0)
884 return log_error_errno(fd, "Failed to validate path %s: %m", path);
885
886 return fd;
887}
888
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500889static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200890 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200891
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200892 assert(i);
893 assert(path);
894
Franck Buiaddc3e32018-03-20 08:58:48 +0100895 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200896 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100897 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200898
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200899 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100900}
901
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200902static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100903 const char *p;
904 int r;
905
906 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500907 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100908
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100909 p = i->argument;
910
Lennart Poettering4034a062015-03-23 18:55:36 +0700911 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100912 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700913
Richard Maw12ba2c42015-06-23 16:26:49 +0000914 r = extract_first_word(&p, &xattr, NULL, EXTRACT_QUOTES|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700915 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200916 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700917 if (r <= 0)
918 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500919
Franck Bui4cef1922017-11-16 11:27:29 +0100920 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100921 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700922 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100923 continue;
924 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500925
Lennart Poettering4034a062015-03-23 18:55:36 +0700926 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200927 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100928 continue;
929 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500930
Lennart Poettering4034a062015-03-23 18:55:36 +0700931 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100932 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500933
Lennart Poettering4034a062015-03-23 18:55:36 +0700934 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100935 }
936
Lennart Poettering4034a062015-03-23 18:55:36 +0700937 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100938}
939
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200940static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100941 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100942 char **name, **value;
943
944 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100945 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200946 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100947
948 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100949
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100950 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200951 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100952 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400953 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
954 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100955 }
956 return 0;
957}
958
Franck Bui936f6bd2018-03-02 17:19:32 +0100959static int path_set_xattrs(Item *i, const char *path) {
960 _cleanup_close_ int fd = -1;
961
962 assert(i);
963 assert(path);
964
Franck Buiaddc3e32018-03-20 08:58:48 +0100965 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100966 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100967 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100968
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200969 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100970}
971
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200972static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200973#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500974 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500975
976 assert(item);
977
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500978 /* If force (= modify) is set, we will not modify the acl
979 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200980
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500981 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500982 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700983 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500984#else
985 log_warning_errno(ENOSYS, "ACLs are not supported. Ignoring");
986#endif
987
988 return 0;
989}
990
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200991#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200992static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
993 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500994 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500995 int r;
996
Hans-Peter Deifeld873e872015-03-03 00:35:08 +0100997 /* Returns 0 for success, positive error if already warned,
998 * negative error otherwise. */
999
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001000 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001001 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001002 if (r < 0)
1003 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001004
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001005 r = calc_acl_mask_if_needed(&dup);
1006 if (r < 0)
1007 return r;
1008 } else {
1009 dup = acl_dup(acl);
1010 if (!dup)
1011 return -errno;
1012
1013 /* the mask was already added earlier if needed */
1014 }
1015
1016 r = add_base_acls_if_needed(&dup, path);
1017 if (r < 0)
1018 return r;
1019
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001020 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001021 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001022 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001023 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001024
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001025 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001026 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001027 /* Return positive to indicate we already warned */
1028 return -log_error_errno(errno,
1029 "Setting %s ACL \"%s\" on %s failed: %m",
1030 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001031 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001032
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001033 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001034}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001035#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001036
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001037static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001038 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001039#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001040 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001041 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001042
1043 assert(item);
1044 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001045 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001046
Franck Buib206ac82018-04-13 11:39:39 +02001047 if (!st) {
1048 if (fstat(fd, &stbuf) < 0)
1049 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1050 st = &stbuf;
1051 }
1052
Franck Bui936f6bd2018-03-02 17:19:32 +01001053 if (hardlink_vulnerable(st)) {
1054 log_error("Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
1055 return -EPERM;
1056 }
1057
1058 if (S_ISLNK(st->st_mode)) {
1059 log_debug("Skipping ACL fix for symlink %s.", path);
1060 return 0;
1061 }
1062
1063 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1064
1065 if (item->acl_access)
1066 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->force);
1067
remueller26673852018-07-16 16:56:01 +02001068 /* set only default acls to folders */
1069 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Franck Bui936f6bd2018-03-02 17:19:32 +01001070 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->force);
1071
1072 if (r > 0)
1073 return -r; /* already warned */
1074 if (r == -EOPNOTSUPP) {
1075 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1076 return 0;
1077 }
1078 if (r < 0)
1079 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1080#endif
1081 return r;
1082}
1083
1084static int path_set_acls(Item *item, const char *path) {
1085 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001086#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001087 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001088
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001089 assert(item);
1090 assert(path);
1091
Franck Buiaddc3e32018-03-20 08:58:48 +01001092 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001093 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001094 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001095
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001096 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001097#endif
1098 return r;
1099}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001100
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001101#define ATTRIBUTES_ALL \
1102 (FS_NOATIME_FL | \
1103 FS_SYNC_FL | \
1104 FS_DIRSYNC_FL | \
1105 FS_APPEND_FL | \
1106 FS_COMPR_FL | \
1107 FS_NODUMP_FL | \
1108 FS_EXTENT_FL | \
1109 FS_IMMUTABLE_FL | \
1110 FS_JOURNAL_DATA_FL | \
1111 FS_SECRM_FL | \
1112 FS_UNRM_FL | \
1113 FS_NOTAIL_FL | \
1114 FS_TOPDIR_FL | \
1115 FS_NOCOW_FL)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001116
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001117static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001118
1119 static const struct {
1120 char character;
1121 unsigned value;
1122 } attributes[] = {
1123 { 'A', FS_NOATIME_FL }, /* do not update atime */
1124 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1125 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1126 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1127 { 'c', FS_COMPR_FL }, /* Compress file */
1128 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001129 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001130 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1131 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1132 { 's', FS_SECRM_FL }, /* Secure deletion */
1133 { 'u', FS_UNRM_FL }, /* Undelete */
1134 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001135 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001136 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001137 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001138
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001139 enum {
1140 MODE_ADD,
1141 MODE_DEL,
1142 MODE_SET
1143 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001144
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001145 unsigned value = 0, mask = 0;
1146 const char *p;
1147
1148 assert(item);
1149
1150 p = item->argument;
1151 if (p) {
1152 if (*p == '+') {
1153 mode = MODE_ADD;
1154 p++;
1155 } else if (*p == '-') {
1156 mode = MODE_DEL;
1157 p++;
1158 } else if (*p == '=') {
1159 mode = MODE_SET;
1160 p++;
1161 }
1162 }
1163
1164 if (isempty(p) && mode != MODE_SET) {
1165 log_error("Setting file attribute on '%s' needs an attribute specification.", item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001166 return -EINVAL;
1167 }
1168
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001169 for (; p && *p ; p++) {
1170 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001171
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001172 for (i = 0; i < ELEMENTSOF(attributes); i++)
1173 if (*p == attributes[i].character)
1174 break;
1175
1176 if (i >= ELEMENTSOF(attributes)) {
1177 log_error("Unknown file attribute '%c' on '%s'.", *p, item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001178 return -EINVAL;
1179 }
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001180
1181 v = attributes[i].value;
1182
Andreas Rammhold37420952017-09-29 00:37:23 +02001183 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001184
1185 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001186 }
1187
1188 if (mode == MODE_SET)
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001189 mask |= ATTRIBUTES_ALL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001190
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001191 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001192
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001193 item->attribute_mask = mask;
1194 item->attribute_value = value;
1195 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001196
1197 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001198}
1199
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001200static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001201 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001202 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001203 unsigned f;
1204 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001205
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001206 assert(item);
1207 assert(fd);
1208 assert(path);
1209
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001210 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001211 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001212
Franck Buib206ac82018-04-13 11:39:39 +02001213 if (!st) {
1214 if (fstat(fd, &stbuf) < 0)
1215 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1216 st = &stbuf;
1217 }
1218
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001219 /* Issuing the file attribute ioctls on device nodes is not
1220 * safe, as that will be delivered to the drivers, not the
1221 * file system containing the device node. */
Franck Bui936f6bd2018-03-02 17:19:32 +01001222 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode)) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001223 log_error("Setting file flags is only supported on regular files and directories, cannot set on '%s'.", path);
1224 return -EINVAL;
1225 }
1226
1227 f = item->attribute_value & item->attribute_mask;
1228
1229 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001230 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001231 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001232
Lennart Poetteringf2324782018-03-26 13:25:51 +02001233 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001234 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001235 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001236
Lennart Poetteringdb9a4252018-06-25 20:04:07 +02001237 r = chattr_fd(procfs_fd, f, item->attribute_mask, NULL);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001238 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001239 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001240 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001241 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001242 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001243
1244 return 0;
1245}
1246
Franck Bui936f6bd2018-03-02 17:19:32 +01001247static int path_set_attribute(Item *item, const char *path) {
1248 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001249
1250 if (!item->attribute_set || item->attribute_mask == 0)
1251 return 0;
1252
Franck Buiaddc3e32018-03-20 08:58:48 +01001253 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001254 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001255 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001256
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001257 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001258}
1259
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001260static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001261 _cleanup_close_ int fd = -1, dir_fd = -1;
1262 char *bn;
Franck Bui31c84ff2018-04-13 09:19:24 +02001263 int r;
1264
1265 assert(i);
1266 assert(path);
1267 assert(i->argument);
1268 assert(i->type == WRITE_FILE);
1269
Franck Bui551470e2018-04-13 17:54:09 +02001270 /* Validate the path and keep the fd on the directory for opening the
1271 * file so we're sure that it can't be changed behind our back. */
1272 dir_fd = path_open_parent_safe(path);
1273 if (dir_fd < 0)
1274 return dir_fd;
1275
1276 bn = basename(path);
1277
Franck Bui31c84ff2018-04-13 09:19:24 +02001278 /* Follows symlinks */
Franck Bui551470e2018-04-13 17:54:09 +02001279 fd = openat(dir_fd, bn, O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001280 if (fd < 0) {
1281 if (errno == ENOENT) {
1282 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1283 return 0;
1284 }
1285 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1286 }
1287
1288 /* 'w' is allowed to write into any kind of files. */
1289 log_debug("Writing to \"%s\".", path);
1290
1291 r = loop_write(fd, i->argument, strlen(i->argument), false);
1292 if (r < 0)
1293 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1294
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001295 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001296}
1297
1298static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001299 _cleanup_close_ int fd = -1, dir_fd = -1;
1300 struct stat stbuf, *st = NULL;
1301 int r = 0;
1302 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001303
Lennart Poettering874f1942014-06-10 22:48:56 +02001304 assert(i);
1305 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001306 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001307
Franck Bui5ec9d062018-04-13 17:31:22 +02001308 /* 'f' operates on regular files exclusively. */
1309
1310 /* Validate the path and keep the fd on the directory for opening the
1311 * file so we're sure that it can't be changed behind our back. */
1312 dir_fd = path_open_parent_safe(path);
1313 if (dir_fd < 0)
1314 return dir_fd;
1315
1316 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001317
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001318 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001319 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001320 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 +02001321 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001322 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001323
1324 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001325 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1326 * file already exists. It returns EROFS only if it needs to
1327 * create the file. */
1328 if (errno != EEXIST)
1329 return log_error_errno(errno, "Failed to create file %s: %m", path);
1330
1331 /* Re-open the file. At that point it must exist since open(2)
1332 * failed with EEXIST. We still need to check if the perms/mode
1333 * need to be changed. For read-only filesystems, we let
1334 * fd_set_perms() report the error if the perms need to be
1335 * modified. */
1336 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1337 if (fd < 0)
1338 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1339
1340 if (fstat(fd, &stbuf) < 0)
1341 return log_error_errno(errno, "stat(%s) failed: %m", path);
1342
1343 if (!S_ISREG(stbuf.st_mode)) {
1344 log_error("%s exists and is not a regular file.", path);
1345 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001346 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001347
Franck Bui5ec9d062018-04-13 17:31:22 +02001348 st = &stbuf;
1349 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001350
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001351 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001352
Franck Bui5ec9d062018-04-13 17:31:22 +02001353 if (i->argument) {
1354 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001355
Franck Bui5ec9d062018-04-13 17:31:22 +02001356 r = loop_write(fd, i->argument, strlen(i->argument), false);
1357 if (r < 0)
1358 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1359 }
1360 }
1361
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001362 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001363}
1364
1365static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001366 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001367 struct stat stbuf, *st = NULL;
1368 bool erofs = false;
1369 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001370 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001371
1372 assert(i);
1373 assert(path);
1374 assert(i->type == TRUNCATE_FILE);
1375
1376 /* We want to operate on regular file exclusively especially since
1377 * O_TRUNC is unspecified if the file is neither a regular file nor a
1378 * fifo nor a terminal device. Therefore we first open the file and make
1379 * sure it's a regular one before truncating it. */
1380
Franck Bui14ab8042018-04-13 17:50:49 +02001381 /* Validate the path and keep the fd on the directory for opening the
1382 * file so we're sure that it can't be changed behind our back. */
1383 dir_fd = path_open_parent_safe(path);
1384 if (dir_fd < 0)
1385 return dir_fd;
1386
1387 bn = basename(path);
1388
Franck Bui5ec9d062018-04-13 17:31:22 +02001389 RUN_WITH_UMASK(0000) {
1390 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001391 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 +02001392 mac_selinux_create_file_clear();
1393 }
1394
1395 if (fd < 0) {
1396 if (errno != EROFS)
1397 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1398
1399 /* On a read-only filesystem, we don't want to fail if the
1400 * target is already empty and the perms are set. So we still
1401 * proceed with the sanity checks and let the remaining
1402 * operations fail with EROFS if they try to modify the target
1403 * file. */
1404
Franck Bui14ab8042018-04-13 17:50:49 +02001405 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001406 if (fd < 0) {
1407 if (errno == ENOENT) {
1408 log_error("Cannot create file %s on a read-only file system.", path);
1409 return -EROFS;
1410 }
1411
1412 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1413 }
1414
1415 erofs = true;
1416 }
1417
1418 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001419 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001420
Franck Bui5ec9d062018-04-13 17:31:22 +02001421 if (!S_ISREG(stbuf.st_mode)) {
1422 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001423 return -EEXIST;
1424 }
1425
Franck Bui5ec9d062018-04-13 17:31:22 +02001426 if (stbuf.st_size > 0) {
1427 if (ftruncate(fd, 0) < 0) {
1428 r = erofs ? -EROFS : -errno;
1429 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1430 }
1431 } else
1432 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001433
Franck Bui5ec9d062018-04-13 17:31:22 +02001434 log_debug("\"%s\" has been created.", path);
1435
1436 if (i->argument) {
1437 log_debug("Writing to \"%s\".", path);
1438
1439 r = loop_write(fd, i->argument, strlen(i->argument), false);
1440 if (r < 0) {
1441 r = erofs ? -EROFS : r;
1442 return log_error_errno(r, "Failed to write file %s: %m", path);
1443 }
1444 }
1445
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001446 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001447}
1448
Franck Buib1f7b172018-04-12 12:19:22 +02001449static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001450 _cleanup_close_ int dfd = -1, fd = -1;
1451 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001452 int r;
1453
1454 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1455
Franck Bui16ba55a2018-04-12 12:55:22 +02001456 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001457
Franck Bui16ba55a2018-04-12 12:55:22 +02001458 /* Validate the path and use the returned directory fd for copying the
1459 * target so we're sure that the path can't be changed behind our
1460 * back. */
1461 dfd = path_open_parent_safe(i->path);
1462 if (dfd < 0)
1463 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001464
Franck Bui16ba55a2018-04-12 12:55:22 +02001465 r = copy_tree_at(AT_FDCWD, i->argument,
1466 dfd, bn,
1467 i->uid_set ? i->uid : UID_INVALID,
1468 i->gid_set ? i->gid : GID_INVALID,
1469 COPY_REFLINK);
Franck Buib1f7b172018-04-12 12:19:22 +02001470 if (r < 0) {
1471 struct stat a, b;
1472
Franck Bui16ba55a2018-04-12 12:55:22 +02001473 /* If the target already exists on read-only filesystems, trying
1474 * to create the target will not fail with EEXIST but with
1475 * EROFS. */
1476 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1477 r = -EEXIST;
1478
Franck Buib1f7b172018-04-12 12:19:22 +02001479 if (r != -EEXIST)
1480 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1481
1482 if (stat(i->argument, &a) < 0)
1483 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1484
Franck Bui16ba55a2018-04-12 12:55:22 +02001485 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001486 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1487
1488 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1489 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1490 return 0;
1491 }
1492 }
1493
Franck Bui16ba55a2018-04-12 12:55:22 +02001494 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1495 if (fd < 0)
1496 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1497
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001498 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001499}
1500
Franck Bui074bd732018-04-12 18:10:57 +02001501typedef enum {
1502 CREATION_NORMAL,
1503 CREATION_EXISTING,
1504 CREATION_FORCE,
1505 _CREATION_MODE_MAX,
1506 _CREATION_MODE_INVALID = -1
1507} CreationMode;
1508
1509static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1510 [CREATION_NORMAL] = "Created",
1511 [CREATION_EXISTING] = "Found existing",
1512 [CREATION_FORCE] = "Created replacement",
1513};
1514
1515DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1516
Franck Buif17a8d62018-08-06 12:29:54 +02001517static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001518 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001519 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001520 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001521
Franck Bui4c39d892018-04-27 11:51:14 +02001522 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001523
Franck Buif17a8d62018-08-06 12:29:54 +02001524 if (!creation)
1525 creation = &c;
1526
Franck Bui4c39d892018-04-27 11:51:14 +02001527 pfd = path_open_parent_safe(path);
1528 if (pfd < 0)
1529 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001530
Franck Bui4c39d892018-04-27 11:51:14 +02001531 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001532 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1533
1534 /* Don't create a subvolume unless the root directory is
1535 * one, too. We do this under the assumption that if the
1536 * root directory is just a plain directory (i.e. very
1537 * light-weight), we shouldn't try to split it up into
1538 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1539 * environments and suchlike will get a full brtfs
1540 * subvolume set up below their tree only if they
1541 * specifically set up a btrfs subvolume for the root
1542 * dir too. */
1543
Franck Bui4c39d892018-04-27 11:51:14 +02001544 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001545 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001546 RUN_WITH_UMASK((~mode) & 0777)
1547 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001548 }
1549 } else
1550 r = 0;
1551
Franck Bui4c39d892018-04-27 11:51:14 +02001552 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001553 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001554 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001555
1556 if (r < 0) {
1557 int k;
1558
1559 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001560 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001561
Franck Bui4c39d892018-04-27 11:51:14 +02001562 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001563 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001564 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 +02001565 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001566 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001567 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001568 log_warning("\"%s\" already exists and is not a directory.", path);
1569 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001570 }
1571
Franck Buif17a8d62018-08-06 12:29:54 +02001572 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001573 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001574 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001575
Franck Buif17a8d62018-08-06 12:29:54 +02001576 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001577
1578 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1579 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001580 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1581
Franck Bui4c39d892018-04-27 11:51:14 +02001582 return r;
1583}
1584
1585static int create_directory(Item *i, const char *path) {
1586 _cleanup_close_ int fd = -1;
1587
1588 assert(i);
1589 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1590
Franck Buif17a8d62018-08-06 12:29:54 +02001591 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001592 if (fd == -EEXIST)
1593 return 0;
1594 if (fd < 0)
1595 return fd;
1596
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001597 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001598}
1599
1600static int create_subvolume(Item *i, const char *path) {
1601 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001602 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001603 int r, q = 0;
1604
1605 assert(i);
1606 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1607
Franck Buif17a8d62018-08-06 12:29:54 +02001608 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001609 if (fd == -EEXIST)
1610 return 0;
1611 if (fd < 0)
1612 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001613
Franck Buif17a8d62018-08-06 12:29:54 +02001614 if (creation == CREATION_NORMAL &&
1615 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001616 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001617 if (r == -ENOTTY)
1618 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1619 else if (r == -EROFS)
1620 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1621 else if (r == -ENOPROTOOPT)
1622 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1623 else if (r < 0)
1624 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1625 else if (r > 0)
1626 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1627 else if (r == 0)
1628 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1629 }
1630
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001631 r = fd_set_perms(i, fd, path, NULL);
1632 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001633 return q;
1634
1635 return r;
1636}
1637
Franck Bui54946022018-04-26 15:45:17 +02001638static int empty_directory(Item *i, const char *path) {
1639 int r;
1640
1641 assert(i);
1642 assert(i->type == EMPTY_DIRECTORY);
1643
1644 r = is_dir(path, false);
1645 if (r == -ENOENT) {
1646 /* Option "e" operates only on existing objects. Do not
1647 * print errors about non-existent files or directories */
1648 log_debug("Skipping missing directory: %s", path);
1649 return 0;
1650 }
1651 if (r < 0)
1652 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
1653 if (r == 0) {
1654 log_error("'%s' already exists and is not a directory.", path);
1655 return -EEXIST;
1656 }
1657
1658 return path_set_perms(i, path);
1659}
1660
Franck Bui074bd732018-04-12 18:10:57 +02001661static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001662 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001663 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001664 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001665 int r;
1666
1667 assert(i);
1668 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1669
Franck Buic7700a72018-04-12 18:33:54 +02001670 bn = basename(i->path);
1671
1672 /* Validate the path and use the returned directory fd for copying the
1673 * target so we're sure that the path can't be changed behind our
1674 * back. */
1675 dfd = path_open_parent_safe(i->path);
1676 if (dfd < 0)
1677 return dfd;
1678
Franck Bui074bd732018-04-12 18:10:57 +02001679 RUN_WITH_UMASK(0000) {
1680 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001681 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001682 mac_selinux_create_file_clear();
1683 }
1684
1685 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001686 struct stat st;
1687
Franck Bui074bd732018-04-12 18:10:57 +02001688 if (errno == EPERM) {
1689 log_debug("We lack permissions, possibly because of cgroup configuration; "
1690 "skipping creation of device node %s.", i->path);
1691 return 0;
1692 }
1693
1694 if (errno != EEXIST)
1695 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1696
Franck Buic7700a72018-04-12 18:33:54 +02001697 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001698 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1699
1700 if ((st.st_mode & S_IFMT) != file_type) {
1701
1702 if (i->force) {
1703
1704 RUN_WITH_UMASK(0000) {
1705 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001706 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001707 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1708 mac_selinux_create_file_clear();
1709 }
1710
1711 if (r < 0)
1712 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1713 creation = CREATION_FORCE;
1714 } else {
1715 log_debug("%s is not a device node.", i->path);
1716 return 0;
1717 }
1718 } else
1719 creation = CREATION_EXISTING;
1720 } else
1721 creation = CREATION_NORMAL;
1722
1723 log_debug("%s %s device node \"%s\" %u:%u.",
1724 creation_mode_verb_to_string(creation),
1725 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1726 i->path, major(i->mode), minor(i->mode));
1727
Franck Buic7700a72018-04-12 18:33:54 +02001728 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1729 if (fd < 0)
1730 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1731
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001732 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001733}
1734
Franck Buia2fc2f82018-04-27 18:11:26 +02001735static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001736 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001737 CreationMode creation;
1738 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001739 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001740 int r;
1741
Franck Bui7ea5a872018-04-27 18:17:32 +02001742 pfd = path_open_parent_safe(path);
1743 if (pfd < 0)
1744 return pfd;
1745
1746 bn = basename(path);
1747
Franck Buia2fc2f82018-04-27 18:11:26 +02001748 RUN_WITH_UMASK(0000) {
1749 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001750 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001751 mac_selinux_create_file_clear();
1752 }
1753
1754 if (r < 0) {
1755 if (errno != EEXIST)
1756 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1757
Franck Bui7ea5a872018-04-27 18:17:32 +02001758 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001759 return log_error_errno(errno, "stat(%s) failed: %m", path);
1760
1761 if (!S_ISFIFO(st.st_mode)) {
1762
1763 if (i->force) {
1764 RUN_WITH_UMASK(0000) {
1765 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001766 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001767 mac_selinux_create_file_clear();
1768 }
1769
1770 if (r < 0)
1771 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1772 creation = CREATION_FORCE;
1773 } else {
1774 log_warning("\"%s\" already exists and is not a fifo.", path);
1775 return 0;
1776 }
1777 } else
1778 creation = CREATION_EXISTING;
1779 } else
1780 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001781
Franck Buia2fc2f82018-04-27 18:11:26 +02001782 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1783
Franck Bui7ea5a872018-04-27 18:17:32 +02001784 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1785 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001786 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001787
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001788 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001789}
1790
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001791typedef int (*action_t)(Item *i, const char *path);
1792typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001793
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001794static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001795 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001796 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001797
1798 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001799 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001800 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001801
1802 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001803 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001804 goto finish;
1805 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001806
1807 /* This returns the first error we run into, but nevertheless
1808 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001809 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001810
Franck Bui14f34802018-05-24 14:17:07 +02001811 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001812 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001813 _cleanup_closedir_ DIR *d = NULL;
1814 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001815
Franck Bui936f6bd2018-03-02 17:19:32 +01001816 /* The passed 'fd' was opened with O_PATH. We need to convert
1817 * it into a 'regular' fd before reading the directory content. */
1818 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001819
Franck Bui936f6bd2018-03-02 17:19:32 +01001820 d = opendir(procfs_path);
1821 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001822 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1823 if (r == 0)
1824 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001825 goto finish;
1826 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001827
Franck Bui936f6bd2018-03-02 17:19:32 +01001828 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001829 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001830
Franck Bui936f6bd2018-03-02 17:19:32 +01001831 if (dot_or_dot_dot(de->d_name))
1832 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001833
Franck Bui936f6bd2018-03-02 17:19:32 +01001834 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001835 if (de_fd < 0)
1836 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001837 else {
1838 _cleanup_free_ char *de_path = NULL;
1839
1840 de_path = path_join(NULL, path, de->d_name);
1841 if (!de_path)
1842 q = log_oom();
1843 else
1844 /* Pass ownership of dirent fd over */
1845 q = item_do(i, de_fd, de_path, action);
1846 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001847
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001848 if (q < 0 && r == 0)
1849 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001850 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001851 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001852finish:
1853 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001854 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001855}
1856
Franck Bui936f6bd2018-03-02 17:19:32 +01001857static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001858 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001859 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001860 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001861 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001862 char **fn;
1863
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001864 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1865 if (k < 0 && k != -ENOENT)
1866 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001867
1868 STRV_FOREACH(fn, g.gl_pathv) {
1869 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001870 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001871 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001872 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001873
Franck Bui936f6bd2018-03-02 17:19:32 +01001874 return r;
1875}
1876
1877static int glob_item_recursively(Item *i, fdaction_t action) {
1878 _cleanup_globfree_ glob_t g = {
1879 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1880 };
1881 int r = 0, k;
1882 char **fn;
1883
1884 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1885 if (k < 0 && k != -ENOENT)
1886 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1887
1888 STRV_FOREACH(fn, g.gl_pathv) {
1889 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001890
1891 /* Make sure we won't trigger/follow file object (such as
1892 * device nodes, automounts, ...) pointed out by 'fn' with
1893 * O_PATH. Note, when O_PATH is used, flags other than
1894 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1895
1896 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1897 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001898 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1899 if (r == 0)
1900 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001901 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001902 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001903
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001904 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001905 if (k < 0 && r == 0)
1906 r = k;
1907
1908 /* we passed fd ownership to the previous call */
1909 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001910 }
1911
Michal Schmidt99e68c02011-12-15 23:45:26 +01001912 return r;
1913}
1914
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001915static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001916 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001917 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001918
1919 assert(i);
1920
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001921 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1922
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001923 switch (i->type) {
1924
1925 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001926 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001927 case REMOVE_PATH:
1928 case RECURSIVE_REMOVE_PATH:
1929 return 0;
1930
1931 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001932 RUN_WITH_UMASK(0000)
1933 (void) mkdir_parents_label(i->path, 0755);
1934
Franck Bui31c84ff2018-04-13 09:19:24 +02001935 r = create_file(i, i->path);
Dave Reisner1845fdd2012-09-27 20:48:13 -04001936 if (r < 0)
1937 return r;
1938 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -05001939
Franck Bui5ec9d062018-04-13 17:31:22 +02001940 case TRUNCATE_FILE:
1941 RUN_WITH_UMASK(0000)
1942 (void) mkdir_parents_label(i->path, 0755);
1943
1944 r = truncate_file(i, i->path);
1945 if (r < 0)
1946 return r;
1947 break;
1948
Franck Bui7b887f22018-04-12 12:18:19 +02001949 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001950 RUN_WITH_UMASK(0000)
1951 (void) mkdir_parents_label(i->path, 0755);
1952
Franck Buib1f7b172018-04-12 12:19:22 +02001953 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001954 if (r < 0)
1955 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001956 break;
1957
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001958 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001959 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001960 if (r < 0)
1961 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001962
1963 break;
1964
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001965 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001966 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001967 RUN_WITH_UMASK(0000)
1968 (void) mkdir_parents_label(i->path, 0755);
1969
1970 r = create_directory(i, i->path);
1971 if (r < 0)
1972 return r;
1973 break;
1974
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001975 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001976 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1977 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001978 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001979 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001980
Franck Bui4c39d892018-04-27 11:51:14 +02001981 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001982 if (r < 0)
1983 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001984 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001985
Franck Bui4ad36842018-04-26 14:54:20 +02001986 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001987 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001988 if (r < 0)
1989 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001990 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001991
1992 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02001993 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001994 (void) mkdir_parents_label(i->path, 0755);
1995
Franck Buia2fc2f82018-04-27 18:11:26 +02001996 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001997 if (r < 0)
1998 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001999 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01002000
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002001 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01002002 RUN_WITH_UMASK(0000)
2003 (void) mkdir_parents_label(i->path, 0755);
2004
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002005 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002006 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002007 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002008
Lennart Poettering468d7262012-01-17 15:04:12 +01002009 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002010 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002011
Michal Schmidt4a62c712014-11-28 19:57:32 +01002012 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002013 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002014
2015 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002016 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002017
2018 if (i->force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002019 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002020 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002021 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002022
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002023 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002024 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2025 if (r < 0)
2026 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2027
2028 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002029 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002030 mac_selinux_create_file_clear();
2031 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002032 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002033 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002034
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002035 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002036 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002037 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002038 return 0;
2039 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002040 } else
2041 creation = CREATION_EXISTING;
2042 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002043
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002044 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002045 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002046 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002047 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002048
2049 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002050 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002051 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002052 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2053 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002054
2055 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2056 return 0;
2057 }
2058
Lennart Poettering7fa10742018-01-23 14:14:19 +01002059 RUN_WITH_UMASK(0000)
2060 (void) mkdir_parents_label(i->path, 0755);
2061
Franck Bui074bd732018-04-12 18:10:57 +02002062 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002063 if (r < 0)
2064 return r;
2065
2066 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002067
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002068 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002069 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002070 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002071 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002072 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002073 break;
2074
Michal Schmidta8d88782011-12-15 23:11:07 +01002075 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002076 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002077 if (r < 0)
2078 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002079 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002080
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002081 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002082 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002083 if (r < 0)
2084 return r;
2085 break;
2086
2087 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002088 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002089 if (r < 0)
2090 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002091 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002092
2093 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002094 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002095 if (r < 0)
2096 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002097 break;
2098
2099 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002100 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002101 if (r < 0)
2102 return r;
2103 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002104
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002105 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002106 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002107 if (r < 0)
2108 return r;
2109 break;
2110
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002111 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002112 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002113 if (r < 0)
2114 return r;
2115 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002116 }
2117
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002118 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002119}
2120
Michal Schmidta0896122011-12-15 21:32:50 +01002121static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002122 int r;
2123
2124 assert(i);
2125
2126 switch (i->type) {
2127
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002128 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002129 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002130 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002131
2132 break;
2133
2134 case TRUNCATE_DIRECTORY:
2135 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +02002136 /* FIXME: we probably should use dir_cleanup() here
2137 * instead of rm_rf() so that 'x' is honoured. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002138 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering1b26f092015-06-15 19:11:15 +02002139 r = rm_rf(instance, (i->type == RECURSIVE_REMOVE_PATH ? REMOVE_ROOT|REMOVE_SUBVOLUME : 0) | REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002140 if (r < 0 && r != -ENOENT)
2141 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002142
2143 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002144
2145 default:
2146 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002147 }
2148
2149 return 0;
2150}
2151
Michal Schmidta0896122011-12-15 21:32:50 +01002152static int remove_item(Item *i) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002153 assert(i);
2154
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002155 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2156
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002157 switch (i->type) {
2158
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002159 case REMOVE_PATH:
2160 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002161 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002162 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002163
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002164 default:
2165 return 0;
2166 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002167}
2168
Michal Sekletar78a92a52013-01-18 16:13:08 +01002169static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002170 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002171 struct stat s, ps;
2172 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002173 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002174 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002175
2176 assert(i);
2177
2178 if (!i->age_set)
2179 return 0;
2180
2181 n = now(CLOCK_REALTIME);
2182 if (n < i->age)
2183 return 0;
2184
2185 cutoff = n - i->age;
2186
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002187 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002188 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002189 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002190 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002191 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002192 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002193
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002194 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002195 }
2196
Michal Schmidt4a62c712014-11-28 19:57:32 +01002197 if (fstat(dirfd(d), &s) < 0)
2198 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002199
2200 if (!S_ISDIR(s.st_mode)) {
2201 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05002202 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002203 }
2204
Michal Schmidt4a62c712014-11-28 19:57:32 +01002205 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2206 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002207
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002208 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002209
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002210 log_debug("Cleanup threshold for %s \"%s\" is %s",
2211 mountpoint ? "mount point" : "directory",
2212 instance,
2213 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2214
2215 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2216 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002217}
2218
2219static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002220 assert(i);
2221
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002222 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2223
Michal Sekletar78a92a52013-01-18 16:13:08 +01002224 switch (i->type) {
2225 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002226 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002227 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2228 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002229 case TRUNCATE_DIRECTORY:
2230 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002231 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002232 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002233 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002234 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002235 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002236 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002237 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002238 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002239 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002240}
2241
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002242static int process_item_array(ItemArray *array);
2243
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002244static int process_item(Item *i) {
Lennart Poettering1e958932015-01-06 20:33:46 +01002245 int r, q, p, t = 0;
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05002246 _cleanup_free_ char *prefix = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002247
2248 assert(i);
2249
Lennart Poettering1910cd02014-06-11 01:37:35 +02002250 if (i->done)
2251 return 0;
2252
2253 i->done = true;
2254
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05002255 prefix = malloc(strlen(i->path) + 1);
2256 if (!prefix)
2257 return log_oom();
2258
Lennart Poettering1910cd02014-06-11 01:37:35 +02002259 PATH_FOREACH_PREFIX(prefix, i->path) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002260 ItemArray *j;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002261
Lennart Poetteringef43a392015-04-22 18:18:56 +02002262 j = ordered_hashmap_get(items, prefix);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002263 if (j) {
2264 int s;
2265
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002266 s = process_item_array(j);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002267 if (s < 0 && t == 0)
2268 t = s;
2269 }
Lennart Poettering1910cd02014-06-11 01:37:35 +02002270 }
2271
NeilBrown655f2da2017-09-04 23:35:07 +10002272 if (chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL) == -EREMOTE)
2273 return t;
2274
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002275 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +01002276 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002277 p = arg_clean ? clean_item(i) : 0;
William Douglas6d7b5432018-09-10 12:07:29 -07002278 /* Failure can only be tolerated for create */
2279 if (i->allow_failure)
2280 r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002281
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002282 return t < 0 ? t :
2283 r < 0 ? r :
2284 q < 0 ? q :
2285 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002286}
2287
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002288static int process_item_array(ItemArray *array) {
2289 unsigned n;
2290 int r = 0, k;
Lennart Poettering753615e2014-06-12 23:07:17 +02002291
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002292 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002293
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002294 for (n = 0; n < array->count; n++) {
2295 k = process_item(array->items + n);
2296 if (k < 0 && r == 0)
2297 r = k;
2298 }
2299
2300 return r;
2301}
2302
2303static void item_free_contents(Item *i) {
2304 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002305 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002306 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002307 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002308
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002309#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002310 acl_free(i->acl_access);
2311 acl_free(i->acl_default);
2312#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002313}
2314
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002315static void item_array_free(ItemArray *a) {
2316 unsigned n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002317
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002318 if (!a)
2319 return;
2320
2321 for (n = 0; n < a->count; n++)
2322 item_free_contents(a->items + n);
2323 free(a->items);
2324 free(a);
2325}
2326
Yu Watanabe93bab282018-09-18 08:39:24 +09002327static int item_compare(const Item *a, const Item *b) {
Lennart Poettering17493fa2015-04-10 16:22:22 +02002328 /* Make sure that the ownership taking item is put first, so
2329 * that we first create the node, and then can adjust it */
2330
Yu Watanabe93bab282018-09-18 08:39:24 +09002331 if (takes_ownership(a->type) && !takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002332 return -1;
Yu Watanabe93bab282018-09-18 08:39:24 +09002333 if (!takes_ownership(a->type) && takes_ownership(b->type))
Lennart Poettering17493fa2015-04-10 16:22:22 +02002334 return 1;
2335
Yu Watanabe93bab282018-09-18 08:39:24 +09002336 return CMP(a->type, b->type);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002337}
2338
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002339static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002340 assert(a);
2341 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002342 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002343
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002344 if (takes_ownership(a->type) && takes_ownership(b->type))
2345 /* check if the items are the same */
2346 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002347
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002348 a->uid_set == b->uid_set &&
2349 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002350
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002351 a->gid_set == b->gid_set &&
2352 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002353
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002354 a->mode_set == b->mode_set &&
2355 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002356
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002357 a->age_set == b->age_set &&
2358 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002359
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002360 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002361
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002362 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002363
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002364 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002365
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002366 return true;
2367}
2368
Dave Reisnera2aced42013-07-24 11:10:05 -04002369static bool should_include_path(const char *path) {
2370 char **prefix;
2371
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002372 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002373 if (path_startswith(path, *prefix)) {
2374 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2375 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002376 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002377 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002378
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002379 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002380 if (path_startswith(path, *prefix)) {
2381 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002382 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002383 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002384
Dave Reisner5c795112013-07-24 11:19:24 -04002385 /* no matches, so we should include this path only if we
2386 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002387 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002388 return true;
2389
2390 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2391 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002392}
2393
Franck Bui4cef1922017-11-16 11:27:29 +01002394static int specifier_expansion_from_arg(Item *i) {
2395 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2396 char **xattr;
2397 int r;
2398
2399 assert(i);
2400
2401 if (i->argument == NULL)
2402 return 0;
2403
2404 switch (i->type) {
2405 case COPY_FILES:
2406 case CREATE_SYMLINK:
2407 case CREATE_FILE:
2408 case TRUNCATE_FILE:
2409 case WRITE_FILE:
2410 r = cunescape(i->argument, 0, &unescaped);
2411 if (r < 0)
2412 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2413
2414 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2415 if (r < 0)
2416 return r;
2417
2418 free_and_replace(i->argument, resolved);
2419 break;
2420
2421 case SET_XATTR:
2422 case RECURSIVE_SET_XATTR:
2423 assert(i->xattrs);
2424
2425 STRV_FOREACH (xattr, i->xattrs) {
2426 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2427 if (r < 0)
2428 return r;
2429
2430 free_and_replace(*xattr, resolved);
2431 }
2432 break;
2433
2434 default:
2435 break;
2436 }
2437 return 0;
2438}
2439
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002440static int patch_var_run(const char *fname, unsigned line, char **path) {
2441 const char *k;
2442 char *n;
2443
2444 assert(path);
2445 assert(*path);
2446
2447 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2448 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2449 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2450 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2451 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2452 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2453 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2454 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2455 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2456
2457 k = path_startswith(*path, "/var/run/");
2458 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2459 return 0;
2460
2461 n = strjoin("/run/", k);
2462 if (!n)
2463 return log_oom();
2464
2465 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2466 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2467 * to the user, let's still inform the user that these snippets should really be updated. */
2468
2469 log_notice("[%s:%u] Line references path below legacy directory /var/run/, updating %s → %s; please update the tmpfiles.d/ drop-in file accordingly.", fname, line, *path, n);
2470
2471 free(*path);
2472 *path = n;
2473
2474 return 0;
2475}
2476
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002477static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002478
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002479 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002480 _cleanup_(item_free_contents) Item i = {};
2481 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002482 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002483 int r, pos;
William Douglas6d7b5432018-09-10 12:07:29 -07002484 bool force = false, boot = false, allow_failure = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002485
2486 assert(fname);
2487 assert(line >= 1);
2488 assert(buffer);
2489
Richard Maw68685602015-06-23 16:20:53 +00002490 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002491 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002492 NULL,
Richard Maw12ba2c42015-06-23 16:26:49 +00002493 EXTRACT_QUOTES,
Lennart Poettering4034a062015-03-23 18:55:36 +07002494 &action,
2495 &path,
2496 &mode,
2497 &user,
2498 &group,
2499 &age,
2500 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002501 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002502 if (IN_SET(r, -EINVAL, -EBADSLT))
2503 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002504 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002505 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Lennart Poettering4b936992018-05-10 11:29:11 -07002506 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002507 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002508 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002509 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002510 }
2511
Lennart Poetteringaa5f6812015-04-21 01:10:19 +02002512 if (!isempty(buffer) && !streq(buffer, "-")) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002513 i.argument = strdup(buffer);
2514 if (!i.argument)
2515 return log_oom();
2516 }
2517
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002518 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002519 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002520 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002521 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002522 }
2523
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002524 for (pos = 1; action[pos]; pos++) {
2525 if (action[pos] == '!' && !boot)
2526 boot = true;
2527 else if (action[pos] == '+' && !force)
2528 force = true;
William Douglas6d7b5432018-09-10 12:07:29 -07002529 else if (action[pos] == '-' && !allow_failure)
2530 allow_failure = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002531 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002532 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002533 log_error("[%s:%u] Unknown modifiers in command '%s'",
2534 fname, line, action);
2535 return -EINVAL;
2536 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002537 }
2538
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002539 if (boot && !arg_boot) {
2540 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2541 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002542 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002543 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002544
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002545 i.type = action[0];
2546 i.force = force;
William Douglas6d7b5432018-09-10 12:07:29 -07002547 i.allow_failure = allow_failure;
Lennart Poettering1731e342013-09-17 11:02:02 -05002548
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002549 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002550 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002551 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002552 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002553 if (IN_SET(r, -EINVAL, -EBADSLT))
2554 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002555 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002556 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002557
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002558 r = patch_var_run(fname, line, &i.path);
2559 if (r < 0)
2560 return r;
2561
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002562 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002563
Michal Schmidt777b87e2011-12-16 18:27:35 +01002564 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002565 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002566 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2567 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002568 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002569 case TRUNCATE_DIRECTORY:
2570 case CREATE_FIFO:
2571 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002572 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002573 case REMOVE_PATH:
2574 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002575 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002576 case RELABEL_PATH:
2577 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002578 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002579 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002580
2581 break;
2582
2583 case CREATE_FILE:
2584 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002585 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002586
2587 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002588 if (!i.argument) {
2589 i.argument = strappend("/usr/share/factory/", i.path);
2590 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002591 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002592 }
2593 break;
2594
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002595 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002596 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002597 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002598 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002599 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002600 }
2601 break;
2602
Lennart Poettering849958d2014-06-10 23:02:40 +02002603 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002604 if (!i.argument) {
2605 i.argument = strappend("/usr/share/factory/", i.path);
2606 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002607 return log_oom();
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002608 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002609 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002610 log_error("[%s:%u] Source path is not absolute.", fname, line);
2611 return -EBADMSG;
2612 }
2613
Yu Watanabe858d36c2018-05-31 23:39:31 +09002614 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002615 break;
2616
Lennart Poettering468d7262012-01-17 15:04:12 +01002617 case CREATE_CHAR_DEVICE:
2618 case CREATE_BLOCK_DEVICE: {
2619 unsigned major, minor;
2620
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002621 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002622 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002623 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002624 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002625 }
2626
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002627 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002628 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002629 log_error("[%s:%u] Can't parse device file major/minor '%s'.", fname, line, i.argument);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002630 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002631 }
2632
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002633 i.major_minor = makedev(major, minor);
Lennart Poettering468d7262012-01-17 15:04:12 +01002634 break;
2635 }
2636
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002637 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002638 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002639 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002640 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002641 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2642 return -EBADMSG;
2643 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002644 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002645 if (r < 0)
2646 return r;
2647 break;
2648
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002649 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002650 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002651 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002652 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002653 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2654 return -EBADMSG;
2655 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002656 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002657 if (r < 0)
2658 return r;
2659 break;
2660
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002661 case SET_ATTRIBUTE:
2662 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002663 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002664 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002665 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002666 return -EBADMSG;
2667 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002668 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002669 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002670 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002671 if (r < 0)
2672 return r;
2673 break;
2674
Michal Schmidt777b87e2011-12-16 18:27:35 +01002675 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002676 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002677 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002678 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002679 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002680
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002681 if (!path_is_absolute(i.path)) {
2682 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002683 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002684 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002685 }
2686
Yu Watanabe858d36c2018-05-31 23:39:31 +09002687 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002688
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002689 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002690 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002691
Franck Bui4cef1922017-11-16 11:27:29 +01002692 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002693 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002694 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002695 if (r < 0) {
2696 if (IN_SET(r, -EINVAL, -EBADSLT))
2697 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002698 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2699 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002700 }
Franck Bui4cef1922017-11-16 11:27:29 +01002701
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002702 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002703 char *p;
2704
Lennart Poettering1d13f642015-05-13 17:42:10 +02002705 p = prefix_root(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002706 if (!p)
2707 return log_oom();
2708
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002709 free(i.path);
2710 i.path = p;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002711 }
2712
Lennart Poettering90937fe2015-04-10 16:04:16 +02002713 if (!isempty(user) && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002714 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002715
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002716 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002717 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002718 *invalid_config = true;
2719 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002720 }
2721
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002722 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002723 }
2724
Lennart Poettering90937fe2015-04-10 16:04:16 +02002725 if (!isempty(group) && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002726 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002727
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002728 r = get_group_creds(&g, &i.gid, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002729 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002730 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002731 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002732 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002733 }
2734
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002735 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002736 }
2737
Lennart Poettering90937fe2015-04-10 16:04:16 +02002738 if (!isempty(mode) && !streq(mode, "-")) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002739 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002740 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002741
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002742 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002743 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002744 mm++;
2745 }
2746
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002747 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002748 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002749 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002750 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002751 }
2752
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002753 i.mode = m;
2754 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002755 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002756 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 +02002757
Lennart Poettering90937fe2015-04-10 16:04:16 +02002758 if (!isempty(age) && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002759 const char *a = age;
2760
2761 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002762 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002763 a++;
2764 }
2765
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002766 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002767 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002768 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002769 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002770 }
2771
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002772 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002773 }
2774
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002775 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002776
Lennart Poetteringef43a392015-04-22 18:18:56 +02002777 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002778 if (existing) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002779 unsigned n;
2780
2781 for (n = 0; n < existing->count; n++) {
Martin Pitt6487ada2015-03-05 14:58:56 +01002782 if (!item_compatible(existing->items + n, &i)) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002783 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2784 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002785 return 0;
2786 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002787 }
2788 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002789 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002790 if (!existing)
2791 return log_oom();
2792
Lennart Poetteringef43a392015-04-22 18:18:56 +02002793 r = ordered_hashmap_put(h, i.path, existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002794 if (r < 0)
2795 return log_oom();
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002796 }
2797
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002798 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2799 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002800
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002801 memcpy(existing->items + existing->count++, &i, sizeof(i));
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002802
2803 /* Sort item array, to enforce stable ordering of application */
Yu Watanabe93bab282018-09-18 08:39:24 +09002804 typesafe_qsort(existing->items, existing->count, item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002805
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002806 zero(i);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002807 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002808}
2809
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002810static int cat_config(char **config_dirs, char **args) {
2811 _cleanup_strv_free_ char **files = NULL;
2812 int r;
2813
2814 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2815 if (r < 0)
2816 return r;
2817
2818 return cat_files(NULL, files, 0);
2819}
2820
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002821static int help(void) {
2822 _cleanup_free_ char *link = NULL;
2823 int r;
2824
2825 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2826 if (r < 0)
2827 return log_oom();
2828
Lennart Poettering522d4a42011-02-13 15:08:15 +01002829 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2830 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002831 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002832 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002833 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002834 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002835 " --create Create marked files/directories\n"
2836 " --clean Clean up marked directories\n"
2837 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002838 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002839 " --prefix=PATH Only apply rules with the specified prefix\n"
2840 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002841 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002842 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002843 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002844 "\nSee the %s for details.\n"
2845 , program_invocation_short_name
2846 , link
2847 );
2848
2849 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002850}
2851
2852static int parse_argv(int argc, char *argv[]) {
2853
2854 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002855 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002856 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002857 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002858 ARG_CREATE,
2859 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002860 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002861 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002862 ARG_PREFIX,
2863 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002864 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002865 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002866 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002867 };
2868
2869 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002870 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002871 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002872 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002873 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002874 { "create", no_argument, NULL, ARG_CREATE },
2875 { "clean", no_argument, NULL, ARG_CLEAN },
2876 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002877 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002878 { "prefix", required_argument, NULL, ARG_PREFIX },
2879 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002880 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002881 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002882 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002883 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002884 };
2885
Lennart Poettering0f474362015-10-22 19:28:31 +02002886 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002887
2888 assert(argc >= 0);
2889 assert(argv);
2890
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002891 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002892
2893 switch (c) {
2894
2895 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002896 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002897
2898 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002899 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002900
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002901 case ARG_CAT_CONFIG:
2902 arg_cat_config = true;
2903 break;
2904
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002905 case ARG_USER:
2906 arg_user = true;
2907 break;
2908
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002909 case ARG_CREATE:
2910 arg_create = true;
2911 break;
2912
2913 case ARG_CLEAN:
2914 arg_clean = true;
2915 break;
2916
2917 case ARG_REMOVE:
2918 arg_remove = true;
2919 break;
2920
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002921 case ARG_BOOT:
2922 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002923 break;
2924
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002925 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002926 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002927 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002928 break;
2929
Dave Reisner5c795112013-07-24 11:19:24 -04002930 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002931 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002932 return log_oom();
2933 break;
2934
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002935 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002936 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002937 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002938 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002939 break;
2940
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002941 case ARG_REPLACE:
2942 if (!path_is_absolute(optarg) ||
2943 !endswith(optarg, ".conf")) {
2944 log_error("The argument to --replace= must an absolute path to a config file");
2945 return -EINVAL;
2946 }
2947
2948 arg_replace = optarg;
2949 break;
2950
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002951 case ARG_NO_PAGER:
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01002952 arg_pager_flags |= PAGER_DISABLE;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002953 break;
2954
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002955 case '?':
2956 return -EINVAL;
2957
2958 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002959 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002960 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002961
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002962 if (!arg_clean && !arg_create && !arg_remove && !arg_cat_config) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01002963 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002964 return -EINVAL;
2965 }
2966
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002967 if (arg_replace && arg_cat_config) {
2968 log_error("Option --replace= is not supported with --cat-config");
2969 return -EINVAL;
2970 }
2971
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002972 if (arg_replace && optind >= argc) {
2973 log_error("When --replace= is given, some configuration items must be specified");
2974 return -EINVAL;
2975 }
2976
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002977 return 1;
2978}
2979
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002980static int read_config_file(char **config_dirs, const char *fn, bool ignore_enoent, bool *invalid_config) {
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002981 _cleanup_fclose_ FILE *_f = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002982 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002983 unsigned v = 0;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02002984 FILE *f;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002985 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002986 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002987
2988 assert(fn);
2989
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002990 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002991 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002992 fn = "<stdin>";
2993 f = stdin;
2994 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002995 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002996 if (r < 0) {
2997 if (ignore_enoent && r == -ENOENT) {
2998 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
2999 return 0;
3000 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003001
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003002 return log_error_errno(r, "Failed to open '%s': %m", fn);
3003 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003004 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04003005 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003006 }
3007
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003008 for (;;) {
3009 _cleanup_free_ char *line = NULL;
3010 bool invalid_line = false;
Lennart Poettering1731e342013-09-17 11:02:02 -05003011 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003012 int k;
Lennart Poettering2a98ae42018-10-18 16:21:05 +02003013
3014 k = read_line(f, LONG_LINE_MAX, &line);
3015 if (k < 0)
3016 return log_error_errno(k, "Failed to read '%s': %m", fn);
3017 if (k == 0)
3018 break;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003019
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003020 v++;
3021
3022 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003023 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003024 continue;
3025
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003026 k = parse_line(fn, v, l, &invalid_line);
3027 if (k < 0) {
3028 if (invalid_line)
3029 /* Allow reporting with a special code if the caller requested this */
3030 *invalid_config = true;
3031 else if (r == 0)
3032 /* The first error becomes our return value */
3033 r = k;
3034 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003035 }
3036
Michal Sekletar78a92a52013-01-18 16:13:08 +01003037 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003038 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003039 Iterator iter;
3040 Item *j, *candidate_item = NULL;
3041
3042 if (i->type != IGNORE_DIRECTORY_PATH)
3043 continue;
3044
Lennart Poetteringef43a392015-04-22 18:18:56 +02003045 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003046 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 +01003047 continue;
3048
3049 if (path_equal(j->path, i->path)) {
3050 candidate_item = j;
3051 break;
3052 }
3053
3054 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3055 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3056 candidate_item = j;
3057 }
3058
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003059 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003060 i->age = candidate_item->age;
3061 i->age_set = true;
3062 }
3063 }
3064
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003065 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003066 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003067 if (r == 0)
3068 r = -EIO;
3069 }
3070
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003071 return r;
3072}
3073
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003074static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3075 char **arg;
3076 int r;
3077
3078 STRV_FOREACH(arg, args) {
3079 r = read_config_file(config_dirs, *arg, false, invalid_config);
3080 if (r < 0)
3081 return r;
3082 }
3083
3084 return 0;
3085}
3086
3087static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3088 _cleanup_strv_free_ char **files = NULL;
3089 _cleanup_free_ char *p = NULL;
3090 char **f;
3091 int r;
3092
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003093 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003094 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003095 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003096
3097 STRV_FOREACH(f, files)
3098 if (p && path_equal(*f, p)) {
3099 log_debug("Parsing arguments at position \"%s\"…", *f);
3100
3101 r = parse_arguments(config_dirs, args, invalid_config);
3102 if (r < 0)
3103 return r;
3104 } else
3105 /* Just warn, ignore result otherwise.
3106 * read_config_file() has some debug output, so no need to print anything. */
3107 (void) read_config_file(config_dirs, *f, true, invalid_config);
3108
3109 return 0;
3110}
3111
Lennart Poettering5008d582010-09-28 02:34:02 +02003112int main(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003113 int r, k, r_process = 0;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003114 ItemArray *a;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003115 Iterator iterator;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003116 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003117 bool invalid_config = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02003118
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003119 r = parse_argv(argc, argv);
3120 if (r <= 0)
Lennart Poettering753615e2014-06-12 23:07:17 +02003121 goto finish;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003122
Lennart Poettering6bf3c612018-11-20 11:18:22 +01003123 log_setup_service();
Lennart Poettering5008d582010-09-28 02:34:02 +02003124
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003125 if (arg_user) {
3126 r = user_config_paths(&config_dirs);
3127 if (r < 0) {
3128 log_error_errno(r, "Failed to initialize configuration directory list: %m");
3129 goto finish;
3130 }
3131 } else {
3132 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
3133 if (!config_dirs) {
3134 r = log_oom();
3135 goto finish;
3136 }
3137 }
3138
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003139 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003140 _cleanup_free_ char *t = NULL;
3141
3142 t = strv_join(config_dirs, "\n\t");
3143 if (t)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003144 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003145 }
3146
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003147 if (arg_cat_config) {
Zbigniew Jędrzejewski-Szmek0221d682018-11-11 12:56:29 +01003148 (void) pager_open(arg_pager_flags);
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003149
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003150 r = cat_config(config_dirs, argv + optind);
3151 goto finish;
3152 }
3153
3154 umask(0022);
3155
3156 mac_selinux_init();
3157
3158 items = ordered_hashmap_new(&string_hash_ops);
3159 globs = ordered_hashmap_new(&string_hash_ops);
3160
3161 if (!items || !globs) {
3162 r = log_oom();
3163 goto finish;
3164 }
3165
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003166 /* If command line arguments are specified along with --replace, read all
3167 * configuration files and insert the positional arguments at the specified
3168 * place. Otherwise, if command line arguments are specified, execute just
3169 * them, and finally, without --replace= or any positional arguments, just
3170 * read configuration and execute it.
3171 */
3172 if (arg_replace || optind >= argc)
3173 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3174 else
3175 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3176 if (r < 0)
3177 goto finish;
Lennart Poettering5008d582010-09-28 02:34:02 +02003178
Lennart Poettering17493fa2015-04-10 16:22:22 +02003179 /* The non-globbing ones usually create things, hence we apply
3180 * them first */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003181 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003182 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003183 if (k < 0 && r_process == 0)
3184 r_process = k;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003185 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003186
Lennart Poettering17493fa2015-04-10 16:22:22 +02003187 /* The globbing ones usually alter things, hence we apply them
3188 * second. */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003189 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003190 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003191 if (k < 0 && r_process == 0)
3192 r_process = k;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003193 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003194
Lennart Poettering5008d582010-09-28 02:34:02 +02003195finish:
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003196 pager_close();
3197
Zbigniew Jędrzejewski-Szmek224b0e72017-11-28 12:35:49 +01003198 ordered_hashmap_free_with_destructor(items, item_array_free);
3199 ordered_hashmap_free_with_destructor(globs, item_array_free);
Lennart Poettering5008d582010-09-28 02:34:02 +02003200
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003201 free(arg_include_prefixes);
3202 free(arg_exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07003203 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04003204
Lennart Poettering17b90522011-02-14 21:55:06 +01003205 set_free_free(unix_sockets);
3206
WaLyong Chocc56faf2014-10-23 17:23:46 +09003207 mac_selinux_finish();
Lennart Poettering29003cf2010-10-19 19:36:45 +02003208
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003209 if (r < 0 || ERRNO_IS_RESOURCE(-r_process))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003210 return EXIT_FAILURE;
3211 else if (invalid_config)
3212 return EX_DATAERR;
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003213 else if (r_process < 0)
3214 return EX_CANTCREAT;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003215 else
3216 return EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02003217}