6d6182934308b4b65ba88be71a6dc242dcd1c613
[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   if (result == 0)
59     result = desired_fd;
60   return result;
61 }
62
63 #else /* !REPLACE_DUP2 */
64
65 /* On older platforms, dup2 did not exist.  */
66
67 # ifndef F_DUPFD
68 static int
69 dupfd (int fd, int desired_fd)
70 {
71   int duplicated_fd = dup (fd);
72   if (duplicated_fd < 0 || duplicated_fd == desired_fd)
73     return duplicated_fd;
74   else
75     {
76       int r = dupfd (fd, desired_fd);
77       int e = errno;
78       close (duplicated_fd);
79       errno = e;
80       return r;
81     }
82 }
83 # endif
84
85 int
86 dup2 (int fd, int desired_fd)
87 {
88   if (fd == desired_fd)
89     return fd;
90   close (desired_fd);
91 # ifdef F_DUPFD
92   return fcntl (fd, F_DUPFD, desired_fd);
93 # else
94   return dupfd (fd, desired_fd);
95 # endif
96 }
97 #endif /* !REPLACE_DUP2 */