chiark / gitweb /
tree-wide: remove Lennart's copyright lines
[elogind.git] / src / basic / stat-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <stdbool.h>
5 #include <stddef.h>
6 #include <sys/stat.h>
7 #include <sys/statfs.h>
8 #include <sys/types.h>
9 #include <sys/vfs.h>
10
11 #include "macro.h"
12
13 #if 0 /// UNNEEDED by elogind
14 int is_symlink(const char *path);
15 #endif // 0
16 int is_dir(const char *path, bool follow);
17 #if 0 /// UNNEEDED by elogind
18 int is_device_node(const char *path);
19
20 int dir_is_empty(const char *path);
21
22 static inline int dir_is_populated(const char *path) {
23         int r;
24         r = dir_is_empty(path);
25         if (r < 0)
26                 return r;
27         return !r;
28 }
29 #endif // 0
30
31 bool null_or_empty(struct stat *st) _pure_;
32 int null_or_empty_path(const char *fn);
33 #if 0 /// UNNEEDED by elogind
34 int null_or_empty_fd(int fd);
35 #endif // 0
36
37 int path_is_read_only_fs(const char *path);
38 #if 0 /// UNNEEDED by elogind
39 #endif // 0
40
41 int files_same(const char *filea, const char *fileb, int flags);
42
43 /* The .f_type field of struct statfs is really weird defined on
44  * different archs. Let's give its type a name. */
45 typedef typeof(((struct statfs*)NULL)->f_type) statfs_f_type_t;
46
47 bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
48 #if 0 /// UNNEEDED by elogind
49 #endif // 0
50 int fd_is_fs_type(int fd, statfs_f_type_t magic_value);
51 int path_is_fs_type(const char *path, statfs_f_type_t magic_value);
52
53 bool is_temporary_fs(const struct statfs *s) _pure_;
54 bool is_network_fs(const struct statfs *s) _pure_;
55
56 #if 0 /// UNNEEDED by elogind
57 int fd_is_temporary_fs(int fd);
58 int fd_is_network_fs(int fd);
59
60 int fd_is_network_ns(int fd);
61
62 int path_is_temporary_fs(const char *path);
63 #endif // 0
64
65 /* Because statfs.t_type can be int on some architectures, we have to cast
66  * the const magic to the type, otherwise the compiler warns about
67  * signed/unsigned comparison, because the magic can be 32 bit unsigned.
68  */
69 #define F_TYPE_EQUAL(a, b) (a == (typeof(a)) b)
70
71 int stat_verify_regular(const struct stat *st);
72 int fd_verify_regular(int fd);