Fix memory leak in video_output on Mac OS X (close #6267)
[vlc/solaris.git] / compat / fdopendir.c
blob0c6b625985c3023200b193a0313d0a8af533bede
1 /*****************************************************************************
2 * fdopendir.c: POSIX fdopendir replacement
3 *****************************************************************************
4 * Copyright © 2011 Rémi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
25 #include <stdio.h>
26 #include <errno.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33 #include <dirent.h>
35 DIR *fdopendir (int fd)
37 #ifdef F_GETFL
38 /* Check read permission on file descriptor */
39 int mode = fcntl (fd, F_GETFL);
40 if (mode == -1 || (mode & O_ACCMODE) == O_WRONLY)
42 errno = EBADF;
43 return NULL;
45 #endif
46 /* Check directory file type */
47 struct stat st;
48 if (fstat (fd, &st))
49 return NULL;
51 if (!S_ISDIR (st.st_mode))
53 errno = ENOTDIR;
54 return NULL;
57 /* Try to open the directory through /proc where available.
58 * Not all operating systems support this. Fix your libc! */
59 char path[sizeof ("/proc/self/fd/") + 3 * sizeof (int)];
60 sprintf (path, "/proc/self/fd/%u", fd);
62 DIR *dir = opendir (path);
63 if (dir != NULL)
65 close (fd);
66 return dir;
69 /* Hide impossible errors for fdopendir() */
70 switch (errno)
72 case EACCES:
73 #ifdef ELOOP
74 case ELOOP:
75 #endif
76 case ENAMETOOLONG:
77 case ENOENT:
78 case EMFILE:
79 case ENFILE:
80 errno = EIO;
82 return NULL;