]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/fs-util.h
Merge pull request #12628 from keszybz/dbus-execute
[thirdparty/systemd.git] / src / basic / fs-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
f4f15635
LP
2#pragma once
3
21c692e9 4#include <dirent.h>
f4f15635 5#include <fcntl.h>
71d35b6b 6#include <limits.h>
11c3a366
TA
7#include <stdbool.h>
8#include <stdint.h>
77601719 9#include <sys/inotify.h>
56e3c958 10#include <sys/stat.h>
77601719 11#include <sys/types.h>
f4f15635
LP
12#include <unistd.h>
13
2b2fec7d 14#include "errno-util.h"
f4f15635
LP
15#include "time-util.h"
16
17int unlink_noerrno(const char *path);
18
19int rmdir_parents(const char *path, const char *stop);
20
21int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
22
23int readlinkat_malloc(int fd, const char *p, char **ret);
24int readlink_malloc(const char *p, char **r);
25int readlink_value(const char *p, char **ret);
26int readlink_and_make_absolute(const char *p, char **r);
f4f15635
LP
27
28int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
b8da477e 29int fchmod_and_chown(int fd, mode_t mode, uid_t uid, gid_t gid);
f4f15635
LP
30
31int fchmod_umask(int fd, mode_t mode);
4dfaa528 32int fchmod_opath(int fd, mode_t m);
f4f15635
LP
33
34int fd_warn_permissions(const char *path, int fd);
35
36#define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW)
37
38int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
39int touch(const char *path);
40
6c9c51e5 41int symlink_idempotent(const char *from, const char *to, bool make_relative);
f4f15635
LP
42
43int symlink_atomic(const char *from, const char *to);
44int mknod_atomic(const char *path, mode_t mode, dev_t dev);
45int mkfifo_atomic(const char *path, mode_t mode);
4fe3828c 46int mkfifoat_atomic(int dir_fd, const char *path, mode_t mode);
f4f15635
LP
47
48int get_files_in_directory(const char *path, char ***list);
77601719 49
992e8f22
LP
50int tmp_dir(const char **ret);
51int var_tmp_dir(const char **ret);
34a8f081 52
af229d7a
ZJS
53int unlink_or_warn(const char *filename);
54
77601719
LP
55#define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX + 1)
56
57#define FOREACH_INOTIFY_EVENT(e, buffer, sz) \
58 for ((e) = &buffer.ev; \
59 (uint8_t*) (e) < (uint8_t*) (buffer.raw) + (sz); \
60 (e) = (struct inotify_event*) ((uint8_t*) (e) + sizeof(struct inotify_event) + (e)->len))
61
62union inotify_event_buffer {
63 struct inotify_event ev;
64 uint8_t raw[INOTIFY_EVENT_MAX];
65};
430fbf8e
LP
66
67int inotify_add_watch_fd(int fd, int what, uint32_t mask);
d944dc95 68
c4f4fce7 69enum {
ef31828d
LP
70 CHASE_PREFIX_ROOT = 1 << 0, /* If set, the specified path will be prefixed by the specified root before beginning the iteration */
71 CHASE_NONEXISTENT = 1 << 1, /* If set, it's OK if the path doesn't actually exist. */
72 CHASE_NO_AUTOFS = 1 << 2, /* If set, return -EREMOTE if autofs mount point found */
73 CHASE_SAFE = 1 << 3, /* If set, return EPERM if we ever traverse from unprivileged to privileged files or directories */
74 CHASE_OPEN = 1 << 4, /* If set, return an O_PATH object to the final component */
75 CHASE_TRAIL_SLASH = 1 << 5, /* If set, any trailing slash will be preserved */
76 CHASE_STEP = 1 << 6, /* If set, just execute a single step of the normalization */
1f56e4ce 77 CHASE_NOFOLLOW = 1 << 7, /* Only valid with CHASE_OPEN: when the path's right-most component refers to symlink return O_PATH fd of the symlink, rather than following it. */
fd74c6f3 78 CHASE_WARN = 1 << 8, /* Emit an appropriate warning when an error is encountered */
c4f4fce7
LP
79};
80
f10f4215
LP
81/* How many iterations to execute before returning -ELOOP */
82#define CHASE_SYMLINKS_MAX 32
83
c4f4fce7 84int chase_symlinks(const char *path_with_prefix, const char *root, unsigned flags, char **ret);
676bcb0f 85
21c692e9
LP
86int chase_symlinks_and_open(const char *path, const char *root, unsigned chase_flags, int open_flags, char **ret_path);
87int chase_symlinks_and_opendir(const char *path, const char *root, unsigned chase_flags, char **ret_path, DIR **ret_dir);
d2bcd0ba 88int chase_symlinks_and_stat(const char *path, const char *root, unsigned chase_flags, char **ret_path, struct stat *ret_stat);
21c692e9 89
676bcb0f
LP
90/* Useful for usage with _cleanup_(), removes a directory and frees the pointer */
91static inline void rmdir_and_free(char *p) {
dfd14786 92 PROTECT_ERRNO;
676bcb0f
LP
93 (void) rmdir(p);
94 free(p);
95}
96DEFINE_TRIVIAL_CLEANUP_FUNC(char*, rmdir_and_free);
f5b84de2
LP
97
98static inline void unlink_and_free(char *p) {
dfd14786 99 (void) unlink_noerrno(p);
f5b84de2
LP
100 free(p);
101}
102DEFINE_TRIVIAL_CLEANUP_FUNC(char*, unlink_and_free);
57a4359e
LP
103
104int access_fd(int fd, int mode);
43767d9d 105
627d2bac 106void unlink_tempfilep(char (*p)[]);
43767d9d 107int unlinkat_deallocate(int fd, const char *name, int flags);
11b29a96
LP
108
109int fsync_directory_of_file(int fd);
36695e88 110int fsync_path_at(int at_fd, const char *path);
ef8becfa 111
71f51416
LP
112int syncfs_path(int atfd, const char *path);
113
ef8becfa 114int open_parent(const char *path, int flags, mode_t mode);