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