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: src/lib/libc/gen/opendir.c,v 1.24 2008/04/16 18:40:52 delphij Exp $");
36 #include "namespace.h"
37 #include <sys/param.h>
38 #include <sys/mount.h>
48 #include "un-namespace.h"
55 opendir(const char *name
)
58 return (__opendir2(name
, DTF_HIDEW
|DTF_NODUP
));
62 __opendir2(const char *name
, int flags
)
71 * Use O_DIRECTORY to only open directories (because opening of
72 * special files may be harmful). errno is set to ENOTDIR if
75 if ((fd
= _open(name
, O_RDONLY
| O_NONBLOCK
| O_DIRECTORY
| O_CLOEXEC
)) == -1)
77 dirp
= malloc(sizeof(DIR) + sizeof(struct _telldir
));
81 dirp
->dd_td
= (struct _telldir
*)((char *)dirp
+ sizeof(DIR));
82 LIST_INIT(&dirp
->dd_td
->td_locq
);
83 dirp
->dd_td
->td_loccnt
= 0;
86 * Use the system page size if that is a multiple of DIRBLKSIZ.
87 * Hopefully this can be a big win someday by allowing page
88 * trades to user space to be done by _getdirentries().
91 if ((incr
% DIRBLKSIZ
) != 0)
95 * Determine whether this directory is the top of a union stack.
97 if (flags
& DTF_NODUP
) {
100 if (_fstatfs(fd
, &sfb
) < 0)
102 unionstack
= (sfb
.f_flags
& MNT_UNION
);
117 * The strategy here is to read all the directory
118 * entries into a buffer, sort the buffer, and
119 * remove duplicate entries by setting the inode
125 * Always make at least DIRBLKSIZ bytes
126 * available to _getdirentries
128 if (space
< DIRBLKSIZ
) {
131 buf
= reallocf(buf
, len
);
134 ddptr
= buf
+ (len
- space
);
137 #if __DARWIN_64_BIT_INO_T
138 n
= __getdirentries64(fd
, ddptr
, space
, &dirp
->dd_td
->seekoff
);
139 #else /* !__DARWIN_64_BIT_INO_T */
140 n
= _getdirentries(fd
, ddptr
, space
, &dirp
->dd_seek
);
141 #endif /* __DARWIN_64_BIT_INO_T */
149 flags
|= __DTF_READALL
;
152 * Re-open the directory.
153 * This has the effect of rewinding back to the
154 * top of the union stack and is needed by
155 * programs which plan to fchdir to a descriptor
156 * which has also been read -- see fts.c.
158 if (flags
& DTF_REWIND
) {
160 if ((fd
= _open(name
, O_RDONLY
)) == -1) {
170 * There is now a buffer full of (possibly) duplicate
176 * Go round this loop twice...
178 * Scan through the buffer, counting entries.
179 * On the second pass, save pointers to each one.
180 * Then sort the pointers and remove duplicate names.
185 while (ddptr
< ddeptr
) {
188 dp
= (struct dirent
*) ddptr
;
191 if ((dp
->d_reclen
<= 0) ||
192 (dp
->d_reclen
> (ddeptr
+ 1 - ddptr
)))
194 ddptr
+= dp
->d_reclen
;
206 * This sort must be stable.
208 mergesort(dpv
, n
, sizeof(*dpv
), alphasort
);
214 * Scan through the buffer in sort order,
215 * zapping the inode number of any
218 for (n
= 0; dpv
[n
]; n
++) {
219 struct dirent
*dp
= dpv
[n
];
222 strcmp(dp
->d_name
, xp
->d_name
)) {
227 if (dp
->d_type
== DT_WHT
&&
235 dpv
= malloc((n
+1) * sizeof(struct dirent
*));
242 dirp
->dd_size
= ddptr
- dirp
->dd_buf
;
246 dirp
->dd_buf
= malloc(dirp
->dd_len
);
247 if (dirp
->dd_buf
== NULL
)
249 #if __DARWIN_64_BIT_INO_T
250 dirp
->dd_td
->seekoff
= 0;
251 #else /* !__DARWIN_64_BIT_INO_T */
253 #endif /* __DARWIN_64_BIT_INO_T */
254 flags
&= ~DTF_REWIND
;
259 dirp
->dd_flags
= flags
;
260 dirp
->dd_lock
= (pthread_mutex_t
)PTHREAD_MUTEX_INITIALIZER
;
263 * Set up seek point for rewinddir.
265 dirp
->dd_rewind
= telldir(dirp
);