]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/fs-util.c
Merge pull request #8575 from keszybz/non-absolute-paths
[thirdparty/systemd.git] / src / basic / fs-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2010 Lennart Poettering
6 ***/
7
8 #include <errno.h>
9 #include <stddef.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <sys/stat.h>
14 #include <linux/magic.h>
15 #include <time.h>
16 #include <unistd.h>
17
18 #include "alloc-util.h"
19 #include "dirent-util.h"
20 #include "fd-util.h"
21 #include "fileio.h"
22 #include "fs-util.h"
23 #include "log.h"
24 #include "macro.h"
25 #include "missing.h"
26 #include "mkdir.h"
27 #include "parse-util.h"
28 #include "path-util.h"
29 #include "process-util.h"
30 #include "stat-util.h"
31 #include "stdio-util.h"
32 #include "string-util.h"
33 #include "strv.h"
34 #include "time-util.h"
35 #include "user-util.h"
36 #include "util.h"
37
38 int unlink_noerrno(const char *path) {
39 PROTECT_ERRNO;
40 int r;
41
42 r = unlink(path);
43 if (r < 0)
44 return -errno;
45
46 return 0;
47 }
48
49 int rmdir_parents(const char *path, const char *stop) {
50 size_t l;
51 int r = 0;
52
53 assert(path);
54 assert(stop);
55
56 l = strlen(path);
57
58 /* Skip trailing slashes */
59 while (l > 0 && path[l-1] == '/')
60 l--;
61
62 while (l > 0) {
63 char *t;
64
65 /* Skip last component */
66 while (l > 0 && path[l-1] != '/')
67 l--;
68
69 /* Skip trailing slashes */
70 while (l > 0 && path[l-1] == '/')
71 l--;
72
73 if (l <= 0)
74 break;
75
76 t = strndup(path, l);
77 if (!t)
78 return -ENOMEM;
79
80 if (path_startswith(stop, t)) {
81 free(t);
82 return 0;
83 }
84
85 r = rmdir(t);
86 free(t);
87
88 if (r < 0)
89 if (errno != ENOENT)
90 return -errno;
91 }
92
93 return 0;
94 }
95
96 int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath) {
97 struct stat buf;
98 int ret;
99
100 ret = renameat2(olddirfd, oldpath, newdirfd, newpath, RENAME_NOREPLACE);
101 if (ret >= 0)
102 return 0;
103
104 /* renameat2() exists since Linux 3.15, btrfs added support for it later.
105 * If it is not implemented, fallback to another method. */
106 if (!IN_SET(errno, EINVAL, ENOSYS))
107 return -errno;
108
109 /* The link()/unlink() fallback does not work on directories. But
110 * renameat() without RENAME_NOREPLACE gives the same semantics on
111 * directories, except when newpath is an *empty* directory. This is
112 * good enough. */
113 ret = fstatat(olddirfd, oldpath, &buf, AT_SYMLINK_NOFOLLOW);
114 if (ret >= 0 && S_ISDIR(buf.st_mode)) {
115 ret = renameat(olddirfd, oldpath, newdirfd, newpath);
116 return ret >= 0 ? 0 : -errno;
117 }
118
119 /* If it is not a directory, use the link()/unlink() fallback. */
120 ret = linkat(olddirfd, oldpath, newdirfd, newpath, 0);
121 if (ret < 0)
122 return -errno;
123
124 ret = unlinkat(olddirfd, oldpath, 0);
125 if (ret < 0) {
126 /* backup errno before the following unlinkat() alters it */
127 ret = errno;
128 (void) unlinkat(newdirfd, newpath, 0);
129 errno = ret;
130 return -errno;
131 }
132
133 return 0;
134 }
135
136 int readlinkat_malloc(int fd, const char *p, char **ret) {
137 size_t l = 100;
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
169 int readlink_malloc(const char *p, char **ret) {
170 return readlinkat_malloc(AT_FDCWD, p, ret);
171 }
172
173 int 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
195 int 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
215 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
216 assert(path);
217
218 /* Under the assumption that we are running privileged we
219 * first change the access mode and only then hand out
220 * ownership to avoid a window where access is too open. */
221
222 if (mode != MODE_INVALID)
223 if (chmod(path, mode) < 0)
224 return -errno;
225
226 if (uid != UID_INVALID || gid != GID_INVALID)
227 if (chown(path, uid, gid) < 0)
228 return -errno;
229
230 return 0;
231 }
232
233 int fchmod_umask(int fd, mode_t m) {
234 mode_t u;
235 int r;
236
237 u = umask(0777);
238 r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
239 umask(u);
240
241 return r;
242 }
243
244 int fd_warn_permissions(const char *path, int fd) {
245 struct stat st;
246
247 if (fstat(fd, &st) < 0)
248 return -errno;
249
250 if (st.st_mode & 0111)
251 log_warning("Configuration file %s is marked executable. Please remove executable permission bits. Proceeding anyway.", path);
252
253 if (st.st_mode & 0002)
254 log_warning("Configuration file %s is marked world-writable. Please remove world writability permission bits. Proceeding anyway.", path);
255
256 if (getpid_cached() == 1 && (st.st_mode & 0044) != 0044)
257 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);
258
259 return 0;
260 }
261
262 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode) {
263 char fdpath[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
264 _cleanup_close_ int fd = -1;
265 int r, ret = 0;
266
267 assert(path);
268
269 /* Note that touch_file() does not follow symlinks: if invoked on an existing symlink, then it is the symlink
270 * itself which is updated, not its target
271 *
272 * Returns the first error we encounter, but tries to apply as much as possible. */
273
274 if (parents)
275 (void) mkdir_parents(path, 0755);
276
277 /* Initially, we try to open the node with O_PATH, so that we get a reference to the node. This is useful in
278 * case the path refers to an existing device or socket node, as we can open it successfully in all cases, and
279 * won't trigger any driver magic or so. */
280 fd = open(path, O_PATH|O_CLOEXEC|O_NOFOLLOW);
281 if (fd < 0) {
282 if (errno != ENOENT)
283 return -errno;
284
285 /* if the node doesn't exist yet, we create it, but with O_EXCL, so that we only create a regular file
286 * here, and nothing else */
287 fd = open(path, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, IN_SET(mode, 0, MODE_INVALID) ? 0644 : mode);
288 if (fd < 0)
289 return -errno;
290 }
291
292 /* Let's make a path from the fd, and operate on that. With this logic, we can adjust the access mode,
293 * ownership and time of the file node in all cases, even if the fd refers to an O_PATH object — which is
294 * something fchown(), fchmod(), futimensat() don't allow. */
295 xsprintf(fdpath, "/proc/self/fd/%i", fd);
296
297 if (mode != MODE_INVALID)
298 if (chmod(fdpath, mode) < 0)
299 ret = -errno;
300
301 if (uid_is_valid(uid) || gid_is_valid(gid))
302 if (chown(fdpath, uid, gid) < 0 && ret >= 0)
303 ret = -errno;
304
305 if (stamp != USEC_INFINITY) {
306 struct timespec ts[2];
307
308 timespec_store(&ts[0], stamp);
309 ts[1] = ts[0];
310 r = utimensat(AT_FDCWD, fdpath, ts, 0);
311 } else
312 r = utimensat(AT_FDCWD, fdpath, NULL, 0);
313 if (r < 0 && ret >= 0)
314 return -errno;
315
316 return ret;
317 }
318
319 int touch(const char *path) {
320 return touch_file(path, false, USEC_INFINITY, UID_INVALID, GID_INVALID, MODE_INVALID);
321 }
322
323 int symlink_idempotent(const char *from, const char *to) {
324 int r;
325
326 assert(from);
327 assert(to);
328
329 if (symlink(from, to) < 0) {
330 _cleanup_free_ char *p = NULL;
331
332 if (errno != EEXIST)
333 return -errno;
334
335 r = readlink_malloc(to, &p);
336 if (r == -EINVAL) /* Not a symlink? In that case return the original error we encountered: -EEXIST */
337 return -EEXIST;
338 if (r < 0) /* Any other error? In that case propagate it as is */
339 return r;
340
341 if (!streq(p, from)) /* Not the symlink we want it to be? In that case, propagate the original -EEXIST */
342 return -EEXIST;
343 }
344
345 return 0;
346 }
347
348 int symlink_atomic(const char *from, const char *to) {
349 _cleanup_free_ char *t = NULL;
350 int r;
351
352 assert(from);
353 assert(to);
354
355 r = tempfn_random(to, NULL, &t);
356 if (r < 0)
357 return r;
358
359 if (symlink(from, t) < 0)
360 return -errno;
361
362 if (rename(t, to) < 0) {
363 unlink_noerrno(t);
364 return -errno;
365 }
366
367 return 0;
368 }
369
370 int mknod_atomic(const char *path, mode_t mode, dev_t dev) {
371 _cleanup_free_ char *t = NULL;
372 int r;
373
374 assert(path);
375
376 r = tempfn_random(path, NULL, &t);
377 if (r < 0)
378 return r;
379
380 if (mknod(t, mode, dev) < 0)
381 return -errno;
382
383 if (rename(t, path) < 0) {
384 unlink_noerrno(t);
385 return -errno;
386 }
387
388 return 0;
389 }
390
391 int mkfifo_atomic(const char *path, mode_t mode) {
392 _cleanup_free_ char *t = NULL;
393 int r;
394
395 assert(path);
396
397 r = tempfn_random(path, NULL, &t);
398 if (r < 0)
399 return r;
400
401 if (mkfifo(t, mode) < 0)
402 return -errno;
403
404 if (rename(t, path) < 0) {
405 unlink_noerrno(t);
406 return -errno;
407 }
408
409 return 0;
410 }
411
412 int get_files_in_directory(const char *path, char ***list) {
413 _cleanup_closedir_ DIR *d = NULL;
414 struct dirent *de;
415 size_t bufsize = 0, n = 0;
416 _cleanup_strv_free_ char **l = NULL;
417
418 assert(path);
419
420 /* Returns all files in a directory in *list, and the number
421 * of files as return value. If list is NULL returns only the
422 * number. */
423
424 d = opendir(path);
425 if (!d)
426 return -errno;
427
428 FOREACH_DIRENT_ALL(de, d, return -errno) {
429 dirent_ensure_type(d, de);
430
431 if (!dirent_is_file(de))
432 continue;
433
434 if (list) {
435 /* one extra slot is needed for the terminating NULL */
436 if (!GREEDY_REALLOC(l, bufsize, n + 2))
437 return -ENOMEM;
438
439 l[n] = strdup(de->d_name);
440 if (!l[n])
441 return -ENOMEM;
442
443 l[++n] = NULL;
444 } else
445 n++;
446 }
447
448 if (list)
449 *list = TAKE_PTR(l);
450
451 return n;
452 }
453
454 static int getenv_tmp_dir(const char **ret_path) {
455 const char *n;
456 int r, ret = 0;
457
458 assert(ret_path);
459
460 /* We use the same order of environment variables python uses in tempfile.gettempdir():
461 * https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir */
462 FOREACH_STRING(n, "TMPDIR", "TEMP", "TMP") {
463 const char *e;
464
465 e = secure_getenv(n);
466 if (!e)
467 continue;
468 if (!path_is_absolute(e)) {
469 r = -ENOTDIR;
470 goto next;
471 }
472 if (!path_is_normalized(e)) {
473 r = -EPERM;
474 goto next;
475 }
476
477 r = is_dir(e, true);
478 if (r < 0)
479 goto next;
480 if (r == 0) {
481 r = -ENOTDIR;
482 goto next;
483 }
484
485 *ret_path = e;
486 return 1;
487
488 next:
489 /* Remember first error, to make this more debuggable */
490 if (ret >= 0)
491 ret = r;
492 }
493
494 if (ret < 0)
495 return ret;
496
497 *ret_path = NULL;
498 return ret;
499 }
500
501 static int tmp_dir_internal(const char *def, const char **ret) {
502 const char *e;
503 int r, k;
504
505 assert(def);
506 assert(ret);
507
508 r = getenv_tmp_dir(&e);
509 if (r > 0) {
510 *ret = e;
511 return 0;
512 }
513
514 k = is_dir(def, true);
515 if (k == 0)
516 k = -ENOTDIR;
517 if (k < 0)
518 return r < 0 ? r : k;
519
520 *ret = def;
521 return 0;
522 }
523
524 int var_tmp_dir(const char **ret) {
525
526 /* Returns the location for "larger" temporary files, that is backed by physical storage if available, and thus
527 * even might survive a boot: /var/tmp. If $TMPDIR (or related environment variables) are set, its value is
528 * returned preferably however. Note that both this function and tmp_dir() below are affected by $TMPDIR,
529 * making it a variable that overrides all temporary file storage locations. */
530
531 return tmp_dir_internal("/var/tmp", ret);
532 }
533
534 int tmp_dir(const char **ret) {
535
536 /* Similar to var_tmp_dir() above, but returns the location for "smaller" temporary files, which is usually
537 * backed by an in-memory file system: /tmp. */
538
539 return tmp_dir_internal("/tmp", ret);
540 }
541
542 int unlink_or_warn(const char *filename) {
543 if (unlink(filename) < 0 && errno != ENOENT)
544 /* If the file doesn't exist and the fs simply was read-only (in which
545 * case unlink() returns EROFS even if the file doesn't exist), don't
546 * complain */
547 if (errno != EROFS || access(filename, F_OK) >= 0)
548 return log_error_errno(errno, "Failed to remove \"%s\": %m", filename);
549
550 return 0;
551 }
552
553 int inotify_add_watch_fd(int fd, int what, uint32_t mask) {
554 char path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int) + 1];
555 int r;
556
557 /* This is like inotify_add_watch(), except that the file to watch is not referenced by a path, but by an fd */
558 xsprintf(path, "/proc/self/fd/%i", what);
559
560 r = inotify_add_watch(fd, path, mask);
561 if (r < 0)
562 return -errno;
563
564 return r;
565 }
566
567 static bool noop_root(const char *root) {
568 return isempty(root) || path_equal(root, "/");
569 }
570
571 static bool safe_transition(const struct stat *a, const struct stat *b) {
572 /* Returns true if the transition from a to b is safe, i.e. that we never transition from unprivileged to
573 * privileged files or directories. Why bother? So that unprivileged code can't symlink to privileged files
574 * making us believe we read something safe even though it isn't safe in the specific context we open it in. */
575
576 if (a->st_uid == 0) /* Transitioning from privileged to unprivileged is always fine */
577 return true;
578
579 return a->st_uid == b->st_uid; /* Otherwise we need to stay within the same UID */
580 }
581
582 int chase_symlinks(const char *path, const char *original_root, unsigned flags, char **ret) {
583 _cleanup_free_ char *buffer = NULL, *done = NULL, *root = NULL;
584 _cleanup_close_ int fd = -1;
585 unsigned max_follow = 32; /* how many symlinks to follow before giving up and returning ELOOP */
586 struct stat previous_stat;
587 bool exists = true;
588 char *todo;
589 int r;
590
591 assert(path);
592
593 /* Either the file may be missing, or we return an fd to the final object, but both make no sense */
594 if ((flags & (CHASE_NONEXISTENT|CHASE_OPEN)) == (CHASE_NONEXISTENT|CHASE_OPEN))
595 return -EINVAL;
596
597 if (isempty(path))
598 return -EINVAL;
599
600 /* This is a lot like canonicalize_file_name(), but takes an additional "root" parameter, that allows following
601 * symlinks relative to a root directory, instead of the root of the host.
602 *
603 * Note that "root" primarily matters if we encounter an absolute symlink. It is also used when following
604 * relative symlinks to ensure they cannot be used to "escape" the root directory. The path parameter passed is
605 * assumed to be already prefixed by it, except if the CHASE_PREFIX_ROOT flag is set, in which case it is first
606 * prefixed accordingly.
607 *
608 * Algorithmically this operates on two path buffers: "done" are the components of the path we already
609 * processed and resolved symlinks, "." and ".." of. "todo" are the components of the path we still need to
610 * process. On each iteration, we move one component from "todo" to "done", processing it's special meaning
611 * each time. The "todo" path always starts with at least one slash, the "done" path always ends in no
612 * slash. We always keep an O_PATH fd to the component we are currently processing, thus keeping lookup races
613 * at a minimum.
614 *
615 * Suggested usage: whenever you want to canonicalize a path, use this function. Pass the absolute path you got
616 * as-is: fully qualified and relative to your host's root. Optionally, specify the root parameter to tell this
617 * function what to do when encountering a symlink with an absolute path as directory: prefix it by the
618 * specified path. */
619
620 /* A root directory of "/" or "" is identical to none */
621 if (noop_root(original_root))
622 original_root = NULL;
623
624 if (!original_root && !ret && (flags & (CHASE_NONEXISTENT|CHASE_NO_AUTOFS|CHASE_SAFE|CHASE_OPEN)) == CHASE_OPEN) {
625 /* Shortcut the CHASE_OPEN case if the caller isn't interested in the actual path and has no root set
626 * and doesn't care about any of the other special features we provide either. */
627 r = open(path, O_PATH|O_CLOEXEC);
628 if (r < 0)
629 return -errno;
630
631 return r;
632 }
633
634 if (original_root) {
635 r = path_make_absolute_cwd(original_root, &root);
636 if (r < 0)
637 return r;
638
639 if (flags & CHASE_PREFIX_ROOT) {
640
641 /* We don't support relative paths in combination with a root directory */
642 if (!path_is_absolute(path))
643 return -EINVAL;
644
645 path = prefix_roota(root, path);
646 }
647 }
648
649 r = path_make_absolute_cwd(path, &buffer);
650 if (r < 0)
651 return r;
652
653 fd = open("/", O_CLOEXEC|O_NOFOLLOW|O_PATH);
654 if (fd < 0)
655 return -errno;
656
657 if (flags & CHASE_SAFE) {
658 if (fstat(fd, &previous_stat) < 0)
659 return -errno;
660 }
661
662 todo = buffer;
663 for (;;) {
664 _cleanup_free_ char *first = NULL;
665 _cleanup_close_ int child = -1;
666 struct stat st;
667 size_t n, m;
668
669 /* Determine length of first component in the path */
670 n = strspn(todo, "/"); /* The slashes */
671 m = n + strcspn(todo + n, "/"); /* The entire length of the component */
672
673 /* Extract the first component. */
674 first = strndup(todo, m);
675 if (!first)
676 return -ENOMEM;
677
678 todo += m;
679
680 /* Empty? Then we reached the end. */
681 if (isempty(first))
682 break;
683
684 /* Just a single slash? Then we reached the end. */
685 if (path_equal(first, "/")) {
686 /* Preserve the trailing slash */
687
688 if (flags & CHASE_TRAIL_SLASH)
689 if (!strextend(&done, "/", NULL))
690 return -ENOMEM;
691
692 break;
693 }
694
695 /* Just a dot? Then let's eat this up. */
696 if (path_equal(first, "/."))
697 continue;
698
699 /* Two dots? Then chop off the last bit of what we already found out. */
700 if (path_equal(first, "/..")) {
701 _cleanup_free_ char *parent = NULL;
702 _cleanup_close_ int fd_parent = -1;
703
704 /* If we already are at the top, then going up will not change anything. This is in-line with
705 * how the kernel handles this. */
706 if (isempty(done) || path_equal(done, "/"))
707 continue;
708
709 parent = dirname_malloc(done);
710 if (!parent)
711 return -ENOMEM;
712
713 /* Don't allow this to leave the root dir. */
714 if (root &&
715 path_startswith(done, root) &&
716 !path_startswith(parent, root))
717 continue;
718
719 free_and_replace(done, parent);
720
721 fd_parent = openat(fd, "..", O_CLOEXEC|O_NOFOLLOW|O_PATH);
722 if (fd_parent < 0)
723 return -errno;
724
725 if (flags & CHASE_SAFE) {
726 if (fstat(fd_parent, &st) < 0)
727 return -errno;
728
729 if (!safe_transition(&previous_stat, &st))
730 return -EPERM;
731
732 previous_stat = st;
733 }
734
735 safe_close(fd);
736 fd = TAKE_FD(fd_parent);
737
738 continue;
739 }
740
741 /* Otherwise let's see what this is. */
742 child = openat(fd, first + n, O_CLOEXEC|O_NOFOLLOW|O_PATH);
743 if (child < 0) {
744
745 if (errno == ENOENT &&
746 (flags & CHASE_NONEXISTENT) &&
747 (isempty(todo) || path_is_normalized(todo))) {
748
749 /* If CHASE_NONEXISTENT is set, and the path does not exist, then that's OK, return
750 * what we got so far. But don't allow this if the remaining path contains "../ or "./"
751 * or something else weird. */
752
753 /* If done is "/", as first also contains slash at the head, then remove this redundant slash. */
754 if (streq_ptr(done, "/"))
755 *done = '\0';
756
757 if (!strextend(&done, first, todo, NULL))
758 return -ENOMEM;
759
760 exists = false;
761 break;
762 }
763
764 return -errno;
765 }
766
767 if (fstat(child, &st) < 0)
768 return -errno;
769 if ((flags & CHASE_SAFE) &&
770 !safe_transition(&previous_stat, &st))
771 return -EPERM;
772
773 previous_stat = st;
774
775 if ((flags & CHASE_NO_AUTOFS) &&
776 fd_is_fs_type(child, AUTOFS_SUPER_MAGIC) > 0)
777 return -EREMOTE;
778
779 if (S_ISLNK(st.st_mode)) {
780 char *joined;
781
782 _cleanup_free_ char *destination = NULL;
783
784 /* This is a symlink, in this case read the destination. But let's make sure we don't follow
785 * symlinks without bounds. */
786 if (--max_follow <= 0)
787 return -ELOOP;
788
789 r = readlinkat_malloc(fd, first + n, &destination);
790 if (r < 0)
791 return r;
792 if (isempty(destination))
793 return -EINVAL;
794
795 if (path_is_absolute(destination)) {
796
797 /* An absolute destination. Start the loop from the beginning, but use the root
798 * directory as base. */
799
800 safe_close(fd);
801 fd = open(root ?: "/", O_CLOEXEC|O_NOFOLLOW|O_PATH);
802 if (fd < 0)
803 return -errno;
804
805 if (flags & CHASE_SAFE) {
806 if (fstat(fd, &st) < 0)
807 return -errno;
808
809 if (!safe_transition(&previous_stat, &st))
810 return -EPERM;
811
812 previous_stat = st;
813 }
814
815 free(done);
816
817 /* Note that we do not revalidate the root, we take it as is. */
818 if (isempty(root))
819 done = NULL;
820 else {
821 done = strdup(root);
822 if (!done)
823 return -ENOMEM;
824 }
825
826 /* Prefix what's left to do with what we just read, and start the loop again, but
827 * remain in the current directory. */
828 joined = strjoin(destination, todo);
829 } else
830 joined = strjoin("/", destination, todo);
831 if (!joined)
832 return -ENOMEM;
833
834 free(buffer);
835 todo = buffer = joined;
836
837 continue;
838 }
839
840 /* If this is not a symlink, then let's just add the name we read to what we already verified. */
841 if (!done)
842 done = TAKE_PTR(first);
843 else {
844 /* If done is "/", as first also contains slash at the head, then remove this redundant slash. */
845 if (streq(done, "/"))
846 *done = '\0';
847
848 if (!strextend(&done, first, NULL))
849 return -ENOMEM;
850 }
851
852 /* And iterate again, but go one directory further down. */
853 safe_close(fd);
854 fd = TAKE_FD(child);
855 }
856
857 if (!done) {
858 /* Special case, turn the empty string into "/", to indicate the root directory. */
859 done = strdup("/");
860 if (!done)
861 return -ENOMEM;
862 }
863
864 if (ret)
865 *ret = TAKE_PTR(done);
866
867 if (flags & CHASE_OPEN) {
868 /* Return the O_PATH fd we currently are looking to the caller. It can translate it to a proper fd by
869 * opening /proc/self/fd/xyz. */
870
871 assert(fd >= 0);
872 return TAKE_FD(fd);
873 }
874
875 return exists;
876 }
877
878 int chase_symlinks_and_open(
879 const char *path,
880 const char *root,
881 unsigned chase_flags,
882 int open_flags,
883 char **ret_path) {
884
885 _cleanup_close_ int path_fd = -1;
886 _cleanup_free_ char *p = NULL;
887 int r;
888
889 if (chase_flags & CHASE_NONEXISTENT)
890 return -EINVAL;
891
892 if (noop_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
893 /* Shortcut this call if none of the special features of this call are requested */
894 r = open(path, open_flags);
895 if (r < 0)
896 return -errno;
897
898 return r;
899 }
900
901 path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL);
902 if (path_fd < 0)
903 return path_fd;
904
905 r = fd_reopen(path_fd, open_flags);
906 if (r < 0)
907 return r;
908
909 if (ret_path)
910 *ret_path = TAKE_PTR(p);
911
912 return r;
913 }
914
915 int chase_symlinks_and_opendir(
916 const char *path,
917 const char *root,
918 unsigned chase_flags,
919 char **ret_path,
920 DIR **ret_dir) {
921
922 char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
923 _cleanup_close_ int path_fd = -1;
924 _cleanup_free_ char *p = NULL;
925 DIR *d;
926
927 if (!ret_dir)
928 return -EINVAL;
929 if (chase_flags & CHASE_NONEXISTENT)
930 return -EINVAL;
931
932 if (noop_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
933 /* Shortcut this call if none of the special features of this call are requested */
934 d = opendir(path);
935 if (!d)
936 return -errno;
937
938 *ret_dir = d;
939 return 0;
940 }
941
942 path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL);
943 if (path_fd < 0)
944 return path_fd;
945
946 xsprintf(procfs_path, "/proc/self/fd/%i", path_fd);
947 d = opendir(procfs_path);
948 if (!d)
949 return -errno;
950
951 if (ret_path)
952 *ret_path = TAKE_PTR(p);
953
954 *ret_dir = d;
955 return 0;
956 }
957
958 int access_fd(int fd, int mode) {
959 char p[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(fd) + 1];
960 int r;
961
962 /* Like access() but operates on an already open fd */
963
964 xsprintf(p, "/proc/self/fd/%i", fd);
965 r = access(p, mode);
966 if (r < 0)
967 return -errno;
968
969 return r;
970 }
971
972 int unlinkat_deallocate(int fd, const char *name, int flags) {
973 _cleanup_close_ int truncate_fd = -1;
974 struct stat st;
975 off_t l, bs;
976
977 /* Operates like unlinkat() but also deallocates the file contents if it is a regular file and there's no other
978 * link to it. This is useful to ensure that other processes that might have the file open for reading won't be
979 * able to keep the data pinned on disk forever. This call is particular useful whenever we execute clean-up
980 * jobs ("vacuuming"), where we want to make sure the data is really gone and the disk space released and
981 * returned to the free pool.
982 *
983 * Deallocation is preferably done by FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE (👊) if supported, which means
984 * the file won't change size. That's a good thing since we shouldn't needlessly trigger SIGBUS in other
985 * programs that have mmap()ed the file. (The assumption here is that changing file contents to all zeroes
986 * underneath those programs is the better choice than simply triggering SIGBUS in them which truncation does.)
987 * However if hole punching is not implemented in the kernel or file system we'll fall back to normal file
988 * truncation (đŸ”Ē), as our goal of deallocating the data space trumps our goal of being nice to readers (💐).
989 *
990 * Note that we attempt deallocation, but failure to succeed with that is not considered fatal, as long as the
991 * primary job – to delete the file – is accomplished. */
992
993 if ((flags & AT_REMOVEDIR) == 0) {
994 truncate_fd = openat(fd, name, O_WRONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW|O_NONBLOCK);
995 if (truncate_fd < 0) {
996
997 /* If this failed because the file doesn't exist propagate the error right-away. Also,
998 * AT_REMOVEDIR wasn't set, and we tried to open the file for writing, which means EISDIR is
999 * returned when this is a directory but we are not supposed to delete those, hence propagate
1000 * the error right-away too. */
1001 if (IN_SET(errno, ENOENT, EISDIR))
1002 return -errno;
1003
1004 if (errno != ELOOP) /* don't complain if this is a symlink */
1005 log_debug_errno(errno, "Failed to open file '%s' for deallocation, ignoring: %m", name);
1006 }
1007 }
1008
1009 if (unlinkat(fd, name, flags) < 0)
1010 return -errno;
1011
1012 if (truncate_fd < 0) /* Don't have a file handle, can't do more ☚ī¸ */
1013 return 0;
1014
1015 if (fstat(truncate_fd, &st) < 0) {
1016 log_debug_errno(errno, "Failed to stat file '%s' for deallocation, ignoring.", name);
1017 return 0;
1018 }
1019
1020 if (!S_ISREG(st.st_mode) || st.st_blocks == 0 || st.st_nlink > 0)
1021 return 0;
1022
1023 /* If this is a regular file, it actually took up space on disk and there are no other links it's time to
1024 * punch-hole/truncate this to release the disk space. */
1025
1026 bs = MAX(st.st_blksize, 512);
1027 l = DIV_ROUND_UP(st.st_size, bs) * bs; /* Round up to next block size */
1028
1029 if (fallocate(truncate_fd, FALLOC_FL_PUNCH_HOLE|FALLOC_FL_KEEP_SIZE, 0, l) >= 0)
1030 return 0; /* Successfully punched a hole! 😊 */
1031
1032 /* Fall back to truncation */
1033 if (ftruncate(truncate_fd, 0) < 0) {
1034 log_debug_errno(errno, "Failed to truncate file to 0, ignoring: %m");
1035 return 0;
1036 }
1037
1038 return 0;
1039 }
1040
1041 int fsync_directory_of_file(int fd) {
1042 _cleanup_free_ char *path = NULL, *dn = NULL;
1043 _cleanup_close_ int dfd = -1;
1044 int r;
1045
1046 r = fd_verify_regular(fd);
1047 if (r < 0)
1048 return r;
1049
1050 r = fd_get_path(fd, &path);
1051 if (r < 0) {
1052 log_debug("Failed to query /proc/self/fd/%d%s: %m",
1053 fd,
1054 r == -EOPNOTSUPP ? ", ignoring" : "");
1055
1056 if (r == -EOPNOTSUPP)
1057 /* If /proc is not available, we're most likely running in some
1058 * chroot environment, and syncing the directory is not very
1059 * important in that case. Let's just silently do nothing. */
1060 return 0;
1061
1062 return r;
1063 }
1064
1065 if (!path_is_absolute(path))
1066 return -EINVAL;
1067
1068 dn = dirname_malloc(path);
1069 if (!dn)
1070 return -ENOMEM;
1071
1072 dfd = open(dn, O_RDONLY|O_CLOEXEC|O_DIRECTORY);
1073 if (dfd < 0)
1074 return -errno;
1075
1076 if (fsync(dfd) < 0)
1077 return -errno;
1078
1079 return 0;
1080 }