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>
8
9#include <support/xunistd.h>
10
11static void prepare (void);
12#define PREPARE(argc, argv) prepare ()
13
14static int do_test (void);
15#define TEST_FUNCTION do_test ()
16
17#include "../test-skeleton.c"
18
19static int dir_fd;
20
21static void
22prepare (void)
23{
24 size_t test_dir_len = strlen (test_dir);
25 static const char dir_name[] = "/tst-renameat.XXXXXX";
26
27 size_t dirbuflen = test_dir_len + sizeof (dir_name);
28 char *dirbuf = malloc (size: dirbuflen);
29 if (dirbuf == NULL)
30 {
31 puts (s: "out of memory");
32 exit (1);
33 }
34
35 snprintf (s: dirbuf, maxlen: dirbuflen, format: "%s%s", test_dir, dir_name);
36 if (mkdtemp (template: dirbuf) == NULL)
37 {
38 puts (s: "cannot create temporary directory");
39 exit (1);
40 }
41
42 add_temp_file (name: dirbuf);
43
44 dir_fd = open (file: dirbuf, O_RDONLY | O_DIRECTORY);
45 if (dir_fd == -1)
46 {
47 puts (s: "cannot open directory");
48 exit (1);
49 }
50}
51
52
53static int
54do_test (void)
55{
56 /* fdopendir takes over the descriptor, make a copy. */
57 int dupfd = dup (fd: dir_fd);
58 if (dupfd == -1)
59 {
60 puts (s: "dup failed");
61 return 1;
62 }
63 if (lseek (fd: dupfd, offset: 0, SEEK_SET) != 0)
64 {
65 puts (s: "1st lseek failed");
66 return 1;
67 }
68
69 /* The directory should be empty safe the . and .. files. */
70 DIR *dir = fdopendir (fd: dupfd);
71 if (dir == NULL)
72 {
73 puts (s: "fdopendir failed");
74 return 1;
75 }
76 struct dirent64 *d;
77 while ((d = readdir64 (dirp: dir)) != NULL)
78 if (strcmp (d->d_name, ".") != 0 && strcmp (d->d_name, "..") != 0)
79 {
80 printf (format: "temp directory contains file \"%s\"\n", d->d_name);
81 return 1;
82 }
83 closedir (dirp: dir);
84
85 /* Try to create a file. */
86 int fd = openat (fd: dir_fd, file: "some-file", O_CREAT|O_RDWR|O_EXCL, 0666);
87 if (fd == -1)
88 {
89 if (errno == ENOSYS)
90 {
91 puts (s: "*at functions not supported");
92 return 0;
93 }
94
95 puts (s: "file creation failed");
96 return 1;
97 }
98 xwrite (fd, "hello", 5);
99 puts (s: "file created");
100
101 struct stat64 st1;
102 if (fstat64 (fd: fd, buf: &st1) != 0)
103 {
104 puts (s: "fstat64 failed");
105 return 1;
106 }
107
108 /* Using a descriptor for a normal file must fail. */
109 if (renameat (oldfd: fd, old: "some-file", newfd: dir_fd, new: "another-file") == 0)
110 {
111 puts (s: "renameat with normal file descriptor succeeded");
112 return 1;
113 }
114 if (errno != ENOTDIR)
115 {
116 puts (s: "error for renameat with normal file descriptor not ENOTDIR");
117 return 1;
118 }
119
120 if (renameat (oldfd: dir_fd, old: "some-file", newfd: fd, new: "another-file") == 0)
121 {
122 puts (s: "2nd renameat with normal file descriptor succeeded");
123 return 1;
124 }
125 if (errno != ENOTDIR)
126 {
127 puts (s: "error for 2nd renameat with normal file descriptor not ENOTDIR");
128 return 1;
129 }
130
131 close (fd: fd);
132
133 if (renameat (oldfd: dir_fd, old: "some-file", newfd: dir_fd, new: "another-file") != 0)
134 {
135 puts (s: "renameat failed");
136 return 1;
137 }
138
139 struct stat64 st2;
140 if (fstatat64 (fd: dir_fd, file: "some-file", buf: &st2, flag: 0) == 0)
141 {
142 puts (s: "fstatat64 succeeded");
143 return 1;
144 }
145 if (errno != ENOENT)
146 {
147 puts (s: "fstatat64 did not fail with ENOENT");
148 return 1;
149 }
150
151 if (fstatat64 (fd: dir_fd, file: "another-file", buf: &st2, flag: 0) != 0)
152 {
153 puts (s: "2nd fstatat64 failed");
154 return 1;
155 }
156
157 if (st1.st_dev != st2.st_dev
158 || st1.st_ino != st2.st_ino
159 || st1.st_size != st2.st_size)
160 {
161 puts (s: "stat results do not match");
162 return 1;
163 }
164
165 /* Create a file descriptor which is closed again right away. */
166 int dir_fd2 = dup (fd: dir_fd);
167 if (dir_fd2 == -1)
168 {
169 puts (s: "dup failed");
170 return 1;
171 }
172 close (fd: dir_fd2);
173
174 if (renameat (oldfd: dir_fd2, old: "another-file", newfd: dir_fd, new: "some-file") == 0)
175 {
176 puts (s: "renameat with closed file descriptor succeeded");
177 return 1;
178 }
179 if (errno != EBADF)
180 {
181 puts (s: "error for renameat with closed file descriptor not EBADF");
182 return 1;
183 }
184
185 if (renameat (oldfd: dir_fd, old: "another-file", newfd: dir_fd2, new: "some-file") == 0)
186 {
187 puts (s: "2nd renameat with closed file descriptor succeeded");
188 return 1;
189 }
190 if (errno != EBADF)
191 {
192 puts (s: "error for 2nd renameat with closed file descriptor not EBADF");
193 return 1;
194 }
195
196 if (unlinkat (fd: dir_fd, name: "another-file", flag: 0) != 0)
197 {
198 puts (s: "unlinkat failed");
199 return 1;
200 }
201
202 if (renameat (oldfd: -1, old: "another-file", newfd: dir_fd, new: "some-file") == 0)
203 {
204 puts (s: "renameat with invalid file descriptor succeeded");
205 return 1;
206 }
207 if (errno != EBADF)
208 {
209 puts (s: "error for renameat with invalid file descriptor not EBADF");
210 return 1;
211 }
212
213 if (renameat (oldfd: dir_fd, old: "another-file", newfd: -1, new: "some-file") == 0)
214 {
215 puts (s: "2nd renameat with invalid file descriptor succeeded");
216 return 1;
217 }
218 if (errno != EBADF)
219 {
220 puts (s: "error for 2nd renameat with invalid file descriptor not EBADF");
221 return 1;
222 }
223
224 close (fd: dir_fd);
225
226 return 0;
227}
228

source code of glibc/io/tst-renameat.c