1 /* Provide file descriptor control.
3 Copyright (C) 2009-2015 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Written by Eric Blake <ebb9@byu.net>. */
31 # define rpl_fcntl fcntl
35 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
36 /* Get declarations of the native Windows API functions. */
37 # define WIN32_LEAN_AND_MEAN
40 /* Get _get_osfhandle. */
41 # include "msvc-nothrow.h"
43 /* Upper bound on getdtablesize(). See lib/getdtablesize.c. */
44 # define OPEN_MAX_MAX 0x10000
46 /* Duplicate OLDFD into the first available slot of at least NEWFD,
47 which must be positive, with FLAGS determining whether the duplicate
48 will be inheritable. */
50 dupfd (int oldfd
, int newfd
, int flags
)
52 /* Mingw has no way to create an arbitrary fd. Iterate until all
53 file descriptors less than newfd are filled up. */
54 HANDLE curr_process
= GetCurrentProcess ();
55 HANDLE old_handle
= (HANDLE
) _get_osfhandle (oldfd
);
56 unsigned char fds_to_close
[OPEN_MAX_MAX
/ CHAR_BIT
];
57 unsigned int fds_to_close_bound
= 0;
59 BOOL inherit
= flags
& O_CLOEXEC
? FALSE
: TRUE
;
62 if (newfd
< 0 || getdtablesize () <= newfd
)
67 if (old_handle
== INVALID_HANDLE_VALUE
68 || (mode
= setmode (oldfd
, O_BINARY
)) == -1)
70 /* oldfd is not open, or is an unassigned standard file
75 setmode (oldfd
, mode
);
84 if (!DuplicateHandle (curr_process
, /* SourceProcessHandle */
85 old_handle
, /* SourceHandle */
86 curr_process
, /* TargetProcessHandle */
87 (PHANDLE
) &new_handle
, /* TargetHandle */
88 (DWORD
) 0, /* DesiredAccess */
89 inherit
, /* InheritHandle */
90 DUPLICATE_SAME_ACCESS
)) /* Options */
92 switch (GetLastError ())
94 case ERROR_TOO_MANY_OPEN_FILES
:
97 case ERROR_INVALID_HANDLE
:
98 case ERROR_INVALID_TARGET_HANDLE
:
99 case ERROR_DIRECT_ACCESS_HANDLE
:
102 case ERROR_INVALID_PARAMETER
:
103 case ERROR_INVALID_FUNCTION
:
104 case ERROR_INVALID_ACCESS
:
114 duplicated_fd
= _open_osfhandle ((intptr_t) new_handle
, flags
);
115 if (duplicated_fd
< 0)
117 CloseHandle (new_handle
);
121 if (newfd
<= duplicated_fd
)
123 result
= duplicated_fd
;
127 /* Set the bit duplicated_fd in fds_to_close[]. */
128 index
= (unsigned int) duplicated_fd
/ CHAR_BIT
;
129 if (fds_to_close_bound
<= index
)
131 if (sizeof fds_to_close
<= index
)
132 /* Need to increase OPEN_MAX_MAX. */
134 memset (fds_to_close
+ fds_to_close_bound
, '\0',
135 index
+ 1 - fds_to_close_bound
);
136 fds_to_close_bound
= index
+ 1;
138 fds_to_close
[index
] |= 1 << ((unsigned int) duplicated_fd
% CHAR_BIT
);
141 /* Close the previous fds that turned out to be too small. */
143 int saved_errno
= errno
;
144 unsigned int duplicated_fd
;
146 for (duplicated_fd
= 0;
147 duplicated_fd
< fds_to_close_bound
* CHAR_BIT
;
149 if ((fds_to_close
[duplicated_fd
/ CHAR_BIT
]
150 >> (duplicated_fd
% CHAR_BIT
))
152 close (duplicated_fd
);
159 result
= _gl_register_dup (oldfd
, result
);
165 /* Perform the specified ACTION on the file descriptor FD, possibly
166 using the argument ARG further described below. This replacement
167 handles the following actions, and forwards all others on to the
168 native fcntl. An unrecognized ACTION returns -1 with errno set to
171 F_DUPFD - duplicate FD, with int ARG being the minimum target fd.
172 If successful, return the duplicate, which will be inheritable;
173 otherwise return -1 and set errno.
175 F_DUPFD_CLOEXEC - duplicate FD, with int ARG being the minimum
176 target fd. If successful, return the duplicate, which will not be
177 inheritable; otherwise return -1 and set errno.
179 F_GETFD - ARG need not be present. If successful, return a
180 non-negative value containing the descriptor flags of FD (only
181 FD_CLOEXEC is portable, but other flags may be present); otherwise
182 return -1 and set errno. */
185 rpl_fcntl (int fd
, int action
, /* arg */...)
189 va_start (arg
, action
);
196 int target
= va_arg (arg
, int);
197 result
= dupfd (fd
, target
, 0);
200 #elif FCNTL_DUPFD_BUGGY || REPLACE_FCHDIR
203 int target
= va_arg (arg
, int);
204 /* Detect invalid target; needed for cygwin 1.5.x. */
205 if (target
< 0 || getdtablesize () <= target
)
209 /* Haiku alpha 2 loses fd flags on original. */
210 int flags
= fcntl (fd
, F_GETFD
);
216 result
= fcntl (fd
, action
, target
);
217 if (0 <= result
&& fcntl (fd
, F_SETFD
, flags
) == -1)
219 int saved_errno
= errno
;
226 result
= _gl_register_dup (fd
, result
);
231 #endif /* FCNTL_DUPFD_BUGGY || REPLACE_FCHDIR */
233 case F_DUPFD_CLOEXEC
:
235 int target
= va_arg (arg
, int);
238 result
= dupfd (fd
, target
, O_CLOEXEC
);
240 #else /* HAVE_FCNTL */
241 /* Try the system call first, if the headers claim it exists
242 (that is, if GNULIB_defined_F_DUPFD_CLOEXEC is 0), since we
243 may be running with a glibc that has the macro but with an
244 older kernel that does not support it. Cache the
245 information on whether the system call really works, but
246 avoid caching failure if the corresponding F_DUPFD fails
247 for any reason. 0 = unknown, 1 = yes, -1 = no. */
248 static int have_dupfd_cloexec
= GNULIB_defined_F_DUPFD_CLOEXEC
? -1 : 0;
249 if (0 <= have_dupfd_cloexec
)
251 result
= fcntl (fd
, action
, target
);
252 if (0 <= result
|| errno
!= EINVAL
)
254 have_dupfd_cloexec
= 1;
257 result
= _gl_register_dup (fd
, result
);
262 result
= rpl_fcntl (fd
, F_DUPFD
, target
);
265 have_dupfd_cloexec
= -1;
269 result
= rpl_fcntl (fd
, F_DUPFD
, target
);
270 if (0 <= result
&& have_dupfd_cloexec
== -1)
272 int flags
= fcntl (result
, F_GETFD
);
273 if (flags
< 0 || fcntl (result
, F_SETFD
, flags
| FD_CLOEXEC
) == -1)
275 int saved_errno
= errno
;
282 #endif /* HAVE_FCNTL */
283 } /* F_DUPFD_CLOEXEC */
288 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
289 HANDLE handle
= (HANDLE
) _get_osfhandle (fd
);
291 if (handle
== INVALID_HANDLE_VALUE
292 || GetHandleInformation (handle
, &flags
) == 0)
295 result
= (flags
& HANDLE_FLAG_INHERIT
) ? 0 : FD_CLOEXEC
;
297 /* Use dup2 to reject invalid file descriptors. No way to
298 access this information, so punt. */
299 if (0 <= dup2 (fd
, fd
))
304 #endif /* !HAVE_FCNTL */
306 /* Implementing F_SETFD on mingw is not trivial - there is no
307 API for changing the O_NOINHERIT bit on an fd, and merely
308 changing the HANDLE_FLAG_INHERIT bit on the underlying handle
309 can lead to odd state. It may be possible by duplicating the
310 handle, using _open_osfhandle with the right flags, then
311 using dup2 to move the duplicate onto the original, but that
312 is not supported for now. */
317 void *p
= va_arg (arg
, void *);
318 result
= fcntl (fd
, action
, p
);