tests: silence warning about system return
[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
33 #include "filenamecat.h"
34 #include "xgetcwd.h"
35 #include "ignore-value.h"
36 #include "macros.h"
37
38 #define BASE "test-renameat.t"
39
40 #include "test-rename.h"
41
42 static int dfd1 = AT_FDCWD;
43 static int dfd2 = AT_FDCWD;
44
45 /* Wrapper to test renameat like rename.  */
46 static int
47 do_rename (char const *name1, char const *name2)
48 {
49   return renameat (dfd1, name1, dfd2, name2);
50 }
51
52 int
53 main (void)
54 {
55   int i;
56   int dfd;
57   char *cwd;
58   int result;
59
60   /* Clean up any trash from prior testsuite runs.  */
61   ignore_value (system ("rm -rf " BASE "*"));
62
63   /* Test basic rename functionality, using current directory.  */
64   result = test_rename (do_rename, false);
65   dfd1 = open (".", O_RDONLY);
66   ASSERT (0 <= dfd1);
67   ASSERT (test_rename (do_rename, false) == result);
68   dfd2 = dfd1;
69   ASSERT (test_rename (do_rename, false) == result);
70   dfd1 = AT_FDCWD;
71   ASSERT (test_rename (do_rename, false) == result);
72   ASSERT (close (dfd2) == 0);
73
74   /* Create locations to manipulate.  */
75   ASSERT (mkdir (BASE "sub1", 0700) == 0);
76   ASSERT (mkdir (BASE "sub2", 0700) == 0);
77   dfd = creat (BASE "00", 0600);
78   ASSERT (0 <= dfd);
79   ASSERT (close (dfd) == 0);
80   cwd = xgetcwd ();
81
82   dfd = open (BASE "sub1", O_RDONLY);
83   ASSERT (0 <= dfd);
84   ASSERT (chdir (BASE "sub2") == 0);
85
86   /* There are 16 possible scenarios, based on whether an fd is
87      AT_FDCWD or real, and whether a file is absolute or relative.
88
89      To ensure that we test all of the code paths (rather than
90      triggering early normalization optimizations), we use a loop to
91      repeatedly rename a file in the parent directory, use an fd open
92      on subdirectory 1, all while executing in subdirectory 2; all
93      relative names are thus given with a leading "../".  Finally, the
94      last scenario (two relative paths given, neither one AT_FDCWD)
95      has two paths, based on whether the two fds are equivalent, so we
96      do the other variant after the loop.  */
97   for (i = 0; i < 16; i++)
98     {
99       int fd1 = (i & 8) ? dfd : AT_FDCWD;
100       char *file1 = file_name_concat ((i & 4) ? ".." : cwd, BASE "xx", NULL);
101       int fd2 = (i & 2) ? dfd : AT_FDCWD;
102       char *file2 = file_name_concat ((i & 1) ? ".." : cwd, BASE "xx", NULL);
103
104       ASSERT (sprintf (strchr (file1, '\0') - 2, "%02d", i) == 2);
105       ASSERT (sprintf (strchr (file2, '\0') - 2, "%02d", i + 1) == 2);
106       ASSERT (renameat (fd1, file1, fd2, file2) == 0);
107       free (file1);
108       free (file2);
109     }
110   dfd2 = open ("..", O_RDONLY);
111   ASSERT (0 <= dfd2);
112   ASSERT (renameat (dfd, "../" BASE "16", dfd2, BASE "17") == 0);
113   ASSERT (close (dfd2) == 0);
114
115   /* Now we change back to the parent directory, and set dfd to ".";
116      using dfd in remaining tests will expose any bugs if emulation
117      via /proc/self/fd doesn't check for empty names.  */
118   ASSERT (chdir ("..") == 0);
119   ASSERT (close (dfd) == 0);
120   dfd = open (".", O_RDONLY);
121   ASSERT (0 <= dfd);
122
123   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
124   errno = 0;
125   ASSERT (renameat (dfd, BASE "sub1", dfd, BASE "sub2") == -1);
126   ASSERT (errno == EEXIST || errno == ENOTEMPTY);
127   ASSERT (unlink (BASE "sub2/file") == 0);
128   errno = 0;
129   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1/.") == -1);
130   ASSERT (errno == EINVAL || errno == EISDIR || errno == EBUSY
131           || errno == ENOTEMPTY);
132   errno = 0;
133   ASSERT (renameat (dfd, BASE "sub2/.", dfd, BASE "sub1") == -1);
134   ASSERT (errno == EINVAL || errno == EBUSY);
135   errno = 0;
136   ASSERT (renameat (dfd, BASE "17", dfd, BASE "sub1") == -1);
137   ASSERT (errno == EISDIR);
138   errno = 0;
139   ASSERT (renameat (dfd, BASE "nosuch", dfd, BASE "18") == -1);
140   ASSERT (errno == ENOENT);
141   errno = 0;
142   ASSERT (renameat (dfd, "", dfd, BASE "17") == -1);
143   ASSERT (errno == ENOENT);
144   errno = 0;
145   ASSERT (renameat (dfd, BASE "17", dfd, "") == -1);
146   ASSERT (errno == ENOENT);
147   errno = 0;
148   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "17") == -1);
149   ASSERT (errno == ENOTDIR);
150   errno = 0;
151   ASSERT (renameat (dfd, BASE "17/", dfd, BASE "18") == -1);
152   ASSERT (errno == ENOTDIR);
153   errno = 0;
154   ASSERT (renameat (dfd, BASE "17", dfd, BASE "18/") == -1);
155   ASSERT (errno == ENOTDIR || errno == ENOENT);
156
157   /* Finally, make sure we can overwrite existing files.  */
158   ASSERT (close (creat (BASE "sub2/file", 0600)) == 0);
159   errno = 0;
160   ASSERT (renameat (dfd, BASE "sub2", dfd, BASE "sub1") == 0);
161   ASSERT (renameat (dfd, BASE "sub1/file", dfd, BASE "17") == 0);
162
163   /* Cleanup.  */
164   ASSERT (close (dfd) == 0);
165   errno = 0;
166   ASSERT (unlink (BASE "sub1/file") == -1);
167   ASSERT (errno == ENOENT);
168   ASSERT (unlink (BASE "17") == 0);
169   ASSERT (rmdir (BASE "sub1") == 0);
170   errno = 0;
171   ASSERT (rmdir (BASE "sub2") == -1);
172   ASSERT (errno == ENOENT);
173   free (cwd);
174
175   if (result)
176     fputs ("skipping test: symlinks not supported on this file system\n",
177            stderr);
178   return result;
179 }