Imported Upstream version 1.3.14
[debian/gzip] / 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 #if REPLACE_FCHDIR
74   if (fd != desired_fd && result == desired_fd)
75     result = _gl_register_dup (fd, desired_fd);
76 #endif
77   return result;
78 }
79
80 #else /* !REPLACE_DUP2 */
81
82 /* On older platforms, dup2 did not exist.  */
83
84 # ifndef F_DUPFD
85 static int
86 dupfd (int fd, int desired_fd)
87 {
88   int duplicated_fd = dup (fd);
89   if (duplicated_fd < 0 || duplicated_fd == desired_fd)
90     return duplicated_fd;
91   else
92     {
93       int r = dupfd (fd, desired_fd);
94       int e = errno;
95       close (duplicated_fd);
96       errno = e;
97       return r;
98     }
99 }
100 # endif
101
102 int
103 dup2 (int fd, int desired_fd)
104 {
105   int result;
106   if (fd == desired_fd)
107     return fcntl (fd, F_GETFL) < 0 ? -1 : fd;
108   close (desired_fd);
109 # ifdef F_DUPFD
110   result = fcntl (fd, F_DUPFD, desired_fd);
111 # else
112   result = dupfd (fd, desired_fd);
113 # endif
114 #if REPLACE_FCHDIR
115   if (0 <= result)
116     result = _gl_register_dup (fd, desired_fd);
117 #endif
118   return result;
119 }
120 #endif /* !REPLACE_DUP2 */