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