Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */
2 : :
3 : : #include <errno.h>
4 : : #include <fcntl.h>
5 : : #include <sys/types.h>
6 : : #include <sys/xattr.h>
7 : : #include <unistd.h>
8 : :
9 : : #include "alloc-util.h"
10 : : #include "fd-util.h"
11 : : #include "fs-util.h"
12 : : #include "macro.h"
13 : : #include "string-util.h"
14 : : #include "tests.h"
15 : : #include "tmpfile-util.h"
16 : : #include "xattr-util.h"
17 : :
18 : 4 : static void test_fgetxattrat_fake(void) {
19 : 4 : char t[] = "/var/tmp/xattrtestXXXXXX";
20 : 4 : _cleanup_close_ int fd = -1;
21 : : const char *x;
22 : : char v[3];
23 : : int r;
24 : : size_t size;
25 : :
26 [ - + ]: 4 : assert_se(mkdtemp(t));
27 [ + + + - : 20 : x = strjoina(t, "/test");
- + - + +
+ + - ]
28 [ - + ]: 4 : assert_se(touch(x) >= 0);
29 : :
30 : 4 : r = setxattr(x, "user.foo", "bar", 3, 0);
31 [ - + # # ]: 4 : if (r < 0 && errno == EOPNOTSUPP) /* no xattrs supported on /var/tmp... */
32 : 0 : goto cleanup;
33 [ - + ]: 4 : assert_se(r >= 0);
34 : :
35 : 4 : fd = open(t, O_RDONLY|O_DIRECTORY|O_CLOEXEC|O_NOCTTY);
36 [ - + ]: 4 : assert_se(fd >= 0);
37 : :
38 [ - + ]: 4 : assert_se(fgetxattrat_fake(fd, "test", "user.foo", v, 3, 0, &size) >= 0);
39 [ - + ]: 4 : assert_se(size == 3);
40 [ - + ]: 4 : assert_se(memcmp(v, "bar", 3) == 0);
41 : :
42 : 4 : safe_close(fd);
43 : 4 : fd = open("/", O_RDONLY|O_DIRECTORY|O_CLOEXEC|O_NOCTTY);
44 [ - + ]: 4 : assert_se(fd >= 0);
45 [ - + ]: 4 : assert_se(fgetxattrat_fake(fd, "usr", "user.idontexist", v, 3, 0, &size) == -ENODATA);
46 : :
47 : 4 : cleanup:
48 [ - + ]: 4 : assert_se(unlink(x) >= 0);
49 [ - + ]: 4 : assert_se(rmdir(t) >= 0);
50 : 4 : }
51 : :
52 : 4 : static void test_getcrtime(void) {
53 : :
54 : 4 : _cleanup_close_ int fd = -1;
55 : : char ts[FORMAT_TIMESTAMP_MAX];
56 : : const char *vt;
57 : : usec_t usec, k;
58 : : int r;
59 : :
60 [ - + ]: 4 : assert_se(tmp_dir(&vt) >= 0);
61 : :
62 : 4 : fd = open_tmpfile_unlinkable(vt, O_RDWR);
63 [ - + ]: 4 : assert_se(fd >= 0);
64 : :
65 : 4 : r = fd_getcrtime(fd, &usec);
66 [ + - ]: 4 : if (r < 0)
67 [ + - ]: 4 : log_debug_errno(r, "btime: %m");
68 : : else
69 [ # # ]: 0 : log_debug("btime: %s", format_timestamp(ts, sizeof(ts), usec));
70 : :
71 : 4 : k = now(CLOCK_REALTIME);
72 : :
73 : 4 : r = fd_setcrtime(fd, 1519126446UL * USEC_PER_SEC);
74 [ + - - + ]: 4 : if (!IN_SET(r, -EOPNOTSUPP, -ENOTTY)) {
75 [ # # ]: 0 : assert_se(fd_getcrtime(fd, &usec) >= 0);
76 [ # # # # ]: 0 : assert_se(k < 1519126446UL * USEC_PER_SEC ||
77 : : usec == 1519126446UL * USEC_PER_SEC);
78 : : }
79 : 4 : }
80 : :
81 : 4 : int main(void) {
82 : 4 : test_setup_logging(LOG_DEBUG);
83 : :
84 : 4 : test_fgetxattrat_fake();
85 : 4 : test_getcrtime();
86 : :
87 : 4 : return 0;
88 : : }
|