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-openat.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 /* Before closing the file, try using this file descriptor to open
100 another file. This must fail. */
101 int fd2
= openat (fd
, "should-not-work", O_CREAT
|O_RDWR
, 0666);
104 puts ("openat using descriptor for normal file worked");
107 if (errno
!= ENOTDIR
)
109 puts ("error for openat using descriptor for normal file not ENOTDIR ");
114 puts ("file created");
116 /* fdopendir takes over the descriptor, make a copy. */
117 dupfd
= dup (dir_fd
);
123 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
125 puts ("2nd lseek failed");
129 /* The directory should be empty safe the . and .. files. */
130 dir
= fdopendir (dupfd
);
133 puts ("fdopendir failed");
136 bool seen_file
= false;
137 while ((d
= readdir64 (dir
)) != NULL
)
138 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
140 if (strcmp (d
->d_name
, "some-file") != 0)
142 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
152 puts ("file not created in correct directory");
156 int cwdfd
= open (".", O_RDONLY
| O_DIRECTORY
);
159 puts ("cannot get descriptor for cwd");
163 if (fchdir (dir_fd
) != 0)
165 puts ("1st fchdir failed");
169 if (unlink ("some-file") != 0)
171 puts ("unlink failed");
175 if (fchdir (cwdfd
) != 0)
177 puts ("2nd fchdir failed");
184 /* With the file descriptor closed the next call must fail. */
185 fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
188 puts ("openat using closed descriptor succeeded");
193 puts ("openat using closed descriptor did not set EBADF");
197 fd
= openat (-1, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
200 puts ("openat using -1 descriptor succeeded");
205 puts ("openat using -1 descriptor did not set EBADF");