dup2: work around a Linux bug.
[gnulib.git] / lib / dup2.c
1 /* Duplicate an open file descriptor to a specified file descriptor.
2
3    Copyright (C) 1999, 2004, 2005, 2006, 2007, 2009 Free Software
4    Foundation, Inc.
5
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 3 of the License, or
9    (at your option) any later version.
10
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.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* written by Paul Eggert */
20
21 #include <config.h>
22
23 /* Specification.  */
24 #include <unistd.h>
25
26 #include <errno.h>
27 #include <fcntl.h>
28
29 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
30 /* Get declarations of the Win32 API functions.  */
31 # define WIN32_LEAN_AND_MEAN
32 # include <windows.h>
33 #endif
34
35 #if REPLACE_DUP2
36
37 # undef dup2
38
39 int
40 rpl_dup2 (int fd, int desired_fd)
41 {
42   int result;
43 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
44   /* If fd is closed, mingw hangs on dup2 (fd, fd).  If fd is open,
45      dup2 (fd, fd) returns 0, but all further attempts to use fd in
46      future dup2 calls will hang.  */
47   if (fd == desired_fd)
48     {
49       if ((HANDLE) _get_osfhandle (fd) == INVALID_HANDLE_VALUE)
50         {
51           errno = EBADF;
52           return -1;
53         }
54       return fd;
55     }
56 # endif
57   result = dup2 (fd, desired_fd);
58 # ifdef __linux__
59   /* Correct a Linux return value.
60      <http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.30.y.git;a=commitdiff;h=2b79bc4f7ebbd5af3c8b867968f9f15602d5f802>
61    */
62   if (fd == desired_fd && result == (unsigned int) -EBADF)
63     {
64       errno = EBADF;
65       result = -1;
66     }
67 # endif
68   if (result == 0)
69     result = desired_fd;
70   /* Correct a cygwin 1.5.x errno value.  */
71   else if (result == -1 && errno == EMFILE)
72     errno = EBADF;
73   return result;
74 }
75
76 #else /* !REPLACE_DUP2 */
77
78 /* On older platforms, dup2 did not exist.  */
79
80 # ifndef F_DUPFD
81 static int
82 dupfd (int fd, int desired_fd)
83 {
84   int duplicated_fd = dup (fd);
85   if (duplicated_fd < 0 || duplicated_fd == desired_fd)
86     return duplicated_fd;
87   else
88     {
89       int r = dupfd (fd, desired_fd);
90       int e = errno;
91       close (duplicated_fd);
92       errno = e;
93       return r;
94     }
95 }
96 # endif
97
98 int
99 dup2 (int fd, int desired_fd)
100 {
101   if (fd == desired_fd)
102     return fd;
103   close (desired_fd);
104 # ifdef F_DUPFD
105   return fcntl (fd, F_DUPFD, desired_fd);
106 # else
107   return dupfd (fd, desired_fd);
108 # endif
109 }
110 #endif /* !REPLACE_DUP2 */