]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-stat-util.c
util-lib: split out all temporary file related calls into tmpfiles-util.c
[thirdparty/systemd.git] / src / test / test-stat-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <fcntl.h>
4 #include <linux/magic.h>
5 #include <unistd.h>
6
7 #include "alloc-util.h"
8 #include "fd-util.h"
9 #include "macro.h"
10 #include "missing.h"
11 #include "mountpoint-util.h"
12 #include "path-util.h"
13 #include "stat-util.h"
14 #include "tmpfile-util.h"
15
16 static void test_files_same(void) {
17 _cleanup_close_ int fd = -1;
18 char name[] = "/tmp/test-files_same.XXXXXX";
19 char name_alias[] = "/tmp/test-files_same.alias";
20
21 fd = mkostemp_safe(name);
22 assert_se(fd >= 0);
23 assert_se(symlink(name, name_alias) >= 0);
24
25 assert_se(files_same(name, name, 0));
26 assert_se(files_same(name, name, AT_SYMLINK_NOFOLLOW));
27 assert_se(files_same(name, name_alias, 0));
28 assert_se(!files_same(name, name_alias, AT_SYMLINK_NOFOLLOW));
29
30 unlink(name);
31 unlink(name_alias);
32 }
33
34 static void test_is_symlink(void) {
35 char name[] = "/tmp/test-is_symlink.XXXXXX";
36 char name_link[] = "/tmp/test-is_symlink.link";
37 _cleanup_close_ int fd = -1;
38
39 fd = mkostemp_safe(name);
40 assert_se(fd >= 0);
41 assert_se(symlink(name, name_link) >= 0);
42
43 assert_se(is_symlink(name) == 0);
44 assert_se(is_symlink(name_link) == 1);
45 assert_se(is_symlink("/a/file/which/does/not/exist/i/guess") < 0);
46
47 unlink(name);
48 unlink(name_link);
49 }
50
51 static void test_path_is_fs_type(void) {
52 /* run might not be a mount point in build chroots */
53 if (path_is_mount_point("/run", NULL, AT_SYMLINK_FOLLOW) > 0) {
54 assert_se(path_is_fs_type("/run", TMPFS_MAGIC) > 0);
55 assert_se(path_is_fs_type("/run", BTRFS_SUPER_MAGIC) == 0);
56 }
57 assert_se(path_is_fs_type("/proc", PROC_SUPER_MAGIC) > 0);
58 assert_se(path_is_fs_type("/proc", BTRFS_SUPER_MAGIC) == 0);
59 assert_se(path_is_fs_type("/proc", BTRFS_SUPER_MAGIC) == 0);
60 assert_se(path_is_fs_type("/i-dont-exist", BTRFS_SUPER_MAGIC) == -ENOENT);
61 }
62
63 static void test_path_is_temporary_fs(void) {
64 /* run might not be a mount point in build chroots */
65 if (path_is_mount_point("/run", NULL, AT_SYMLINK_FOLLOW) > 0)
66 assert_se(path_is_temporary_fs("/run") > 0);
67 assert_se(path_is_temporary_fs("/proc") == 0);
68 assert_se(path_is_temporary_fs("/i-dont-exist") == -ENOENT);
69 }
70
71 static void test_fd_is_network_ns(void) {
72 _cleanup_close_ int fd = -1;
73 assert_se(fd_is_network_ns(STDIN_FILENO) == 0);
74 assert_se(fd_is_network_ns(STDERR_FILENO) == 0);
75 assert_se(fd_is_network_ns(STDOUT_FILENO) == 0);
76
77 assert_se((fd = open("/proc/self/ns/mnt", O_CLOEXEC|O_RDONLY)) >= 0);
78 assert_se(IN_SET(fd_is_network_ns(fd), 0, -EUCLEAN));
79 fd = safe_close(fd);
80
81 assert_se((fd = open("/proc/self/ns/net", O_CLOEXEC|O_RDONLY)) >= 0);
82 assert_se(IN_SET(fd_is_network_ns(fd), 1, -EUCLEAN));
83 }
84
85 static void test_device_major_minor_valid(void) {
86 /* on glibc dev_t is 64bit, even though in the kernel it is only 32bit */
87 assert_cc(sizeof(dev_t) == sizeof(uint64_t));
88
89 assert_se(DEVICE_MAJOR_VALID(0U));
90 assert_se(DEVICE_MINOR_VALID(0U));
91
92 assert_se(DEVICE_MAJOR_VALID(1U));
93 assert_se(DEVICE_MINOR_VALID(1U));
94
95 assert_se(!DEVICE_MAJOR_VALID(-1U));
96 assert_se(!DEVICE_MINOR_VALID(-1U));
97
98 assert_se(DEVICE_MAJOR_VALID(1U << 10));
99 assert_se(DEVICE_MINOR_VALID(1U << 10));
100
101 assert_se(DEVICE_MAJOR_VALID((1U << 12) - 1));
102 assert_se(DEVICE_MINOR_VALID((1U << 20) - 1));
103
104 assert_se(!DEVICE_MAJOR_VALID((1U << 12)));
105 assert_se(!DEVICE_MINOR_VALID((1U << 20)));
106
107 assert_se(!DEVICE_MAJOR_VALID(1U << 25));
108 assert_se(!DEVICE_MINOR_VALID(1U << 25));
109
110 assert_se(!DEVICE_MAJOR_VALID(UINT32_MAX));
111 assert_se(!DEVICE_MINOR_VALID(UINT32_MAX));
112
113 assert_se(!DEVICE_MAJOR_VALID(UINT64_MAX));
114 assert_se(!DEVICE_MINOR_VALID(UINT64_MAX));
115
116 assert_se(DEVICE_MAJOR_VALID(major(0)));
117 assert_se(DEVICE_MINOR_VALID(minor(0)));
118 }
119
120 static void test_device_path_make_canonical_one(const char *path) {
121 _cleanup_free_ char *resolved = NULL, *raw = NULL;
122 struct stat st;
123 dev_t devno;
124 mode_t mode;
125 int r;
126
127 assert_se(stat(path, &st) >= 0);
128 r = device_path_make_canonical(st.st_mode, st.st_rdev, &resolved);
129 if (r == -ENOENT) /* maybe /dev/char/x:y and /dev/block/x:y are missing in this test environment, because we
130 * run in a container or so? */
131 return;
132
133 assert_se(r >= 0);
134 assert_se(path_equal(path, resolved));
135
136 assert_se(device_path_make_major_minor(st.st_mode, st.st_rdev, &raw) >= 0);
137 assert_se(device_path_parse_major_minor(raw, &mode, &devno) >= 0);
138
139 assert_se(st.st_rdev == devno);
140 assert_se((st.st_mode & S_IFMT) == (mode & S_IFMT));
141 }
142
143 static void test_device_path_make_canonical(void) {
144
145 test_device_path_make_canonical_one("/dev/null");
146 test_device_path_make_canonical_one("/dev/zero");
147 test_device_path_make_canonical_one("/dev/full");
148 test_device_path_make_canonical_one("/dev/random");
149 test_device_path_make_canonical_one("/dev/urandom");
150 test_device_path_make_canonical_one("/dev/tty");
151
152 if (is_device_node("/run/systemd/inaccessible/chr") > 0) {
153 test_device_path_make_canonical_one("/run/systemd/inaccessible/chr");
154 test_device_path_make_canonical_one("/run/systemd/inaccessible/blk");
155 }
156 }
157
158 int main(int argc, char *argv[]) {
159 test_files_same();
160 test_is_symlink();
161 test_path_is_fs_type();
162 test_path_is_temporary_fs();
163 test_fd_is_network_ns();
164 test_device_major_minor_valid();
165 test_device_path_make_canonical();
166
167 return 0;
168 }