renameat tests: EBADF tests.
[gnulib.git] / tests / test-renameat.c
1 /* Tests of renameat.
2    Copyright (C) 2009-2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Eric Blake <ebb9@byu.net>, 2009.  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (renameat, int, (int, char const *, int, char const *));
25
26 #include <dirent.h>
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <stdbool.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <unistd.h>
33 #include <sys/stat.h>
34
35 #include "filenamecat.h"
36 #include "ignore-value.h"
37 #include "macros.h"
38
39 #define BASE "test-renameat.t"
40
41 #include "test-rename.h"
42
43 static int dfd1 = AT_FDCWD;
44 static int dfd2 = AT_FDCWD;
45
46 /* Wrapper to test renameat like rename.  */
47 static int
48 do_rename (char const *name1, char const *name2)
49 {
50   return renameat (dfd1, name1, dfd2, name2);
51 }
52
53 int
54 main (void)
55 {
56   int i;
57   int dfd;
58   char *cwd;
59   int result;
60
61   /* Clean up any trash from prior testsuite runs.  */
62   ignore_value (system ("rm -rf " BASE "*"));
63
64   /* Test behaviour for invalid file descriptors.  */
65   {
66     errno = 0;
67     ASSERT (renameat (-1, "foo", AT_FDCWD, "bar") == -1);
68     ASSERT (errno == EBADF);
69   }
70   {
71     errno = 0;
72     ASSERT (renameat (99, "foo", AT_FDCWD, "bar") == -1);
73     ASSERT (errno == EBADF);
74   }
75   ASSERT (close (creat (BASE "oo", 0600)) == 0);
76   {
77     errno = 0;
78     ASSERT (renameat (AT_FDCWD, BASE "oo", -1, "bar") == -1);
79     ASSERT (errno == EBADF);
80   }
81   {
82     errno = 0;
83     ASSERT (renameat (AT_FDCWD, BASE "oo", 99, "bar") == -1);
84     ASSERT (errno == EBADF);
85   }
86
87   /* Test basic rename functionality, using current directory.  */
88   result = test_rename (do_rename, false);
89   dfd1 = open (".", O_RDONLY);
90   ASSERT (0 <= dfd1);
91   ASSERT (test_rename (do_rename, false) == result);
92   dfd2 = dfd1;
93   ASSERT (test_rename (do_rename, false) == result);
94   dfd1 = AT_FDCWD;
95   ASSERT (test_rename (do_rename, false) == result);
96   ASSERT (close (dfd2) == 0);
97
98   /* Create locations to manipulate.  */
99   ASSERT (mkdir (BASE "sub1", 0700) == 0);
100   ASSERT (mkdir (BASE "sub2", 0700) == 0);
101   dfd = creat (BASE "00", 0600);
102   ASSERT (0 <= dfd);
103   ASSERT (close (dfd) == 0);
104   cwd = getcwd (NULL, 0);
105   ASSERT (cwd);
106
107   dfd = open (BASE "sub1", O_RDONLY);
108   ASSERT (0 <= dfd);
109   ASSERT (chdir (BASE "sub2") == 0);
110
111   /* There are 16 possible scenarios, based on whether an fd is
112      AT_FDCWD or real, and whether a file is absolute or relative.
113
114      To ensure that we test all of the code paths (rather than
115      triggering early normalization optimizations), we use a loop to
116      repeatedly rename a file in the parent directory, use an fd open
117      on subdirectory 1, all while executing in subdirectory 2; all
118      relative names are thus given with a leading "../".  Finally, the
119      last scenario (two relative paths given, neither one AT_FDCWD)
120      has two paths, based on whether the two fds are equivalent, so we
121      do the other variant after the loop.  */
122   for (i = 0; i < 16; i++)
123     {
124       int fd1 = (i & 8) ? dfd : AT_FDCWD;
125       char *file1 = file_name_concat ((i & 4) ? ".." : cwd, BASE "xx", NULL);
126       int fd2 = (i & 2) ? dfd : AT_FDCWD;
127       char *file2 = file_name_concat ((i & 1) ? ".." : cwd, BASE "xx", NULL);
128
129       ASSERT (sprintf (strchr (file1, '\0') - 2, "%02d", i) == 2);
130       ASSERT (sprintf (strchr (file2, '\0') - 2, "%02d", i + 1) == 2);
131       ASSERT (renameat (fd1, file1, fd2, file2) == 0);
132       free (file1);
133       free (file2);
134     }
135   dfd2 = open ("..", O_RDONLY);
136   ASSERT (0 <= dfd2);
137   ASSERT (renameat (dfd, "../" BASE "16", dfd2, BASE "17") == 0);
138   ASSERT (close (dfd2) == 0);
139
140   /* Now we change back to the parent directory, and set dfd to ".";
141      using dfd in remaining tests will expose any bugs if emulation
142      via /proc/self/fd doesn't check for empty names.  */
143   ASSERT (chdir ("..") == 0);
144   ASSERT (close (dfd) == 0);
145   dfd = open (".", O_RDONLY);
146   ASSERT (0 <= dfd);
147
148   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
149   errno = 0;
150   ASSERT (renameat (dfd, BASE "sub1", dfd, BASE "sub2") == -1);
151   ASSERT (errno == EEXIST || errno == ENOTEMPTY);
152   ASSERT (unlink (BASE "sub2/file") == 0);
153   errno = 0;
154   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1/.") == -1);
155   ASSERT (errno == EINVAL || errno == EISDIR || errno == EBUSY
156           || errno == ENOTEMPTY || errno == EEXIST);
157   errno = 0;
158   ASSERT (renameat (dfd, BASE "sub2/.", dfd, BASE "sub1") == -1);
159   ASSERT (errno == EINVAL || errno == EBUSY || errno == EEXIST);
160   errno = 0;
161   ASSERT (renameat (dfd, BASE "17", dfd, BASE "sub1") == -1);
162   ASSERT (errno == EISDIR);
163   errno = 0;
164   ASSERT (renameat (dfd, BASE "nosuch", dfd, BASE "18") == -1);
165   ASSERT (errno == ENOENT);
166   errno = 0;
167   ASSERT (renameat (dfd, "", dfd, BASE "17") == -1);
168   ASSERT (errno == ENOENT);
169   errno = 0;
170   ASSERT (renameat (dfd, BASE "17", dfd, "") == -1);
171   ASSERT (errno == ENOENT);
172   errno = 0;
173   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "17") == -1);
174   ASSERT (errno == ENOTDIR);
175   errno = 0;
176   ASSERT (renameat (dfd, BASE "17/", dfd, BASE "18") == -1);
177   ASSERT (errno == ENOTDIR);
178   errno = 0;
179   ASSERT (renameat (dfd, BASE "17", dfd, BASE "18/") == -1);
180   ASSERT (errno == ENOTDIR || errno == ENOENT);
181
182   /* Finally, make sure we can overwrite existing files.  */
183   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
184   errno = 0;
185   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1") == 0);
186   ASSERT (renameat (dfd, BASE "sub1/file", dfd, BASE "17") == 0);
187
188   /* Cleanup.  */
189   ASSERT (close (dfd) == 0);
190   errno = 0;
191   ASSERT (unlink (BASE "sub1/file") == -1);
192   ASSERT (errno == ENOENT);
193   ASSERT (unlink (BASE "17") == 0);
194   ASSERT (rmdir (BASE "sub1") == 0);
195   errno = 0;
196   ASSERT (rmdir (BASE "sub2") == -1);
197   ASSERT (errno == ENOENT);
198   free (cwd);
199
200   if (result)
201     fputs ("skipping test: symlinks not supported on this file system\n",
202            stderr);
203   return result;
204 }