9 #include <support/xunistd.h>
11 static void prepare (void);
12 #define PREPARE(argc, argv) prepare ()
14 static int do_test (void);
15 #define TEST_FUNCTION do_test ()
17 #include "../test-skeleton.c"
24 size_t test_dir_len
= strlen (test_dir
);
25 static const char dir_name
[] = "/tst-symlinkat.XXXXXX";
27 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
28 char *dirbuf
= malloc (dirbuflen
);
31 puts ("out of memory");
35 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
36 if (mkdtemp (dirbuf
) == NULL
)
38 puts ("cannot create temporary directory");
42 add_temp_file (dirbuf
);
44 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
47 puts ("cannot open directory");
56 /* fdopendir takes over the descriptor, make a copy. */
57 int dupfd
= dup (dir_fd
);
63 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
65 puts ("1st lseek failed");
69 /* The directory should be empty safe the . and .. files. */
70 DIR *dir
= fdopendir (dupfd
);
73 puts ("fdopendir failed");
77 while ((d
= readdir64 (dir
)) != NULL
)
78 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
80 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
85 /* Try to create a file. */
86 int fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
91 puts ("*at functions not supported");
95 puts ("file creation failed");
98 xwrite (fd
, "hello", 5);
99 puts ("file created");
102 if (fstat64 (fd
, &st1
) != 0)
104 puts ("fstat64 failed");
110 if (symlinkat ("some-file", dir_fd
, "another-file") != 0)
112 puts ("symlinkat failed");
117 if (fstatat64 (dir_fd
, "some-file", &st2
, 0) != 0)
119 puts ("fstatat64 failed");
122 if (st1
.st_dev
!= st2
.st_dev
|| st1
.st_ino
!= st2
.st_ino
)
124 puts ("file changed after symlinkat");
128 if (fstatat64 (dir_fd
, "another-file", &st2
, AT_SYMLINK_NOFOLLOW
) != 0)
130 puts ("2nd fstatat64 failed");
133 if (!S_ISLNK (st2
.st_mode
))
135 puts ("2nd fstatat64 does not show file is a symlink");
139 if (fstatat64 (dir_fd
, "another-file", &st2
, 0) != 0)
141 puts ("3rd fstatat64 failed");
144 if (st1
.st_dev
!= st2
.st_dev
145 || st1
.st_ino
!= st2
.st_ino
146 || st1
.st_size
!= st2
.st_size
)
148 puts ("stat results do not match");
152 if (unlinkat (dir_fd
, "another-file", 0) != 0)
154 puts ("unlinkat failed");
157 if (unlinkat (dir_fd
, "some-file", 0) != 0)
159 puts ("2nd unlinkat failed");