]>
sourceware.org Git - glibc.git/blob - io/tst-faccessat.c
b90954e3184adfc1d49db5469366378088b37c2a
1 /* Test for faccessat function. */
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"
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
);
33 puts ("out of memory");
37 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
38 if (mkdtemp (dirbuf
) == NULL
)
40 puts ("cannot create temporary directory");
44 add_temp_file (dirbuf
);
46 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
49 puts ("cannot open directory");
58 /* fdopendir takes over the descriptor, make a copy. */
59 int dupfd
= dup (dir_fd
);
65 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
67 puts ("1st lseek failed");
71 /* The directory should be empty save the . and .. files. */
72 DIR *dir
= fdopendir (dupfd
);
75 puts ("fdopendir failed");
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
);
87 /* Try to create a file. */
88 int fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
93 puts ("*at functions not supported");
97 puts ("file creation failed");
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");
110 if (errno
!= ENOTDIR
)
113 error for faccessat using descriptor for normal file not ENOTDIR ");
121 if (faccessat (dir_fd
, "some-file", F_OK
, AT_EACCESS
))
123 printf ("faccessat F_OK: %m\n");
126 if (faccessat (dir_fd
, "some-file", W_OK
, AT_EACCESS
))
128 printf ("faccessat W_OK: %m\n");
133 if (faccessat (dir_fd
, "some-file", X_OK
, AT_EACCESS
) == 0
136 printf ("faccessat X_OK on nonexecutable: %m\n");
140 if (fchmodat (dir_fd
, "some-file", 0400, 0) != 0)
142 printf ("fchownat failed: %m\n");
146 if (faccessat (dir_fd
, "some-file", R_OK
, AT_EACCESS
))
148 printf ("faccessat R_OK: %m\n");
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");
160 /* Create a file descriptor which is closed again right away. */
161 int dir_fd2
= dup (dir_fd
);
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");
177 puts ("faccessat using closed descriptor did not set EBADF");
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");
189 puts ("2nd faccessat using closed descriptor did not set EBADF");
193 if (unlinkat (dir_fd
, "some-file", 0) != 0)
195 puts ("unlinkat failed");
201 fd
= faccessat (-1, "some-file", F_OK
, AT_EACCESS
);
204 puts ("faccessat using -1 descriptor succeeded");
209 puts ("faccessat using -1 descriptor did not set EBADF");
This page took 0.05379 seconds and 6 git commands to generate.