* math/math.h [__NO_LONG_DOUBLE_MATH] (__nldbl_nexttowardf): New
[glibc.git] / io / tst-faccessat.c
blob3bf7aed2e53e91e6334e1d09f42301985b122f46
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>
11 static void prepare (void);
12 #define PREPARE(argc, argv) prepare ()
14 static int do_test (void);
15 #define TEST_FUNCTION do_test ()
17 #include "../test-skeleton.c"
19 static int dir_fd;
21 static void
22 prepare (void)
24 size_t test_dir_len = strlen (test_dir);
25 static const char dir_name[] = "/tst-faccessat.XXXXXX";
27 size_t dirbuflen = test_dir_len + sizeof (dir_name);
28 char *dirbuf = malloc (dirbuflen);
29 if (dirbuf == NULL)
31 puts ("out of memory");
32 exit (1);
35 snprintf (dirbuf, dirbuflen, "%s%s", test_dir, dir_name);
36 if (mkdtemp (dirbuf) == NULL)
38 puts ("cannot create temporary directory");
39 exit (1);
42 add_temp_file (dirbuf);
44 dir_fd = open (dirbuf, O_RDONLY | O_DIRECTORY);
45 if (dir_fd == -1)
47 puts ("cannot open directory");
48 exit (1);
53 static int
54 do_test (void)
56 /* fdopendir takes over the descriptor, make a copy. */
57 int dupfd = dup (dir_fd);
58 if (dupfd == -1)
60 puts ("dup failed");
61 return 1;
63 if (lseek (dupfd, 0, SEEK_SET) != 0)
65 puts ("1st lseek failed");
66 return 1;
69 /* The directory should be empty save the . and .. files. */
70 DIR *dir = fdopendir (dupfd);
71 if (dir == NULL)
73 puts ("fdopendir failed");
74 return 1;
76 struct dirent64 *d;
77 while ((d = readdir64 (dir)) != NULL)
78 if (strcmp (d->d_name, ".") != 0 && strcmp (d->d_name, "..") != 0)
80 printf ("temp directory contains file \"%s\"\n", d->d_name);
81 return 1;
83 closedir (dir);
85 /* Try to create a file. */
86 int fd = openat (dir_fd, "some-file", O_CREAT|O_RDWR|O_EXCL, 0666);
87 if (fd == -1)
89 if (errno == ENOSYS)
91 puts ("*at functions not supported");
92 return 0;
95 puts ("file creation failed");
96 return 1;
98 write (fd, "hello", 5);
99 puts ("file created");
101 close (fd);
103 int result = 0;
105 if (faccessat (dir_fd, "some-file", F_OK, AT_EACCESS))
107 printf ("faccessat F_OK: %m\n");
108 result = 1;
110 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS))
112 printf ("faccessat W_OK: %m\n");
113 result = 1;
116 errno = 0;
117 if (faccessat (dir_fd, "some-file", X_OK, AT_EACCESS) == 0
118 || errno != EACCES)
120 printf ("faccessat X_OK on nonexecutable: %m\n");
121 result = 1;
124 if (fchmodat (dir_fd, "some-file", 0400, 0) != 0)
126 printf ("fchownat failed: %m\n");
127 return 1;
130 if (faccessat (dir_fd, "some-file", R_OK, AT_EACCESS))
132 printf ("faccessat R_OK: %m\n");
133 result = 1;
136 errno = 0;
137 if (faccessat (dir_fd, "some-file", W_OK, AT_EACCESS) == 0
138 || errno != EACCES)
140 printf ("faccessat W_OK on unwritable file: %m\n");
141 result = 1;
144 if (unlinkat (dir_fd, "some-file", 0) != 0)
146 puts ("unlinkat failed");
147 result = 1;
150 close (dir_fd);
152 return result;