Merge commit '86ba51d2c17219b82b977da0a912e05a3d9bf858' into stable, which was:
[gnulib.git] / tests / test-renameat.c
1 /* Tests of renameat.
2    Copyright (C) 2009, 2010 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 <fcntl.h>
27 #include <errno.h>
28 #include <stdbool.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include <sys/stat.h>
33
34 #include "filenamecat.h"
35 #include "xgetcwd.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 basic rename functionality, using current directory.  */
65   result = test_rename (do_rename, false);
66   dfd1 = open (".", O_RDONLY);
67   ASSERT (0 <= dfd1);
68   ASSERT (test_rename (do_rename, false) == result);
69   dfd2 = dfd1;
70   ASSERT (test_rename (do_rename, false) == result);
71   dfd1 = AT_FDCWD;
72   ASSERT (test_rename (do_rename, false) == result);
73   ASSERT (close (dfd2) == 0);
74
75   /* Create locations to manipulate.  */
76   ASSERT (mkdir (BASE "sub1", 0700) == 0);
77   ASSERT (mkdir (BASE "sub2", 0700) == 0);
78   dfd = creat (BASE "00", 0600);
79   ASSERT (0 <= dfd);
80   ASSERT (close (dfd) == 0);
81   cwd = xgetcwd ();
82
83   dfd = open (BASE "sub1", O_RDONLY);
84   ASSERT (0 <= dfd);
85   ASSERT (chdir (BASE "sub2") == 0);
86
87   /* There are 16 possible scenarios, based on whether an fd is
88      AT_FDCWD or real, and whether a file is absolute or relative.
89
90      To ensure that we test all of the code paths (rather than
91      triggering early normalization optimizations), we use a loop to
92      repeatedly rename a file in the parent directory, use an fd open
93      on subdirectory 1, all while executing in subdirectory 2; all
94      relative names are thus given with a leading "../".  Finally, the
95      last scenario (two relative paths given, neither one AT_FDCWD)
96      has two paths, based on whether the two fds are equivalent, so we
97      do the other variant after the loop.  */
98   for (i = 0; i < 16; i++)
99     {
100       int fd1 = (i & 8) ? dfd : AT_FDCWD;
101       char *file1 = file_name_concat ((i & 4) ? ".." : cwd, BASE "xx", NULL);
102       int fd2 = (i & 2) ? dfd : AT_FDCWD;
103       char *file2 = file_name_concat ((i & 1) ? ".." : cwd, BASE "xx", NULL);
104
105       ASSERT (sprintf (strchr (file1, '\0') - 2, "%02d", i) == 2);
106       ASSERT (sprintf (strchr (file2, '\0') - 2, "%02d", i + 1) == 2);
107       ASSERT (renameat (fd1, file1, fd2, file2) == 0);
108       free (file1);
109       free (file2);
110     }
111   dfd2 = open ("..", O_RDONLY);
112   ASSERT (0 <= dfd2);
113   ASSERT (renameat (dfd, "../" BASE "16", dfd2, BASE "17") == 0);
114   ASSERT (close (dfd2) == 0);
115
116   /* Now we change back to the parent directory, and set dfd to ".";
117      using dfd in remaining tests will expose any bugs if emulation
118      via /proc/self/fd doesn't check for empty names.  */
119   ASSERT (chdir ("..") == 0);
120   ASSERT (close (dfd) == 0);
121   dfd = open (".", O_RDONLY);
122   ASSERT (0 <= dfd);
123
124   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
125   errno = 0;
126   ASSERT (renameat (dfd, BASE "sub1", dfd, BASE "sub2") == -1);
127   ASSERT (errno == EEXIST || errno == ENOTEMPTY);
128   ASSERT (unlink (BASE "sub2/file") == 0);
129   errno = 0;
130   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1/.") == -1);
131   ASSERT (errno == EINVAL || errno == EISDIR || errno == EBUSY
132           || errno == ENOTEMPTY);
133   errno = 0;
134   ASSERT (renameat (dfd, BASE "sub2/.", dfd, BASE "sub1") == -1);
135   ASSERT (errno == EINVAL || errno == EBUSY);
136   errno = 0;
137   ASSERT (renameat (dfd, BASE "17", dfd, BASE "sub1") == -1);
138   ASSERT (errno == EISDIR);
139   errno = 0;
140   ASSERT (renameat (dfd, BASE "nosuch", dfd, BASE "18") == -1);
141   ASSERT (errno == ENOENT);
142   errno = 0;
143   ASSERT (renameat (dfd, "", dfd, BASE "17") == -1);
144   ASSERT (errno == ENOENT);
145   errno = 0;
146   ASSERT (renameat (dfd, BASE "17", dfd, "") == -1);
147   ASSERT (errno == ENOENT);
148   errno = 0;
149   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "17") == -1);
150   ASSERT (errno == ENOTDIR);
151   errno = 0;
152   ASSERT (renameat (dfd, BASE "17/", dfd, BASE "18") == -1);
153   ASSERT (errno == ENOTDIR);
154   errno = 0;
155   ASSERT (renameat (dfd, BASE "17", dfd, BASE "18/") == -1);
156   ASSERT (errno == ENOTDIR || errno == ENOENT);
157
158   /* Finally, make sure we can overwrite existing files.  */
159   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
160   errno = 0;
161   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1") == 0);
162   ASSERT (renameat (dfd, BASE "sub1/file", dfd, BASE "17") == 0);
163
164   /* Cleanup.  */
165   ASSERT (close (dfd) == 0);
166   errno = 0;
167   ASSERT (unlink (BASE "sub1/file") == -1);
168   ASSERT (errno == ENOENT);
169   ASSERT (unlink (BASE "17") == 0);
170   ASSERT (rmdir (BASE "sub1") == 0);
171   errno = 0;
172   ASSERT (rmdir (BASE "sub2") == -1);
173   ASSERT (errno == ENOENT);
174   free (cwd);
175
176   if (result)
177     fputs ("skipping test: symlinks not supported on this file system\n",
178            stderr);
179   return result;
180 }