malloc/Makefile: Split and sort tests
[glibc.git] / io / tst-renameat.c
blob0b9da5fd6d94832b35d1cbdf270926d1f8c13a26
1 #include <dirent.h>
2 #include <fcntl.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <unistd.h>
7 #include <sys/stat.h>
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"
19 static int dir_fd;
21 static void
22 prepare (void)
24 size_t test_dir_len = strlen (test_dir);
25 static const char dir_name[] = "/tst-renameat.XXXXXX";
27 size_t dirbuflen = test_dir_len + sizeof (dir_name);
28 char *dirbuf = malloc (dirbuflen);
29 if (dirbuf == NULL)
31 puts ("out of memory");
32 exit (1);
35 snprintf (dirbuf, dirbuflen, "%s%s", test_dir, dir_name);
36 if (mkdtemp (dirbuf) == NULL)
38 puts ("cannot create temporary directory");
39 exit (1);
42 add_temp_file (dirbuf);
44 dir_fd = open (dirbuf, O_RDONLY | O_DIRECTORY);
45 if (dir_fd == -1)
47 puts ("cannot open directory");
48 exit (1);
53 static int
54 do_test (void)
56 /* fdopendir takes over the descriptor, make a copy. */
57 int dupfd = dup (dir_fd);
58 if (dupfd == -1)
60 puts ("dup failed");
61 return 1;
63 if (lseek (dupfd, 0, SEEK_SET) != 0)
65 puts ("1st lseek failed");
66 return 1;
69 /* The directory should be empty safe the . and .. files. */
70 DIR *dir = fdopendir (dupfd);
71 if (dir == NULL)
73 puts ("fdopendir failed");
74 return 1;
76 struct dirent64 *d;
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);
81 return 1;
83 closedir (dir);
85 /* Try to create a file. */
86 int fd = openat (dir_fd, "some-file", O_CREAT|O_RDWR|O_EXCL, 0666);
87 if (fd == -1)
89 if (errno == ENOSYS)
91 puts ("*at functions not supported");
92 return 0;
95 puts ("file creation failed");
96 return 1;
98 xwrite (fd, "hello", 5);
99 puts ("file created");
101 struct stat64 st1;
102 if (fstat64 (fd, &st1) != 0)
104 puts ("fstat64 failed");
105 return 1;
108 /* Using a descriptor for a normal file must fail. */
109 if (renameat (fd, "some-file", dir_fd, "another-file") == 0)
111 puts ("renameat with normal file descriptor succeeded");
112 return 1;
114 if (errno != ENOTDIR)
116 puts ("error for renameat with normal file descriptor not ENOTDIR");
117 return 1;
120 if (renameat (dir_fd, "some-file", fd, "another-file") == 0)
122 puts ("2nd renameat with normal file descriptor succeeded");
123 return 1;
125 if (errno != ENOTDIR)
127 puts ("error for 2nd renameat with normal file descriptor not ENOTDIR");
128 return 1;
131 close (fd);
133 if (renameat (dir_fd, "some-file", dir_fd, "another-file") != 0)
135 puts ("renameat failed");
136 return 1;
139 struct stat64 st2;
140 if (fstatat64 (dir_fd, "some-file", &st2, 0) == 0)
142 puts ("fstatat64 succeeded");
143 return 1;
145 if (errno != ENOENT)
147 puts ("fstatat64 did not fail with ENOENT");
148 return 1;
151 if (fstatat64 (dir_fd, "another-file", &st2, 0) != 0)
153 puts ("2nd fstatat64 failed");
154 return 1;
157 if (st1.st_dev != st2.st_dev
158 || st1.st_ino != st2.st_ino
159 || st1.st_size != st2.st_size)
161 puts ("stat results do not match");
162 return 1;
165 /* Create a file descriptor which is closed again right away. */
166 int dir_fd2 = dup (dir_fd);
167 if (dir_fd2 == -1)
169 puts ("dup failed");
170 return 1;
172 close (dir_fd2);
174 if (renameat (dir_fd2, "another-file", dir_fd, "some-file") == 0)
176 puts ("renameat with closed file descriptor succeeded");
177 return 1;
179 if (errno != EBADF)
181 puts ("error for renameat with closed file descriptor not EBADF");
182 return 1;
185 if (renameat (dir_fd, "another-file", dir_fd2, "some-file") == 0)
187 puts ("2nd renameat with closed file descriptor succeeded");
188 return 1;
190 if (errno != EBADF)
192 puts ("error for 2nd renameat with closed file descriptor not EBADF");
193 return 1;
196 if (unlinkat (dir_fd, "another-file", 0) != 0)
198 puts ("unlinkat failed");
199 return 1;
202 if (renameat (-1, "another-file", dir_fd, "some-file") == 0)
204 puts ("renameat with invalid file descriptor succeeded");
205 return 1;
207 if (errno != EBADF)
209 puts ("error for renameat with invalid file descriptor not EBADF");
210 return 1;
213 if (renameat (dir_fd, "another-file", -1, "some-file") == 0)
215 puts ("2nd renameat with invalid file descriptor succeeded");
216 return 1;
218 if (errno != EBADF)
220 puts ("error for 2nd renameat with invalid file descriptor not EBADF");
221 return 1;
224 close (dir_fd);
226 return 0;