blob: b91b212a708fbde28863c2fd367cdff715b291df [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
Lennart Poettering1910cd02014-06-11 01:37:35 +0200131 bool done:1;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200132} Item;
133
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500134typedef struct ItemArray {
135 Item *items;
136 size_t count;
137 size_t size;
138} ItemArray;
139
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100140typedef enum DirectoryType {
141 DIRECTORY_RUNTIME = 0,
142 DIRECTORY_STATE,
143 DIRECTORY_CACHE,
144 DIRECTORY_LOGS,
145 _DIRECTORY_TYPE_MAX,
146} DirectoryType;
147
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +0200148static bool arg_cat_config = false;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100149static bool arg_user = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200150static bool arg_create = false;
151static bool arg_clean = false;
152static bool arg_remove = false;
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -0500153static bool arg_boot = false;
Lennart Poetteringdcd5c892018-06-12 15:37:53 +0200154static bool arg_no_pager = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200155
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200156static char **arg_include_prefixes = NULL;
157static char **arg_exclude_prefixes = NULL;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -0700158static char *arg_root = NULL;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +0100159static char *arg_replace = NULL;
Lennart Poetteringfba6e682011-02-13 14:00:54 +0100160
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200161#define MAX_DEPTH 256
162
Lennart Poetteringef43a392015-04-22 18:18:56 +0200163static OrderedHashmap *items = NULL, *globs = NULL;
Lennart Poettering7bc040f2014-06-11 01:26:28 +0200164static Set *unix_sockets = NULL;
165
Franck Bui4cef1922017-11-16 11:27:29 +0100166static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100167static int specifier_directory(char specifier, void *data, void *userdata, char **ret);
Franck Bui4cef1922017-11-16 11:27:29 +0100168
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200169static const Specifier specifier_table[] = {
Franck Bui4cef1922017-11-16 11:27:29 +0100170 { 'm', specifier_machine_id_safe, NULL },
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100171 { 'b', specifier_boot_id, NULL },
172 { 'H', specifier_host_name, NULL },
173 { 'v', specifier_kernel_release, NULL },
ayekatca23eeb2017-11-24 12:44:08 +0100174
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100175 { 'U', specifier_user_id, NULL },
176 { 'u', specifier_user_name, NULL },
177 { 'h', specifier_user_home, NULL },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200178
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100179 { 't', specifier_directory, UINT_TO_PTR(DIRECTORY_RUNTIME) },
180 { 'S', specifier_directory, UINT_TO_PTR(DIRECTORY_STATE) },
181 { 'C', specifier_directory, UINT_TO_PTR(DIRECTORY_CACHE) },
182 { 'L', specifier_directory, UINT_TO_PTR(DIRECTORY_LOGS) },
Lennart Poetteringb294e592018-05-29 11:25:26 +0200183 { 'T', specifier_tmp_dir, NULL },
184 { 'V', specifier_var_tmp_dir, NULL },
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200185 {}
186};
187
Franck Bui4cef1922017-11-16 11:27:29 +0100188static int specifier_machine_id_safe(char specifier, void *data, void *userdata, char **ret) {
189 int r;
190
Franck Buid8dab752018-01-10 23:28:44 +0100191 /* If /etc/machine_id is missing or empty (e.g. in a chroot environment)
192 * return a recognizable error so that the caller can skip the rule
Franck Bui4cef1922017-11-16 11:27:29 +0100193 * gracefully. */
194
195 r = specifier_machine_id(specifier, data, userdata, ret);
Franck Buid8dab752018-01-10 23:28:44 +0100196 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100197 return -ENXIO;
Franck Bui4cef1922017-11-16 11:27:29 +0100198
199 return r;
200}
201
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100202static int specifier_directory(char specifier, void *data, void *userdata, char **ret) {
203 struct table_entry {
204 uint64_t type;
205 const char *suffix;
206 };
207
208 static const struct table_entry paths_system[] = {
209 [DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME },
210 [DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE },
211 [DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE },
212 [DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS },
213 };
214
215 static const struct table_entry paths_user[] = {
216 [DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME },
217 [DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION },
218 [DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE },
219 [DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
220 };
221
222 unsigned i;
223 const struct table_entry *paths;
224
225 assert_cc(ELEMENTSOF(paths_system) == ELEMENTSOF(paths_user));
226 paths = arg_user ? paths_user : paths_system;
227
228 i = PTR_TO_UINT(data);
229 assert(i < ELEMENTSOF(paths_system));
230
231 return sd_path_home(paths[i].type, paths[i].suffix, ret);
232}
233
Franck Bui4cef1922017-11-16 11:27:29 +0100234static int log_unresolvable_specifier(const char *filename, unsigned line) {
235 static bool notified = false;
236
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100237 /* In system mode, this is called when /etc is not fully initialized (e.g.
238 * in a chroot environment) where some specifiers are unresolvable. In user
239 * mode, this is called when some variables are not defined. These cases are
240 * not considered as an error so log at LOG_NOTICE only for the first time
241 * and then downgrade this to LOG_DEBUG for the rest. */
Franck Bui4cef1922017-11-16 11:27:29 +0100242
243 log_full(notified ? LOG_DEBUG : LOG_NOTICE,
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +0100244 "[%s:%u] Failed to resolve specifier: %s, skipping",
245 filename, line,
246 arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected");
Franck Bui4cef1922017-11-16 11:27:29 +0100247
248 if (!notified)
249 log_notice("All rules containing unresolvable specifiers will be skipped.");
250
251 notified = true;
252 return 0;
253}
254
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100255static int user_config_paths(char*** ret) {
256 _cleanup_strv_free_ char **config_dirs = NULL, **data_dirs = NULL;
257 _cleanup_free_ char *persistent_config = NULL, *runtime_config = NULL, *data_home = NULL;
258 _cleanup_strv_free_ char **res = NULL;
259 int r;
260
261 r = xdg_user_dirs(&config_dirs, &data_dirs);
262 if (r < 0)
263 return r;
264
265 r = xdg_user_config_dir(&persistent_config, "/user-tmpfiles.d");
266 if (r < 0 && r != -ENXIO)
267 return r;
268
269 r = xdg_user_runtime_dir(&runtime_config, "/user-tmpfiles.d");
270 if (r < 0 && r != -ENXIO)
271 return r;
272
273 r = xdg_user_data_dir(&data_home, "/user-tmpfiles.d");
274 if (r < 0 && r != -ENXIO)
275 return r;
276
277 r = strv_extend_strv_concat(&res, config_dirs, "/user-tmpfiles.d");
278 if (r < 0)
279 return r;
280
281 r = strv_extend(&res, persistent_config);
282 if (r < 0)
283 return r;
284
285 r = strv_extend(&res, runtime_config);
286 if (r < 0)
287 return r;
288
289 r = strv_extend(&res, data_home);
290 if (r < 0)
291 return r;
292
293 r = strv_extend_strv_concat(&res, data_dirs, "/user-tmpfiles.d");
294 if (r < 0)
295 return r;
296
297 r = path_strv_make_absolute_cwd(res);
298 if (r < 0)
299 return r;
300
Lennart Poetteringae2a15b2018-03-22 16:53:26 +0100301 *ret = TAKE_PTR(res);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +0100302 return 0;
303}
304
Michal Schmidt66ccd032011-12-15 21:31:14 +0100305static bool needs_glob(ItemType t) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200306 return IN_SET(t,
307 WRITE_FILE,
308 IGNORE_PATH,
309 IGNORE_DIRECTORY_PATH,
310 REMOVE_PATH,
311 RECURSIVE_REMOVE_PATH,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400312 EMPTY_DIRECTORY,
Lennart Poetteringe73a03e2014-06-10 23:42:16 +0200313 ADJUST_MODE,
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200314 RELABEL_PATH,
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500315 RECURSIVE_RELABEL_PATH,
316 SET_XATTR,
317 RECURSIVE_SET_XATTR,
318 SET_ACL,
Lennart Poettering34f64532015-04-09 13:12:06 +0200319 RECURSIVE_SET_ACL,
320 SET_ATTRIBUTE,
321 RECURSIVE_SET_ATTRIBUTE);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100322}
323
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500324static bool takes_ownership(ItemType t) {
325 return IN_SET(t,
326 CREATE_FILE,
327 TRUNCATE_FILE,
328 CREATE_DIRECTORY,
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -0400329 EMPTY_DIRECTORY,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500330 TRUNCATE_DIRECTORY,
331 CREATE_SUBVOLUME,
Lennart Poettering5fb13eb2015-10-21 19:46:23 +0200332 CREATE_SUBVOLUME_INHERIT_QUOTA,
333 CREATE_SUBVOLUME_NEW_QUOTA,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500334 CREATE_FIFO,
335 CREATE_SYMLINK,
336 CREATE_CHAR_DEVICE,
337 CREATE_BLOCK_DEVICE,
338 COPY_FILES,
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500339 WRITE_FILE,
340 IGNORE_PATH,
341 IGNORE_DIRECTORY_PATH,
342 REMOVE_PATH,
343 RECURSIVE_REMOVE_PATH);
344}
345
Lennart Poetteringef43a392015-04-22 18:18:56 +0200346static struct Item* find_glob(OrderedHashmap *h, const char *match) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500347 ItemArray *j;
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100348 Iterator i;
349
Lennart Poetteringef43a392015-04-22 18:18:56 +0200350 ORDERED_HASHMAP_FOREACH(j, h, i) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -0500351 unsigned n;
352
353 for (n = 0; n < j->count; n++) {
354 Item *item = j->items + n;
355
356 if (fnmatch(item->path, match, FNM_PATHNAME|FNM_PERIOD) == 0)
357 return item;
358 }
359 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100360
361 return NULL;
362}
363
Lennart Poettering17b90522011-02-14 21:55:06 +0100364static void load_unix_sockets(void) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200365 _cleanup_fclose_ FILE *f = NULL;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100366 int r;
Lennart Poettering17b90522011-02-14 21:55:06 +0100367
368 if (unix_sockets)
369 return;
370
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100371 /* 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 +0100372
Lennart Poettering548f6932018-02-08 18:58:35 +0100373 unix_sockets = set_new(&path_hash_ops);
374 if (!unix_sockets) {
375 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100376 return;
Lennart Poettering548f6932018-02-08 18:58:35 +0100377 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100378
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100379 f = fopen("/proc/net/unix", "re");
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100380 if (!f) {
381 log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, errno,
382 "Failed to open /proc/net/unix, ignoring: %m");
383 goto fail;
384 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100385
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100386 /* Skip header */
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100387 r = read_line(f, LONG_LINE_MAX, NULL);
388 if (r < 0) {
389 log_warning_errno(r, "Failed to skip /proc/net/unix header line: %m");
Lennart Poettering17b90522011-02-14 21:55:06 +0100390 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100391 }
392 if (r == 0) {
393 log_warning("Premature end of file reading /proc/net/unix.");
394 goto fail;
395 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100396
397 for (;;) {
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100398 _cleanup_free_ char *line = NULL;
Lennart Poettering17b90522011-02-14 21:55:06 +0100399 char *p, *s;
Lennart Poettering17b90522011-02-14 21:55:06 +0100400
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100401 r = read_line(f, LONG_LINE_MAX, &line);
402 if (r < 0) {
403 log_warning_errno(r, "Failed to read /proc/net/unix line, ignoring: %m");
404 goto fail;
405 }
406 if (r == 0) /* EOF */
Lennart Poettering17b90522011-02-14 21:55:06 +0100407 break;
408
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100409 p = strchr(line, ':');
410 if (!p)
Lennart Poettering17b90522011-02-14 21:55:06 +0100411 continue;
412
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100413 if (strlen(p) < 37)
414 continue;
415
416 p += 37;
Lennart Poettering17b90522011-02-14 21:55:06 +0100417 p += strspn(p, WHITESPACE);
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100418 p += strcspn(p, WHITESPACE); /* skip one more word */
Lennart Poettering17b90522011-02-14 21:55:06 +0100419 p += strspn(p, WHITESPACE);
420
421 if (*p != '/')
422 continue;
423
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +0100424 s = strdup(p);
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100425 if (!s) {
426 log_oom();
Lennart Poettering17b90522011-02-14 21:55:06 +0100427 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100428 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100429
Yu Watanabe858d36c2018-05-31 23:39:31 +0900430 path_simplify(s, false);
Lennart Poettering4ff21d82011-02-17 13:13:34 +0100431
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100432 r = set_consume(unix_sockets, s);
433 if (r < 0 && r != -EEXIST) {
434 log_warning_errno(r, "Failed to add AF_UNIX socket to set, ignoring: %m");
Zbigniew Jędrzejewski-Szmekef422022013-04-22 23:12:15 -0400435 goto fail;
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100436 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100437 }
438
439 return;
440
441fail:
Lennart Poetteringf1ff7342018-01-10 17:28:03 +0100442 unix_sockets = set_free_free(unix_sockets);
Lennart Poettering17b90522011-02-14 21:55:06 +0100443}
444
445static bool unix_socket_alive(const char *fn) {
446 assert(fn);
447
448 load_unix_sockets();
449
450 if (unix_sockets)
451 return !!set_get(unix_sockets, (char*) fn);
452
453 /* We don't know, so assume yes */
454 return true;
455}
456
Kay Sievers99d680a2013-03-13 13:12:36 +0100457static int dir_is_mount_point(DIR *d, const char *subdir) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200458
Kay Sievers99d680a2013-03-13 13:12:36 +0100459 int mount_id_parent, mount_id;
460 int r_p, r;
461
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100462 r_p = name_to_handle_at_loop(dirfd(d), ".", NULL, &mount_id_parent, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100463 if (r_p < 0)
464 r_p = -errno;
465
Lennart Poetteringcbfb8672017-11-20 15:29:53 +0100466 r = name_to_handle_at_loop(dirfd(d), subdir, NULL, &mount_id, 0);
Kay Sievers99d680a2013-03-13 13:12:36 +0100467 if (r < 0)
468 r = -errno;
469
470 /* got no handle; make no assumptions, return error */
471 if (r_p < 0 && r < 0)
472 return r_p;
473
474 /* got both handles; if they differ, it is a mount point */
475 if (r_p >= 0 && r >= 0)
476 return mount_id_parent != mount_id;
477
478 /* got only one handle; assume different mount points if one
479 * of both queries was not supported by the filesystem */
Yu Watanabe4c701092017-10-04 23:01:32 +0900480 if (IN_SET(r_p, -ENOSYS, -EOPNOTSUPP) || IN_SET(r, -ENOSYS, -EOPNOTSUPP))
Kay Sievers99d680a2013-03-13 13:12:36 +0100481 return true;
482
483 /* return error */
484 if (r_p < 0)
485 return r_p;
486 return r;
487}
488
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500489static DIR* xopendirat_nomod(int dirfd, const char *path) {
490 DIR *dir;
491
492 dir = xopendirat(dirfd, path, O_NOFOLLOW|O_NOATIME);
Lennart Poettering15322272015-03-23 18:54:31 +0700493 if (dir)
494 return dir;
495
496 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
497 if (errno != EPERM)
498 return NULL;
499
500 dir = xopendirat(dirfd, path, O_NOFOLLOW);
501 if (!dir)
502 log_debug_errno(errno, "Cannot open %sdirectory \"%s\": %m", dirfd == AT_FDCWD ? "" : "sub", path);
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500503
504 return dir;
505}
506
507static DIR* opendir_nomod(const char *path) {
508 return xopendirat_nomod(AT_FDCWD, path);
509}
510
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200511static int dir_cleanup(
Michal Sekletar78a92a52013-01-18 16:13:08 +0100512 Item *i,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200513 const char *p,
514 DIR *d,
515 const struct stat *ds,
516 usec_t cutoff,
517 dev_t rootdev,
518 bool mountpoint,
Lennart Poettering24f3a372012-06-20 09:05:50 +0200519 int maxdepth,
Lennart Poettering265ffa12013-09-17 16:33:30 -0500520 bool keep_this_level) {
521
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200522 struct dirent *dent;
523 struct timespec times[2];
524 bool deleted = false;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200525 int r = 0;
526
Reverend Homer8fb3f002016-12-09 12:04:30 +0300527 FOREACH_DIRENT_ALL(dent, d, break) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200528 struct stat s;
529 usec_t age;
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200530 _cleanup_free_ char *sub_path = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200531
Lennart Poettering49bfc872017-02-02 00:06:18 +0100532 if (dot_or_dot_dot(dent->d_name))
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200533 continue;
534
535 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
Kay Sieversca2f4172013-10-17 03:20:46 +0200536 if (errno == ENOENT)
537 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200538
Kay Sieversca2f4172013-10-17 03:20:46 +0200539 /* FUSE, NFS mounts, SELinux might return EACCES */
Lennart Poetteringecc17092018-01-22 15:29:30 +0100540 r = log_full_errno(errno == EACCES ? LOG_DEBUG : LOG_ERR, errno,
541 "stat(%s/%s) failed: %m", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200542 continue;
543 }
544
545 /* Stay on the same filesystem */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500546 if (s.st_dev != rootdev) {
547 log_debug("Ignoring \"%s/%s\": different filesystem.", p, dent->d_name);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200548 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500549 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200550
Kay Sievers99d680a2013-03-13 13:12:36 +0100551 /* Try to detect bind mounts of the same filesystem instance; they
552 * do not differ in device major/minors. This type of query is not
553 * supported on all kernels or filesystem types though. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500554 if (S_ISDIR(s.st_mode) && dir_is_mount_point(d, dent->d_name) > 0) {
555 log_debug("Ignoring \"%s/%s\": different mount of the same filesystem.",
556 p, dent->d_name);
Kay Sievers99d680a2013-03-13 13:12:36 +0100557 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500558 }
Kay Sievers99d680a2013-03-13 13:12:36 +0100559
Zbigniew Jędrzejewski-Szmek605405c2016-10-23 11:43:27 -0400560 sub_path = strjoin(p, "/", dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200561 if (!sub_path) {
Shawn Landden0d0f0c52012-07-25 14:55:59 -0700562 r = log_oom();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200563 goto finish;
564 }
565
566 /* Is there an item configured for this path? */
Lennart Poetteringef43a392015-04-22 18:18:56 +0200567 if (ordered_hashmap_get(items, sub_path)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500568 log_debug("Ignoring \"%s\": a separate entry exists.", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200569 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500570 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200571
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500572 if (find_glob(globs, sub_path)) {
573 log_debug("Ignoring \"%s\": a separate glob exists.", sub_path);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100574 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500575 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +0100576
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200577 if (S_ISDIR(s.st_mode)) {
578
579 if (mountpoint &&
580 streq(dent->d_name, "lost+found") &&
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500581 s.st_uid == 0) {
582 log_debug("Ignoring \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200583 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500584 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200585
586 if (maxdepth <= 0)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500587 log_warning("Reached max depth on \"%s\".", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200588 else {
Harald Hoyer7fd1b192013-04-18 09:11:22 +0200589 _cleanup_closedir_ DIR *sub_dir;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200590 int q;
591
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -0500592 sub_dir = xopendirat_nomod(dirfd(d), dent->d_name);
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200593 if (!sub_dir) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500594 if (errno != ENOENT)
595 r = log_error_errno(errno, "opendir(%s) failed: %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200596
597 continue;
598 }
599
Michal Sekletar78a92a52013-01-18 16:13:08 +0100600 q = dir_cleanup(i, sub_path, sub_dir, &s, cutoff, rootdev, false, maxdepth-1, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200601 if (q < 0)
602 r = q;
603 }
604
Lennart Poettering24f3a372012-06-20 09:05:50 +0200605 /* Note: if you are wondering why we don't
606 * support the sticky bit for excluding
607 * directories from cleaning like we do it for
608 * other file system objects: well, the sticky
609 * bit already has a meaning for directories,
610 * so we don't want to overload that. */
611
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500612 if (keep_this_level) {
613 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200614 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500615 }
Lennart Poettering24f3a372012-06-20 09:05:50 +0200616
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200617 /* Ignore ctime, we change it when deleting */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500618 age = timespec_load(&s.st_mtim);
619 if (age >= cutoff) {
620 char a[FORMAT_TIMESTAMP_MAX];
621 /* Follows spelling in stat(1). */
622 log_debug("Directory \"%s\": modify time %s is too new.",
623 sub_path,
624 format_timestamp_us(a, sizeof(a), age));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200625 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500626 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200627
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500628 age = timespec_load(&s.st_atim);
629 if (age >= cutoff) {
630 char a[FORMAT_TIMESTAMP_MAX];
631 log_debug("Directory \"%s\": access time %s is too new.",
632 sub_path,
633 format_timestamp_us(a, sizeof(a), age));
634 continue;
635 }
636
Zbigniew Jędrzejewski-Szmek61253222015-01-31 01:03:09 -0500637 log_debug("Removing directory \"%s\".", sub_path);
638 if (unlinkat(dirfd(d), dent->d_name, AT_REMOVEDIR) < 0)
Lennart Poettering920ce822018-01-22 15:31:01 +0100639 if (!IN_SET(errno, ENOENT, ENOTEMPTY))
640 r = log_error_errno(errno, "rmdir(%s): %m", sub_path);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200641
642 } else {
Lennart Poettering9c737362010-11-14 20:12:51 +0100643 /* Skip files for which the sticky bit is
644 * set. These are semantics we define, and are
645 * unknown elsewhere. See XDG_RUNTIME_DIR
646 * specification for details. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500647 if (s.st_mode & S_ISVTX) {
648 log_debug("Skipping \"%s\": sticky bit set.", sub_path);
Lennart Poettering9c737362010-11-14 20:12:51 +0100649 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200650 }
651
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500652 if (mountpoint && S_ISREG(s.st_mode))
Zbigniew Jędrzejewski-Szmek1542c012015-06-13 13:14:37 -0400653 if (s.st_uid == 0 && STR_IN_SET(dent->d_name,
654 ".journal",
655 "aquota.user",
656 "aquota.group")) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500657 log_debug("Skipping \"%s\".", sub_path);
658 continue;
659 }
660
Lennart Poettering17b90522011-02-14 21:55:06 +0100661 /* Ignore sockets that are listed in /proc/net/unix */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500662 if (S_ISSOCK(s.st_mode) && unix_socket_alive(sub_path)) {
663 log_debug("Skipping \"%s\": live socket.", sub_path);
Lennart Poettering17b90522011-02-14 21:55:06 +0100664 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500665 }
Lennart Poettering17b90522011-02-14 21:55:06 +0100666
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100667 /* Ignore device nodes */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500668 if (S_ISCHR(s.st_mode) || S_ISBLK(s.st_mode)) {
669 log_debug("Skipping \"%s\": a device.", sub_path);
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100670 continue;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500671 }
Lennart Poettering78ab08e2011-02-19 14:20:16 +0100672
Lennart Poettering24f3a372012-06-20 09:05:50 +0200673 /* Keep files on this level around if this is
674 * requested */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500675 if (keep_this_level) {
676 log_debug("Keeping \"%s\".", sub_path);
Lennart Poettering24f3a372012-06-20 09:05:50 +0200677 continue;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200678 }
679
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500680 age = timespec_load(&s.st_mtim);
681 if (age >= cutoff) {
682 char a[FORMAT_TIMESTAMP_MAX];
683 /* Follows spelling in stat(1). */
684 log_debug("File \"%s\": modify time %s is too new.",
685 sub_path,
686 format_timestamp_us(a, sizeof(a), age));
687 continue;
688 }
689
690 age = timespec_load(&s.st_atim);
691 if (age >= cutoff) {
692 char a[FORMAT_TIMESTAMP_MAX];
693 log_debug("File \"%s\": access time %s is too new.",
694 sub_path,
695 format_timestamp_us(a, sizeof(a), age));
696 continue;
697 }
698
699 age = timespec_load(&s.st_ctim);
700 if (age >= cutoff) {
701 char a[FORMAT_TIMESTAMP_MAX];
702 log_debug("File \"%s\": change time %s is too new.",
703 sub_path,
704 format_timestamp_us(a, sizeof(a), age));
705 continue;
706 }
707
708 log_debug("unlink \"%s\"", sub_path);
709
710 if (unlinkat(dirfd(d), dent->d_name, 0) < 0)
711 if (errno != ENOENT)
712 r = log_error_errno(errno, "unlink(%s): %m", sub_path);
713
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200714 deleted = true;
715 }
716 }
717
718finish:
719 if (deleted) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500720 usec_t age1, age2;
721 char a[FORMAT_TIMESTAMP_MAX], b[FORMAT_TIMESTAMP_MAX];
722
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200723 /* Restore original directory timestamps */
724 times[0] = ds->st_atim;
725 times[1] = ds->st_mtim;
726
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -0500727 age1 = timespec_load(&ds->st_atim);
728 age2 = timespec_load(&ds->st_mtim);
729 log_debug("Restoring access and modification time on \"%s\": %s, %s",
730 p,
731 format_timestamp_us(a, sizeof(a), age1),
732 format_timestamp_us(b, sizeof(b), age2));
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200733 if (futimens(dirfd(d), times) < 0)
Michal Schmidt56f64d92014-11-28 19:29:59 +0100734 log_error_errno(errno, "utimensat(%s): %m", p);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200735 }
736
Lennart Poettering3b63d2d2010-10-18 22:38:41 +0200737 return r;
738}
739
Lennart Poettering5579f852018-01-23 14:03:34 +0100740static bool dangerous_hardlinks(void) {
741 _cleanup_free_ char *value = NULL;
742 static int cached = -1;
743 int r;
744
745 /* Check whether the fs.protected_hardlinks sysctl is on. If we can't determine it we assume its off, as that's
746 * what the upstream default is. */
747
748 if (cached >= 0)
749 return cached;
750
751 r = read_one_line_file("/proc/sys/fs/protected_hardlinks", &value);
752 if (r < 0) {
753 log_debug_errno(r, "Failed to read fs.protected_hardlinks sysctl: %m");
754 return true;
755 }
756
757 r = parse_boolean(value);
758 if (r < 0) {
759 log_debug_errno(r, "Failed to parse fs.protected_hardlinks sysctl: %m");
760 return true;
761 }
762
763 cached = r == 0;
764 return cached;
765}
766
Franck Bui774f79b2018-03-02 16:13:07 +0100767static bool hardlink_vulnerable(const struct stat *st) {
Lennart Poettering5579f852018-01-23 14:03:34 +0100768 assert(st);
769
770 return !S_ISDIR(st->st_mode) && st->st_nlink > 1 && dangerous_hardlinks();
771}
772
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200773static int fd_set_perms(Item *i, int fd, const char *path, const struct stat *st) {
Franck Buib206ac82018-04-13 11:39:39 +0200774 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +0100775
776 assert(i);
777 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200778 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100779
780 if (!i->mode_set && !i->uid_set && !i->gid_set)
781 goto shortcut;
782
Franck Buib206ac82018-04-13 11:39:39 +0200783 if (!st) {
784 if (fstat(fd, &stbuf) < 0)
785 return log_error_errno(errno, "fstat(%s) failed: %m", path);
786 st = &stbuf;
787 }
788
Franck Bui936f6bd2018-03-02 17:19:32 +0100789 if (hardlink_vulnerable(st)) {
790 log_error("Refusing to set permissions on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
791 return -EPERM;
792 }
793
794 if (i->mode_set) {
795 if (S_ISLNK(st->st_mode))
796 log_debug("Skipping mode fix for symlink %s.", path);
797 else {
798 mode_t m = i->mode;
799
800 if (i->mask_perms) {
801 if (!(st->st_mode & 0111))
802 m &= ~0111;
803 if (!(st->st_mode & 0222))
804 m &= ~0222;
805 if (!(st->st_mode & 0444))
806 m &= ~0444;
807 if (!S_ISDIR(st->st_mode))
808 m &= ~07000; /* remove sticky/sgid/suid bit, unless directory */
809 }
810
811 if (m == (st->st_mode & 07777))
812 log_debug("\"%s\" has correct mode %o already.", path, st->st_mode);
813 else {
Franck Bui936f6bd2018-03-02 17:19:32 +0100814 log_debug("Changing \"%s\" to mode %o.", path, m);
Franck Bui4dfaa522018-04-11 16:58:49 +0200815 if (fchmod_opath(fd, m) < 0)
816 return log_error_errno(errno, "fchmod() of %s failed: %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100817 }
818 }
819 }
820
821 if ((i->uid_set && i->uid != st->st_uid) ||
822 (i->gid_set && i->gid != st->st_gid)) {
823 log_debug("Changing \"%s\" to owner "UID_FMT":"GID_FMT,
824 path,
825 i->uid_set ? i->uid : UID_INVALID,
826 i->gid_set ? i->gid : GID_INVALID);
827
828 if (fchownat(fd,
829 "",
830 i->uid_set ? i->uid : UID_INVALID,
831 i->gid_set ? i->gid : GID_INVALID,
832 AT_EMPTY_PATH) < 0)
833 return log_error_errno(errno, "fchownat() of %s failed: %m", path);
834 }
835
836shortcut:
Lennart Poettering08c84982018-03-27 07:38:26 +0200837 return label_fix(path, 0);
Franck Bui936f6bd2018-03-02 17:19:32 +0100838}
839
Franck Bui5ec9d062018-04-13 17:31:22 +0200840static int path_open_parent_safe(const char *path) {
841 _cleanup_free_ char *dn = NULL;
842 int fd;
843
844 if (path_equal(path, "/") || !path_is_normalized(path)) {
845 log_error("Failed to open parent of '%s': invalid path.", path);
846 return -EINVAL;
847 }
848
849 dn = dirname_malloc(path);
850 if (!dn)
851 return log_oom();
852
853 fd = chase_symlinks(dn, NULL, CHASE_OPEN|CHASE_SAFE, NULL);
854 if (fd == -EPERM)
855 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
856 if (fd < 0)
857 return log_error_errno(fd, "Failed to validate path %s: %m", path);
858
859 return fd;
860}
861
Franck Buiaddc3e32018-03-20 08:58:48 +0100862static int path_open_safe(const char *path) {
863 int fd;
864
865 /* path_open_safe() returns a file descriptor opened with O_PATH after
866 * verifying that the path doesn't contain unsafe transitions, except
867 * for its final component as the function does not follow symlink. */
868
869 assert(path);
870
871 if (!path_is_normalized(path)) {
872 log_error("Failed to open invalid path '%s'.", path);
873 return -EINVAL;
874 }
875
876 fd = chase_symlinks(path, NULL, CHASE_OPEN|CHASE_SAFE|CHASE_NOFOLLOW, NULL);
877 if (fd == -EPERM)
878 return log_error_errno(fd, "Unsafe symlinks encountered in %s, refusing.", path);
879 if (fd < 0)
880 return log_error_errno(fd, "Failed to validate path %s: %m", path);
881
882 return fd;
883}
884
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -0500885static int path_set_perms(Item *i, const char *path) {
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200886 _cleanup_close_ int fd = -1;
Michael Olbrich1924a972014-08-17 09:45:00 +0200887
Lennart Poetteringcde684a2014-06-10 22:50:46 +0200888 assert(i);
889 assert(path);
890
Franck Buiaddc3e32018-03-20 08:58:48 +0100891 fd = path_open_safe(path);
Franck Bui54946022018-04-26 15:45:17 +0200892 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100893 return fd;
Michal Sekletar780e2ee2017-08-31 12:45:25 +0200894
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200895 return fd_set_perms(i, fd, path, NULL);
Michal Schmidt062e01b2011-12-16 18:00:11 +0100896}
897
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200898static int parse_xattrs_from_arg(Item *i) {
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100899 const char *p;
900 int r;
901
902 assert(i);
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500903 assert(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100904
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100905 p = i->argument;
906
Lennart Poettering4034a062015-03-23 18:55:36 +0700907 for (;;) {
Franck Bui4cef1922017-11-16 11:27:29 +0100908 _cleanup_free_ char *name = NULL, *value = NULL, *xattr = NULL;
Lennart Poettering4034a062015-03-23 18:55:36 +0700909
Richard Maw12ba2c42015-06-23 16:26:49 +0000910 r = extract_first_word(&p, &xattr, NULL, EXTRACT_QUOTES|EXTRACT_CUNESCAPE);
Lennart Poettering4034a062015-03-23 18:55:36 +0700911 if (r < 0)
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200912 log_warning_errno(r, "Failed to parse extended attribute '%s', ignoring: %m", p);
Lennart Poettering4034a062015-03-23 18:55:36 +0700913 if (r <= 0)
914 break;
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500915
Franck Bui4cef1922017-11-16 11:27:29 +0100916 r = split_pair(xattr, "=", &name, &value);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100917 if (r < 0) {
Lennart Poettering4034a062015-03-23 18:55:36 +0700918 log_warning_errno(r, "Failed to parse extended attribute, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100919 continue;
920 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500921
Lennart Poettering4034a062015-03-23 18:55:36 +0700922 if (isempty(name) || isempty(value)) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200923 log_warning("Malformed extended attribute found, ignoring: %s", xattr);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100924 continue;
925 }
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500926
Lennart Poettering4034a062015-03-23 18:55:36 +0700927 if (strv_push_pair(&i->xattrs, name, value) < 0)
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100928 return log_oom();
Zbigniew Jędrzejewski-Szmek505ef0e2015-01-09 01:10:02 -0500929
Lennart Poettering4034a062015-03-23 18:55:36 +0700930 name = value = NULL;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100931 }
932
Lennart Poettering4034a062015-03-23 18:55:36 +0700933 return 0;
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100934}
935
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200936static int fd_set_xattrs(Item *i, int fd, const char *path, const struct stat *st) {
Lennart Poettering34d26772018-03-23 15:41:33 +0100937 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100938 char **name, **value;
939
940 assert(i);
Franck Bui936f6bd2018-03-02 17:19:32 +0100941 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +0200942 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100943
944 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100945
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100946 STRV_FOREACH_PAIR(name, value, i->xattrs) {
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200947 log_debug("Setting extended attribute '%s=%s' on %s.", *name, *value, path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100948 if (setxattr(procfs_path, *name, *value, strlen(*value), 0) < 0)
Zbigniew Jędrzejewski-Szmek25f027c2017-05-13 11:26:55 -0400949 return log_error_errno(errno, "Setting extended attribute %s=%s on %s failed: %m",
950 *name, *value, path);
Maciej Wereskiebf4e802014-12-04 10:32:10 +0100951 }
952 return 0;
953}
954
Franck Bui936f6bd2018-03-02 17:19:32 +0100955static int path_set_xattrs(Item *i, const char *path) {
956 _cleanup_close_ int fd = -1;
957
958 assert(i);
959 assert(path);
960
Franck Buiaddc3e32018-03-20 08:58:48 +0100961 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +0100962 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +0100963 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +0100964
Lennart Poettering9d874ae2018-08-06 15:40:16 +0200965 return fd_set_xattrs(i, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +0100966}
967
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200968static int parse_acls_from_arg(Item *item) {
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200969#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500970 int r;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500971
972 assert(item);
973
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500974 /* If force (= modify) is set, we will not modify the acl
975 * afterwards, so the mask can be added now if necessary. */
Lennart Poetteringbd550f72015-04-10 16:03:24 +0200976
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500977 r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500978 if (r < 0)
Lennart Poettering4034a062015-03-23 18:55:36 +0700979 log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring", item->argument);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -0500980#else
981 log_warning_errno(ENOSYS, "ACLs are not supported. Ignoring");
982#endif
983
984 return 0;
985}
986
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +0200987#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +0200988static int path_set_acl(const char *path, const char *pretty, acl_type_t type, acl_t acl, bool modify) {
989 _cleanup_(acl_free_charpp) char *t = NULL;
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500990 _cleanup_(acl_freep) acl_t dup = NULL;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500991 int r;
992
Hans-Peter Deifeld873e872015-03-03 00:35:08 +0100993 /* Returns 0 for success, positive error if already warned,
994 * negative error otherwise. */
995
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500996 if (modify) {
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -0500997 r = acls_for_file(path, type, acl, &dup);
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -0500998 if (r < 0)
999 return r;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001000
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001001 r = calc_acl_mask_if_needed(&dup);
1002 if (r < 0)
1003 return r;
1004 } else {
1005 dup = acl_dup(acl);
1006 if (!dup)
1007 return -errno;
1008
1009 /* the mask was already added earlier if needed */
1010 }
1011
1012 r = add_base_acls_if_needed(&dup, path);
1013 if (r < 0)
1014 return r;
1015
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001016 t = acl_to_any_text(dup, NULL, ',', TEXT_ABBREVIATE);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001017 log_debug("Setting %s ACL %s on %s.",
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001018 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001019 strna(t), pretty);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001020
Zbigniew Jędrzejewski-Szmekdd4105b2015-01-18 18:22:27 -05001021 r = acl_set_file(path, type, dup);
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001022 if (r < 0)
Lennart Poettering3ea40b72015-04-10 14:44:52 +02001023 /* Return positive to indicate we already warned */
1024 return -log_error_errno(errno,
1025 "Setting %s ACL \"%s\" on %s failed: %m",
1026 type == ACL_TYPE_ACCESS ? "access" : "default",
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001027 strna(t), pretty);
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001028
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001029 return 0;
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001030}
Zbigniew Jędrzejewski-Szmek35888b62015-02-02 20:28:39 -05001031#endif
Zbigniew Jędrzejewski-Szmek50d9e462015-01-18 05:02:47 -05001032
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001033static int fd_set_acls(Item *item, int fd, const char *path, const struct stat *st) {
Hans-Peter Deifeld873e872015-03-03 00:35:08 +01001034 int r = 0;
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02001035#if HAVE_ACL
Lennart Poettering34d26772018-03-23 15:41:33 +01001036 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Buib206ac82018-04-13 11:39:39 +02001037 struct stat stbuf;
Franck Bui936f6bd2018-03-02 17:19:32 +01001038
1039 assert(item);
1040 assert(fd);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001041 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001042
Franck Buib206ac82018-04-13 11:39:39 +02001043 if (!st) {
1044 if (fstat(fd, &stbuf) < 0)
1045 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1046 st = &stbuf;
1047 }
1048
Franck Bui936f6bd2018-03-02 17:19:32 +01001049 if (hardlink_vulnerable(st)) {
1050 log_error("Refusing to set ACLs on hardlinked file %s while the fs.protected_hardlinks sysctl is turned off.", path);
1051 return -EPERM;
1052 }
1053
1054 if (S_ISLNK(st->st_mode)) {
1055 log_debug("Skipping ACL fix for symlink %s.", path);
1056 return 0;
1057 }
1058
1059 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
1060
1061 if (item->acl_access)
1062 r = path_set_acl(procfs_path, path, ACL_TYPE_ACCESS, item->acl_access, item->force);
1063
remueller26673852018-07-16 16:56:01 +02001064 /* set only default acls to folders */
1065 if (r == 0 && item->acl_default && S_ISDIR(st->st_mode))
Franck Bui936f6bd2018-03-02 17:19:32 +01001066 r = path_set_acl(procfs_path, path, ACL_TYPE_DEFAULT, item->acl_default, item->force);
1067
1068 if (r > 0)
1069 return -r; /* already warned */
1070 if (r == -EOPNOTSUPP) {
1071 log_debug_errno(r, "ACLs not supported by file system at %s", path);
1072 return 0;
1073 }
1074 if (r < 0)
1075 return log_error_errno(r, "ACL operation on \"%s\" failed: %m", path);
1076#endif
1077 return r;
1078}
1079
1080static int path_set_acls(Item *item, const char *path) {
1081 int r = 0;
Yu Watanabe545cdb92018-06-29 16:26:49 +09001082#if HAVE_ACL
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001083 _cleanup_close_ int fd = -1;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001084
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001085 assert(item);
1086 assert(path);
1087
Franck Buiaddc3e32018-03-20 08:58:48 +01001088 fd = path_open_safe(path);
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001089 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001090 return fd;
Lennart Poettering48b8aaa2015-04-13 15:16:54 +02001091
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001092 r = fd_set_acls(item, fd, path, NULL);
Yu Watanabe545cdb92018-06-29 16:26:49 +09001093#endif
1094 return r;
1095}
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05001096
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001097#define ATTRIBUTES_ALL \
1098 (FS_NOATIME_FL | \
1099 FS_SYNC_FL | \
1100 FS_DIRSYNC_FL | \
1101 FS_APPEND_FL | \
1102 FS_COMPR_FL | \
1103 FS_NODUMP_FL | \
1104 FS_EXTENT_FL | \
1105 FS_IMMUTABLE_FL | \
1106 FS_JOURNAL_DATA_FL | \
1107 FS_SECRM_FL | \
1108 FS_UNRM_FL | \
1109 FS_NOTAIL_FL | \
1110 FS_TOPDIR_FL | \
1111 FS_NOCOW_FL)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001112
Lennart Poetteringbd550f72015-04-10 16:03:24 +02001113static int parse_attribute_from_arg(Item *item) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001114
1115 static const struct {
1116 char character;
1117 unsigned value;
1118 } attributes[] = {
1119 { 'A', FS_NOATIME_FL }, /* do not update atime */
1120 { 'S', FS_SYNC_FL }, /* Synchronous updates */
1121 { 'D', FS_DIRSYNC_FL }, /* dirsync behaviour (directories only) */
1122 { 'a', FS_APPEND_FL }, /* writes to file may only append */
1123 { 'c', FS_COMPR_FL }, /* Compress file */
1124 { 'd', FS_NODUMP_FL }, /* do not dump file */
kpengboy8c35b2c2016-05-29 08:31:14 -07001125 { 'e', FS_EXTENT_FL }, /* Extents */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001126 { 'i', FS_IMMUTABLE_FL }, /* Immutable file */
1127 { 'j', FS_JOURNAL_DATA_FL }, /* Reserved for ext3 */
1128 { 's', FS_SECRM_FL }, /* Secure deletion */
1129 { 'u', FS_UNRM_FL }, /* Undelete */
1130 { 't', FS_NOTAIL_FL }, /* file tail should not be merged */
AsciiWolf13e785f2017-02-24 18:14:02 +01001131 { 'T', FS_TOPDIR_FL }, /* Top of directory hierarchies */
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001132 { 'C', FS_NOCOW_FL }, /* Do not cow file */
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001133 };
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001134
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001135 enum {
1136 MODE_ADD,
1137 MODE_DEL,
1138 MODE_SET
1139 } mode = MODE_ADD;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001140
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001141 unsigned value = 0, mask = 0;
1142 const char *p;
1143
1144 assert(item);
1145
1146 p = item->argument;
1147 if (p) {
1148 if (*p == '+') {
1149 mode = MODE_ADD;
1150 p++;
1151 } else if (*p == '-') {
1152 mode = MODE_DEL;
1153 p++;
1154 } else if (*p == '=') {
1155 mode = MODE_SET;
1156 p++;
1157 }
1158 }
1159
1160 if (isempty(p) && mode != MODE_SET) {
1161 log_error("Setting file attribute on '%s' needs an attribute specification.", item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001162 return -EINVAL;
1163 }
1164
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001165 for (; p && *p ; p++) {
1166 unsigned i, v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001167
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001168 for (i = 0; i < ELEMENTSOF(attributes); i++)
1169 if (*p == attributes[i].character)
1170 break;
1171
1172 if (i >= ELEMENTSOF(attributes)) {
1173 log_error("Unknown file attribute '%c' on '%s'.", *p, item->path);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001174 return -EINVAL;
1175 }
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001176
1177 v = attributes[i].value;
1178
Andreas Rammhold37420952017-09-29 00:37:23 +02001179 SET_FLAG(value, v, IN_SET(mode, MODE_ADD, MODE_SET));
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001180
1181 mask |= v;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001182 }
1183
1184 if (mode == MODE_SET)
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001185 mask |= ATTRIBUTES_ALL;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001186
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001187 assert(mask != 0);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001188
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001189 item->attribute_mask = mask;
1190 item->attribute_value = value;
1191 item->attribute_set = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001192
1193 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001194}
1195
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001196static int fd_set_attribute(Item *item, int fd, const char *path, const struct stat *st) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001197 _cleanup_close_ int procfs_fd = -1;
Franck Buib206ac82018-04-13 11:39:39 +02001198 struct stat stbuf;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001199 unsigned f;
1200 int r;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001201
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001202 assert(item);
1203 assert(fd);
1204 assert(path);
1205
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001206 if (!item->attribute_set || item->attribute_mask == 0)
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001207 return 0;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001208
Franck Buib206ac82018-04-13 11:39:39 +02001209 if (!st) {
1210 if (fstat(fd, &stbuf) < 0)
1211 return log_error_errno(errno, "fstat(%s) failed: %m", path);
1212 st = &stbuf;
1213 }
1214
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001215 /* Issuing the file attribute ioctls on device nodes is not
1216 * safe, as that will be delivered to the drivers, not the
1217 * file system containing the device node. */
Franck Bui936f6bd2018-03-02 17:19:32 +01001218 if (!S_ISREG(st->st_mode) && !S_ISDIR(st->st_mode)) {
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001219 log_error("Setting file flags is only supported on regular files and directories, cannot set on '%s'.", path);
1220 return -EINVAL;
1221 }
1222
1223 f = item->attribute_value & item->attribute_mask;
1224
1225 /* Mask away directory-specific flags */
Franck Bui936f6bd2018-03-02 17:19:32 +01001226 if (!S_ISDIR(st->st_mode))
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001227 f &= ~FS_DIRSYNC_FL;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02001228
Lennart Poetteringf2324782018-03-26 13:25:51 +02001229 procfs_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOATIME);
Franck Bui936f6bd2018-03-02 17:19:32 +01001230 if (procfs_fd < 0)
Lennart Poetteringc3e03772018-08-06 20:19:52 +02001231 return log_error_errno(procfs_fd, "Failed to re-open '%s': %m", path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001232
1233 r = chattr_fd(procfs_fd, f, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001234 if (r < 0)
Yu Watanabe4c701092017-10-04 23:01:32 +09001235 log_full_errno(IN_SET(r, -ENOTTY, -EOPNOTSUPP) ? LOG_DEBUG : LOG_WARNING,
Lennart Poetteringad75a972015-07-22 22:02:14 +02001236 r,
Lennart Poettering15b45fa2018-08-06 15:44:47 +02001237 "Cannot set file attribute for '%s', value=0x%08x, mask=0x%08x, ignoring: %m",
Lennart Poetteringad75a972015-07-22 22:02:14 +02001238 path, item->attribute_value, item->attribute_mask);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01001239
1240 return 0;
1241}
1242
Franck Bui936f6bd2018-03-02 17:19:32 +01001243static int path_set_attribute(Item *item, const char *path) {
1244 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001245
1246 if (!item->attribute_set || item->attribute_mask == 0)
1247 return 0;
1248
Franck Buiaddc3e32018-03-20 08:58:48 +01001249 fd = path_open_safe(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001250 if (fd < 0)
Franck Buiaddc3e32018-03-20 08:58:48 +01001251 return fd;
Franck Bui936f6bd2018-03-02 17:19:32 +01001252
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001253 return fd_set_attribute(item, fd, path, NULL);
Franck Bui936f6bd2018-03-02 17:19:32 +01001254}
1255
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001256static int write_one_file(Item *i, const char *path) {
Franck Bui551470e2018-04-13 17:54:09 +02001257 _cleanup_close_ int fd = -1, dir_fd = -1;
1258 char *bn;
Franck Bui31c84ff2018-04-13 09:19:24 +02001259 int r;
1260
1261 assert(i);
1262 assert(path);
1263 assert(i->argument);
1264 assert(i->type == WRITE_FILE);
1265
Franck Bui551470e2018-04-13 17:54:09 +02001266 /* Validate the path and keep the fd on the directory for opening the
1267 * file so we're sure that it can't be changed behind our back. */
1268 dir_fd = path_open_parent_safe(path);
1269 if (dir_fd < 0)
1270 return dir_fd;
1271
1272 bn = basename(path);
1273
Franck Bui31c84ff2018-04-13 09:19:24 +02001274 /* Follows symlinks */
Franck Bui551470e2018-04-13 17:54:09 +02001275 fd = openat(dir_fd, bn, O_NONBLOCK|O_CLOEXEC|O_WRONLY|O_NOCTTY, i->mode);
Franck Bui31c84ff2018-04-13 09:19:24 +02001276 if (fd < 0) {
1277 if (errno == ENOENT) {
1278 log_debug_errno(errno, "Not writing missing file \"%s\": %m", path);
1279 return 0;
1280 }
1281 return log_error_errno(errno, "Failed to open file \"%s\": %m", path);
1282 }
1283
1284 /* 'w' is allowed to write into any kind of files. */
1285 log_debug("Writing to \"%s\".", path);
1286
1287 r = loop_write(fd, i->argument, strlen(i->argument), false);
1288 if (r < 0)
1289 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1290
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001291 return fd_set_perms(i, fd, path, NULL);
Franck Bui31c84ff2018-04-13 09:19:24 +02001292}
1293
1294static int create_file(Item *i, const char *path) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001295 _cleanup_close_ int fd = -1, dir_fd = -1;
1296 struct stat stbuf, *st = NULL;
1297 int r = 0;
1298 char *bn;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001299
Lennart Poettering874f1942014-06-10 22:48:56 +02001300 assert(i);
1301 assert(path);
Franck Bui5ec9d062018-04-13 17:31:22 +02001302 assert(i->type == CREATE_FILE);
Lennart Poettering874f1942014-06-10 22:48:56 +02001303
Franck Bui5ec9d062018-04-13 17:31:22 +02001304 /* 'f' operates on regular files exclusively. */
1305
1306 /* Validate the path and keep the fd on the directory for opening the
1307 * file so we're sure that it can't be changed behind our back. */
1308 dir_fd = path_open_parent_safe(path);
1309 if (dir_fd < 0)
1310 return dir_fd;
1311
1312 bn = basename(path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001313
Lennart Poettering43ad6e32014-06-18 00:01:39 +02001314 RUN_WITH_UMASK(0000) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02001315 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui5ec9d062018-04-13 17:31:22 +02001316 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 +02001317 mac_selinux_create_file_clear();
Lennart Poettering5c0d3982013-04-04 03:39:39 +02001318 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001319
1320 if (fd < 0) {
Franck Bui5ec9d062018-04-13 17:31:22 +02001321 /* Even on a read-only filesystem, open(2) returns EEXIST if the
1322 * file already exists. It returns EROFS only if it needs to
1323 * create the file. */
1324 if (errno != EEXIST)
1325 return log_error_errno(errno, "Failed to create file %s: %m", path);
1326
1327 /* Re-open the file. At that point it must exist since open(2)
1328 * failed with EEXIST. We still need to check if the perms/mode
1329 * need to be changed. For read-only filesystems, we let
1330 * fd_set_perms() report the error if the perms need to be
1331 * modified. */
1332 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
1333 if (fd < 0)
1334 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1335
1336 if (fstat(fd, &stbuf) < 0)
1337 return log_error_errno(errno, "stat(%s) failed: %m", path);
1338
1339 if (!S_ISREG(stbuf.st_mode)) {
1340 log_error("%s exists and is not a regular file.", path);
1341 return -EEXIST;
Lennart Poettering49e87292018-01-24 10:54:10 +01001342 }
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001343
Franck Bui5ec9d062018-04-13 17:31:22 +02001344 st = &stbuf;
1345 } else {
Michael Olbrichf44b28f2015-04-30 20:50:38 +02001346
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001347 log_debug("\"%s\" has been created.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001348
Franck Bui5ec9d062018-04-13 17:31:22 +02001349 if (i->argument) {
1350 log_debug("Writing to \"%s\".", path);
Dave Reisner3612fbc2012-09-12 16:21:00 -04001351
Franck Bui5ec9d062018-04-13 17:31:22 +02001352 r = loop_write(fd, i->argument, strlen(i->argument), false);
1353 if (r < 0)
1354 return log_error_errno(r, "Failed to write file \"%s\": %m", path);
1355 }
1356 }
1357
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001358 return fd_set_perms(i, fd, path, st);
Franck Bui5ec9d062018-04-13 17:31:22 +02001359}
1360
1361static int truncate_file(Item *i, const char *path) {
Franck Bui14ab8042018-04-13 17:50:49 +02001362 _cleanup_close_ int fd = -1, dir_fd = -1;
Franck Bui5ec9d062018-04-13 17:31:22 +02001363 struct stat stbuf, *st = NULL;
1364 bool erofs = false;
1365 int r = 0;
Franck Bui14ab8042018-04-13 17:50:49 +02001366 char *bn;
Franck Bui5ec9d062018-04-13 17:31:22 +02001367
1368 assert(i);
1369 assert(path);
1370 assert(i->type == TRUNCATE_FILE);
1371
1372 /* We want to operate on regular file exclusively especially since
1373 * O_TRUNC is unspecified if the file is neither a regular file nor a
1374 * fifo nor a terminal device. Therefore we first open the file and make
1375 * sure it's a regular one before truncating it. */
1376
Franck Bui14ab8042018-04-13 17:50:49 +02001377 /* Validate the path and keep the fd on the directory for opening the
1378 * file so we're sure that it can't be changed behind our back. */
1379 dir_fd = path_open_parent_safe(path);
1380 if (dir_fd < 0)
1381 return dir_fd;
1382
1383 bn = basename(path);
1384
Franck Bui5ec9d062018-04-13 17:31:22 +02001385 RUN_WITH_UMASK(0000) {
1386 mac_selinux_create_file_prepare(path, S_IFREG);
Franck Bui14ab8042018-04-13 17:50:49 +02001387 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 +02001388 mac_selinux_create_file_clear();
1389 }
1390
1391 if (fd < 0) {
1392 if (errno != EROFS)
1393 return log_error_errno(errno, "Failed to open/create file %s: %m", path);
1394
1395 /* On a read-only filesystem, we don't want to fail if the
1396 * target is already empty and the perms are set. So we still
1397 * proceed with the sanity checks and let the remaining
1398 * operations fail with EROFS if they try to modify the target
1399 * file. */
1400
Franck Bui14ab8042018-04-13 17:50:49 +02001401 fd = openat(dir_fd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH, i->mode);
Franck Bui5ec9d062018-04-13 17:31:22 +02001402 if (fd < 0) {
1403 if (errno == ENOENT) {
1404 log_error("Cannot create file %s on a read-only file system.", path);
1405 return -EROFS;
1406 }
1407
1408 return log_error_errno(errno, "Failed to re-open file %s: %m", path);
1409 }
1410
1411 erofs = true;
1412 }
1413
1414 if (fstat(fd, &stbuf) < 0)
Michal Schmidt4a62c712014-11-28 19:57:32 +01001415 return log_error_errno(errno, "stat(%s) failed: %m", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001416
Franck Bui5ec9d062018-04-13 17:31:22 +02001417 if (!S_ISREG(stbuf.st_mode)) {
1418 log_error("%s exists and is not a regular file.", path);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001419 return -EEXIST;
1420 }
1421
Franck Bui5ec9d062018-04-13 17:31:22 +02001422 if (stbuf.st_size > 0) {
1423 if (ftruncate(fd, 0) < 0) {
1424 r = erofs ? -EROFS : -errno;
1425 return log_error_errno(r, "Failed to truncate file %s: %m", path);
1426 }
1427 } else
1428 st = &stbuf;
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001429
Franck Bui5ec9d062018-04-13 17:31:22 +02001430 log_debug("\"%s\" has been created.", path);
1431
1432 if (i->argument) {
1433 log_debug("Writing to \"%s\".", path);
1434
1435 r = loop_write(fd, i->argument, strlen(i->argument), false);
1436 if (r < 0) {
1437 r = erofs ? -EROFS : r;
1438 return log_error_errno(r, "Failed to write file %s: %m", path);
1439 }
1440 }
1441
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001442 return fd_set_perms(i, fd, path, st);
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001443}
1444
Franck Buib1f7b172018-04-12 12:19:22 +02001445static int copy_files(Item *i) {
Franck Bui16ba55a2018-04-12 12:55:22 +02001446 _cleanup_close_ int dfd = -1, fd = -1;
1447 char *bn;
Franck Buib1f7b172018-04-12 12:19:22 +02001448 int r;
1449
1450 log_debug("Copying tree \"%s\" to \"%s\".", i->argument, i->path);
1451
Franck Bui16ba55a2018-04-12 12:55:22 +02001452 bn = basename(i->path);
Franck Buib1f7b172018-04-12 12:19:22 +02001453
Franck Bui16ba55a2018-04-12 12:55:22 +02001454 /* Validate the path and use the returned directory fd for copying the
1455 * target so we're sure that the path can't be changed behind our
1456 * back. */
1457 dfd = path_open_parent_safe(i->path);
1458 if (dfd < 0)
1459 return dfd;
Franck Buib1f7b172018-04-12 12:19:22 +02001460
Franck Bui16ba55a2018-04-12 12:55:22 +02001461 r = copy_tree_at(AT_FDCWD, i->argument,
1462 dfd, bn,
1463 i->uid_set ? i->uid : UID_INVALID,
1464 i->gid_set ? i->gid : GID_INVALID,
1465 COPY_REFLINK);
Franck Buib1f7b172018-04-12 12:19:22 +02001466 if (r < 0) {
1467 struct stat a, b;
1468
Franck Bui16ba55a2018-04-12 12:55:22 +02001469 /* If the target already exists on read-only filesystems, trying
1470 * to create the target will not fail with EEXIST but with
1471 * EROFS. */
1472 if (r == -EROFS && faccessat(dfd, bn, F_OK, AT_SYMLINK_NOFOLLOW) == 0)
1473 r = -EEXIST;
1474
Franck Buib1f7b172018-04-12 12:19:22 +02001475 if (r != -EEXIST)
1476 return log_error_errno(r, "Failed to copy files to %s: %m", i->path);
1477
1478 if (stat(i->argument, &a) < 0)
1479 return log_error_errno(errno, "stat(%s) failed: %m", i->argument);
1480
Franck Bui16ba55a2018-04-12 12:55:22 +02001481 if (fstatat(dfd, bn, &b, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buib1f7b172018-04-12 12:19:22 +02001482 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1483
1484 if ((a.st_mode ^ b.st_mode) & S_IFMT) {
1485 log_debug("Can't copy to %s, file exists already and is of different type", i->path);
1486 return 0;
1487 }
1488 }
1489
Franck Bui16ba55a2018-04-12 12:55:22 +02001490 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1491 if (fd < 0)
1492 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1493
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001494 return fd_set_perms(i, fd, i->path, NULL);
Franck Buib1f7b172018-04-12 12:19:22 +02001495}
1496
Franck Bui074bd732018-04-12 18:10:57 +02001497typedef enum {
1498 CREATION_NORMAL,
1499 CREATION_EXISTING,
1500 CREATION_FORCE,
1501 _CREATION_MODE_MAX,
1502 _CREATION_MODE_INVALID = -1
1503} CreationMode;
1504
1505static const char *creation_mode_verb_table[_CREATION_MODE_MAX] = {
1506 [CREATION_NORMAL] = "Created",
1507 [CREATION_EXISTING] = "Found existing",
1508 [CREATION_FORCE] = "Created replacement",
1509};
1510
1511DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(creation_mode_verb, CreationMode);
1512
Franck Buif17a8d62018-08-06 12:29:54 +02001513static int create_directory_or_subvolume(const char *path, mode_t mode, bool subvol, CreationMode *creation) {
Franck Bui4c39d892018-04-27 11:51:14 +02001514 _cleanup_close_ int pfd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001515 CreationMode c;
Franck Bui4c39d892018-04-27 11:51:14 +02001516 int r;
Franck Bui4ad36842018-04-26 14:54:20 +02001517
Franck Bui4c39d892018-04-27 11:51:14 +02001518 assert(path);
Franck Bui4ad36842018-04-26 14:54:20 +02001519
Franck Buif17a8d62018-08-06 12:29:54 +02001520 if (!creation)
1521 creation = &c;
1522
Franck Bui4c39d892018-04-27 11:51:14 +02001523 pfd = path_open_parent_safe(path);
1524 if (pfd < 0)
1525 return pfd;
Franck Bui4ad36842018-04-26 14:54:20 +02001526
Franck Bui4c39d892018-04-27 11:51:14 +02001527 if (subvol) {
Franck Bui4ad36842018-04-26 14:54:20 +02001528 if (btrfs_is_subvol(empty_to_root(arg_root)) <= 0)
1529
1530 /* Don't create a subvolume unless the root directory is
1531 * one, too. We do this under the assumption that if the
1532 * root directory is just a plain directory (i.e. very
1533 * light-weight), we shouldn't try to split it up into
1534 * subvolumes (i.e. more heavy-weight). Thus, chroot()
1535 * environments and suchlike will get a full brtfs
1536 * subvolume set up below their tree only if they
1537 * specifically set up a btrfs subvolume for the root
1538 * dir too. */
1539
Franck Bui4c39d892018-04-27 11:51:14 +02001540 subvol = false;
Franck Bui4ad36842018-04-26 14:54:20 +02001541 else {
Franck Bui4c39d892018-04-27 11:51:14 +02001542 RUN_WITH_UMASK((~mode) & 0777)
1543 r = btrfs_subvol_make_fd(pfd, basename(path));
Franck Bui4ad36842018-04-26 14:54:20 +02001544 }
1545 } else
1546 r = 0;
1547
Franck Bui4c39d892018-04-27 11:51:14 +02001548 if (!subvol || r == -ENOTTY)
Franck Bui4ad36842018-04-26 14:54:20 +02001549 RUN_WITH_UMASK(0000)
Franck Bui4c39d892018-04-27 11:51:14 +02001550 r = mkdirat_label(pfd, basename(path), mode);
Franck Bui4ad36842018-04-26 14:54:20 +02001551
1552 if (r < 0) {
1553 int k;
1554
1555 if (!IN_SET(r, -EEXIST, -EROFS))
Franck Bui4c39d892018-04-27 11:51:14 +02001556 return log_error_errno(r, "Failed to create directory or subvolume \"%s\": %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001557
Franck Bui4c39d892018-04-27 11:51:14 +02001558 k = is_dir_fd(pfd);
Franck Bui4ad36842018-04-26 14:54:20 +02001559 if (k == -ENOENT && r == -EROFS)
Franck Bui4c39d892018-04-27 11:51:14 +02001560 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 +02001561 if (k < 0)
Franck Bui4c39d892018-04-27 11:51:14 +02001562 return log_error_errno(k, "Failed to check if %s exists: %m", path);
Franck Bui4ad36842018-04-26 14:54:20 +02001563 if (!k) {
Franck Bui4c39d892018-04-27 11:51:14 +02001564 log_warning("\"%s\" already exists and is not a directory.", path);
1565 return -EEXIST;
Franck Bui4ad36842018-04-26 14:54:20 +02001566 }
1567
Franck Buif17a8d62018-08-06 12:29:54 +02001568 *creation = CREATION_EXISTING;
Franck Bui4ad36842018-04-26 14:54:20 +02001569 } else
Franck Buif17a8d62018-08-06 12:29:54 +02001570 *creation = CREATION_NORMAL;
Franck Bui4ad36842018-04-26 14:54:20 +02001571
Franck Buif17a8d62018-08-06 12:29:54 +02001572 log_debug("%s directory \"%s\".", creation_mode_verb_to_string(*creation), path);
Franck Bui4c39d892018-04-27 11:51:14 +02001573
1574 r = openat(pfd, basename(path), O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
1575 if (r < 0)
Lennart Poettering09f12792018-08-06 15:44:24 +02001576 return log_error_errno(errno, "Failed to open directory '%s': %m", basename(path));
1577
Franck Bui4c39d892018-04-27 11:51:14 +02001578 return r;
1579}
1580
1581static int create_directory(Item *i, const char *path) {
1582 _cleanup_close_ int fd = -1;
1583
1584 assert(i);
1585 assert(IN_SET(i->type, CREATE_DIRECTORY, TRUNCATE_DIRECTORY));
1586
Franck Buif17a8d62018-08-06 12:29:54 +02001587 fd = create_directory_or_subvolume(path, i->mode, false, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001588 if (fd == -EEXIST)
1589 return 0;
1590 if (fd < 0)
1591 return fd;
1592
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001593 return fd_set_perms(i, fd, path, NULL);
Franck Bui4c39d892018-04-27 11:51:14 +02001594}
1595
1596static int create_subvolume(Item *i, const char *path) {
1597 _cleanup_close_ int fd = -1;
Franck Buif17a8d62018-08-06 12:29:54 +02001598 CreationMode creation;
Franck Bui4c39d892018-04-27 11:51:14 +02001599 int r, q = 0;
1600
1601 assert(i);
1602 assert(IN_SET(i->type, CREATE_SUBVOLUME, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA));
1603
Franck Buif17a8d62018-08-06 12:29:54 +02001604 fd = create_directory_or_subvolume(path, i->mode, true, &creation);
Franck Bui4c39d892018-04-27 11:51:14 +02001605 if (fd == -EEXIST)
1606 return 0;
1607 if (fd < 0)
1608 return fd;
Franck Bui4ad36842018-04-26 14:54:20 +02001609
Franck Buif17a8d62018-08-06 12:29:54 +02001610 if (creation == CREATION_NORMAL &&
1611 IN_SET(i->type, CREATE_SUBVOLUME_NEW_QUOTA, CREATE_SUBVOLUME_INHERIT_QUOTA)) {
Franck Bui4c39d892018-04-27 11:51:14 +02001612 r = btrfs_subvol_auto_qgroup_fd(fd, 0, i->type == CREATE_SUBVOLUME_NEW_QUOTA);
Franck Bui4ad36842018-04-26 14:54:20 +02001613 if (r == -ENOTTY)
1614 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (unsupported fs or dir not a subvolume): %m", i->path);
1615 else if (r == -EROFS)
1616 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (fs is read-only).", i->path);
1617 else if (r == -ENOPROTOOPT)
1618 log_debug_errno(r, "Couldn't adjust quota for subvolume \"%s\" (quota support is disabled).", i->path);
1619 else if (r < 0)
1620 q = log_error_errno(r, "Failed to adjust quota for subvolume \"%s\": %m", i->path);
1621 else if (r > 0)
1622 log_debug("Adjusted quota for subvolume \"%s\".", i->path);
1623 else if (r == 0)
1624 log_debug("Quota for subvolume \"%s\" already in place, no change made.", i->path);
1625 }
1626
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001627 r = fd_set_perms(i, fd, path, NULL);
1628 if (q < 0) /* prefer the quota change error from above */
Franck Bui4ad36842018-04-26 14:54:20 +02001629 return q;
1630
1631 return r;
1632}
1633
Franck Bui54946022018-04-26 15:45:17 +02001634static int empty_directory(Item *i, const char *path) {
1635 int r;
1636
1637 assert(i);
1638 assert(i->type == EMPTY_DIRECTORY);
1639
1640 r = is_dir(path, false);
1641 if (r == -ENOENT) {
1642 /* Option "e" operates only on existing objects. Do not
1643 * print errors about non-existent files or directories */
1644 log_debug("Skipping missing directory: %s", path);
1645 return 0;
1646 }
1647 if (r < 0)
1648 return log_error_errno(r, "is_dir() failed on path %s: %m", path);
1649 if (r == 0) {
1650 log_error("'%s' already exists and is not a directory.", path);
1651 return -EEXIST;
1652 }
1653
1654 return path_set_perms(i, path);
1655}
1656
Franck Bui074bd732018-04-12 18:10:57 +02001657static int create_device(Item *i, mode_t file_type) {
Franck Buic7700a72018-04-12 18:33:54 +02001658 _cleanup_close_ int dfd = -1, fd = -1;
Franck Bui074bd732018-04-12 18:10:57 +02001659 CreationMode creation;
Franck Buic7700a72018-04-12 18:33:54 +02001660 char *bn;
Franck Bui074bd732018-04-12 18:10:57 +02001661 int r;
1662
1663 assert(i);
1664 assert(IN_SET(file_type, S_IFBLK, S_IFCHR));
1665
Franck Buic7700a72018-04-12 18:33:54 +02001666 bn = basename(i->path);
1667
1668 /* Validate the path and use the returned directory fd for copying the
1669 * target so we're sure that the path can't be changed behind our
1670 * back. */
1671 dfd = path_open_parent_safe(i->path);
1672 if (dfd < 0)
1673 return dfd;
1674
Franck Bui074bd732018-04-12 18:10:57 +02001675 RUN_WITH_UMASK(0000) {
1676 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001677 r = mknodat(dfd, bn, i->mode | file_type, i->major_minor);
Franck Bui074bd732018-04-12 18:10:57 +02001678 mac_selinux_create_file_clear();
1679 }
1680
1681 if (r < 0) {
Franck Buic7700a72018-04-12 18:33:54 +02001682 struct stat st;
1683
Franck Bui074bd732018-04-12 18:10:57 +02001684 if (errno == EPERM) {
1685 log_debug("We lack permissions, possibly because of cgroup configuration; "
1686 "skipping creation of device node %s.", i->path);
1687 return 0;
1688 }
1689
1690 if (errno != EEXIST)
1691 return log_error_errno(errno, "Failed to create device node %s: %m", i->path);
1692
Franck Buic7700a72018-04-12 18:33:54 +02001693 if (fstatat(dfd, bn, &st, 0) < 0)
Franck Bui074bd732018-04-12 18:10:57 +02001694 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
1695
1696 if ((st.st_mode & S_IFMT) != file_type) {
1697
1698 if (i->force) {
1699
1700 RUN_WITH_UMASK(0000) {
1701 mac_selinux_create_file_prepare(i->path, file_type);
Franck Buic7700a72018-04-12 18:33:54 +02001702 /* FIXME: need to introduce mknodat_atomic() */
Franck Bui074bd732018-04-12 18:10:57 +02001703 r = mknod_atomic(i->path, i->mode | file_type, i->major_minor);
1704 mac_selinux_create_file_clear();
1705 }
1706
1707 if (r < 0)
1708 return log_error_errno(r, "Failed to create device node \"%s\": %m", i->path);
1709 creation = CREATION_FORCE;
1710 } else {
1711 log_debug("%s is not a device node.", i->path);
1712 return 0;
1713 }
1714 } else
1715 creation = CREATION_EXISTING;
1716 } else
1717 creation = CREATION_NORMAL;
1718
1719 log_debug("%s %s device node \"%s\" %u:%u.",
1720 creation_mode_verb_to_string(creation),
1721 i->type == CREATE_BLOCK_DEVICE ? "block" : "char",
1722 i->path, major(i->mode), minor(i->mode));
1723
Franck Buic7700a72018-04-12 18:33:54 +02001724 fd = openat(dfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1725 if (fd < 0)
1726 return log_error_errno(errno, "Failed to openat(%s): %m", i->path);
1727
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001728 return fd_set_perms(i, fd, i->path, NULL);
Franck Bui074bd732018-04-12 18:10:57 +02001729}
1730
Franck Buia2fc2f82018-04-27 18:11:26 +02001731static int create_fifo(Item *i, const char *path) {
Franck Bui7ea5a872018-04-27 18:17:32 +02001732 _cleanup_close_ int pfd = -1, fd = -1;
Franck Buia2fc2f82018-04-27 18:11:26 +02001733 CreationMode creation;
1734 struct stat st;
Franck Bui7ea5a872018-04-27 18:17:32 +02001735 char *bn;
Franck Buia2fc2f82018-04-27 18:11:26 +02001736 int r;
1737
Franck Bui7ea5a872018-04-27 18:17:32 +02001738 pfd = path_open_parent_safe(path);
1739 if (pfd < 0)
1740 return pfd;
1741
1742 bn = basename(path);
1743
Franck Buia2fc2f82018-04-27 18:11:26 +02001744 RUN_WITH_UMASK(0000) {
1745 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001746 r = mkfifoat(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001747 mac_selinux_create_file_clear();
1748 }
1749
1750 if (r < 0) {
1751 if (errno != EEXIST)
1752 return log_error_errno(errno, "Failed to create fifo %s: %m", path);
1753
Franck Bui7ea5a872018-04-27 18:17:32 +02001754 if (fstatat(pfd, bn, &st, AT_SYMLINK_NOFOLLOW) < 0)
Franck Buia2fc2f82018-04-27 18:11:26 +02001755 return log_error_errno(errno, "stat(%s) failed: %m", path);
1756
1757 if (!S_ISFIFO(st.st_mode)) {
1758
1759 if (i->force) {
1760 RUN_WITH_UMASK(0000) {
1761 mac_selinux_create_file_prepare(path, S_IFIFO);
Franck Bui7ea5a872018-04-27 18:17:32 +02001762 r = mkfifoat_atomic(pfd, bn, i->mode);
Franck Buia2fc2f82018-04-27 18:11:26 +02001763 mac_selinux_create_file_clear();
1764 }
1765
1766 if (r < 0)
1767 return log_error_errno(r, "Failed to create fifo %s: %m", path);
1768 creation = CREATION_FORCE;
1769 } else {
1770 log_warning("\"%s\" already exists and is not a fifo.", path);
1771 return 0;
1772 }
1773 } else
1774 creation = CREATION_EXISTING;
1775 } else
1776 creation = CREATION_NORMAL;
Franck Bui7ea5a872018-04-27 18:17:32 +02001777
Franck Buia2fc2f82018-04-27 18:11:26 +02001778 log_debug("%s fifo \"%s\".", creation_mode_verb_to_string(creation), path);
1779
Franck Bui7ea5a872018-04-27 18:17:32 +02001780 fd = openat(pfd, bn, O_NOFOLLOW|O_CLOEXEC|O_PATH);
1781 if (fd < 0)
Lennart Poetteringa5df05f2018-08-06 15:46:01 +02001782 return log_error_errno(errno, "Failed to openat(%s): %m", path);
Franck Bui7ea5a872018-04-27 18:17:32 +02001783
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001784 return fd_set_perms(i, fd, i->path, NULL);
Franck Buia2fc2f82018-04-27 18:11:26 +02001785}
1786
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001787typedef int (*action_t)(Item *i, const char *path);
1788typedef int (*fdaction_t)(Item *i, int fd, const char *path, const struct stat *st);
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001789
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001790static int item_do(Item *i, int fd, const char *path, fdaction_t action) {
Franck Bui14f34802018-05-24 14:17:07 +02001791 struct stat st;
Franck Bui936f6bd2018-03-02 17:19:32 +01001792 int r = 0, q;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001793
1794 assert(i);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001795 assert(path);
Franck Bui936f6bd2018-03-02 17:19:32 +01001796 assert(fd >= 0);
Franck Bui14f34802018-05-24 14:17:07 +02001797
1798 if (fstat(fd, &st) < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001799 r = log_error_errno(errno, "fstat() on file failed: %m");
Franck Bui14f34802018-05-24 14:17:07 +02001800 goto finish;
1801 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001802
1803 /* This returns the first error we run into, but nevertheless
1804 * tries to go on */
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001805 r = action(i, fd, path, &st);
Michal Schmidta8d88782011-12-15 23:11:07 +01001806
Franck Bui14f34802018-05-24 14:17:07 +02001807 if (S_ISDIR(st.st_mode)) {
Zbigniew Jędrzejewski-Szmek22dd8d32018-05-11 11:09:37 +02001808 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
Franck Bui936f6bd2018-03-02 17:19:32 +01001809 _cleanup_closedir_ DIR *d = NULL;
1810 struct dirent *de;
Michal Schmidta8d88782011-12-15 23:11:07 +01001811
Franck Bui936f6bd2018-03-02 17:19:32 +01001812 /* The passed 'fd' was opened with O_PATH. We need to convert
1813 * it into a 'regular' fd before reading the directory content. */
1814 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
Michal Schmidta8d88782011-12-15 23:11:07 +01001815
Franck Bui936f6bd2018-03-02 17:19:32 +01001816 d = opendir(procfs_path);
1817 if (!d) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001818 log_error_errno(errno, "Failed to opendir() '%s': %m", procfs_path);
1819 if (r == 0)
1820 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001821 goto finish;
1822 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001823
Franck Bui936f6bd2018-03-02 17:19:32 +01001824 FOREACH_DIRENT_ALL(de, d, q = -errno; goto finish) {
Franck Bui936f6bd2018-03-02 17:19:32 +01001825 int de_fd;
Michal Schmidta8d88782011-12-15 23:11:07 +01001826
Franck Bui936f6bd2018-03-02 17:19:32 +01001827 if (dot_or_dot_dot(de->d_name))
1828 continue;
Michal Schmidta8d88782011-12-15 23:11:07 +01001829
Franck Bui936f6bd2018-03-02 17:19:32 +01001830 de_fd = openat(fd, de->d_name, O_NOFOLLOW|O_CLOEXEC|O_PATH);
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001831 if (de_fd < 0)
1832 q = log_error_errno(errno, "Failed to open() file '%s': %m", de->d_name);
Franck Bui4dc7bfd2018-08-20 17:23:12 +02001833 else {
1834 _cleanup_free_ char *de_path = NULL;
1835
1836 de_path = path_join(NULL, path, de->d_name);
1837 if (!de_path)
1838 q = log_oom();
1839 else
1840 /* Pass ownership of dirent fd over */
1841 q = item_do(i, de_fd, de_path, action);
1842 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001843
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001844 if (q < 0 && r == 0)
1845 r = q;
Michal Schmidta8d88782011-12-15 23:11:07 +01001846 }
Michal Schmidta8d88782011-12-15 23:11:07 +01001847 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001848finish:
1849 safe_close(fd);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001850 return r;
Michal Schmidta8d88782011-12-15 23:11:07 +01001851}
1852
Franck Bui936f6bd2018-03-02 17:19:32 +01001853static int glob_item(Item *i, action_t action) {
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001854 _cleanup_globfree_ glob_t g = {
Zbigniew Jędrzejewski-Szmekebf31a12015-01-26 10:39:03 -05001855 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05001856 };
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001857 int r = 0, k;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001858 char **fn;
1859
Zbigniew Jędrzejewski-Szmek84e72b52017-04-25 23:50:35 -04001860 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1861 if (k < 0 && k != -ENOENT)
1862 return log_error_errno(k, "glob(%s) failed: %m", i->path);
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001863
1864 STRV_FOREACH(fn, g.gl_pathv) {
1865 k = action(i, *fn);
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02001866 if (k < 0 && r == 0)
Zbigniew Jędrzejewski-Szmekc84a9482013-03-24 19:09:19 -04001867 r = k;
Franck Bui936f6bd2018-03-02 17:19:32 +01001868 }
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001869
Franck Bui936f6bd2018-03-02 17:19:32 +01001870 return r;
1871}
1872
1873static int glob_item_recursively(Item *i, fdaction_t action) {
1874 _cleanup_globfree_ glob_t g = {
1875 .gl_opendir = (void *(*)(const char *)) opendir_nomod,
1876 };
1877 int r = 0, k;
1878 char **fn;
1879
1880 k = safe_glob(i->path, GLOB_NOSORT|GLOB_BRACE, &g);
1881 if (k < 0 && k != -ENOENT)
1882 return log_error_errno(k, "glob(%s) failed: %m", i->path);
1883
1884 STRV_FOREACH(fn, g.gl_pathv) {
1885 _cleanup_close_ int fd = -1;
Franck Bui936f6bd2018-03-02 17:19:32 +01001886
1887 /* Make sure we won't trigger/follow file object (such as
1888 * device nodes, automounts, ...) pointed out by 'fn' with
1889 * O_PATH. Note, when O_PATH is used, flags other than
1890 * O_CLOEXEC, O_DIRECTORY, and O_NOFOLLOW are ignored. */
1891
1892 fd = open(*fn, O_CLOEXEC|O_NOFOLLOW|O_PATH);
1893 if (fd < 0) {
Lennart Poettering09f12792018-08-06 15:44:24 +02001894 log_error_errno(errno, "Opening '%s' failed: %m", *fn);
1895 if (r == 0)
1896 r = -errno;
Franck Bui936f6bd2018-03-02 17:19:32 +01001897 continue;
Zbigniew Jędrzejewski-Szmek081043c2015-01-18 01:33:39 -05001898 }
Franck Bui936f6bd2018-03-02 17:19:32 +01001899
Lennart Poettering9d874ae2018-08-06 15:40:16 +02001900 k = item_do(i, fd, *fn, action);
Franck Bui936f6bd2018-03-02 17:19:32 +01001901 if (k < 0 && r == 0)
1902 r = k;
1903
1904 /* we passed fd ownership to the previous call */
1905 fd = -1;
Michal Schmidt99e68c02011-12-15 23:45:26 +01001906 }
1907
Michal Schmidt99e68c02011-12-15 23:45:26 +01001908 return r;
1909}
1910
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001911static int create_item(Item *i) {
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05001912 CreationMode creation;
Franck Buia2fc2f82018-04-27 18:11:26 +02001913 int r = 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001914
1915 assert(i);
1916
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05001917 log_debug("Running create action for entry %c %s", (char) i->type, i->path);
1918
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001919 switch (i->type) {
1920
1921 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01001922 case IGNORE_DIRECTORY_PATH:
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001923 case REMOVE_PATH:
1924 case RECURSIVE_REMOVE_PATH:
1925 return 0;
1926
1927 case CREATE_FILE:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001928 RUN_WITH_UMASK(0000)
1929 (void) mkdir_parents_label(i->path, 0755);
1930
Franck Bui31c84ff2018-04-13 09:19:24 +02001931 r = create_file(i, i->path);
Dave Reisner1845fdd2012-09-27 20:48:13 -04001932 if (r < 0)
1933 return r;
1934 break;
Lennart Poettering265ffa12013-09-17 16:33:30 -05001935
Franck Bui5ec9d062018-04-13 17:31:22 +02001936 case TRUNCATE_FILE:
1937 RUN_WITH_UMASK(0000)
1938 (void) mkdir_parents_label(i->path, 0755);
1939
1940 r = truncate_file(i, i->path);
1941 if (r < 0)
1942 return r;
1943 break;
1944
Franck Bui7b887f22018-04-12 12:18:19 +02001945 case COPY_FILES:
Lennart Poettering7fa10742018-01-23 14:14:19 +01001946 RUN_WITH_UMASK(0000)
1947 (void) mkdir_parents_label(i->path, 0755);
1948
Franck Buib1f7b172018-04-12 12:19:22 +02001949 r = copy_files(i);
Lennart Poettering849958d2014-06-10 23:02:40 +02001950 if (r < 0)
1951 return r;
Lennart Poettering849958d2014-06-10 23:02:40 +02001952 break;
1953
Dave Reisnerd4e9eb92012-09-03 17:13:18 -04001954 case WRITE_FILE:
Franck Bui936f6bd2018-03-02 17:19:32 +01001955 r = glob_item(i, write_one_file);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001956 if (r < 0)
1957 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001958
1959 break;
1960
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001961 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001962 case TRUNCATE_DIRECTORY:
Franck Bui4c39d892018-04-27 11:51:14 +02001963 RUN_WITH_UMASK(0000)
1964 (void) mkdir_parents_label(i->path, 0755);
1965
1966 r = create_directory(i, i->path);
1967 if (r < 0)
1968 return r;
1969 break;
1970
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001971 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02001972 case CREATE_SUBVOLUME_INHERIT_QUOTA:
1973 case CREATE_SUBVOLUME_NEW_QUOTA:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001974 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001975 (void) mkdir_parents_label(i->path, 0755);
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01001976
Franck Bui4c39d892018-04-27 11:51:14 +02001977 r = create_subvolume(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001978 if (r < 0)
1979 return r;
Franck Bui4ad36842018-04-26 14:54:20 +02001980 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001981
Franck Bui4ad36842018-04-26 14:54:20 +02001982 case EMPTY_DIRECTORY:
Franck Bui54946022018-04-26 15:45:17 +02001983 r = glob_item(i, empty_directory);
Franck Bui4ad36842018-04-26 14:54:20 +02001984 if (r < 0)
1985 return r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02001986 break;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001987
1988 case CREATE_FIFO:
Franck Buia2fc2f82018-04-27 18:11:26 +02001989 RUN_WITH_UMASK(0000)
Lennart Poettering7fa10742018-01-23 14:14:19 +01001990 (void) mkdir_parents_label(i->path, 0755);
1991
Franck Buia2fc2f82018-04-27 18:11:26 +02001992 r = create_fifo(i, i->path);
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01001993 if (r < 0)
1994 return r;
Lennart Poetteringee17ee72011-07-12 03:56:56 +02001995 break;
Michal Schmidta8d88782011-12-15 23:11:07 +01001996
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02001997 case CREATE_SYMLINK: {
Lennart Poettering7fa10742018-01-23 14:14:19 +01001998 RUN_WITH_UMASK(0000)
1999 (void) mkdir_parents_label(i->path, 0755);
2000
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002001 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002002 r = symlink(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002003 mac_selinux_create_file_clear();
Kay Sieverse9a5ef72012-04-17 16:05:03 +02002004
Lennart Poettering468d7262012-01-17 15:04:12 +01002005 if (r < 0) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002006 _cleanup_free_ char *x = NULL;
Lennart Poettering468d7262012-01-17 15:04:12 +01002007
Michal Schmidt4a62c712014-11-28 19:57:32 +01002008 if (errno != EEXIST)
Franck Bui4cef1922017-11-16 11:27:29 +01002009 return log_error_errno(errno, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002010
2011 r = readlink_malloc(i->path, &x);
Franck Bui4cef1922017-11-16 11:27:29 +01002012 if (r < 0 || !streq(i->argument, x)) {
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002013
2014 if (i->force) {
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002015 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002016 r = symlink_atomic(i->argument, i->path);
Lennart Poetteringecabcf82014-10-23 19:41:27 +02002017 mac_selinux_create_file_clear();
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002018
Ricardo Salveti de Araujo2ef5de12018-04-03 10:05:11 -03002019 if (IN_SET(r, -EISDIR, -EEXIST, -ENOTEMPTY)) {
William Douglasb3f58972017-08-09 08:53:03 -07002020 r = rm_rf(i->path, REMOVE_ROOT|REMOVE_PHYSICAL);
2021 if (r < 0)
2022 return log_error_errno(r, "rm -fr %s failed: %m", i->path);
2023
2024 mac_selinux_create_file_prepare(i->path, S_IFLNK);
Franck Bui4cef1922017-11-16 11:27:29 +01002025 r = symlink(i->argument, i->path) < 0 ? -errno : 0;
William Douglasb3f58972017-08-09 08:53:03 -07002026 mac_selinux_create_file_clear();
2027 }
Michal Schmidtf6479622014-11-28 18:50:43 +01002028 if (r < 0)
Franck Bui4cef1922017-11-16 11:27:29 +01002029 return log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002030
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002031 creation = CREATION_FORCE;
Lennart Poettering1554afa2014-06-17 23:50:22 +02002032 } else {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002033 log_debug("\"%s\" is not a symlink or does not point to the correct path.", i->path);
Lennart Poettering1554afa2014-06-17 23:50:22 +02002034 return 0;
2035 }
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002036 } else
2037 creation = CREATION_EXISTING;
2038 } else
Lennart Poetteringa542c4d2015-05-15 21:48:20 +02002039
Zbigniew Jędrzejewski-Szmek294929f2015-02-01 12:29:27 -05002040 creation = CREATION_NORMAL;
Lennart Poettering7a7d5db2015-02-02 21:34:09 +01002041 log_debug("%s symlink \"%s\".", creation_mode_verb_to_string(creation), i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002042 break;
Lennart Poettering5c5ccf12015-04-10 18:07:04 +02002043 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002044
2045 case CREATE_BLOCK_DEVICE:
Franck Bui074bd732018-04-12 18:10:57 +02002046 case CREATE_CHAR_DEVICE:
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002047 if (have_effective_cap(CAP_MKNOD) == 0) {
Lennart Poettering713998c2018-08-06 15:46:32 +02002048 /* In a container we lack CAP_MKNOD. We shouldn't attempt to create the device node in that
2049 * case to avoid noise, and we don't support virtualized devices in containers anyway. */
Lennart Poetteringcb7ed9d2012-09-05 23:39:55 -07002050
2051 log_debug("We lack CAP_MKNOD, skipping creation of device node %s.", i->path);
2052 return 0;
2053 }
2054
Lennart Poettering7fa10742018-01-23 14:14:19 +01002055 RUN_WITH_UMASK(0000)
2056 (void) mkdir_parents_label(i->path, 0755);
2057
Franck Bui074bd732018-04-12 18:10:57 +02002058 r = create_device(i, i->type == CREATE_BLOCK_DEVICE ? S_IFBLK : S_IFCHR);
Lennart Poettering468d7262012-01-17 15:04:12 +01002059 if (r < 0)
2060 return r;
2061
2062 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002063
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002064 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002065 case RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002066 r = glob_item(i, path_set_perms);
Michal Schmidt777b87e2011-12-16 18:27:35 +01002067 if (r < 0)
Lennart Poettering96ca8192013-06-21 15:57:42 +02002068 return r;
Michal Schmidt777b87e2011-12-16 18:27:35 +01002069 break;
2070
Michal Schmidta8d88782011-12-15 23:11:07 +01002071 case RECURSIVE_RELABEL_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002072 r = glob_item_recursively(i, fd_set_perms);
Michal Schmidta8d88782011-12-15 23:11:07 +01002073 if (r < 0)
2074 return r;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002075 break;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002076
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002077 case SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002078 r = glob_item(i, path_set_xattrs);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002079 if (r < 0)
2080 return r;
2081 break;
2082
2083 case RECURSIVE_SET_XATTR:
Franck Bui936f6bd2018-03-02 17:19:32 +01002084 r = glob_item_recursively(i, fd_set_xattrs);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002085 if (r < 0)
2086 return r;
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002087 break;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002088
2089 case SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002090 r = glob_item(i, path_set_acls);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002091 if (r < 0)
2092 return r;
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002093 break;
2094
2095 case RECURSIVE_SET_ACL:
Franck Bui936f6bd2018-03-02 17:19:32 +01002096 r = glob_item_recursively(i, fd_set_acls);
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002097 if (r < 0)
2098 return r;
2099 break;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002100
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002101 case SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002102 r = glob_item(i, path_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002103 if (r < 0)
2104 return r;
2105 break;
2106
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002107 case RECURSIVE_SET_ATTRIBUTE:
Franck Bui936f6bd2018-03-02 17:19:32 +01002108 r = glob_item_recursively(i, fd_set_attribute);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002109 if (r < 0)
2110 return r;
2111 break;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002112 }
2113
Michal Schmidtf05bc3f2011-12-15 23:44:23 +01002114 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002115}
2116
Michal Schmidta0896122011-12-15 21:32:50 +01002117static int remove_item_instance(Item *i, const char *instance) {
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002118 int r;
2119
2120 assert(i);
2121
2122 switch (i->type) {
2123
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002124 case REMOVE_PATH:
Michal Schmidt4a62c712014-11-28 19:57:32 +01002125 if (remove(instance) < 0 && errno != ENOENT)
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002126 return log_error_errno(errno, "rm(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002127
2128 break;
2129
2130 case TRUNCATE_DIRECTORY:
2131 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringd139b242012-06-20 14:31:00 +02002132 /* FIXME: we probably should use dir_cleanup() here
2133 * instead of rm_rf() so that 'x' is honoured. */
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002134 log_debug("rm -rf \"%s\"", instance);
Lennart Poettering1b26f092015-06-15 19:11:15 +02002135 r = rm_rf(instance, (i->type == RECURSIVE_REMOVE_PATH ? REMOVE_ROOT|REMOVE_SUBVOLUME : 0) | REMOVE_PHYSICAL);
Michal Schmidtf6479622014-11-28 18:50:43 +01002136 if (r < 0 && r != -ENOENT)
2137 return log_error_errno(r, "rm_rf(%s): %m", instance);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002138
2139 break;
Zbigniew Jędrzejewski-Szmek7fcb4b92015-01-22 23:35:34 -05002140
2141 default:
2142 assert_not_reached("wut?");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002143 }
2144
2145 return 0;
2146}
2147
Michal Schmidta0896122011-12-15 21:32:50 +01002148static int remove_item(Item *i) {
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002149 assert(i);
2150
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002151 log_debug("Running remove action for entry %c %s", (char) i->type, i->path);
2152
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002153 switch (i->type) {
2154
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002155 case REMOVE_PATH:
2156 case TRUNCATE_DIRECTORY:
Michal Schmidt99e68c02011-12-15 23:45:26 +01002157 case RECURSIVE_REMOVE_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002158 return glob_item(i, remove_item_instance);
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002159
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002160 default:
2161 return 0;
2162 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01002163}
2164
Michal Sekletar78a92a52013-01-18 16:13:08 +01002165static int clean_item_instance(Item *i, const char* instance) {
Harald Hoyer7fd1b192013-04-18 09:11:22 +02002166 _cleanup_closedir_ DIR *d = NULL;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002167 struct stat s, ps;
2168 bool mountpoint;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002169 usec_t cutoff, n;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002170 char timestamp[FORMAT_TIMESTAMP_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002171
2172 assert(i);
2173
2174 if (!i->age_set)
2175 return 0;
2176
2177 n = now(CLOCK_REALTIME);
2178 if (n < i->age)
2179 return 0;
2180
2181 cutoff = n - i->age;
2182
Zbigniew Jędrzejewski-Szmekdf99a9e2014-01-02 00:02:31 -05002183 d = opendir_nomod(instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002184 if (!d) {
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002185 if (IN_SET(errno, ENOENT, ENOTDIR)) {
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002186 log_debug_errno(errno, "Directory \"%s\": %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002187 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002188 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002189
Zbigniew Jędrzejewski-Szmekd710aaf2016-07-22 20:27:45 -04002190 return log_error_errno(errno, "Failed to open directory %s: %m", instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002191 }
2192
Michal Schmidt4a62c712014-11-28 19:57:32 +01002193 if (fstat(dirfd(d), &s) < 0)
2194 return log_error_errno(errno, "stat(%s) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002195
2196 if (!S_ISDIR(s.st_mode)) {
2197 log_error("%s is not a directory.", i->path);
Zbigniew Jędrzejewski-Szmek19fbec12013-03-03 18:42:52 -05002198 return -ENOTDIR;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002199 }
2200
Michal Schmidt4a62c712014-11-28 19:57:32 +01002201 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
2202 return log_error_errno(errno, "stat(%s/..) failed: %m", i->path);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002203
Thomas Hindoe Paaboel Andersen2bb158c2015-10-23 20:15:17 +02002204 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002205
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002206 log_debug("Cleanup threshold for %s \"%s\" is %s",
2207 mountpoint ? "mount point" : "directory",
2208 instance,
2209 format_timestamp_us(timestamp, sizeof(timestamp), cutoff));
2210
2211 return dir_cleanup(i, instance, d, &s, cutoff, s.st_dev, mountpoint,
2212 MAX_DEPTH, i->keep_first_level);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002213}
2214
2215static int clean_item(Item *i) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01002216 assert(i);
2217
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002218 log_debug("Running clean action for entry %c %s", (char) i->type, i->path);
2219
Michal Sekletar78a92a52013-01-18 16:13:08 +01002220 switch (i->type) {
2221 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002222 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002223 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2224 case CREATE_SUBVOLUME_NEW_QUOTA:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002225 case TRUNCATE_DIRECTORY:
2226 case IGNORE_PATH:
Lennart Poettering849958d2014-06-10 23:02:40 +02002227 case COPY_FILES:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002228 clean_item_instance(i, i->path);
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002229 return 0;
Zbigniew Jędrzejewski-Szmek65241c12017-11-22 15:16:48 +01002230 case EMPTY_DIRECTORY:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002231 case IGNORE_DIRECTORY_PATH:
Franck Bui936f6bd2018-03-02 17:19:32 +01002232 return glob_item(i, clean_item_instance);
Michal Sekletar78a92a52013-01-18 16:13:08 +01002233 default:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002234 return 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002235 }
Michal Sekletar78a92a52013-01-18 16:13:08 +01002236}
2237
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002238static int process_item_array(ItemArray *array);
2239
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002240static int process_item(Item *i) {
Lennart Poettering1e958932015-01-06 20:33:46 +01002241 int r, q, p, t = 0;
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05002242 _cleanup_free_ char *prefix = NULL;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002243
2244 assert(i);
2245
Lennart Poettering1910cd02014-06-11 01:37:35 +02002246 if (i->done)
2247 return 0;
2248
2249 i->done = true;
2250
Zbigniew Jędrzejewski-Szmek9348f0e2014-10-01 07:33:22 -05002251 prefix = malloc(strlen(i->path) + 1);
2252 if (!prefix)
2253 return log_oom();
2254
Lennart Poettering1910cd02014-06-11 01:37:35 +02002255 PATH_FOREACH_PREFIX(prefix, i->path) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002256 ItemArray *j;
Lennart Poettering1910cd02014-06-11 01:37:35 +02002257
Lennart Poetteringef43a392015-04-22 18:18:56 +02002258 j = ordered_hashmap_get(items, prefix);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002259 if (j) {
2260 int s;
2261
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002262 s = process_item_array(j);
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002263 if (s < 0 && t == 0)
2264 t = s;
2265 }
Lennart Poettering1910cd02014-06-11 01:37:35 +02002266 }
2267
NeilBrown655f2da2017-09-04 23:35:07 +10002268 if (chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL) == -EREMOTE)
2269 return t;
2270
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002271 r = arg_create ? create_item(i) : 0;
Michal Schmidta0896122011-12-15 21:32:50 +01002272 q = arg_remove ? remove_item(i) : 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002273 p = arg_clean ? clean_item(i) : 0;
2274
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05002275 return t < 0 ? t :
2276 r < 0 ? r :
2277 q < 0 ? q :
2278 p;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002279}
2280
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002281static int process_item_array(ItemArray *array) {
2282 unsigned n;
2283 int r = 0, k;
Lennart Poettering753615e2014-06-12 23:07:17 +02002284
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002285 assert(array);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002286
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002287 for (n = 0; n < array->count; n++) {
2288 k = process_item(array->items + n);
2289 if (k < 0 && r == 0)
2290 r = k;
2291 }
2292
2293 return r;
2294}
2295
2296static void item_free_contents(Item *i) {
2297 assert(i);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002298 free(i->path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002299 free(i->argument);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002300 strv_free(i->xattrs);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002301
Zbigniew Jędrzejewski-Szmek349cc4a2017-10-03 10:41:51 +02002302#if HAVE_ACL
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002303 acl_free(i->acl_access);
2304 acl_free(i->acl_default);
2305#endif
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002306}
2307
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002308static void item_array_free(ItemArray *a) {
2309 unsigned n;
Maciej Wereskie2f2fb72013-07-19 15:43:12 +02002310
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002311 if (!a)
2312 return;
2313
2314 for (n = 0; n < a->count; n++)
2315 item_free_contents(a->items + n);
2316 free(a->items);
2317 free(a);
2318}
2319
Lennart Poettering17493fa2015-04-10 16:22:22 +02002320static int item_compare(const void *a, const void *b) {
2321 const Item *x = a, *y = b;
2322
2323 /* Make sure that the ownership taking item is put first, so
2324 * that we first create the node, and then can adjust it */
2325
2326 if (takes_ownership(x->type) && !takes_ownership(y->type))
2327 return -1;
2328 if (!takes_ownership(x->type) && takes_ownership(y->type))
2329 return 1;
2330
2331 return (int) x->type - (int) y->type;
2332}
2333
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002334static bool item_compatible(Item *a, Item *b) {
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002335 assert(a);
2336 assert(b);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002337 assert(streq(a->path, b->path));
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002338
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002339 if (takes_ownership(a->type) && takes_ownership(b->type))
2340 /* check if the items are the same */
2341 return streq_ptr(a->argument, b->argument) &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002342
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002343 a->uid_set == b->uid_set &&
2344 a->uid == b->uid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002345
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002346 a->gid_set == b->gid_set &&
2347 a->gid == b->gid &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002348
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002349 a->mode_set == b->mode_set &&
2350 a->mode == b->mode &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002351
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002352 a->age_set == b->age_set &&
2353 a->age == b->age &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002354
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002355 a->mask_perms == b->mask_perms &&
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002356
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002357 a->keep_first_level == b->keep_first_level &&
Lennart Poettering468d7262012-01-17 15:04:12 +01002358
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002359 a->major_minor == b->major_minor;
Lennart Poettering468d7262012-01-17 15:04:12 +01002360
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002361 return true;
2362}
2363
Dave Reisnera2aced42013-07-24 11:10:05 -04002364static bool should_include_path(const char *path) {
2365 char **prefix;
2366
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002367 STRV_FOREACH(prefix, arg_exclude_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002368 if (path_startswith(path, *prefix)) {
2369 log_debug("Entry \"%s\" matches exclude prefix \"%s\", skipping.",
2370 path, *prefix);
Dave Reisner5c795112013-07-24 11:19:24 -04002371 return false;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002372 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002373
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002374 STRV_FOREACH(prefix, arg_include_prefixes)
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002375 if (path_startswith(path, *prefix)) {
2376 log_debug("Entry \"%s\" matches include prefix \"%s\".", path, *prefix);
Dave Reisnera2aced42013-07-24 11:10:05 -04002377 return true;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002378 }
Dave Reisnera2aced42013-07-24 11:10:05 -04002379
Dave Reisner5c795112013-07-24 11:19:24 -04002380 /* no matches, so we should include this path only if we
2381 * have no whitelist at all */
Lennart Poettering7b943bb2017-11-29 12:40:22 +01002382 if (strv_isempty(arg_include_prefixes))
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002383 return true;
2384
2385 log_debug("Entry \"%s\" does not match any include prefix, skipping.", path);
2386 return false;
Dave Reisnera2aced42013-07-24 11:10:05 -04002387}
2388
Franck Bui4cef1922017-11-16 11:27:29 +01002389static int specifier_expansion_from_arg(Item *i) {
2390 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
2391 char **xattr;
2392 int r;
2393
2394 assert(i);
2395
2396 if (i->argument == NULL)
2397 return 0;
2398
2399 switch (i->type) {
2400 case COPY_FILES:
2401 case CREATE_SYMLINK:
2402 case CREATE_FILE:
2403 case TRUNCATE_FILE:
2404 case WRITE_FILE:
2405 r = cunescape(i->argument, 0, &unescaped);
2406 if (r < 0)
2407 return log_error_errno(r, "Failed to unescape parameter to write: %s", i->argument);
2408
2409 r = specifier_printf(unescaped, specifier_table, NULL, &resolved);
2410 if (r < 0)
2411 return r;
2412
2413 free_and_replace(i->argument, resolved);
2414 break;
2415
2416 case SET_XATTR:
2417 case RECURSIVE_SET_XATTR:
2418 assert(i->xattrs);
2419
2420 STRV_FOREACH (xattr, i->xattrs) {
2421 r = specifier_printf(*xattr, specifier_table, NULL, &resolved);
2422 if (r < 0)
2423 return r;
2424
2425 free_and_replace(*xattr, resolved);
2426 }
2427 break;
2428
2429 default:
2430 break;
2431 }
2432 return 0;
2433}
2434
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002435static int patch_var_run(const char *fname, unsigned line, char **path) {
2436 const char *k;
2437 char *n;
2438
2439 assert(path);
2440 assert(*path);
2441
2442 /* Optionally rewrites lines referencing /var/run/, to use /run/ instead. Why bother? tmpfiles merges lines in
2443 * some cases and detects conflicts in others. If files/directories are specified through two equivalent lines
2444 * this is problematic as neither case will be detected. Ideally we'd detect these cases by resolving symlinks
2445 * early, but that's precisely not what we can do here as this code very likely is running very early on, at a
2446 * time where the paths in question are not available yet, or even more importantly, our own tmpfiles rules
2447 * might create the paths that are intermediary to the listed paths. We can't really cover the generic case,
2448 * but the least we can do is cover the specific case of /var/run vs. /run, as /var/run is a legacy name for
2449 * /run only, and we explicitly document that and require that on systemd systems the former is a symlink to
2450 * the latter. Moreover files below this path are by far the primary usecase for tmpfiles.d/. */
2451
2452 k = path_startswith(*path, "/var/run/");
2453 if (isempty(k)) /* Don't complain about other paths than /var/run, and not about /var/run itself either. */
2454 return 0;
2455
2456 n = strjoin("/run/", k);
2457 if (!n)
2458 return log_oom();
2459
2460 /* Also log about this briefly. We do so at LOG_NOTICE level, as we fixed up the situation automatically, hence
2461 * there's no immediate need for action by the user. However, in the interest of making things less confusing
2462 * to the user, let's still inform the user that these snippets should really be updated. */
2463
2464 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);
2465
2466 free(*path);
2467 *path = n;
2468
2469 return 0;
2470}
2471
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002472static int parse_line(const char *fname, unsigned line, const char *buffer, bool *invalid_config) {
Lennart Poettering1731e342013-09-17 11:02:02 -05002473
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002474 _cleanup_free_ char *action = NULL, *mode = NULL, *user = NULL, *group = NULL, *age = NULL, *path = NULL;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002475 _cleanup_(item_free_contents) Item i = {};
2476 ItemArray *existing;
Lennart Poetteringef43a392015-04-22 18:18:56 +02002477 OrderedHashmap *h;
daurnimator657cf7f2015-03-09 15:11:44 -04002478 int r, pos;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002479 bool force = false, boot = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02002480
2481 assert(fname);
2482 assert(line >= 1);
2483 assert(buffer);
2484
Richard Maw68685602015-06-23 16:20:53 +00002485 r = extract_many_words(
Lennart Poettering4034a062015-03-23 18:55:36 +07002486 &buffer,
Richard Maw68685602015-06-23 16:20:53 +00002487 NULL,
Richard Maw12ba2c42015-06-23 16:26:49 +00002488 EXTRACT_QUOTES,
Lennart Poettering4034a062015-03-23 18:55:36 +07002489 &action,
2490 &path,
2491 &mode,
2492 &user,
2493 &group,
2494 &age,
2495 NULL);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002496 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002497 if (IN_SET(r, -EINVAL, -EBADSLT))
2498 /* invalid quoting and such or an unknown specifier */
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002499 *invalid_config = true;
daurnimator657cf7f2015-03-09 15:11:44 -04002500 return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
Lennart Poettering4b936992018-05-10 11:29:11 -07002501 } else if (r < 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002502 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002503 log_error("[%s:%u] Syntax error.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002504 return -EIO;
Lennart Poettering5008d582010-09-28 02:34:02 +02002505 }
2506
Lennart Poetteringaa5f6812015-04-21 01:10:19 +02002507 if (!isempty(buffer) && !streq(buffer, "-")) {
Lennart Poettering4034a062015-03-23 18:55:36 +07002508 i.argument = strdup(buffer);
2509 if (!i.argument)
2510 return log_oom();
2511 }
2512
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002513 if (isempty(action)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002514 *invalid_config = true;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002515 log_error("[%s:%u] Command too short '%s'.", fname, line, action);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002516 return -EINVAL;
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002517 }
2518
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002519 for (pos = 1; action[pos]; pos++) {
2520 if (action[pos] == '!' && !boot)
2521 boot = true;
2522 else if (action[pos] == '+' && !force)
2523 force = true;
2524 else {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002525 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek5f255142015-01-09 01:11:01 -05002526 log_error("[%s:%u] Unknown modifiers in command '%s'",
2527 fname, line, action);
2528 return -EINVAL;
2529 }
Lennart Poettering2e78fa72014-06-16 13:21:07 +02002530 }
2531
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002532 if (boot && !arg_boot) {
2533 log_debug("Ignoring entry %s \"%s\" because --boot is not specified.",
2534 action, path);
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002535 return 0;
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002536 }
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002537
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002538 i.type = action[0];
2539 i.force = force;
Lennart Poettering1731e342013-09-17 11:02:02 -05002540
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002541 r = specifier_printf(path, specifier_table, NULL, &i.path);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002542 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002543 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002544 if (r < 0) {
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002545 if (IN_SET(r, -EINVAL, -EBADSLT))
2546 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002547 return log_error_errno(r, "[%s:%u] Failed to replace specifiers: %s", fname, line, path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002548 }
Lennart Poettering1731e342013-09-17 11:02:02 -05002549
Lennart Poetteringa2d1fb82018-05-16 22:15:46 -04002550 r = patch_var_run(fname, line, &i.path);
2551 if (r < 0)
2552 return r;
2553
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002554 switch (i.type) {
Lennart Poettering468d7262012-01-17 15:04:12 +01002555
Michal Schmidt777b87e2011-12-16 18:27:35 +01002556 case CREATE_DIRECTORY:
Lennart Poetteringd7b8eec2014-12-27 18:46:36 +01002557 case CREATE_SUBVOLUME:
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002558 case CREATE_SUBVOLUME_INHERIT_QUOTA:
2559 case CREATE_SUBVOLUME_NEW_QUOTA:
Zbigniew Jędrzejewski-Szmekdf8dee82016-04-20 00:06:25 -04002560 case EMPTY_DIRECTORY:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002561 case TRUNCATE_DIRECTORY:
2562 case CREATE_FIFO:
2563 case IGNORE_PATH:
Michal Sekletar78a92a52013-01-18 16:13:08 +01002564 case IGNORE_DIRECTORY_PATH:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002565 case REMOVE_PATH:
2566 case RECURSIVE_REMOVE_PATH:
Lennart Poetteringe73a03e2014-06-10 23:42:16 +02002567 case ADJUST_MODE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002568 case RELABEL_PATH:
2569 case RECURSIVE_RELABEL_PATH:
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002570 if (i.argument)
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002571 log_warning("[%s:%u] %c lines don't take argument fields, ignoring.", fname, line, i.type);
Lennart Poetteringc82500c2015-04-10 14:46:05 +02002572
2573 break;
2574
2575 case CREATE_FILE:
2576 case TRUNCATE_FILE:
Michal Schmidt777b87e2011-12-16 18:27:35 +01002577 break;
Lennart Poettering468d7262012-01-17 15:04:12 +01002578
2579 case CREATE_SYMLINK:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002580 if (!i.argument) {
2581 i.argument = strappend("/usr/share/factory/", i.path);
2582 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002583 return log_oom();
Lennart Poettering468d7262012-01-17 15:04:12 +01002584 }
2585 break;
2586
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002587 case WRITE_FILE:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002588 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002589 *invalid_config = true;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002590 log_error("[%s:%u] Write file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002591 return -EBADMSG;
Lennart Poettering31ed59c2012-01-18 16:39:04 +01002592 }
2593 break;
2594
Lennart Poettering849958d2014-06-10 23:02:40 +02002595 case COPY_FILES:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002596 if (!i.argument) {
2597 i.argument = strappend("/usr/share/factory/", i.path);
2598 if (!i.argument)
Kay Sievers2f3b8732014-06-20 15:57:43 +02002599 return log_oom();
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002600 } else if (!path_is_absolute(i.argument)) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002601 *invalid_config = true;
Lennart Poettering849958d2014-06-10 23:02:40 +02002602 log_error("[%s:%u] Source path is not absolute.", fname, line);
2603 return -EBADMSG;
2604 }
2605
Yu Watanabe858d36c2018-05-31 23:39:31 +09002606 path_simplify(i.argument, false);
Lennart Poettering849958d2014-06-10 23:02:40 +02002607 break;
2608
Lennart Poettering468d7262012-01-17 15:04:12 +01002609 case CREATE_CHAR_DEVICE:
2610 case CREATE_BLOCK_DEVICE: {
2611 unsigned major, minor;
2612
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002613 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002614 *invalid_config = true;
Lennart Poettering468d7262012-01-17 15:04:12 +01002615 log_error("[%s:%u] Device file requires argument.", fname, line);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002616 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002617 }
2618
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002619 if (sscanf(i.argument, "%u:%u", &major, &minor) != 2) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002620 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002621 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 -04002622 return -EBADMSG;
Lennart Poettering468d7262012-01-17 15:04:12 +01002623 }
2624
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002625 i.major_minor = makedev(major, minor);
Lennart Poettering468d7262012-01-17 15:04:12 +01002626 break;
2627 }
2628
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002629 case SET_XATTR:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002630 case RECURSIVE_SET_XATTR:
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002631 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002632 *invalid_config = true;
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002633 log_error("[%s:%u] Set extended attribute requires argument.", fname, line);
2634 return -EBADMSG;
2635 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002636 r = parse_xattrs_from_arg(&i);
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002637 if (r < 0)
2638 return r;
2639 break;
2640
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002641 case SET_ACL:
Zbigniew Jędrzejewski-Szmekb705ab62015-01-18 02:10:00 -05002642 case RECURSIVE_SET_ACL:
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002643 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002644 *invalid_config = true;
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002645 log_error("[%s:%u] Set ACLs requires argument.", fname, line);
2646 return -EBADMSG;
2647 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002648 r = parse_acls_from_arg(&i);
Zbigniew Jędrzejewski-Szmekf8eeeaf2015-01-17 23:27:39 -05002649 if (r < 0)
2650 return r;
2651 break;
2652
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002653 case SET_ATTRIBUTE:
2654 case RECURSIVE_SET_ATTRIBUTE:
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002655 if (!i.argument) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002656 *invalid_config = true;
Lennart Poettering88ec4df2015-04-08 22:35:52 +02002657 log_error("[%s:%u] Set file attribute requires argument.", fname, line);
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002658 return -EBADMSG;
2659 }
Lennart Poetteringbd550f72015-04-10 16:03:24 +02002660 r = parse_attribute_from_arg(&i);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002661 if (IN_SET(r, -EINVAL, -EBADSLT))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002662 *invalid_config = true;
Goffredo Baroncelli22c3a6c2015-03-16 20:33:50 +01002663 if (r < 0)
2664 return r;
2665 break;
2666
Michal Schmidt777b87e2011-12-16 18:27:35 +01002667 default:
Zbigniew Jędrzejewski-Szmek582deb82015-01-24 01:54:05 -05002668 log_error("[%s:%u] Unknown command type '%c'.", fname, line, (char) i.type);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002669 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002670 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002671 }
Lennart Poettering468d7262012-01-17 15:04:12 +01002672
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002673 if (!path_is_absolute(i.path)) {
2674 log_error("[%s:%u] Path '%s' not absolute.", fname, line, i.path);
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002675 *invalid_config = true;
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002676 return -EBADMSG;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002677 }
2678
Yu Watanabe858d36c2018-05-31 23:39:31 +09002679 path_simplify(i.path, false);
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002680
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002681 if (!should_include_path(i.path))
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002682 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002683
Franck Bui4cef1922017-11-16 11:27:29 +01002684 r = specifier_expansion_from_arg(&i);
Zbigniew Jędrzejewski-Szmek5a8575e2017-11-23 13:56:32 +01002685 if (r == -ENXIO)
Franck Bui4cef1922017-11-16 11:27:29 +01002686 return log_unresolvable_specifier(fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002687 if (r < 0) {
2688 if (IN_SET(r, -EINVAL, -EBADSLT))
2689 *invalid_config = true;
Franck Bui4cef1922017-11-16 11:27:29 +01002690 return log_error_errno(r, "[%s:%u] Failed to substitute specifiers in argument: %m",
2691 fname, line);
Zbigniew Jędrzejewski-Szmek751223f2017-11-24 12:19:40 +01002692 }
Franck Bui4cef1922017-11-16 11:27:29 +01002693
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002694 if (arg_root) {
Lennart Poetteringcde684a2014-06-10 22:50:46 +02002695 char *p;
2696
Lennart Poettering1d13f642015-05-13 17:42:10 +02002697 p = prefix_root(arg_root, i.path);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002698 if (!p)
2699 return log_oom();
2700
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002701 free(i.path);
2702 i.path = p;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002703 }
2704
Lennart Poettering90937fe2015-04-10 16:04:16 +02002705 if (!isempty(user) && !streq(user, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002706 const char *u = user;
Lennart Poettering5008d582010-09-28 02:34:02 +02002707
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002708 r = get_user_creds(&u, &i.uid, NULL, NULL, NULL, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002709 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002710 *invalid_config = true;
2711 return log_error_errno(r, "[%s:%u] Unknown user '%s'.", fname, line, user);
Lennart Poettering5008d582010-09-28 02:34:02 +02002712 }
2713
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002714 i.uid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002715 }
2716
Lennart Poettering90937fe2015-04-10 16:04:16 +02002717 if (!isempty(group) && !streq(group, "-")) {
Lennart Poettering4b678342011-07-23 01:17:59 +02002718 const char *g = group;
Lennart Poettering5008d582010-09-28 02:34:02 +02002719
Lennart Poetteringfafff8f2018-08-02 18:36:47 +02002720 r = get_group_creds(&g, &i.gid, USER_CREDS_ALLOW_MISSING);
Lennart Poettering4b678342011-07-23 01:17:59 +02002721 if (r < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002722 *invalid_config = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002723 log_error("[%s:%u] Unknown group '%s'.", fname, line, group);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002724 return r;
Lennart Poettering5008d582010-09-28 02:34:02 +02002725 }
2726
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002727 i.gid_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002728 }
2729
Lennart Poettering90937fe2015-04-10 16:04:16 +02002730 if (!isempty(mode) && !streq(mode, "-")) {
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002731 const char *mm = mode;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002732 unsigned m;
Lennart Poettering5008d582010-09-28 02:34:02 +02002733
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002734 if (*mm == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002735 i.mask_perms = true;
Lennart Poetteringabef3f92014-06-11 10:14:07 +02002736 mm++;
2737 }
2738
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002739 if (parse_mode(mm, &m) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002740 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002741 log_error("[%s:%u] Invalid mode '%s'.", fname, line, mode);
Lennart Poettering2ff7b0a2015-04-10 14:43:06 +02002742 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002743 }
2744
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002745 i.mode = m;
2746 i.mode_set = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002747 } else
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02002748 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 +02002749
Lennart Poettering90937fe2015-04-10 16:04:16 +02002750 if (!isempty(age) && !streq(age, "-")) {
Lennart Poettering24f3a372012-06-20 09:05:50 +02002751 const char *a = age;
2752
2753 if (*a == '~') {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002754 i.keep_first_level = true;
Lennart Poettering24f3a372012-06-20 09:05:50 +02002755 a++;
2756 }
2757
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002758 if (parse_sec(a, &i.age) < 0) {
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002759 *invalid_config = true;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002760 log_error("[%s:%u] Invalid age '%s'.", fname, line, age);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002761 return -EBADMSG;
Lennart Poettering5008d582010-09-28 02:34:02 +02002762 }
2763
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002764 i.age_set = true;
Lennart Poettering5008d582010-09-28 02:34:02 +02002765 }
2766
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002767 h = needs_glob(i.type) ? globs : items;
Lennart Poettering022707d2011-01-05 16:11:15 +01002768
Lennart Poetteringef43a392015-04-22 18:18:56 +02002769 existing = ordered_hashmap_get(h, i.path);
Lennart Poettering468d7262012-01-17 15:04:12 +01002770 if (existing) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002771 unsigned n;
2772
2773 for (n = 0; n < existing->count; n++) {
Martin Pitt6487ada2015-03-05 14:58:56 +01002774 if (!item_compatible(existing->items + n, &i)) {
Zbigniew Jędrzejewski-Szmeke286dba2017-11-22 14:19:13 +01002775 log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
2776 fname, line, i.path);
Martin Pitt6487ada2015-03-05 14:58:56 +01002777 return 0;
2778 }
Maciej Wereskiebf4e802014-12-04 10:32:10 +01002779 }
2780 } else {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002781 existing = new0(ItemArray, 1);
Lennart Poettering07982ed2018-01-22 15:32:57 +01002782 if (!existing)
2783 return log_oom();
2784
Lennart Poetteringef43a392015-04-22 18:18:56 +02002785 r = ordered_hashmap_put(h, i.path, existing);
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002786 if (r < 0)
2787 return log_oom();
Lennart Poetteringbfe95f32011-04-08 04:49:43 +02002788 }
2789
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002790 if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
2791 return log_oom();
Lennart Poettering5008d582010-09-28 02:34:02 +02002792
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002793 memcpy(existing->items + existing->count++, &i, sizeof(i));
Zbigniew Jędrzejewski-Szmekdd449ac2015-04-10 18:57:05 -04002794
2795 /* Sort item array, to enforce stable ordering of application */
2796 qsort_safe(existing->items, existing->count, sizeof(Item), item_compare);
Lennart Poettering17493fa2015-04-10 16:22:22 +02002797
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05002798 zero(i);
Zbigniew Jędrzejewski-Szmek7f2c1f42013-03-31 16:29:46 -04002799 return 0;
Lennart Poettering5008d582010-09-28 02:34:02 +02002800}
2801
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002802static int cat_config(char **config_dirs, char **args) {
2803 _cleanup_strv_free_ char **files = NULL;
2804 int r;
2805
2806 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, NULL);
2807 if (r < 0)
2808 return r;
2809
2810 return cat_files(NULL, files, 0);
2811}
2812
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002813static int help(void) {
2814 _cleanup_free_ char *link = NULL;
2815 int r;
2816
2817 r = terminal_urlify_man("systemd-tmpfiles", "8", &link);
2818 if (r < 0)
2819 return log_oom();
2820
Lennart Poettering522d4a42011-02-13 15:08:15 +01002821 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
2822 "Creates, deletes and cleans up volatile and temporary files and directories.\n\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002823 " -h --help Show this help\n"
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002824 " --user Execute user configuration\n"
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002825 " --version Show package version\n"
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002826 " --cat-config Show configuration files\n"
Dave Reisner5c795112013-07-24 11:19:24 -04002827 " --create Create marked files/directories\n"
2828 " --clean Clean up marked directories\n"
2829 " --remove Remove marked files/directories\n"
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002830 " --boot Execute actions only safe at boot\n"
Zbigniew Jędrzejewski-Szmek79ca8882015-01-27 21:22:08 -05002831 " --prefix=PATH Only apply rules with the specified prefix\n"
2832 " --exclude-prefix=PATH Ignore rules with the specified prefix\n"
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01002833 " --root=PATH Operate on an alternate filesystem root\n"
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002834 " --replace=PATH Treat arguments as replacement for PATH\n"
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002835 " --no-pager Do not pipe output into a pager\n"
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002836 "\nSee the %s for details.\n"
2837 , program_invocation_short_name
2838 , link
2839 );
2840
2841 return 0;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002842}
2843
2844static int parse_argv(int argc, char *argv[]) {
2845
2846 enum {
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002847 ARG_VERSION = 0x100,
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002848 ARG_CAT_CONFIG,
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002849 ARG_USER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002850 ARG_CREATE,
2851 ARG_CLEAN,
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002852 ARG_REMOVE,
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002853 ARG_BOOT,
Dave Reisner5c795112013-07-24 11:19:24 -04002854 ARG_PREFIX,
2855 ARG_EXCLUDE_PREFIX,
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002856 ARG_ROOT,
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002857 ARG_REPLACE,
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002858 ARG_NO_PAGER,
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002859 };
2860
2861 static const struct option options[] = {
Dave Reisner5c795112013-07-24 11:19:24 -04002862 { "help", no_argument, NULL, 'h' },
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002863 { "user", no_argument, NULL, ARG_USER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002864 { "version", no_argument, NULL, ARG_VERSION },
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002865 { "cat-config", no_argument, NULL, ARG_CAT_CONFIG },
Dave Reisner5c795112013-07-24 11:19:24 -04002866 { "create", no_argument, NULL, ARG_CREATE },
2867 { "clean", no_argument, NULL, ARG_CLEAN },
2868 { "remove", no_argument, NULL, ARG_REMOVE },
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002869 { "boot", no_argument, NULL, ARG_BOOT },
Dave Reisner5c795112013-07-24 11:19:24 -04002870 { "prefix", required_argument, NULL, ARG_PREFIX },
2871 { "exclude-prefix", required_argument, NULL, ARG_EXCLUDE_PREFIX },
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002872 { "root", required_argument, NULL, ARG_ROOT },
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002873 { "replace", required_argument, NULL, ARG_REPLACE },
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002874 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002875 {}
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002876 };
2877
Lennart Poettering0f474362015-10-22 19:28:31 +02002878 int c, r;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002879
2880 assert(argc >= 0);
2881 assert(argv);
2882
Zbigniew Jędrzejewski-Szmek601185b2014-08-02 11:12:21 -04002883 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002884
2885 switch (c) {
2886
2887 case 'h':
Lennart Poettering37ec0fd2018-08-09 10:32:31 +02002888 return help();
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002889
2890 case ARG_VERSION:
Lennart Poettering3f6fd1b2015-09-23 03:01:06 +02002891 return version();
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002892
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002893 case ARG_CAT_CONFIG:
2894 arg_cat_config = true;
2895 break;
2896
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01002897 case ARG_USER:
2898 arg_user = true;
2899 break;
2900
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002901 case ARG_CREATE:
2902 arg_create = true;
2903 break;
2904
2905 case ARG_CLEAN:
2906 arg_clean = true;
2907 break;
2908
2909 case ARG_REMOVE:
2910 arg_remove = true;
2911 break;
2912
Zbigniew Jędrzejewski-Szmek81815652013-12-30 13:00:38 -05002913 case ARG_BOOT:
2914 arg_boot = true;
Zbigniew Jędrzejewski-Szmekc4708f12013-12-20 20:25:39 -05002915 break;
2916
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002917 case ARG_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002918 if (strv_push(&arg_include_prefixes, optarg) < 0)
Dave Reisnera2aced42013-07-24 11:10:05 -04002919 return log_oom();
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002920 break;
2921
Dave Reisner5c795112013-07-24 11:19:24 -04002922 case ARG_EXCLUDE_PREFIX:
Lennart Poettering7bc040f2014-06-11 01:26:28 +02002923 if (strv_push(&arg_exclude_prefixes, optarg) < 0)
Dave Reisner5c795112013-07-24 11:19:24 -04002924 return log_oom();
2925 break;
2926
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002927 case ARG_ROOT:
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002928 r = parse_path_argument_and_warn(optarg, true, &arg_root);
Lennart Poettering0f474362015-10-22 19:28:31 +02002929 if (r < 0)
Lennart Poettering0f03c2a2015-10-22 19:54:29 +02002930 return r;
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07002931 break;
2932
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002933 case ARG_REPLACE:
2934 if (!path_is_absolute(optarg) ||
2935 !endswith(optarg, ".conf")) {
2936 log_error("The argument to --replace= must an absolute path to a config file");
2937 return -EINVAL;
2938 }
2939
2940 arg_replace = optarg;
2941 break;
2942
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02002943 case ARG_NO_PAGER:
2944 arg_no_pager = true;
2945 break;
2946
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002947 case '?':
2948 return -EINVAL;
2949
2950 default:
Lennart Poetteringeb9da372013-11-06 18:28:39 +01002951 assert_not_reached("Unhandled option");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002952 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002953
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002954 if (!arg_clean && !arg_create && !arg_remove && !arg_cat_config) {
Harald Hoyer35b8ca32011-02-21 15:32:17 +01002955 log_error("You need to specify at least one of --clean, --create or --remove.");
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002956 return -EINVAL;
2957 }
2958
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02002959 if (arg_replace && arg_cat_config) {
2960 log_error("Option --replace= is not supported with --cat-config");
2961 return -EINVAL;
2962 }
2963
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002964 if (arg_replace && optind >= argc) {
2965 log_error("When --replace= is given, some configuration items must be specified");
2966 return -EINVAL;
2967 }
2968
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02002969 return 1;
2970}
2971
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002972static 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 -04002973 _cleanup_fclose_ FILE *_f = NULL;
2974 FILE *f;
Lennart Poettering1731e342013-09-17 11:02:02 -05002975 char line[LINE_MAX];
Michal Sekletar78a92a52013-01-18 16:13:08 +01002976 Iterator iterator;
Lennart Poettering1731e342013-09-17 11:02:02 -05002977 unsigned v = 0;
Michal Sekletar78a92a52013-01-18 16:13:08 +01002978 Item *i;
Lennart Poettering4e68ec12016-06-21 13:20:23 +02002979 int r = 0;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002980
2981 assert(fn);
2982
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002983 if (streq(fn, "-")) {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002984 log_debug("Reading config from stdin…");
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002985 fn = "<stdin>";
2986 f = stdin;
2987 } else {
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002988 r = search_and_fopen(fn, "re", arg_root, (const char**) config_dirs, &_f);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002989 if (r < 0) {
2990 if (ignore_enoent && r == -ENOENT) {
2991 log_debug_errno(r, "Failed to open \"%s\", ignoring: %m", fn);
2992 return 0;
2993 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002994
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002995 return log_error_errno(r, "Failed to open '%s': %m", fn);
2996 }
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01002997 log_debug("Reading config file \"%s\"…", fn);
Zbigniew Jędrzejewski-Szmekf7ac1ed2016-04-19 22:34:04 -04002998 f = _f;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01002999 }
3000
Lennart Poettering1731e342013-09-17 11:02:02 -05003001 FOREACH_LINE(line, f, break) {
3002 char *l;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003003 int k;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003004 bool invalid_line = false;
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003005
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003006 v++;
3007
3008 l = strstrip(line);
Yu Watanabe4c701092017-10-04 23:01:32 +09003009 if (IN_SET(*l, 0, '#'))
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003010 continue;
3011
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003012 k = parse_line(fn, v, l, &invalid_line);
3013 if (k < 0) {
3014 if (invalid_line)
3015 /* Allow reporting with a special code if the caller requested this */
3016 *invalid_config = true;
3017 else if (r == 0)
3018 /* The first error becomes our return value */
3019 r = k;
3020 }
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003021 }
3022
Michal Sekletar78a92a52013-01-18 16:13:08 +01003023 /* we have to determine age parameter for each entry of type X */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003024 ORDERED_HASHMAP_FOREACH(i, globs, iterator) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003025 Iterator iter;
3026 Item *j, *candidate_item = NULL;
3027
3028 if (i->type != IGNORE_DIRECTORY_PATH)
3029 continue;
3030
Lennart Poetteringef43a392015-04-22 18:18:56 +02003031 ORDERED_HASHMAP_FOREACH(j, items, iter) {
Lennart Poettering5fb13eb2015-10-21 19:46:23 +02003032 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 +01003033 continue;
3034
3035 if (path_equal(j->path, i->path)) {
3036 candidate_item = j;
3037 break;
3038 }
3039
3040 if ((!candidate_item && path_startswith(i->path, j->path)) ||
3041 (candidate_item && path_startswith(j->path, candidate_item->path) && (fnmatch(i->path, j->path, FNM_PATHNAME | FNM_PERIOD) == 0)))
3042 candidate_item = j;
3043 }
3044
Richard Weinberger9ed2a352014-09-09 11:09:37 +02003045 if (candidate_item && candidate_item->age_set) {
Michal Sekletar78a92a52013-01-18 16:13:08 +01003046 i->age = candidate_item->age;
3047 i->age_set = true;
3048 }
3049 }
3050
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003051 if (ferror(f)) {
Michal Schmidt56f64d92014-11-28 19:29:59 +01003052 log_error_errno(errno, "Failed to read from file %s: %m", fn);
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003053 if (r == 0)
3054 r = -EIO;
3055 }
3056
Lennart Poetteringfba6e682011-02-13 14:00:54 +01003057 return r;
3058}
3059
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003060static int parse_arguments(char **config_dirs, char **args, bool *invalid_config) {
3061 char **arg;
3062 int r;
3063
3064 STRV_FOREACH(arg, args) {
3065 r = read_config_file(config_dirs, *arg, false, invalid_config);
3066 if (r < 0)
3067 return r;
3068 }
3069
3070 return 0;
3071}
3072
3073static int read_config_files(char **config_dirs, char **args, bool *invalid_config) {
3074 _cleanup_strv_free_ char **files = NULL;
3075 _cleanup_free_ char *p = NULL;
3076 char **f;
3077 int r;
3078
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003079 r = conf_files_list_with_replacement(arg_root, config_dirs, arg_replace, &files, &p);
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003080 if (r < 0)
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003081 return r;
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003082
3083 STRV_FOREACH(f, files)
3084 if (p && path_equal(*f, p)) {
3085 log_debug("Parsing arguments at position \"%s\"…", *f);
3086
3087 r = parse_arguments(config_dirs, args, invalid_config);
3088 if (r < 0)
3089 return r;
3090 } else
3091 /* Just warn, ignore result otherwise.
3092 * read_config_file() has some debug output, so no need to print anything. */
3093 (void) read_config_file(config_dirs, *f, true, invalid_config);
3094
3095 return 0;
3096}
3097
Lennart Poettering5008d582010-09-28 02:34:02 +02003098int main(int argc, char *argv[]) {
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003099 int r, k, r_process = 0;
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003100 ItemArray *a;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003101 Iterator iterator;
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003102 _cleanup_strv_free_ char **config_dirs = NULL;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003103 bool invalid_config = false;
Lennart Poettering5008d582010-09-28 02:34:02 +02003104
Lennart Poetteringfdcad0c2012-01-11 22:07:35 +01003105 r = parse_argv(argc, argv);
3106 if (r <= 0)
Lennart Poettering753615e2014-06-12 23:07:17 +02003107 goto finish;
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003108
Lennart Poetteringeb0ca9e2011-02-12 09:31:38 +01003109 log_set_target(LOG_TARGET_AUTO);
Lennart Poettering5008d582010-09-28 02:34:02 +02003110 log_parse_environment();
3111 log_open();
3112
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003113 if (arg_user) {
3114 r = user_config_paths(&config_dirs);
3115 if (r < 0) {
3116 log_error_errno(r, "Failed to initialize configuration directory list: %m");
3117 goto finish;
3118 }
3119 } else {
3120 config_dirs = strv_split_nulstr(CONF_PATHS_NULSTR("tmpfiles.d"));
3121 if (!config_dirs) {
3122 r = log_oom();
3123 goto finish;
3124 }
3125 }
3126
Lennart Poettering79c91ce2018-01-22 15:33:13 +01003127 if (DEBUG_LOGGING) {
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003128 _cleanup_free_ char *t = NULL;
3129
3130 t = strv_join(config_dirs, "\n\t");
3131 if (t)
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003132 log_debug("Looking for configuration files in (higher priority first):\n\t%s", t);
Zbigniew Jędrzejewski-Szmekf2b5ca02017-11-23 11:20:29 +01003133 }
3134
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003135 if (arg_cat_config) {
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003136 (void) pager_open(arg_no_pager, false);
3137
Zbigniew Jędrzejewski-Szmekceaaeb92018-04-26 19:07:54 +02003138 r = cat_config(config_dirs, argv + optind);
3139 goto finish;
3140 }
3141
3142 umask(0022);
3143
3144 mac_selinux_init();
3145
3146 items = ordered_hashmap_new(&string_hash_ops);
3147 globs = ordered_hashmap_new(&string_hash_ops);
3148
3149 if (!items || !globs) {
3150 r = log_oom();
3151 goto finish;
3152 }
3153
Zbigniew Jędrzejewski-Szmeka6d84742018-02-05 14:53:11 +01003154 /* If command line arguments are specified along with --replace, read all
3155 * configuration files and insert the positional arguments at the specified
3156 * place. Otherwise, if command line arguments are specified, execute just
3157 * them, and finally, without --replace= or any positional arguments, just
3158 * read configuration and execute it.
3159 */
3160 if (arg_replace || optind >= argc)
3161 r = read_config_files(config_dirs, argv + optind, &invalid_config);
3162 else
3163 r = parse_arguments(config_dirs, argv + optind, &invalid_config);
3164 if (r < 0)
3165 goto finish;
Lennart Poettering5008d582010-09-28 02:34:02 +02003166
Lennart Poettering17493fa2015-04-10 16:22:22 +02003167 /* The non-globbing ones usually create things, hence we apply
3168 * them first */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003169 ORDERED_HASHMAP_FOREACH(a, items, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003170 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003171 if (k < 0 && r_process == 0)
3172 r_process = k;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003173 }
Lennart Poetteringb8bb3e82011-02-12 09:31:25 +01003174
Lennart Poettering17493fa2015-04-10 16:22:22 +02003175 /* The globbing ones usually alter things, hence we apply them
3176 * second. */
Lennart Poetteringef43a392015-04-22 18:18:56 +02003177 ORDERED_HASHMAP_FOREACH(a, globs, iterator) {
Zbigniew Jędrzejewski-Szmek3f93da92015-01-09 02:00:37 -05003178 k = process_item_array(a);
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003179 if (k < 0 && r_process == 0)
3180 r_process = k;
Zbigniew Jędrzejewski-Szmek1db50422015-01-06 09:53:12 -05003181 }
Lennart Poettering3b63d2d2010-10-18 22:38:41 +02003182
Lennart Poettering5008d582010-09-28 02:34:02 +02003183finish:
Lennart Poetteringdcd5c892018-06-12 15:37:53 +02003184 pager_close();
3185
Zbigniew Jędrzejewski-Szmek224b0e72017-11-28 12:35:49 +01003186 ordered_hashmap_free_with_destructor(items, item_array_free);
3187 ordered_hashmap_free_with_destructor(globs, item_array_free);
Lennart Poettering5008d582010-09-28 02:34:02 +02003188
Lennart Poettering7bc040f2014-06-11 01:26:28 +02003189 free(arg_include_prefixes);
3190 free(arg_exclude_prefixes);
Michael Marineaucf9a4ab2014-03-13 21:32:13 -07003191 free(arg_root);
Dave Reisnera2aced42013-07-24 11:10:05 -04003192
Lennart Poettering17b90522011-02-14 21:55:06 +01003193 set_free_free(unix_sockets);
3194
WaLyong Chocc56faf2014-10-23 17:23:46 +09003195 mac_selinux_finish();
Lennart Poettering29003cf2010-10-19 19:36:45 +02003196
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003197 if (r < 0 || ERRNO_IS_RESOURCE(-r_process))
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003198 return EXIT_FAILURE;
3199 else if (invalid_config)
3200 return EX_DATAERR;
Zbigniew Jędrzejewski-Szmekbb9947b2018-03-29 16:19:33 +02003201 else if (r_process < 0)
3202 return EX_CANTCREAT;
Zbigniew Jędrzejewski-Szmekd9daae52017-11-22 14:13:32 +01003203 else
3204 return EXIT_SUCCESS;
Lennart Poettering5008d582010-09-28 02:34:02 +02003205}