Merge commit 'upstream/1.7.2p2'
[debian/sudo] / closefrom.c
1 /*
2  * Copyright (c) 2004-2005, 2007
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 #include <config.h>
19
20 #include <sys/types.h>
21 #include <sys/param.h>
22 #include <unistd.h>
23 #include <stdio.h>
24 #ifdef STDC_HEADERS
25 # include <stdlib.h>
26 # include <stddef.h>
27 #else
28 # ifdef HAVE_STDLIB_H
29 #  include <stdlib.h>
30 # endif
31 #endif /* STDC_HEADERS */
32 #include <fcntl.h>
33 #ifdef HAVE_DIRENT_H
34 # include <dirent.h>
35 # define NAMLEN(dirent) strlen((dirent)->d_name)
36 #else
37 # define dirent direct
38 # define NAMLEN(dirent) (dirent)->d_namlen
39 # ifdef HAVE_SYS_NDIR_H
40 #  include <sys/ndir.h>
41 # endif
42 # ifdef HAVE_SYS_DIR_H
43 #  include <sys/dir.h>
44 # endif
45 # ifdef HAVE_NDIR_H
46 #  include <ndir.h>
47 # endif
48 #endif
49
50 #include "sudo.h"
51
52 #ifndef lint
53 __unused static const char rcsid[] = "$Sudo: closefrom.c,v 1.14 2008/11/09 14:13:12 millert Exp $";
54 #endif /* lint */
55
56 #ifndef HAVE_FCNTL_CLOSEM
57 # ifndef HAVE_DIRFD
58 #   define closefrom_fallback   closefrom
59 # endif
60 #endif
61
62 /*
63  * Close all file descriptors greater than or equal to lowfd.
64  * This is the expensive (ballback) method.
65  */
66 void
67 closefrom_fallback(lowfd)
68     int lowfd;
69 {
70     long fd, maxfd;
71
72     /*
73      * Fall back on sysconf() or getdtablesize().  We avoid checking
74      * resource limits since it is possible to open a file descriptor
75      * and then drop the rlimit such that it is below the open fd.
76      */
77 #ifdef HAVE_SYSCONF
78     maxfd = sysconf(_SC_OPEN_MAX);
79 #else
80     maxfd = getdtablesize();
81 #endif /* HAVE_SYSCONF */
82     if (maxfd < 0)
83         maxfd = OPEN_MAX;
84
85     for (fd = lowfd; fd < maxfd; fd++)
86         (void) close((int) fd);
87 }
88
89 /*
90  * Close all file descriptors greater than or equal to lowfd.
91  * We try the fast way first, falling back on the slow method.
92  */
93 #ifdef HAVE_FCNTL_CLOSEM
94 void
95 closefrom(lowfd)
96     int lowfd;
97 {
98     if (fcntl(lowfd, F_CLOSEM, 0) == -1)
99         closefrom_fallback(lowfd);
100 }
101 #else
102 # ifdef HAVE_DIRFD
103 void
104 closefrom(lowfd)
105     int lowfd;
106 {
107     struct dirent *dent;
108     DIR *dirp;
109     char *endp;
110     long fd;
111
112     /* Use /proc/self/fd directory if it exists. */
113     if ((dirp = opendir("/proc/self/fd")) != NULL) {
114         while ((dent = readdir(dirp)) != NULL) {
115             fd = strtol(dent->d_name, &endp, 10);
116             if (dent->d_name != endp && *endp == '\0' &&
117                 fd >= 0 && fd < INT_MAX && fd >= lowfd && fd != dirfd(dirp))
118                 (void) close((int) fd);
119         }
120         (void) closedir(dirp);
121     } else
122         closefrom_fallback(lowfd);
123 }
124 #endif /* HAVE_DIRFD */
125 #endif /* HAVE_FCNTL_CLOSEM */