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