4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
30 * fdopendir, dirfd -- C library extension routines
32 * We use lmalloc()/lfree() rather than malloc()/free() in
33 * order to allow opendir()/readdir()/closedir() to be called
34 * while holding internal libc locks.
37 #pragma weak _fdopendir = fdopendir
52 private_DIR
*pdirp
= lmalloc(sizeof (*pdirp
));
53 DIR *dirp
= (DIR *)pdirp
;
54 void *buf
= lmalloc(DIRBUF
);
58 if (pdirp
== NULL
|| buf
== NULL
)
61 * POSIX mandated behavior
62 * close on exec if using file descriptor
64 if (fcntl(fd
, F_SETFD
, FD_CLOEXEC
) < 0)
66 if (fstat64(fd
, &sbuf
) < 0)
68 if ((sbuf
.st_mode
& S_IFMT
) != S_IFDIR
) {
76 (void) mutex_init(&pdirp
->dd_lock
, USYNC_THREAD
, NULL
);
81 lfree(pdirp
, sizeof (*pdirp
));