xref: /illumos-gate/usr/src/lib/libc/port/gen/fdopendir.c (revision dd4eeefd)
1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 /*
30  * fdopendir -- C library extension routine
31  *
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.
35  */
36 
37 #pragma weak fdopendir = _fdopendir
38 
39 #include "synonyms.h"
40 #include <mtlib.h>
41 #include <dirent.h>
42 #include <sys/stat.h>
43 #include <fcntl.h>
44 #include <stdlib.h>
45 #include <unistd.h>
46 #include <errno.h>
47 #include "libc.h"
48 
49 extern int __fcntl(int fd, int cmd, intptr_t arg);
50 
51 DIR *
52 fdopendir(int fd)
53 {
54 	private_DIR *pdirp = lmalloc(sizeof (*pdirp));
55 	DIR *dirp = (DIR *)pdirp;
56 	void *buf = lmalloc(DIRBUF);
57 	int error = 0;
58 	struct stat64 sbuf;
59 
60 	if (pdirp == NULL || buf == NULL)
61 		goto fail;
62 	/*
63 	 * POSIX mandated behavior
64 	 * close on exec if using file descriptor
65 	 */
66 	if (__fcntl(fd, F_SETFD, FD_CLOEXEC) < 0)
67 		goto fail;
68 	if (fstat64(fd, &sbuf) < 0)
69 		goto fail;
70 	if ((sbuf.st_mode & S_IFMT) != S_IFDIR) {
71 		error = ENOTDIR;
72 		goto fail;
73 	}
74 	dirp->dd_buf = buf;
75 	dirp->dd_fd = fd;
76 	dirp->dd_loc = 0;
77 	dirp->dd_size = 0;
78 	(void) mutex_init(&pdirp->dd_lock, USYNC_THREAD, NULL);
79 	return (dirp);
80 
81 fail:
82 	if (pdirp != NULL)
83 		lfree(pdirp, sizeof (*pdirp));
84 	if (buf != NULL)
85 		lfree(buf, DIRBUF);
86 	if (error)
87 		errno = error;
88 	return (NULL);
89 }
90