2 * @brief Implementation of closefrom() function.
4 /* Copyright (C) 2010,2011,2012,2016,2018,2019 Olly Betts
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 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 General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 // We don't currently need closefrom() on __WIN32__.
24 #if !defined HAVE_CLOSEFROM && !defined __WIN32__
26 #include "closefrom.h"
29 #include "safefcntl.h"
30 #include "safeunistd.h"
32 #ifdef HAVE_SYS_RESOURCE_H
33 # include <sys/types.h>
34 # include <sys/resource.h>
38 # include "alignment_cast.h"
39 # include "safedirent.h"
40 # include "parseint.h"
41 #elif defined __APPLE__
42 # include <sys/attr.h>
44 # include "parseint.h"
52 // May only be supported by NetBSD, modern versions of which implement
53 // closefrom(). Leave this in so that if other platforms have it or add
54 // it they will benefit.
55 int maxfd
= fcntl(0, F_MAXFD
);
56 if (maxfd
>= 0) return maxfd
;
60 if (getrlimit(RLIMIT_NOFILE
, &rl
) == 0 &&
61 rl
.rlim_max
!= RLIM_INFINITY
) {
62 return static_cast<int>(rl
.rlim_max
) - 1;
65 return static_cast<int>(sysconf(_SC_OPEN_MAX
)) - 1;
68 // These platforms are known to provide closefrom():
69 // FreeBSD >= 8.0, NetBSD >= 3.0, OpenBSD >= 3.5, Solaris >= 9,
70 // Linux >= 5.9 with glibc >= 2.34
72 // These platforms are known to support fcntl() with F_CLOSEM:
75 // These platforms have getdirentries() and a "magic" directory with an entry
76 // for each FD open in the current process:
77 // Linux (at least with glibc)
79 // These platforms have getdirentriesattr() and a "magic" directory with an
80 // entry for each FD open in the current process:
83 // Other platforms just use a loop up to a limit obtained from
84 // fcntl(0, F_MAXFD), getrlimit(RLIMIT_NOFILE, ...), or sysconf(_SC_OPEN_MAX)
86 // Android (bionic libc doesn't provide getdirentries())
89 Xapian::Internal::closefrom(int fd
)
93 if (fcntl(fd
, F_CLOSEM
, 0) >= 0)
95 #elif defined HAVE_GETDIRENTRIES && defined __linux__
96 const char* path
= "/proc/self/fd";
97 int dir
= open(path
, O_RDONLY
|O_DIRECTORY
);
103 // We use getdirentries() instead of opendir()/readdir() here
104 // because the latter can call malloc(), which isn't safe to do
105 // between fork() and exec() in a multi-threaded program.
106 ssize_t c
= getdirentries(dir
, buf
, sizeof(buf
), &base
);
112 // Fallback if getdirentries() fails.
116 for (ssize_t pos
= 0; pos
< c
; pos
+= d
->d_reclen
) {
117 d
= alignment_cast
<struct dirent
*>(buf
+ pos
);
118 const char* leaf
= d
->d_name
;
120 if (!parse_signed(leaf
, n
)) {
121 // Skip '.' and '..'.
125 // FD below threshold.
129 // Don't close the fd open on the directory.
133 // Running under valgrind causes some entries above the
134 // reported RLIMIT_NOFILE value to appear in
135 // /proc/self/fd - see:
136 // https://bugs.kde.org/show_bug.cgi?id=191758
138 // If we try to close these, valgrind issues a warning about
139 // trying to close an invalid file descriptor. These entries
140 // start at 1024, so we check that value first so we can
141 // usually avoid having to read the fd limit when we're not
142 // running under valgrind.
151 while (close(n
) < 0 && errno
== EINTR
) { }
156 #elif defined __APPLE__ // macOS
157 const char* path
= "/dev/fd";
159 typedef unsigned int gdea_type
;
161 typedef unsigned long gdea_type
;
163 int dir
= open(path
, O_RDONLY
|O_DIRECTORY
);
166 struct attrlist alist
;
167 memset(&alist
, 0, sizeof(alist
));
168 alist
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
169 alist
.commonattr
= ATTR_CMN_NAME
;
173 // We use getdirentriesattr() instead of opendir()/readdir() here
174 // because the latter can call malloc(), which isn't safe to do
175 // between fork() and exec() in a multi-threaded program. We only
176 // want filename, but can't use getdirentries() because it's not
177 // available with 64-bit inode_t, which seems to be tied to LFS.
178 gdea_type count
= sizeof(buf
);
180 int r
= getdirentriesattr(dir
, &alist
, buf
, sizeof(buf
),
181 &count
, &base
, &new_state
, 0);
184 // Fallback if getdirentriesattr() fails.
188 while (count
-- > 0) {
189 const char* leaf
= p
+ sizeof(u_int32_t
);
190 p
+= *static_cast<u_int32_t
*>(static_cast<void*>(p
));
193 if (!parse_signed(leaf
, n
)) {
194 // Skip '.' and '..'.
198 // FD below threshold.
202 // Don't close the fd open on the directory.
207 while (close(n
) < 0 && errno
== EINTR
) { }
210 // We've had the last entry.
218 // Some platforms have /proc/<pid>/fd but not /proc/self - if any such
219 // platforms don't have either closefrom() or F_CLOSEM but do have
220 // getdirentries() then this code can be used. AIX is an example of
221 // a platform of the former, but apparently has F_CLOSEM.
222 char path
[6 + sizeof(pid_t
) * 3 + 4];
223 snprintf(path
, sizeof(path
), "/proc/%ld/fd", long(getpid()));
224 path
[sizeof(path
) - 1] = '\0';
228 while (fd
<= maxfd
) {
229 // Retry on EINTR; just ignore other errors (we'll get EBADF if fd
230 // isn't open so that's OK).
231 while (close(fd
) < 0 && errno
== EINTR
) { }