debug: Adapt fortify tests to libsupport
[glibc.git] / io / tst-unlinkat.c
blob21a2dbaf5755b10938f74b0fcdf4724e72c04550
1 #include <dirent.h>
2 #include <fcntl.h>
3 #include <stdbool.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <unistd.h>
9 #include <support/xunistd.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-unlinkat.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 safe 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 xwrite (fd, "hello", 5);
99 close (fd);
100 puts ("file created");
102 /* fdopendir takes over the descriptor, make a copy. */
103 dupfd = dup (dir_fd);
104 if (dupfd == -1)
106 puts ("2nd dup failed");
107 return 1;
109 if (lseek (dupfd, 0, SEEK_SET) != 0)
111 puts ("2nd lseek failed");
112 return 1;
115 /* The directory should be empty safe the . and .. files. */
116 dir = fdopendir (dupfd);
117 if (dir == NULL)
119 puts ("2nd fdopendir failed");
120 return 1;
122 bool seen_file = false;
123 while ((d = readdir64 (dir)) != NULL)
124 if (strcmp (d->d_name, ".") != 0 && strcmp (d->d_name, "..") != 0)
126 if (strcmp (d->d_name, "some-file") != 0)
128 printf ("temp directory contains file \"%s\"\n", d->d_name);
129 return 1;
132 seen_file = true;
134 closedir (dir);
136 if (!seen_file)
138 puts ("file not created in correct directory");
139 return 1;
142 /* Remove the file now. */
143 if (unlinkat (dir_fd, "some-file", 0) != 0)
145 puts ("unlinkat failed");
146 return 1;
149 /* We won't need dir_fd anymore after this, so use it. */
150 if (lseek (dir_fd, 0, SEEK_SET) != 0)
152 puts ("3rd lseek failed");
153 return 1;
156 /* The directory should be empty safe the . and .. files. */
157 dir = fdopendir (dir_fd);
158 if (dir == NULL)
160 puts ("3rd fdopendir failed");
161 return 1;
163 while ((d = readdir64 (dir)) != NULL)
164 if (strcmp (d->d_name, ".") != 0 && strcmp (d->d_name, "..") != 0)
166 if (strcmp (d->d_name, "some-file") == 0)
168 puts ("some-file not removed");
169 return 1;
171 else
173 printf ("temp directory contains file \"%s\"\n", d->d_name);
174 return 1;
177 closedir (dir);
179 return 0;