maint: update almost all copyright ranges to include 2011
[gnulib.git] / lib / dup3.c
1 /* Copy a file descriptor, applying specific flags.
2    Copyright (C) 2009-2011 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License along
15    with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 #include <config.h>
19
20 /* Specification.  */
21 #include <unistd.h>
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <limits.h>
26
27 #include "binary-io.h"
28
29 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
30 /* Native Woe32 API.  */
31
32 # include <string.h>
33
34 /* Get declarations of the Win32 API functions.  */
35 # define WIN32_LEAN_AND_MEAN
36 # include <windows.h>
37
38 /* Upper bound on getdtablesize().  See lib/getdtablesize.c.  */
39 # define OPEN_MAX_MAX 0x10000
40
41 #endif
42
43 int
44 dup3 (int oldfd, int newfd, int flags)
45 {
46 #if HAVE_DUP3
47 # undef dup3
48   /* Try the system call first, if it exists.  (We may be running with a glibc
49      that has the function but with an older kernel that lacks it.)  */
50   {
51     /* Cache the information whether the system call really exists.  */
52     static int have_dup3_really; /* 0 = unknown, 1 = yes, -1 = no */
53     if (have_dup3_really >= 0)
54       {
55         int result = dup3 (oldfd, newfd, flags);
56         if (!(result < 0 && errno == ENOSYS))
57           {
58             have_dup3_really = 1;
59 #if REPLACE_FCHDIR
60             if (0 <= result)
61               result = _gl_register_dup (oldfd, newfd);
62 #endif
63             return result;
64           }
65         have_dup3_really = -1;
66       }
67   }
68 #endif
69
70   if (newfd < 0 || newfd >= getdtablesize () || fcntl (oldfd, F_GETFD) == -1)
71     {
72       errno = EBADF;
73       return -1;
74     }
75
76   if (newfd == oldfd)
77     {
78       errno = EINVAL;
79       return -1;
80     }
81
82   /* Check the supported flags.
83      Note that O_NONBLOCK is not supported, because setting it on newfd
84      would implicitly also set it on oldfd.  */
85   if ((flags & ~(O_CLOEXEC | O_BINARY | O_TEXT)) != 0)
86     {
87       errno = EINVAL;
88       return -1;
89     }
90
91   if (flags & O_CLOEXEC)
92     {
93       int result;
94       close (newfd);
95       result = fcntl (oldfd, F_DUPFD_CLOEXEC, newfd);
96       if (newfd < result)
97         {
98           close (result);
99           errno = EIO;
100           result = -1;
101         }
102       if (result < 0)
103         return -1;
104     }
105   else if (dup2 (oldfd, newfd) < 0)
106     return -1;
107
108 #if O_BINARY
109   if (flags & O_BINARY)
110     setmode (newfd, O_BINARY);
111   else if (flags & O_TEXT)
112     setmode (newfd, O_TEXT);
113 #endif
114
115   return newfd;
116 }