10 static void prepare (void);
11 #define PREPARE(argc, argv) prepare ()
13 static int do_test (void);
14 #define TEST_FUNCTION do_test ()
16 #include "../test-skeleton.c"
23 size_t test_dir_len
= strlen (test_dir
);
24 static const char dir_name
[] = "/tst-renameat.XXXXXX";
26 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
27 char *dirbuf
= malloc (dirbuflen
);
30 puts ("out of memory");
34 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
35 if (mkdtemp (dirbuf
) == NULL
)
37 puts ("cannot create temporary directory");
41 add_temp_file (dirbuf
);
43 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
46 puts ("cannot open directory");
55 /* fdopendir takes over the descriptor, make a copy. */
56 int dupfd
= dup (dir_fd
);
62 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
64 puts ("1st lseek failed");
68 /* The directory should be empty safe the . and .. files. */
69 DIR *dir
= fdopendir (dupfd
);
72 puts ("fdopendir failed");
76 while ((d
= readdir64 (dir
)) != NULL
)
77 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
79 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
84 /* Try to create a file. */
85 int fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
90 puts ("*at functions not supported");
94 puts ("file creation failed");
97 write (fd
, "hello", 5);
98 puts ("file created");
101 if (fstat64 (fd
, &st1
) != 0)
103 puts ("fstat64 failed");
107 /* Using a descriptor for a normal file must fail. */
108 if (renameat (fd
, "some-file", dir_fd
, "another-file") == 0)
110 puts ("renameat with normal file descriptor succeeded");
113 if (errno
!= ENOTDIR
)
115 puts ("error for renameat with normal file descriptor not ENOTDIR");
119 if (renameat (dir_fd
, "some-file", fd
, "another-file") == 0)
121 puts ("2nd renameat with normal file descriptor succeeded");
124 if (errno
!= ENOTDIR
)
126 puts ("error for 2nd renameat with normal file descriptor not ENOTDIR");
132 if (renameat (dir_fd
, "some-file", dir_fd
, "another-file") != 0)
134 puts ("renameat failed");
139 if (fstatat64 (dir_fd
, "some-file", &st2
, 0) == 0)
141 puts ("fstatat64 succeeded");
146 puts ("fstatat64 did not fail with ENOENT");
150 if (fstatat64 (dir_fd
, "another-file", &st2
, 0) != 0)
152 puts ("2nd fstatat64 failed");
156 if (st1
.st_dev
!= st2
.st_dev
157 || st1
.st_ino
!= st2
.st_ino
158 || st1
.st_size
!= st2
.st_size
)
160 puts ("stat results do not match");
164 /* Create a file descriptor which is closed again right away. */
165 int dir_fd2
= dup (dir_fd
);
173 if (renameat (dir_fd2
, "another-file", dir_fd
, "some-file") == 0)
175 puts ("renameat with closed file descriptor succeeded");
180 puts ("error for renameat with closed file descriptor not EBADF");
184 if (renameat (dir_fd
, "another-file", dir_fd2
, "some-file") == 0)
186 puts ("2nd renameat with closed file descriptor succeeded");
191 puts ("error for 2nd renameat with closed file descriptor not EBADF");
195 if (unlinkat (dir_fd
, "another-file", 0) != 0)
197 puts ("unlinkat failed");
201 if (renameat (-1, "another-file", dir_fd
, "some-file") == 0)
203 puts ("renameat with invalid file descriptor succeeded");
208 puts ("error for renameat with invalid file descriptor not EBADF");
212 if (renameat (dir_fd
, "another-file", -1, "some-file") == 0)
214 puts ("2nd renameat with invalid file descriptor succeeded");
219 puts ("error for 2nd renameat with invalid file descriptor not EBADF");