malloc/Makefile: Split and sort tests
[glibc.git] / io / tst-faccessat.c
blobb90954e3184adfc1d49db5469366378088b37c2a
1 /* Test for faccessat function. */
3 #include <dirent.h>
4 #include <fcntl.h>
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <unistd.h>
9 #include <sys/stat.h>
11 #include <support/xunistd.h>
13 static void prepare (void);
14 #define PREPARE(argc, argv) prepare ()
16 static int do_test (void);
17 #define TEST_FUNCTION do_test ()
19 #include "../test-skeleton.c"
21 static int dir_fd;
23 static void
24 prepare (void)
26 size_t test_dir_len = strlen (test_dir);
27 static const char dir_name[] = "/tst-faccessat.XXXXXX";
29 size_t dirbuflen = test_dir_len + sizeof (dir_name);
30 char *dirbuf = malloc (dirbuflen);
31 if (dirbuf == NULL)
33 puts ("out of memory");
34 exit (1);
37 snprintf (dirbuf, dirbuflen, "%s%s", test_dir, dir_name);
38 if (mkdtemp (dirbuf) == NULL)
40 puts ("cannot create temporary directory");
41 exit (1);
44 add_temp_file (dirbuf);
46 dir_fd = open (dirbuf, O_RDONLY | O_DIRECTORY);
47 if (dir_fd == -1)
49 puts ("cannot open directory");
50 exit (1);
55 static int
56 do_test (void)
58 /* fdopendir takes over the descriptor, make a copy. */
59 int dupfd = dup (dir_fd);
60 if (dupfd == -1)
62 puts ("dup failed");
63 return 1;
65 if (lseek (dupfd, 0, SEEK_SET) != 0)
67 puts ("1st lseek failed");
68 return 1;
71 /* The directory should be empty save the . and .. files. */
72 DIR *dir = fdopendir (dupfd);
73 if (dir == NULL)
75 puts ("fdopendir failed");
76 return 1;
78 struct dirent64 *d;
79 while ((d = readdir64 (dir)) != NULL)
80 if (strcmp (d->d_name, ".") != 0 && strcmp (d->d_name, "..") != 0)
82 printf ("temp directory contains file \"%s\"\n", d->d_name);
83 return 1;
85 closedir (dir);
87 /* Try to create a file. */
88 int fd = openat (dir_fd, "some-file", O_CREAT|O_RDWR|O_EXCL, 0666);
89 if (fd == -1)
91 if (errno == ENOSYS)
93 puts ("*at functions not supported");
94 return 0;
97 puts ("file creation failed");
98 return 1;
100 xwrite (fd, "hello", 5);
101 puts ("file created");
103 /* Before closing the file, try using this file descriptor to open
104 another file. This must fail. */
105 if (faccessat (fd, "should-not-work", F_OK, AT_EACCESS) != -1)
107 puts ("faccessat using descriptor for normal file worked");
108 return 1;
110 if (errno != ENOTDIR)
112 puts ("\
113 error for faccessat using descriptor for normal file not ENOTDIR ");
114 return 1;
117 close (fd);
119 int result = 0;
121 if (faccessat (dir_fd, "some-file", F_OK, AT_EACCESS))
123 printf ("faccessat F_OK: %m\n");
124 result = 1;
126 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS))
128 printf ("faccessat W_OK: %m\n");
129 result = 1;
132 errno = 0;
133 if (faccessat (dir_fd, "some-file", X_OK, AT_EACCESS) == 0
134 || errno != EACCES)
136 printf ("faccessat X_OK on nonexecutable: %m\n");
137 result = 1;
140 if (fchmodat (dir_fd, "some-file", 0400, 0) != 0)
142 printf ("fchownat failed: %m\n");
143 return 1;
146 if (faccessat (dir_fd, "some-file", R_OK, AT_EACCESS))
148 printf ("faccessat R_OK: %m\n");
149 result = 1;
152 errno = 0;
153 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS) == 0
154 ? (geteuid () != 0) : (errno != EACCES))
156 printf ("faccessat W_OK on unwritable file: %m\n");
157 result = 1;
160 /* Create a file descriptor which is closed again right away. */
161 int dir_fd2 = dup (dir_fd);
162 if (dir_fd2 == -1)
164 puts ("dup failed");
165 return 1;
167 close (dir_fd2);
169 /* With the file descriptor closed the next call must fail. */
170 if (faccessat (dir_fd2, "some-file", F_OK, AT_EACCESS) != -1)
172 puts ("faccessat using closed descriptor succeeded");
173 return 1;
175 if (errno != EBADF)
177 puts ("faccessat using closed descriptor did not set EBADF");
178 return 1;
181 /* Same with a non-existing file. */
182 if (faccessat (dir_fd2, "non-existing-file", F_OK, AT_EACCESS) != -1)
184 puts ("2nd faccessat using closed descriptor succeeded");
185 return 1;
187 if (errno != EBADF)
189 puts ("2nd faccessat using closed descriptor did not set EBADF");
190 return 1;
193 if (unlinkat (dir_fd, "some-file", 0) != 0)
195 puts ("unlinkat failed");
196 result = 1;
199 close (dir_fd);
201 fd = faccessat (-1, "some-file", F_OK, AT_EACCESS);
202 if (fd != -1)
204 puts ("faccessat using -1 descriptor succeeded");
205 return 1;
207 if (errno != EBADF)
209 puts ("faccessat using -1 descriptor did not set EBADF");
210 return 1;
213 return result;