1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Tests that opening the current directory, reading its entries
// rewinding and reading its entries again gives the same entries both times.
//
// https://github.com/mpartel/bindfs/issues/41
#if __linux__ && __x86_64__
#define _GNU_SOURCE
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <unistd.h>
#define BUF_SIZE 4096
int main(void)
{
int fd = open(".", O_RDONLY | O_DIRECTORY);
if (fd == -1) {
perror("failed to open '.'");
return 1;
}
char buf1[BUF_SIZE];
char buf2[BUF_SIZE];
memset(buf1, 0, BUF_SIZE);
memset(buf2, 0, BUF_SIZE);
int amt_read1 = syscall(SYS_getdents, fd, buf1, BUF_SIZE);
if (amt_read1 <= 0) {
fprintf(stderr, "amt_read1=%d\n", amt_read1);
close(fd);
return 1;
}
off_t seek_res = lseek(fd, 0, SEEK_SET);
if (seek_res == (off_t)-1) {
perror("failed to lseek to 0");
close(fd);
return 1;
}
int amt_read2 = syscall(SYS_getdents, fd, buf2, BUF_SIZE);
if (amt_read2 <= 0) {
fprintf(stderr, "amt_read2=%d\n", amt_read2);
close(fd);
return 1;
}
if (amt_read1 != amt_read2) {
fprintf(stderr,
"First read gave %d bytes, second read gave %d bytes.\n",
amt_read1, amt_read2);
close(fd);
return 1;
}
if (memcmp(buf1, buf2, BUF_SIZE) != 0) {
fprintf(stderr, "First and second read results differ.\n");
close(fd);
return 1;
}
close(fd);
return 0;
}
#else
#include <stdio.h>
int main(void)
{
printf("This test currently only compiles on Linux/amd64.\n");
printf("Skipping by just returning successfully.\n");
return 0;
}
#endif
|