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