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