]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/fs-util.c
test: add more testcases for prefix_roota()
[thirdparty/systemd.git] / src / basic / fs-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
f4f15635 2
11c3a366
TA
3#include <errno.h>
4#include <stddef.h>
5#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <sys/stat.h>
1c73b069 9#include <linux/falloc.h>
655f2da0 10#include <linux/magic.h>
11c3a366
TA
11#include <time.h>
12#include <unistd.h>
13
b5efdb8a 14#include "alloc-util.h"
f4f15635
LP
15#include "dirent-util.h"
16#include "fd-util.h"
f4f15635 17#include "fs-util.h"
fd74c6f3 18#include "locale-util.h"
11c3a366
TA
19#include "log.h"
20#include "macro.h"
21#include "missing.h"
93cc7779
TA
22#include "mkdir.h"
23#include "parse-util.h"
24#include "path-util.h"
dccca82b 25#include "process-util.h"
34a8f081 26#include "stat-util.h"
430fbf8e 27#include "stdio-util.h"
f4f15635
LP
28#include "string-util.h"
29#include "strv.h"
93cc7779 30#include "time-util.h"
e4de7287 31#include "tmpfile-util.h"
ee104e11 32#include "user-util.h"
f4f15635
LP
33#include "util.h"
34
35int unlink_noerrno(const char *path) {
36 PROTECT_ERRNO;
37 int r;
38
39 r = unlink(path);
40 if (r < 0)
41 return -errno;
42
43 return 0;
44}
45
46int rmdir_parents(const char *path, const char *stop) {
47 size_t l;
48 int r = 0;
49
50 assert(path);
51 assert(stop);
52
53 l = strlen(path);
54
55 /* Skip trailing slashes */
56 while (l > 0 && path[l-1] == '/')
57 l--;
58
59 while (l > 0) {
60 char *t;
61
62 /* Skip last component */
63 while (l > 0 && path[l-1] != '/')
64 l--;
65
66 /* Skip trailing slashes */
67 while (l > 0 && path[l-1] == '/')
68 l--;
69
70 if (l <= 0)
71 break;
72
73 t = strndup(path, l);
74 if (!t)
75 return -ENOMEM;
76
77 if (path_startswith(stop, t)) {
78 free(t);
79 return 0;
80 }
81
82 r = rmdir(t);
83 free(t);
84
85 if (r < 0)
86 if (errno != ENOENT)
87 return -errno;
88 }
89
90 return 0;
91}
92
f4f15635 93int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath) {
2f15b625 94 int r;
f4f15635 95
2f15b625
LP
96 /* Try the ideal approach first */
97 if (renameat2(olddirfd, oldpath, newdirfd, newpath, RENAME_NOREPLACE) >= 0)
f4f15635
LP
98 return 0;
99
2f15b625
LP
100 /* renameat2() exists since Linux 3.15, btrfs and FAT added support for it later. If it is not implemented,
101 * fall back to a different method. */
102 if (!IN_SET(errno, EINVAL, ENOSYS, ENOTTY))
f4f15635
LP
103 return -errno;
104
2f15b625
LP
105 /* Let's try to use linkat()+unlinkat() as fallback. This doesn't work on directories and on some file systems
106 * that do not support hard links (such as FAT, most prominently), but for files it's pretty close to what we
107 * want — though not atomic (i.e. for a short period both the new and the old filename will exist). */
108 if (linkat(olddirfd, oldpath, newdirfd, newpath, 0) >= 0) {
109
110 if (unlinkat(olddirfd, oldpath, 0) < 0) {
111 r = -errno; /* Backup errno before the following unlinkat() alters it */
112 (void) unlinkat(newdirfd, newpath, 0);
113 return r;
114 }
115
116 return 0;
f4f15635
LP
117 }
118
2f15b625 119 if (!IN_SET(errno, EINVAL, ENOSYS, ENOTTY, EPERM)) /* FAT returns EPERM on link()… */
f4f15635
LP
120 return -errno;
121
2f15b625
LP
122 /* OK, neither RENAME_NOREPLACE nor linkat()+unlinkat() worked. Let's then fallback to the racy TOCTOU
123 * vulnerable accessat(F_OK) check followed by classic, replacing renameat(), we have nothing better. */
124
125 if (faccessat(newdirfd, newpath, F_OK, AT_SYMLINK_NOFOLLOW) >= 0)
126 return -EEXIST;
127 if (errno != ENOENT)
128 return -errno;
129
130 if (renameat(olddirfd, oldpath, newdirfd, newpath) < 0)
f4f15635 131 return -errno;
f4f15635
LP
132
133 return 0;
134}
135
136int readlinkat_malloc(int fd, const char *p, char **ret) {
8e060ec2 137 size_t l = FILENAME_MAX+1;
f4f15635
LP
138 int r;
139
140 assert(p);
141 assert(ret);
142
143 for (;;) {
144 char *c;
145 ssize_t n;
146
147 c = new(char, l);
148 if (!c)
149 return -ENOMEM;
150
151 n = readlinkat(fd, p, c, l-1);
152 if (n < 0) {
153 r = -errno;
154 free(c);
155 return r;
156 }
157
158 if ((size_t) n < l-1) {
159 c[n] = 0;
160 *ret = c;
161 return 0;
162 }
163
164 free(c);
165 l *= 2;
166 }
167}
168
169int readlink_malloc(const char *p, char **ret) {
170 return readlinkat_malloc(AT_FDCWD, p, ret);
171}
172
173int readlink_value(const char *p, char **ret) {
174 _cleanup_free_ char *link = NULL;
175 char *value;
176 int r;
177
178 r = readlink_malloc(p, &link);
179 if (r < 0)
180 return r;
181
182 value = basename(link);
183 if (!value)
184 return -ENOENT;
185
186 value = strdup(value);
187 if (!value)
188 return -ENOMEM;
189
190 *ret = value;
191
192 return 0;
193}
194
195int readlink_and_make_absolute(const char *p, char **r) {
196 _cleanup_free_ char *target = NULL;
197 char *k;
198 int j;
199
200 assert(p);
201 assert(r);
202
203 j = readlink_malloc(p, &target);
204 if (j < 0)
205 return j;
206
207 k = file_in_same_dir(p, target);
208 if (!k)
209 return -ENOMEM;
210
211 *r = k;
212 return 0;
213}
214
f4f15635 215int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
de321f52 216 _cleanup_close_ int fd = -1;
30ff18d8 217
f4f15635
LP
218 assert(path);
219
30ff18d8
LP
220 fd = open(path, O_PATH|O_CLOEXEC|O_NOFOLLOW); /* Let's acquire an O_PATH fd, as precaution to change
221 * mode/owner on the same file */
de321f52
LP
222 if (fd < 0)
223 return -errno;
224
2dbb7e94 225 return fchmod_and_chown(fd, mode, uid, gid);
b8da477e
YW
226}
227
228int fchmod_and_chown(int fd, mode_t mode, uid_t uid, gid_t gid) {
2dbb7e94 229 bool do_chown, do_chmod;
30ff18d8 230 struct stat st;
30ff18d8 231
2dbb7e94
LP
232 /* Change ownership and access mode of the specified fd. Tries to do so safely, ensuring that at no
233 * point in time the access mode is above the old access mode under the old ownership or the new
234 * access mode under the new ownership. Note: this call tries hard to leave the access mode
235 * unaffected if the uid/gid is changed, i.e. it undoes implicit suid/sgid dropping the kernel does
236 * on chown().
237 *
71ec74d1 238 * This call is happy with O_PATH fds. */
b8da477e 239
71ec74d1 240 if (fstat(fd, &st) < 0)
2dbb7e94 241 return -errno;
de321f52 242
2dbb7e94
LP
243 do_chown =
244 (uid != UID_INVALID && st.st_uid != uid) ||
245 (gid != GID_INVALID && st.st_gid != gid);
de321f52 246
2dbb7e94
LP
247 do_chmod =
248 !S_ISLNK(st.st_mode) && /* chmod is not defined on symlinks */
249 ((mode != MODE_INVALID && ((st.st_mode ^ mode) & 07777) != 0) ||
250 do_chown); /* If we change ownership, make sure we reset the mode afterwards, since chown()
251 * modifies the access mode too */
30ff18d8 252
2dbb7e94
LP
253 if (mode == MODE_INVALID)
254 mode = st.st_mode; /* If we only shall do a chown(), save original mode, since chown() might break it. */
255 else if ((mode & S_IFMT) != 0 && ((mode ^ st.st_mode) & S_IFMT) != 0)
256 return -EINVAL; /* insist on the right file type if it was specified */
de321f52 257
2dbb7e94
LP
258 if (do_chown && do_chmod) {
259 mode_t minimal = st.st_mode & mode; /* the subset of the old and the new mask */
30ff18d8 260
2dbb7e94 261 if (((minimal ^ st.st_mode) & 07777) != 0)
71ec74d1 262 if (fchmod_opath(fd, minimal & 07777) < 0)
30ff18d8 263 return -errno;
de321f52 264 }
b8da477e 265
2dbb7e94 266 if (do_chown)
71ec74d1 267 if (fchownat(fd, "", uid, gid, AT_EMPTY_PATH) < 0)
2dbb7e94 268 return -errno;
30ff18d8 269
2dbb7e94 270 if (do_chmod)
71ec74d1 271 if (fchmod_opath(fd, mode & 07777) < 0)
2dbb7e94 272 return -errno;
30ff18d8 273
2dbb7e94 274 return do_chown || do_chmod;
f4f15635
LP
275}
276
f4f15635
LP
277int fchmod_umask(int fd, mode_t m) {
278 mode_t u;
279 int r;
280
281 u = umask(0777);
282 r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
283 umask(u);
284
285 return r;
286}
287
4dfaa528 288int fchmod_opath(int fd, mode_t m) {
22dd8d35 289 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
4dfaa528
FB
290
291 /* This function operates also on fd that might have been opened with
292 * O_PATH. Indeed fchmodat() doesn't have the AT_EMPTY_PATH flag like
293 * fchownat() does. */
294
295 xsprintf(procfs_path, "/proc/self/fd/%i", fd);
4dfaa528
FB
296 if (chmod(procfs_path, m) < 0)
297 return -errno;
298
299 return 0;
300}
301
f4f15635
LP
302int fd_warn_permissions(const char *path, int fd) {
303 struct stat st;
304
305 if (fstat(fd, &st) < 0)
306 return -errno;
307
b6cceaae
LP
308 /* Don't complain if we are reading something that is not a file, for example /dev/null */
309 if (!S_ISREG(st.st_mode))
310 return 0;
311
f4f15635
LP
312 if (st.st_mode & 0111)
313 log_warning("Configuration file %s is marked executable. Please remove executable permission bits. Proceeding anyway.", path);
314
315 if (st.st_mode & 0002)
316 log_warning("Configuration file %s is marked world-writable. Please remove world writability permission bits. Proceeding anyway.", path);
317
df0ff127 318 if (getpid_cached() == 1 && (st.st_mode & 0044) != 0044)
f4f15635
LP
319 log_warning("Configuration file %s is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.", path);
320
321 return 0;
322}
323
324int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode) {
9e3fa6e8
LP
325 char fdpath[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
326 _cleanup_close_ int fd = -1;
327 int r, ret = 0;
f4f15635
LP
328
329 assert(path);
330
9e3fa6e8
LP
331 /* Note that touch_file() does not follow symlinks: if invoked on an existing symlink, then it is the symlink
332 * itself which is updated, not its target
333 *
334 * Returns the first error we encounter, but tries to apply as much as possible. */
f4f15635 335
9e3fa6e8
LP
336 if (parents)
337 (void) mkdir_parents(path, 0755);
338
339 /* Initially, we try to open the node with O_PATH, so that we get a reference to the node. This is useful in
340 * case the path refers to an existing device or socket node, as we can open it successfully in all cases, and
341 * won't trigger any driver magic or so. */
342 fd = open(path, O_PATH|O_CLOEXEC|O_NOFOLLOW);
343 if (fd < 0) {
344 if (errno != ENOENT)
f4f15635 345 return -errno;
f4f15635 346
9e3fa6e8
LP
347 /* if the node doesn't exist yet, we create it, but with O_EXCL, so that we only create a regular file
348 * here, and nothing else */
349 fd = open(path, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, IN_SET(mode, 0, MODE_INVALID) ? 0644 : mode);
350 if (fd < 0)
f4f15635
LP
351 return -errno;
352 }
353
9e3fa6e8
LP
354 /* Let's make a path from the fd, and operate on that. With this logic, we can adjust the access mode,
355 * ownership and time of the file node in all cases, even if the fd refers to an O_PATH object — which is
356 * something fchown(), fchmod(), futimensat() don't allow. */
357 xsprintf(fdpath, "/proc/self/fd/%i", fd);
358
4b3b5bc7 359 ret = fchmod_and_chown(fd, mode, uid, gid);
9e3fa6e8 360
f4f15635
LP
361 if (stamp != USEC_INFINITY) {
362 struct timespec ts[2];
363
364 timespec_store(&ts[0], stamp);
365 ts[1] = ts[0];
9e3fa6e8 366 r = utimensat(AT_FDCWD, fdpath, ts, 0);
f4f15635 367 } else
9e3fa6e8
LP
368 r = utimensat(AT_FDCWD, fdpath, NULL, 0);
369 if (r < 0 && ret >= 0)
f4f15635
LP
370 return -errno;
371
9e3fa6e8 372 return ret;
f4f15635
LP
373}
374
375int touch(const char *path) {
ee735086 376 return touch_file(path, false, USEC_INFINITY, UID_INVALID, GID_INVALID, MODE_INVALID);
f4f15635
LP
377}
378
6c9c51e5
YW
379int symlink_idempotent(const char *from, const char *to, bool make_relative) {
380 _cleanup_free_ char *relpath = NULL;
f4f15635
LP
381 int r;
382
383 assert(from);
384 assert(to);
385
6c9c51e5
YW
386 if (make_relative) {
387 _cleanup_free_ char *parent = NULL;
388
389 parent = dirname_malloc(to);
390 if (!parent)
391 return -ENOMEM;
392
393 r = path_make_relative(parent, from, &relpath);
394 if (r < 0)
395 return r;
396
397 from = relpath;
398 }
399
f4f15635 400 if (symlink(from, to) < 0) {
77b79723
LP
401 _cleanup_free_ char *p = NULL;
402
f4f15635
LP
403 if (errno != EEXIST)
404 return -errno;
405
406 r = readlink_malloc(to, &p);
77b79723
LP
407 if (r == -EINVAL) /* Not a symlink? In that case return the original error we encountered: -EEXIST */
408 return -EEXIST;
409 if (r < 0) /* Any other error? In that case propagate it as is */
f4f15635
LP
410 return r;
411
77b79723
LP
412 if (!streq(p, from)) /* Not the symlink we want it to be? In that case, propagate the original -EEXIST */
413 return -EEXIST;
f4f15635
LP
414 }
415
416 return 0;
417}
418
419int symlink_atomic(const char *from, const char *to) {
420 _cleanup_free_ char *t = NULL;
421 int r;
422
423 assert(from);
424 assert(to);
425
426 r = tempfn_random(to, NULL, &t);
427 if (r < 0)
428 return r;
429
430 if (symlink(from, t) < 0)
431 return -errno;
432
433 if (rename(t, to) < 0) {
434 unlink_noerrno(t);
435 return -errno;
436 }
437
438 return 0;
439}
440
441int mknod_atomic(const char *path, mode_t mode, dev_t dev) {
442 _cleanup_free_ char *t = NULL;
443 int r;
444
445 assert(path);
446
447 r = tempfn_random(path, NULL, &t);
448 if (r < 0)
449 return r;
450
451 if (mknod(t, mode, dev) < 0)
452 return -errno;
453
454 if (rename(t, path) < 0) {
455 unlink_noerrno(t);
456 return -errno;
457 }
458
459 return 0;
460}
461
462int mkfifo_atomic(const char *path, mode_t mode) {
463 _cleanup_free_ char *t = NULL;
464 int r;
465
466 assert(path);
467
468 r = tempfn_random(path, NULL, &t);
469 if (r < 0)
470 return r;
471
472 if (mkfifo(t, mode) < 0)
473 return -errno;
474
475 if (rename(t, path) < 0) {
4fe3828c
FB
476 unlink_noerrno(t);
477 return -errno;
478 }
479
480 return 0;
481}
482
483int mkfifoat_atomic(int dirfd, const char *path, mode_t mode) {
484 _cleanup_free_ char *t = NULL;
485 int r;
486
487 assert(path);
488
489 if (path_is_absolute(path))
490 return mkfifo_atomic(path, mode);
491
492 /* We're only interested in the (random) filename. */
493 r = tempfn_random_child("", NULL, &t);
494 if (r < 0)
495 return r;
496
497 if (mkfifoat(dirfd, t, mode) < 0)
498 return -errno;
499
500 if (renameat(dirfd, t, dirfd, path) < 0) {
f4f15635
LP
501 unlink_noerrno(t);
502 return -errno;
503 }
504
505 return 0;
506}
507
508int get_files_in_directory(const char *path, char ***list) {
509 _cleanup_closedir_ DIR *d = NULL;
8fb3f009 510 struct dirent *de;
f4f15635
LP
511 size_t bufsize = 0, n = 0;
512 _cleanup_strv_free_ char **l = NULL;
513
514 assert(path);
515
516 /* Returns all files in a directory in *list, and the number
517 * of files as return value. If list is NULL returns only the
518 * number. */
519
520 d = opendir(path);
521 if (!d)
522 return -errno;
523
8fb3f009 524 FOREACH_DIRENT_ALL(de, d, return -errno) {
f4f15635
LP
525 dirent_ensure_type(d, de);
526
527 if (!dirent_is_file(de))
528 continue;
529
530 if (list) {
531 /* one extra slot is needed for the terminating NULL */
532 if (!GREEDY_REALLOC(l, bufsize, n + 2))
533 return -ENOMEM;
534
535 l[n] = strdup(de->d_name);
536 if (!l[n])
537 return -ENOMEM;
538
539 l[++n] = NULL;
540 } else
541 n++;
542 }
543
ae2a15bc
LP
544 if (list)
545 *list = TAKE_PTR(l);
f4f15635
LP
546
547 return n;
548}
430fbf8e 549
992e8f22
LP
550static int getenv_tmp_dir(const char **ret_path) {
551 const char *n;
552 int r, ret = 0;
34a8f081 553
992e8f22 554 assert(ret_path);
34a8f081 555
992e8f22
LP
556 /* We use the same order of environment variables python uses in tempfile.gettempdir():
557 * https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir */
558 FOREACH_STRING(n, "TMPDIR", "TEMP", "TMP") {
559 const char *e;
560
561 e = secure_getenv(n);
562 if (!e)
563 continue;
564 if (!path_is_absolute(e)) {
565 r = -ENOTDIR;
566 goto next;
567 }
99be45a4 568 if (!path_is_normalized(e)) {
992e8f22
LP
569 r = -EPERM;
570 goto next;
571 }
572
573 r = is_dir(e, true);
574 if (r < 0)
575 goto next;
576 if (r == 0) {
577 r = -ENOTDIR;
578 goto next;
579 }
580
581 *ret_path = e;
582 return 1;
583
584 next:
585 /* Remember first error, to make this more debuggable */
586 if (ret >= 0)
587 ret = r;
34a8f081
OW
588 }
589
992e8f22
LP
590 if (ret < 0)
591 return ret;
34a8f081 592
992e8f22
LP
593 *ret_path = NULL;
594 return ret;
595}
34a8f081 596
992e8f22
LP
597static int tmp_dir_internal(const char *def, const char **ret) {
598 const char *e;
599 int r, k;
600
601 assert(def);
602 assert(ret);
603
604 r = getenv_tmp_dir(&e);
605 if (r > 0) {
606 *ret = e;
607 return 0;
608 }
609
610 k = is_dir(def, true);
611 if (k == 0)
612 k = -ENOTDIR;
613 if (k < 0)
614 return r < 0 ? r : k;
615
616 *ret = def;
34a8f081
OW
617 return 0;
618}
619
992e8f22
LP
620int var_tmp_dir(const char **ret) {
621
622 /* Returns the location for "larger" temporary files, that is backed by physical storage if available, and thus
623 * even might survive a boot: /var/tmp. If $TMPDIR (or related environment variables) are set, its value is
624 * returned preferably however. Note that both this function and tmp_dir() below are affected by $TMPDIR,
625 * making it a variable that overrides all temporary file storage locations. */
626
627 return tmp_dir_internal("/var/tmp", ret);
628}
629
630int tmp_dir(const char **ret) {
631
632 /* Similar to var_tmp_dir() above, but returns the location for "smaller" temporary files, which is usually
633 * backed by an in-memory file system: /tmp. */
634
635 return tmp_dir_internal("/tmp", ret);
636}
637
af229d7a
ZJS
638int unlink_or_warn(const char *filename) {
639 if (unlink(filename) < 0 && errno != ENOENT)
640 /* If the file doesn't exist and the fs simply was read-only (in which
641 * case unlink() returns EROFS even if the file doesn't exist), don't
642 * complain */
643 if (errno != EROFS || access(filename, F_OK) >= 0)
644 return log_error_errno(errno, "Failed to remove \"%s\": %m", filename);
645
646 return 0;
647}
648
430fbf8e 649int inotify_add_watch_fd(int fd, int what, uint32_t mask) {
fbd0b64f 650 char path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int) + 1];
430fbf8e
LP
651 int r;
652
653 /* This is like inotify_add_watch(), except that the file to watch is not referenced by a path, but by an fd */
654 xsprintf(path, "/proc/self/fd/%i", what);
655
656 r = inotify_add_watch(fd, path, mask);
657 if (r < 0)
658 return -errno;
659
660 return r;
661}
d944dc95 662
b85ee2ec 663static bool unsafe_transition(const struct stat *a, const struct stat *b) {
f14f1806
LP
664 /* Returns true if the transition from a to b is safe, i.e. that we never transition from unprivileged to
665 * privileged files or directories. Why bother? So that unprivileged code can't symlink to privileged files
666 * making us believe we read something safe even though it isn't safe in the specific context we open it in. */
667
668 if (a->st_uid == 0) /* Transitioning from privileged to unprivileged is always fine */
b85ee2ec 669 return false;
f14f1806 670
b85ee2ec 671 return a->st_uid != b->st_uid; /* Otherwise we need to stay within the same UID */
f14f1806
LP
672}
673
fd74c6f3
FB
674static int log_unsafe_transition(int a, int b, const char *path, unsigned flags) {
675 _cleanup_free_ char *n1 = NULL, *n2 = NULL;
676
677 if (!FLAGS_SET(flags, CHASE_WARN))
36c97dec 678 return -ENOLINK;
fd74c6f3
FB
679
680 (void) fd_get_path(a, &n1);
681 (void) fd_get_path(b, &n2);
682
36c97dec 683 return log_warning_errno(SYNTHETIC_ERRNO(ENOLINK),
fd74c6f3 684 "Detected unsafe path transition %s %s %s during canonicalization of %s.",
9a6f746f 685 n1, special_glyph(SPECIAL_GLYPH_ARROW), n2, path);
fd74c6f3
FB
686}
687
145b8d0f
FB
688static int log_autofs_mount_point(int fd, const char *path, unsigned flags) {
689 _cleanup_free_ char *n1 = NULL;
690
691 if (!FLAGS_SET(flags, CHASE_WARN))
692 return -EREMOTE;
693
694 (void) fd_get_path(fd, &n1);
695
696 return log_warning_errno(SYNTHETIC_ERRNO(EREMOTE),
697 "Detected autofs mount point %s during canonicalization of %s.",
698 n1, path);
f14f1806
LP
699}
700
c4f4fce7 701int chase_symlinks(const char *path, const char *original_root, unsigned flags, char **ret) {
d944dc95
LP
702 _cleanup_free_ char *buffer = NULL, *done = NULL, *root = NULL;
703 _cleanup_close_ int fd = -1;
f10f4215 704 unsigned max_follow = CHASE_SYMLINKS_MAX; /* how many symlinks to follow before giving up and returning ELOOP */
f14f1806 705 struct stat previous_stat;
a9fb0867 706 bool exists = true;
d944dc95
LP
707 char *todo;
708 int r;
709
710 assert(path);
711
1ed34d75 712 /* Either the file may be missing, or we return an fd to the final object, but both make no sense */
d94a24ca 713 if (FLAGS_SET(flags, CHASE_NONEXISTENT | CHASE_OPEN))
1ed34d75
LP
714 return -EINVAL;
715
d94a24ca 716 if (FLAGS_SET(flags, CHASE_STEP | CHASE_OPEN))
49eb3659
LP
717 return -EINVAL;
718
a49424af
LP
719 if (isempty(path))
720 return -EINVAL;
721
d944dc95
LP
722 /* This is a lot like canonicalize_file_name(), but takes an additional "root" parameter, that allows following
723 * symlinks relative to a root directory, instead of the root of the host.
724 *
fc4b68e5 725 * Note that "root" primarily matters if we encounter an absolute symlink. It is also used when following
c4f4fce7
LP
726 * relative symlinks to ensure they cannot be used to "escape" the root directory. The path parameter passed is
727 * assumed to be already prefixed by it, except if the CHASE_PREFIX_ROOT flag is set, in which case it is first
728 * prefixed accordingly.
d944dc95
LP
729 *
730 * Algorithmically this operates on two path buffers: "done" are the components of the path we already
731 * processed and resolved symlinks, "." and ".." of. "todo" are the components of the path we still need to
732 * process. On each iteration, we move one component from "todo" to "done", processing it's special meaning
733 * each time. The "todo" path always starts with at least one slash, the "done" path always ends in no
734 * slash. We always keep an O_PATH fd to the component we are currently processing, thus keeping lookup races
fc4b68e5
LP
735 * at a minimum.
736 *
737 * Suggested usage: whenever you want to canonicalize a path, use this function. Pass the absolute path you got
738 * as-is: fully qualified and relative to your host's root. Optionally, specify the root parameter to tell this
739 * function what to do when encountering a symlink with an absolute path as directory: prefix it by the
49eb3659
LP
740 * specified path.
741 *
742 * There are three ways to invoke this function:
743 *
744 * 1. Without CHASE_STEP or CHASE_OPEN: in this case the path is resolved and the normalized path is returned
745 * in `ret`. The return value is < 0 on error. If CHASE_NONEXISTENT is also set 0 is returned if the file
746 * doesn't exist, > 0 otherwise. If CHASE_NONEXISTENT is not set >= 0 is returned if the destination was
747 * found, -ENOENT if it doesn't.
748 *
749 * 2. With CHASE_OPEN: in this case the destination is opened after chasing it as O_PATH and this file
750 * descriptor is returned as return value. This is useful to open files relative to some root
751 * directory. Note that the returned O_PATH file descriptors must be converted into a regular one (using
752 * fd_reopen() or such) before it can be used for reading/writing. CHASE_OPEN may not be combined with
753 * CHASE_NONEXISTENT.
754 *
755 * 3. With CHASE_STEP: in this case only a single step of the normalization is executed, i.e. only the first
756 * symlink or ".." component of the path is resolved, and the resulting path is returned. This is useful if
757 * a caller wants to trace the a path through the file system verbosely. Returns < 0 on error, > 0 if the
758 * path is fully normalized, and == 0 for each normalization step. This may be combined with
759 * CHASE_NONEXISTENT, in which case 1 is returned when a component is not found.
760 *
36c97dec
FB
761 * 4. With CHASE_SAFE: in this case the path must not contain unsafe transitions, i.e. transitions from
762 * unprivileged to privileged files or directories. In such cases the return value is -ENOLINK. If
763 * CHASE_WARN is also set a warning describing the unsafe transition is emitted.
764 *
145b8d0f
FB
765 * 5. With CHASE_NO_AUTOFS: in this case if an autofs mount point is encountered, the path normalization is
766 * aborted and -EREMOTE is returned. If CHASE_WARN is also set a warning showing the path of the mount point
767 * is emitted.
768 *
49eb3659 769 * */
d944dc95 770
22bc57c5 771 /* A root directory of "/" or "" is identical to none */
57ea45e1 772 if (empty_or_root(original_root))
22bc57c5 773 original_root = NULL;
b1bfb848 774
49eb3659 775 if (!original_root && !ret && (flags & (CHASE_NONEXISTENT|CHASE_NO_AUTOFS|CHASE_SAFE|CHASE_OPEN|CHASE_STEP)) == CHASE_OPEN) {
244d2f07
LP
776 /* Shortcut the CHASE_OPEN case if the caller isn't interested in the actual path and has no root set
777 * and doesn't care about any of the other special features we provide either. */
1f56e4ce 778 r = open(path, O_PATH|O_CLOEXEC|((flags & CHASE_NOFOLLOW) ? O_NOFOLLOW : 0));
244d2f07
LP
779 if (r < 0)
780 return -errno;
781
782 return r;
783 }
784
c4f4fce7
LP
785 if (original_root) {
786 r = path_make_absolute_cwd(original_root, &root);
d944dc95
LP
787 if (r < 0)
788 return r;
c4f4fce7 789
382a5078
LP
790 if (flags & CHASE_PREFIX_ROOT) {
791
792 /* We don't support relative paths in combination with a root directory */
793 if (!path_is_absolute(path))
794 return -EINVAL;
795
c4f4fce7 796 path = prefix_roota(root, path);
382a5078 797 }
d944dc95
LP
798 }
799
c4f4fce7
LP
800 r = path_make_absolute_cwd(path, &buffer);
801 if (r < 0)
802 return r;
803
d944dc95
LP
804 fd = open("/", O_CLOEXEC|O_NOFOLLOW|O_PATH);
805 if (fd < 0)
806 return -errno;
807
f14f1806
LP
808 if (flags & CHASE_SAFE) {
809 if (fstat(fd, &previous_stat) < 0)
810 return -errno;
811 }
812
d944dc95
LP
813 todo = buffer;
814 for (;;) {
815 _cleanup_free_ char *first = NULL;
816 _cleanup_close_ int child = -1;
817 struct stat st;
818 size_t n, m;
819
820 /* Determine length of first component in the path */
821 n = strspn(todo, "/"); /* The slashes */
822 m = n + strcspn(todo + n, "/"); /* The entire length of the component */
823
824 /* Extract the first component. */
825 first = strndup(todo, m);
826 if (!first)
827 return -ENOMEM;
828
829 todo += m;
830
b12d25a8
ZJS
831 /* Empty? Then we reached the end. */
832 if (isempty(first))
833 break;
834
d944dc95 835 /* Just a single slash? Then we reached the end. */
b12d25a8
ZJS
836 if (path_equal(first, "/")) {
837 /* Preserve the trailing slash */
62570f6f
LP
838
839 if (flags & CHASE_TRAIL_SLASH)
840 if (!strextend(&done, "/", NULL))
841 return -ENOMEM;
b12d25a8 842
d944dc95 843 break;
b12d25a8 844 }
d944dc95
LP
845
846 /* Just a dot? Then let's eat this up. */
847 if (path_equal(first, "/."))
848 continue;
849
850 /* Two dots? Then chop off the last bit of what we already found out. */
851 if (path_equal(first, "/..")) {
852 _cleanup_free_ char *parent = NULL;
2b6d2dda 853 _cleanup_close_ int fd_parent = -1;
d944dc95 854
a4eaf3cf
LP
855 /* If we already are at the top, then going up will not change anything. This is in-line with
856 * how the kernel handles this. */
57ea45e1 857 if (empty_or_root(done))
a4eaf3cf 858 continue;
d944dc95
LP
859
860 parent = dirname_malloc(done);
861 if (!parent)
862 return -ENOMEM;
863
a4eaf3cf 864 /* Don't allow this to leave the root dir. */
d944dc95
LP
865 if (root &&
866 path_startswith(done, root) &&
867 !path_startswith(parent, root))
a4eaf3cf 868 continue;
d944dc95 869
3b319885 870 free_and_replace(done, parent);
d944dc95 871
49eb3659
LP
872 if (flags & CHASE_STEP)
873 goto chased_one;
874
d944dc95
LP
875 fd_parent = openat(fd, "..", O_CLOEXEC|O_NOFOLLOW|O_PATH);
876 if (fd_parent < 0)
877 return -errno;
878
f14f1806
LP
879 if (flags & CHASE_SAFE) {
880 if (fstat(fd_parent, &st) < 0)
881 return -errno;
882
b85ee2ec 883 if (unsafe_transition(&previous_stat, &st))
fd74c6f3 884 return log_unsafe_transition(fd, fd_parent, path, flags);
f14f1806
LP
885
886 previous_stat = st;
887 }
888
d944dc95 889 safe_close(fd);
c10d6bdb 890 fd = TAKE_FD(fd_parent);
d944dc95
LP
891
892 continue;
893 }
894
895 /* Otherwise let's see what this is. */
896 child = openat(fd, first + n, O_CLOEXEC|O_NOFOLLOW|O_PATH);
a9fb0867
LP
897 if (child < 0) {
898
899 if (errno == ENOENT &&
cb638b5e 900 (flags & CHASE_NONEXISTENT) &&
99be45a4 901 (isempty(todo) || path_is_normalized(todo))) {
a9fb0867 902
cb638b5e 903 /* If CHASE_NONEXISTENT is set, and the path does not exist, then that's OK, return
a9fb0867
LP
904 * what we got so far. But don't allow this if the remaining path contains "../ or "./"
905 * or something else weird. */
906
a1904a46
YW
907 /* If done is "/", as first also contains slash at the head, then remove this redundant slash. */
908 if (streq_ptr(done, "/"))
909 *done = '\0';
910
a9fb0867
LP
911 if (!strextend(&done, first, todo, NULL))
912 return -ENOMEM;
913
914 exists = false;
915 break;
916 }
917
d944dc95 918 return -errno;
a9fb0867 919 }
d944dc95
LP
920
921 if (fstat(child, &st) < 0)
922 return -errno;
f14f1806 923 if ((flags & CHASE_SAFE) &&
cc14a6c0 924 (empty_or_root(root) || (size_t)(todo - buffer) > strlen(root)) &&
b85ee2ec 925 unsafe_transition(&previous_stat, &st))
fd74c6f3 926 return log_unsafe_transition(fd, child, path, flags);
f14f1806
LP
927
928 previous_stat = st;
929
655f2da0 930 if ((flags & CHASE_NO_AUTOFS) &&
a66fee2e 931 fd_is_fs_type(child, AUTOFS_SUPER_MAGIC) > 0)
145b8d0f 932 return log_autofs_mount_point(child, path, flags);
d944dc95 933
1f56e4ce 934 if (S_ISLNK(st.st_mode) && !((flags & CHASE_NOFOLLOW) && isempty(todo))) {
877777d7
CCW
935 char *joined;
936
d944dc95
LP
937 _cleanup_free_ char *destination = NULL;
938
939 /* This is a symlink, in this case read the destination. But let's make sure we don't follow
940 * symlinks without bounds. */
941 if (--max_follow <= 0)
942 return -ELOOP;
943
944 r = readlinkat_malloc(fd, first + n, &destination);
945 if (r < 0)
946 return r;
947 if (isempty(destination))
948 return -EINVAL;
949
950 if (path_is_absolute(destination)) {
951
952 /* An absolute destination. Start the loop from the beginning, but use the root
953 * directory as base. */
954
955 safe_close(fd);
956 fd = open(root ?: "/", O_CLOEXEC|O_NOFOLLOW|O_PATH);
957 if (fd < 0)
958 return -errno;
959
f14f1806
LP
960 if (flags & CHASE_SAFE) {
961 if (fstat(fd, &st) < 0)
962 return -errno;
963
b85ee2ec 964 if (unsafe_transition(&previous_stat, &st))
fd74c6f3 965 return log_unsafe_transition(child, fd, path, flags);
f14f1806
LP
966
967 previous_stat = st;
968 }
969
b539437a
YW
970 free(done);
971
d944dc95
LP
972 /* Note that we do not revalidate the root, we take it as is. */
973 if (isempty(root))
974 done = NULL;
975 else {
976 done = strdup(root);
977 if (!done)
978 return -ENOMEM;
979 }
980
8c4a8ea2
LP
981 /* Prefix what's left to do with what we just read, and start the loop again, but
982 * remain in the current directory. */
983 joined = strjoin(destination, todo);
984 } else
985 joined = strjoin("/", destination, todo);
877777d7
CCW
986 if (!joined)
987 return -ENOMEM;
d944dc95 988
877777d7
CCW
989 free(buffer);
990 todo = buffer = joined;
d944dc95 991
49eb3659
LP
992 if (flags & CHASE_STEP)
993 goto chased_one;
994
d944dc95
LP
995 continue;
996 }
997
998 /* If this is not a symlink, then let's just add the name we read to what we already verified. */
ae2a15bc
LP
999 if (!done)
1000 done = TAKE_PTR(first);
1001 else {
a1904a46
YW
1002 /* If done is "/", as first also contains slash at the head, then remove this redundant slash. */
1003 if (streq(done, "/"))
1004 *done = '\0';
1005
d944dc95
LP
1006 if (!strextend(&done, first, NULL))
1007 return -ENOMEM;
1008 }
1009
1010 /* And iterate again, but go one directory further down. */
1011 safe_close(fd);
c10d6bdb 1012 fd = TAKE_FD(child);
d944dc95
LP
1013 }
1014
1015 if (!done) {
1016 /* Special case, turn the empty string into "/", to indicate the root directory. */
1017 done = strdup("/");
1018 if (!done)
1019 return -ENOMEM;
1020 }
1021
ae2a15bc
LP
1022 if (ret)
1023 *ret = TAKE_PTR(done);
d944dc95 1024
1ed34d75 1025 if (flags & CHASE_OPEN) {
1ed34d75
LP
1026 /* Return the O_PATH fd we currently are looking to the caller. It can translate it to a proper fd by
1027 * opening /proc/self/fd/xyz. */
1028
1029 assert(fd >= 0);
c10d6bdb 1030 return TAKE_FD(fd);
1ed34d75
LP
1031 }
1032
49eb3659
LP
1033 if (flags & CHASE_STEP)
1034 return 1;
1035
a9fb0867 1036 return exists;
49eb3659
LP
1037
1038chased_one:
49eb3659
LP
1039 if (ret) {
1040 char *c;
1041
027cc9c9
ZJS
1042 c = strjoin(strempty(done), todo);
1043 if (!c)
1044 return -ENOMEM;
49eb3659
LP
1045
1046 *ret = c;
1047 }
1048
1049 return 0;
d944dc95 1050}
57a4359e 1051
21c692e9
LP
1052int chase_symlinks_and_open(
1053 const char *path,
1054 const char *root,
1055 unsigned chase_flags,
1056 int open_flags,
1057 char **ret_path) {
1058
1059 _cleanup_close_ int path_fd = -1;
1060 _cleanup_free_ char *p = NULL;
1061 int r;
1062
1063 if (chase_flags & CHASE_NONEXISTENT)
1064 return -EINVAL;
1065
57ea45e1 1066 if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
21c692e9
LP
1067 /* Shortcut this call if none of the special features of this call are requested */
1068 r = open(path, open_flags);
1069 if (r < 0)
1070 return -errno;
1071
1072 return r;
1073 }
1074
1075 path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL);
1076 if (path_fd < 0)
1077 return path_fd;
1078
1079 r = fd_reopen(path_fd, open_flags);
1080 if (r < 0)
1081 return r;
1082
1083 if (ret_path)
1084 *ret_path = TAKE_PTR(p);
1085
1086 return r;
1087}
1088
1089int chase_symlinks_and_opendir(
1090 const char *path,
1091 const char *root,
1092 unsigned chase_flags,
1093 char **ret_path,
1094 DIR **ret_dir) {
1095
1096 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
1097 _cleanup_close_ int path_fd = -1;
1098 _cleanup_free_ char *p = NULL;
1099 DIR *d;
1100
1101 if (!ret_dir)
1102 return -EINVAL;
1103 if (chase_flags & CHASE_NONEXISTENT)
1104 return -EINVAL;
1105
57ea45e1 1106 if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
21c692e9
LP
1107 /* Shortcut this call if none of the special features of this call are requested */
1108 d = opendir(path);
1109 if (!d)
1110 return -errno;
1111
1112 *ret_dir = d;
1113 return 0;
1114 }
1115
1116 path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL);
1117 if (path_fd < 0)
1118 return path_fd;
1119
1120 xsprintf(procfs_path, "/proc/self/fd/%i", path_fd);
1121 d = opendir(procfs_path);
1122 if (!d)
1123 return -errno;
1124
1125 if (ret_path)
1126 *ret_path = TAKE_PTR(p);
1127
1128 *ret_dir = d;
1129 return 0;
1130}
1131
d2bcd0ba
LP
1132int chase_symlinks_and_stat(
1133 const char *path,
1134 const char *root,
1135 unsigned chase_flags,
1136 char **ret_path,
1137 struct stat *ret_stat) {
1138
1139 _cleanup_close_ int path_fd = -1;
1140 _cleanup_free_ char *p = NULL;
1141
1142 assert(path);
1143 assert(ret_stat);
1144
1145 if (chase_flags & CHASE_NONEXISTENT)
1146 return -EINVAL;
1147
1148 if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
1149 /* Shortcut this call if none of the special features of this call are requested */
1150 if (stat(path, ret_stat) < 0)
1151 return -errno;
1152
1153 return 1;
1154 }
1155
1156 path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL);
1157 if (path_fd < 0)
1158 return path_fd;
1159
1160 if (fstat(path_fd, ret_stat) < 0)
1161 return -errno;
1162
1163 if (ret_path)
1164 *ret_path = TAKE_PTR(p);
1165
1166 if (chase_flags & CHASE_OPEN)
1167 return TAKE_FD(path_fd);
1168
1169 return 1;
1170}
1171
57a4359e 1172int access_fd(int fd, int mode) {
fbd0b64f 1173 char p[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(fd) + 1];
57a4359e
LP
1174 int r;
1175
1176 /* Like access() but operates on an already open fd */
1177
1178 xsprintf(p, "/proc/self/fd/%i", fd);
57a4359e
LP
1179 r = access(p, mode);
1180 if (r < 0)
21c692e9 1181 return -errno;
57a4359e
LP
1182
1183 return r;
1184}
43767d9d 1185
627d2bac
ZJS
1186void unlink_tempfilep(char (*p)[]) {
1187 /* If the file is created with mkstemp(), it will (almost always)
1188 * change the suffix. Treat this as a sign that the file was
1189 * successfully created. We ignore both the rare case where the
1190 * original suffix is used and unlink failures. */
1191 if (!endswith(*p, ".XXXXXX"))
69821560 1192 (void) unlink_noerrno(*p);
627d2bac
ZJS
1193}
1194
43767d9d
LP
1195int unlinkat_deallocate(int fd, const char *name, int flags) {
1196 _cleanup_close_ int truncate_fd = -1;
1197 struct stat st;
1198 off_t l, bs;
1199
1200 /* Operates like unlinkat() but also deallocates the file contents if it is a regular file and there's no other
1201 * link to it. This is useful to ensure that other processes that might have the file open for reading won't be
1202 * able to keep the data pinned on disk forever. This call is particular useful whenever we execute clean-up
1203 * jobs ("vacuuming"), where we want to make sure the data is really gone and the disk space released and
1204 * returned to the free pool.
1205 *
1206 * Deallocation is preferably done by FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE (👊) if supported, which means
1207 * the file won't change size. That's a good thing since we shouldn't needlessly trigger SIGBUS in other
1208 * programs that have mmap()ed the file. (The assumption here is that changing file contents to all zeroes
1209 * underneath those programs is the better choice than simply triggering SIGBUS in them which truncation does.)
1210 * However if hole punching is not implemented in the kernel or file system we'll fall back to normal file
1211 * truncation (🔪), as our goal of deallocating the data space trumps our goal of being nice to readers (💐).
1212 *
1213 * Note that we attempt deallocation, but failure to succeed with that is not considered fatal, as long as the
1214 * primary job – to delete the file – is accomplished. */
1215
1216 if ((flags & AT_REMOVEDIR) == 0) {
1217 truncate_fd = openat(fd, name, O_WRONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW|O_NONBLOCK);
1218 if (truncate_fd < 0) {
1219
1220 /* If this failed because the file doesn't exist propagate the error right-away. Also,
1221 * AT_REMOVEDIR wasn't set, and we tried to open the file for writing, which means EISDIR is
1222 * returned when this is a directory but we are not supposed to delete those, hence propagate
1223 * the error right-away too. */
1224 if (IN_SET(errno, ENOENT, EISDIR))
1225 return -errno;
1226
1227 if (errno != ELOOP) /* don't complain if this is a symlink */
1228 log_debug_errno(errno, "Failed to open file '%s' for deallocation, ignoring: %m", name);
1229 }
1230 }
1231
1232 if (unlinkat(fd, name, flags) < 0)
1233 return -errno;
1234
1235 if (truncate_fd < 0) /* Don't have a file handle, can't do more ☹️ */
1236 return 0;
1237
1238 if (fstat(truncate_fd, &st) < 0) {
011723a4 1239 log_debug_errno(errno, "Failed to stat file '%s' for deallocation, ignoring: %m", name);
43767d9d
LP
1240 return 0;
1241 }
1242
1243 if (!S_ISREG(st.st_mode) || st.st_blocks == 0 || st.st_nlink > 0)
1244 return 0;
1245
1246 /* If this is a regular file, it actually took up space on disk and there are no other links it's time to
1247 * punch-hole/truncate this to release the disk space. */
1248
1249 bs = MAX(st.st_blksize, 512);
1250 l = DIV_ROUND_UP(st.st_size, bs) * bs; /* Round up to next block size */
1251
1252 if (fallocate(truncate_fd, FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE, 0, l) >= 0)
1253 return 0; /* Successfully punched a hole! 😊 */
1254
1255 /* Fall back to truncation */
1256 if (ftruncate(truncate_fd, 0) < 0) {
1257 log_debug_errno(errno, "Failed to truncate file to 0, ignoring: %m");
1258 return 0;
1259 }
1260
1261 return 0;
1262}
11b29a96
LP
1263
1264int fsync_directory_of_file(int fd) {
0c462ea4 1265 _cleanup_free_ char *path = NULL;
11b29a96
LP
1266 _cleanup_close_ int dfd = -1;
1267 int r;
1268
1269 r = fd_verify_regular(fd);
1270 if (r < 0)
1271 return r;
1272
1273 r = fd_get_path(fd, &path);
3ceae1bc 1274 if (r < 0) {
b8b846d7
LP
1275 log_debug_errno(r, "Failed to query /proc/self/fd/%d%s: %m",
1276 fd,
1277 r == -EOPNOTSUPP ? ", ignoring" : "");
3ceae1bc
ZJS
1278
1279 if (r == -EOPNOTSUPP)
1280 /* If /proc is not available, we're most likely running in some
1281 * chroot environment, and syncing the directory is not very
1282 * important in that case. Let's just silently do nothing. */
1283 return 0;
1284
11b29a96 1285 return r;
3ceae1bc 1286 }
11b29a96
LP
1287
1288 if (!path_is_absolute(path))
1289 return -EINVAL;
1290
0c462ea4 1291 dfd = open_parent(path, O_CLOEXEC, 0);
11b29a96 1292 if (dfd < 0)
0c462ea4 1293 return dfd;
11b29a96
LP
1294
1295 if (fsync(dfd) < 0)
1296 return -errno;
1297
1298 return 0;
1299}
ef8becfa 1300
36695e88
LP
1301int fsync_path_at(int at_fd, const char *path) {
1302 _cleanup_close_ int opened_fd = -1;
1303 int fd;
1304
1305 if (isempty(path)) {
1306 if (at_fd == AT_FDCWD) {
1307 opened_fd = open(".", O_RDONLY|O_DIRECTORY|O_CLOEXEC);
1308 if (opened_fd < 0)
1309 return -errno;
1310
1311 fd = opened_fd;
1312 } else
1313 fd = at_fd;
1314 } else {
1315
1316 opened_fd = openat(at_fd, path, O_RDONLY|O_CLOEXEC);
1317 if (opened_fd < 0)
1318 return -errno;
1319
1320 fd = opened_fd;
1321 }
1322
1323 if (fsync(fd) < 0)
1324 return -errno;
1325
1326 return 0;
1327}
1328
71f51416
LP
1329int syncfs_path(int atfd, const char *path) {
1330 _cleanup_close_ int fd = -1;
1331
1332 assert(path);
1333
1334 fd = openat(atfd, path, O_CLOEXEC|O_RDONLY|O_NONBLOCK);
1335 if (fd < 0)
1336 return -errno;
1337
1338 if (syncfs(fd) < 0)
1339 return -errno;
1340
1341 return 0;
1342}
1343
ef8becfa
LP
1344int open_parent(const char *path, int flags, mode_t mode) {
1345 _cleanup_free_ char *parent = NULL;
1346 int fd;
1347
1348 if (isempty(path))
1349 return -EINVAL;
1350 if (path_equal(path, "/")) /* requesting the parent of the root dir is fishy, let's prohibit that */
1351 return -EINVAL;
1352
1353 parent = dirname_malloc(path);
1354 if (!parent)
1355 return -ENOMEM;
1356
1357 /* Let's insist on O_DIRECTORY since the parent of a file or directory is a directory. Except if we open an
1358 * O_TMPFILE file, because in that case we are actually create a regular file below the parent directory. */
1359
0c21dafb 1360 if (FLAGS_SET(flags, O_PATH))
ef8becfa 1361 flags |= O_DIRECTORY;
0c21dafb 1362 else if (!FLAGS_SET(flags, O_TMPFILE))
ef8becfa
LP
1363 flags |= O_DIRECTORY|O_RDONLY;
1364
1365 fd = open(parent, flags, mode);
1366 if (fd < 0)
1367 return -errno;
1368
1369 return fd;
1370}