2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)opendir.c 8.8 (Berkeley) 5/1/95";
32 #endif /* LIBC_SCCS and not lint */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
36 #include "namespace.h"
37 #include <sys/param.h>
38 #include <sys/mount.h>
48 #include "un-namespace.h"
52 static DIR * __opendir_common(int, int, bool);
58 opendir(const char *name
)
61 return (__opendir2(name
, DTF_HIDEW
|DTF_NODUP
));
65 * Open a directory with existing file descriptor.
72 /* Check that fd is associated with a directory. */
73 if (_fstat(fd
, &statb
) != 0)
75 if (!S_ISDIR(statb
.st_mode
)) {
79 /* Make sure CLOEXEC is set on the fd */
80 if (_fcntl(fd
, F_SETFD
, FD_CLOEXEC
) == -1)
82 return (__opendir_common(fd
, DTF_HIDEW
|DTF_NODUP
, true));
86 __opendir2(const char *name
, int flags
)
92 if ((flags
& (__DTF_READALL
| __DTF_SKIPREAD
)) != 0)
95 O_RDONLY
| O_NONBLOCK
| O_DIRECTORY
| O_CLOEXEC
)) == -1)
98 dir
= __opendir_common(fd
, flags
, false);
108 opendir_compar(const void *p1
, const void *p2
)
111 return (strcmp((*(const struct dirent
**)p1
)->d_name
,
112 (*(const struct dirent
**)p2
)->d_name
));
116 * For a directory at the top of a unionfs stack, the entire directory's
117 * contents are read and cached locally until the next call to rewinddir().
118 * For the fdopendir() case, the initial seek position must be preserved.
119 * For rewinddir(), the full directory should always be re-read from the
122 * If an error occurs, the existing buffer and state of 'dirp' is left
126 _filldir(DIR *dirp
, bool use_current_pos
)
129 char *buf
, *ddptr
, *ddeptr
;
131 int fd2
, incr
, len
, n
, saved_errno
, space
;
139 * Use the system page size if that is a multiple of DIRBLKSIZ.
140 * Hopefully this can be a big win someday by allowing page
141 * trades to user space to be done by _getdirentries().
143 incr
= getpagesize();
144 if ((incr
% DIRBLKSIZ
) != 0)
148 * The strategy here is to read all the directory
149 * entries into a buffer, sort the buffer, and
150 * remove duplicate entries by setting the inode
153 * We reopen the directory because _getdirentries()
154 * on a MNT_UNION mount modifies the open directory,
155 * making it refer to the lower directory after the
156 * upper directory's entries are exhausted.
157 * This would otherwise break software that uses
158 * the directory descriptor for fchdir or *at
159 * functions, such as fts.c.
161 if ((fd2
= openat(dirp
->dd_fd
, ".", O_RDONLY
| O_CLOEXEC
)) == -1)
164 if (use_current_pos
) {
165 pos
= lseek(dirp
->dd_fd
, 0, SEEK_CUR
);
166 if (pos
== -1 || lseek(fd2
, pos
, SEEK_SET
) == -1) {
176 * Always make at least DIRBLKSIZ bytes
177 * available to _getdirentries
179 if (space
< DIRBLKSIZ
) {
182 buf
= reallocf(buf
, len
);
189 ddptr
= buf
+ (len
- space
);
192 #if __DARWIN_64_BIT_INO_T
193 n
= (int)__getdirentries64(fd2
, ddptr
, space
, &dirp
->dd_td
->seekoff
);
194 #else /* !__DARWIN_64_BIT_INO_T */
195 n
= _getdirentries(fd2
, ddptr
, space
, &dirp
->dd_seek
);
196 #endif /* __DARWIN_64_BIT_INO_T */
213 * There is now a buffer full of (possibly) duplicate
219 * Go round this loop twice...
221 * Scan through the buffer, counting entries.
222 * On the second pass, save pointers to each one.
223 * Then sort the pointers and remove duplicate names.
228 while (ddptr
< ddeptr
) {
231 dp
= (struct dirent
*) ddptr
;
234 if ((dp
->d_reclen
<= 0) ||
235 (dp
->d_reclen
> (ddeptr
+ 1 - ddptr
)))
237 ddptr
+= dp
->d_reclen
;
249 * This sort must be stable.
251 mergesort(dpv
, n
, sizeof(*dpv
), opendir_compar
);
257 * Scan through the buffer in sort order,
258 * zapping the inode number of any
261 for (n
= 0; dpv
[n
]; n
++) {
262 struct dirent
*dp
= dpv
[n
];
265 strcmp(dp
->d_name
, xp
->d_name
)) {
270 if (dp
->d_type
== DT_WHT
&&
271 (dirp
->dd_flags
& DTF_HIDEW
))
278 dpv
= malloc((n
+1) * sizeof(struct dirent
*));
285 dirp
->dd_size
= ddptr
- dirp
->dd_buf
;
291 * Common routine for opendir(3), __opendir2(3) and fdopendir(3).
294 __opendir_common(int fd
, int flags
, bool use_current_pos
)
301 if ((dirp
= malloc(sizeof(DIR) + sizeof(struct _telldir
))) == NULL
)
306 dirp
->dd_flags
= flags
;
308 dirp
->dd_lock
= (pthread_mutex_t
)PTHREAD_MUTEX_INITIALIZER
;
309 dirp
->dd_td
= (struct _telldir
*)((char *)dirp
+ sizeof(DIR));
310 LIST_INIT(&dirp
->dd_td
->td_locq
);
311 dirp
->dd_td
->td_loccnt
= 0;
314 * Use the system page size if that is a multiple of DIRBLKSIZ.
315 * Hopefully this can be a big win someday by allowing page
316 * trades to user space to be done by _getdirentries().
318 incr
= getpagesize();
319 if ((incr
% DIRBLKSIZ
) != 0)
323 * Determine whether this directory is the top of a union stack.
325 if (flags
& DTF_NODUP
) {
328 if (_fstatfs(fd
, &sfb
) < 0)
330 unionstack
= !strcmp(sfb
.f_fstypename
, "unionfs")
331 || (sfb
.f_flags
& MNT_UNION
);
337 if (!_filldir(dirp
, use_current_pos
))
339 dirp
->dd_flags
|= __DTF_READALL
;
342 dirp
->dd_buf
= malloc(dirp
->dd_len
);
343 if (dirp
->dd_buf
== NULL
)
345 if (use_current_pos
) {
347 * Read the first batch of directory entries
348 * to prime dd_seek. This also checks if the
349 * fd passed to fdopendir() is a directory.
351 #if __DARWIN_64_BIT_INO_T
352 dirp
->dd_size
= (long)__getdirentries64(dirp
->dd_fd
,
353 dirp
->dd_buf
, dirp
->dd_len
, &dirp
->dd_td
->seekoff
);
354 #else /* !__DARWIN_64_BIT_INO_T */
355 dirp
->dd_size
= _getdirentries(dirp
->dd_fd
,
356 dirp
->dd_buf
, dirp
->dd_len
, &dirp
->dd_seek
);
357 #endif /* __DARWIN_64_BIT_INO_T */
358 if (dirp
->dd_size
< 0) {
363 dirp
->dd_flags
|= __DTF_SKIPREAD
;
366 #if __DARWIN_64_BIT_INO_T
367 dirp
->dd_td
->seekoff
= 0;
368 #else /* !__DARWIN_64_BIT_INO_T */
370 #endif /* __DARWIN_64_BIT_INO_T */