123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- #ifndef HAVE_CLOSEFROM
- #include <sys/types.h>
- #include <sys/param.h>
- #include <unistd.h>
- #include <stdio.h>
- #ifdef HAVE_FCNTL_H
- # include <fcntl.h>
- #endif
- #include <limits.h>
- #include <stdlib.h>
- #include <stddef.h>
- #include <string.h>
- #include <unistd.h>
- #ifdef HAVE_DIRENT_H
- # include <dirent.h>
- # define NAMLEN(dirent) strlen((dirent)->d_name)
- #else
- # define dirent direct
- # define NAMLEN(dirent) (dirent)->d_namlen
- # ifdef HAVE_SYS_NDIR_H
- # include <sys/ndir.h>
- # endif
- # ifdef HAVE_SYS_DIR_H
- # include <sys/dir.h>
- # endif
- # ifdef HAVE_NDIR_H
- # include <ndir.h>
- # endif
- #endif
- #include "tmux.h"
- #ifndef OPEN_MAX
- # define OPEN_MAX 256
- #endif
- #if 0
- __unused static const char rcsid[] = "$Sudo: closefrom.c,v 1.11 2006/08/17 15:26:54 millert Exp $";
- #endif
- #ifdef HAVE_FCNTL_CLOSEM
- void
- closefrom(int lowfd)
- {
- (void) fcntl(lowfd, F_CLOSEM, 0);
- }
- #else
- void
- closefrom(int lowfd)
- {
- long fd, maxfd;
- #if defined(HAVE_DIRFD) && defined(HAVE_PROC_PID)
- char fdpath[PATH_MAX], *endp;
- struct dirent *dent;
- DIR *dirp;
- int len;
-
- len = snprintf(fdpath, sizeof(fdpath), "/proc/%ld/fd", (long)getpid());
- if (len > 0 && (size_t)len <= sizeof(fdpath) && (dirp = opendir(fdpath))) {
- while ((dent = readdir(dirp)) != NULL) {
- fd = strtol(dent->d_name, &endp, 10);
- if (dent->d_name != endp && *endp == '\0' &&
- fd >= 0 && fd < INT_MAX && fd >= lowfd && fd != dirfd(dirp))
- (void) close((int) fd);
- }
- (void) closedir(dirp);
- } else
- #endif
- {
-
- #ifdef HAVE_SYSCONF
- maxfd = sysconf(_SC_OPEN_MAX);
- #else
- maxfd = getdtablesize();
- #endif
- if (maxfd < 0)
- maxfd = OPEN_MAX;
- for (fd = lowfd; fd < maxfd; fd++)
- (void) close((int) fd);
- }
- }
- #endif
- #endif
|