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, const char *, int);
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 if (_fcntl(fd
, F_SETFD
, FD_CLOEXEC
) == -1)
81 return (__opendir_common(fd
, NULL
, DTF_HIDEW
|DTF_NODUP
));
85 __opendir2(const char *name
, int flags
)
90 O_RDONLY
| O_NONBLOCK
| O_DIRECTORY
| O_CLOEXEC
)) == -1)
93 return __opendir_common(fd
, name
, flags
);
97 opendir_compar(const void *p1
, const void *p2
)
100 return (strcmp((*(const struct dirent
**)p1
)->d_name
,
101 (*(const struct dirent
**)p2
)->d_name
));
105 * Common routine for opendir(3), __opendir2(3) and fdopendir(3).
108 __opendir_common(int fd
, const char *name
, int flags
)
115 if ((dirp
= malloc(sizeof(DIR) + sizeof(struct _telldir
))) == NULL
)
118 dirp
->dd_td
= (struct _telldir
*)((char *)dirp
+ sizeof(DIR));
119 LIST_INIT(&dirp
->dd_td
->td_locq
);
120 dirp
->dd_td
->td_loccnt
= 0;
123 * Use the system page size if that is a multiple of DIRBLKSIZ.
124 * Hopefully this can be a big win someday by allowing page
125 * trades to user space to be done by _getdirentries().
127 incr
= getpagesize();
128 if ((incr
% DIRBLKSIZ
) != 0)
132 * Determine whether this directory is the top of a union stack.
134 if (flags
& DTF_NODUP
) {
137 if (_fstatfs(fd
, &sfb
) < 0)
139 unionstack
= !strcmp(sfb
.f_fstypename
, "unionfs")
140 || (sfb
.f_flags
& MNT_UNION
);
155 * The strategy here is to read all the directory
156 * entries into a buffer, sort the buffer, and
157 * remove duplicate entries by setting the inode
163 * Always make at least DIRBLKSIZ bytes
164 * available to _getdirentries
166 if (space
< DIRBLKSIZ
) {
169 buf
= reallocf(buf
, len
);
172 ddptr
= buf
+ (len
- space
);
175 #if __DARWIN_64_BIT_INO_T
176 n
= (int)__getdirentries64(fd
, ddptr
, space
, &dirp
->dd_td
->seekoff
);
177 #else /* !__DARWIN_64_BIT_INO_T */
178 n
= _getdirentries(fd
, ddptr
, space
, &dirp
->dd_seek
);
179 #endif /* __DARWIN_64_BIT_INO_T */
187 flags
|= __DTF_READALL
;
190 * Re-open the directory.
191 * This has the effect of rewinding back to the
192 * top of the union stack and is needed by
193 * programs which plan to fchdir to a descriptor
194 * which has also been read -- see fts.c.
196 if (flags
& DTF_REWIND
) {
198 if ((fd
= _open(name
, O_RDONLY
| O_DIRECTORY
)) == -1) {
208 * There is now a buffer full of (possibly) duplicate
214 * Go round this loop twice...
216 * Scan through the buffer, counting entries.
217 * On the second pass, save pointers to each one.
218 * Then sort the pointers and remove duplicate names.
223 while (ddptr
< ddeptr
) {
226 dp
= (struct dirent
*) ddptr
;
229 if ((dp
->d_reclen
<= 0) ||
230 (dp
->d_reclen
> (ddeptr
+ 1 - ddptr
)))
232 ddptr
+= dp
->d_reclen
;
244 * This sort must be stable.
246 mergesort(dpv
, n
, sizeof(*dpv
),
253 * Scan through the buffer in sort order,
254 * zapping the inode number of any
257 for (n
= 0; dpv
[n
]; n
++) {
258 struct dirent
*dp
= dpv
[n
];
261 strcmp(dp
->d_name
, xp
->d_name
)) {
266 if (dp
->d_type
== DT_WHT
&&
274 dpv
= malloc((n
+1) * sizeof(struct dirent
*));
281 dirp
->dd_size
= ddptr
- dirp
->dd_buf
;
285 dirp
->dd_buf
= malloc(dirp
->dd_len
);
286 if (dirp
->dd_buf
== NULL
)
288 #if __DARWIN_64_BIT_INO_T
289 dirp
->dd_td
->seekoff
= 0;
290 #else /* !__DARWIN_64_BIT_INO_T */
292 #endif /* __DARWIN_64_BIT_INO_T */
293 flags
&= ~DTF_REWIND
;
298 dirp
->dd_flags
= flags
;
299 dirp
->dd_lock
= (pthread_mutex_t
)PTHREAD_MUTEX_INITIALIZER
;
302 * Set up seek point for rewinddir.
304 dirp
->dd_rewind
= telldir(dirp
);