1 /* Copyright (C) 1991-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
25 #include <sys/param.h>
26 #include <sys/types.h>
32 #include <dirstream.h>
33 #include <not-cancel.h>
34 #include <kernel-features.h>
36 /* The st_blksize value of the directory is used as a hint for the
37 size of the buffer which receives struct dirent values from the
38 kernel. st_blksize is limited to MAX_DIR_BUFFER_SIZE, in case the
39 file system provides a bogus value. */
40 #define MAX_DIR_BUFFER_SIZE 1048576U
42 /* opendir() must not accidentally open something other than a directory.
43 Some OS's have kernel support for that, some don't. In the worst
44 case we have to stat() before the open() AND fstat() after.
46 We have to test at runtime for kernel support since libc may have
47 been compiled with different headers to the kernel it's running on.
48 This test can't be done reliably in the general case. We'll use
49 /dev/null, which if it's not a device lots of stuff will break, as
50 a guinea pig. It may be missing in chroot environments, so we
51 make sure to fail safe. */
53 # ifdef O_DIRECTORY_WORKS
54 # define o_directory_works 1
55 # define tryopen_o_directory() while (1) /* This must not be called. */
57 static int o_directory_works
;
60 tryopen_o_directory (void)
63 int x
= open_not_cancel_2 ("/dev/null", O_RDONLY
|O_NDELAY
|O_DIRECTORY
);
67 close_not_cancel_no_status (x
);
68 o_directory_works
= -1;
70 else if (errno
!= ENOTDIR
)
71 o_directory_works
= -1;
73 o_directory_works
= 1;
78 # define EXTRA_FLAGS O_DIRECTORY
80 # define EXTRA_FLAGS 0
86 __opendirat (int dfd
, const char *name
)
88 struct stat64 statbuf
;
89 struct stat64
*statp
= NULL
;
91 if (__builtin_expect (name
[0], '\1') == '\0')
93 /* POSIX.1-1990 says an empty name gets ENOENT;
94 but `open' might like it fine. */
100 /* Test whether O_DIRECTORY works. */
101 if (o_directory_works
== 0)
102 tryopen_o_directory ();
104 /* We can skip the expensive `stat' call if O_DIRECTORY works. */
105 if (o_directory_works
< 0)
108 /* We first have to check whether the name is for a directory. We
109 cannot do this after the open() call since the open/close operation
110 performed on, say, a tape device might have undesirable effects. */
111 if (__builtin_expect (__xstat64 (_STAT_VER
, name
, &statbuf
), 0) < 0)
113 if (__glibc_unlikely (! S_ISDIR (statbuf
.st_mode
)))
115 __set_errno (ENOTDIR
);
120 int flags
= O_RDONLY
|O_NDELAY
|EXTRA_FLAGS
|O_LARGEFILE
;
126 assert (dfd
== AT_FDCWD
);
127 fd
= open_not_cancel_2 (name
, flags
);
129 fd
= openat_not_cancel_3 (dfd
, name
, flags
);
131 if (__builtin_expect (fd
, 0) < 0)
135 if (o_directory_works
<= 0)
138 /* Now make sure this really is a directory and nothing changed since
140 if (__builtin_expect (__fxstat64 (_STAT_VER
, fd
, &statbuf
), 0) < 0)
142 if (__glibc_unlikely (! S_ISDIR (statbuf
.st_mode
)))
144 __set_errno (ENOTDIR
);
146 close_not_cancel_no_status (fd
);
152 return __alloc_dir (fd
, true, 0, statp
);
156 /* Open a directory stream on NAME. */
158 __opendir (const char *name
)
160 return __opendirat (AT_FDCWD
, name
);
162 weak_alias (__opendir
, opendir
)
165 #ifdef __ASSUME_O_CLOEXEC
166 # define check_have_o_cloexec(fd) 1
169 check_have_o_cloexec (int fd
)
171 if (__have_o_cloexec
== 0)
172 __have_o_cloexec
= (__fcntl (fd
, F_GETFD
, 0) & FD_CLOEXEC
) == 0 ? -1 : 1;
173 return __have_o_cloexec
> 0;
180 __alloc_dir (int fd
, bool close_fd
, int flags
, const struct stat64
*statp
)
182 /* We always have to set the close-on-exit flag if the user provided
183 the file descriptor. Otherwise only if we have no working
184 O_CLOEXEC support. */
186 if ((! close_fd
&& (flags
& O_CLOEXEC
) == 0)
187 || ! check_have_o_cloexec (fd
))
190 if (__builtin_expect (__fcntl (fd
, F_SETFD
, FD_CLOEXEC
), 0) < 0)
194 const size_t default_allocation
= (4 * BUFSIZ
< sizeof (struct dirent64
)
195 ? sizeof (struct dirent64
) : 4 * BUFSIZ
);
196 const size_t small_allocation
= (BUFSIZ
< sizeof (struct dirent64
)
197 ? sizeof (struct dirent64
) : BUFSIZ
);
198 size_t allocation
= default_allocation
;
199 #ifdef _STATBUF_ST_BLKSIZE
200 /* Increase allocation if requested, but not if the value appears to
203 allocation
= MIN (MAX ((size_t) statp
->st_blksize
, default_allocation
),
204 MAX_DIR_BUFFER_SIZE
);
207 DIR *dirp
= (DIR *) malloc (sizeof (DIR) + allocation
);
210 allocation
= small_allocation
;
211 dirp
= (DIR *) malloc (sizeof (DIR) + allocation
);
218 int save_errno
= errno
;
219 close_not_cancel_no_status (fd
);
220 __set_errno (save_errno
);
228 __libc_lock_init (dirp
->lock
);
230 dirp
->allocation
= allocation
;