10 static void prepare (void);
11 #define PREPARE(argc, argv) prepare ()
13 static int do_test (void);
14 #define TEST_FUNCTION do_test ()
16 #include "../test-skeleton.c"
23 size_t test_dir_len
= strlen (test_dir
);
24 static const char dir_name
[] = "/tst-unlinkat.XXXXXX";
26 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
27 char *dirbuf
= malloc (dirbuflen
);
30 puts ("out of memory");
34 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
35 if (mkdtemp (dirbuf
) == NULL
)
37 puts ("cannot create temporary directory");
41 add_temp_file (dirbuf
);
43 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
46 puts ("cannot open directory");
55 /* fdopendir takes over the descriptor, make a copy. */
56 int dupfd
= dup (dir_fd
);
62 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
64 puts ("1st lseek failed");
68 /* The directory should be empty safe the . and .. files. */
69 DIR *dir
= fdopendir (dupfd
);
72 puts ("fdopendir failed");
76 while ((d
= readdir64 (dir
)) != NULL
)
77 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
79 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
84 /* Try to create a file. */
85 int fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
90 puts ("*at functions not supported");
94 puts ("file creation failed");
97 write (fd
, "hello", 5);
99 puts ("file created");
101 /* fdopendir takes over the descriptor, make a copy. */
102 dupfd
= dup (dir_fd
);
105 puts ("2nd dup failed");
108 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
110 puts ("2nd lseek failed");
114 /* The directory should be empty safe the . and .. files. */
115 dir
= fdopendir (dupfd
);
118 puts ("2nd fdopendir failed");
121 bool seen_file
= false;
122 while ((d
= readdir64 (dir
)) != NULL
)
123 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
125 if (strcmp (d
->d_name
, "some-file") != 0)
127 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
137 puts ("file not created in correct directory");
141 /* Remove the file now. */
142 if (unlinkat (dir_fd
, "some-file", 0) != 0)
144 puts ("unlinkat failed");
148 /* We won't need dir_fd anymore after this, so use it. */
149 if (lseek (dir_fd
, 0, SEEK_SET
) != 0)
151 puts ("3rd lseek failed");
155 /* The directory should be empty safe the . and .. files. */
156 dir
= fdopendir (dir_fd
);
159 puts ("3rd fdopendir failed");
162 while ((d
= readdir64 (dir
)) != NULL
)
163 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
165 if (strcmp (d
->d_name
, "some-file") == 0)
167 puts ("some-file not removed");
172 printf ("temp directory contains file \"%s\"\n", d
->d_name
);