Tolerate declared but missing pipe2 syscall.
[gnulib.git] / lib / pipe2.c
1 /* Create a pipe, with specific opening flags.
2    Copyright (C) 2009 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
26 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
27 /* Native Woe32 API.  */
28
29 # include <io.h>
30
31 #else
32 /* Unix API.  */
33
34 # ifndef O_CLOEXEC
35 #  define O_CLOEXEC 0
36 # endif
37
38 #endif
39
40 int
41 pipe2 (int fd[2], int flags)
42 {
43 #if HAVE_PIPE2
44 # undef pipe2
45   /* Try the system call first, if it exists.  (We may be running with a glibc
46      that has the function but with an older kernel that lacks it.)  */
47   {
48     int result = pipe2 (fd, flags);
49     if (!(result < 0 && errno == ENOSYS))
50       return result;
51   }
52 #endif
53
54 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
55 /* Native Woe32 API.  */
56
57   /* Check the supported flags.  */
58   if ((flags & ~(O_CLOEXEC | O_BINARY | O_TEXT)) != 0)
59     {
60       errno = EINVAL;
61       return -1;
62     }
63
64   return _pipe (fd, 4096, flags);
65
66 #else
67 /* Unix API.  */
68
69   /* Check the supported flags.  */
70   if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_TEXT | O_BINARY)) != 0)
71     {
72       errno = EINVAL;
73       return -1;
74     }
75
76   if (pipe (fd) < 0)
77     return -1;
78
79   /* POSIX <http://www.opengroup.org/onlinepubs/9699919799/functions/pipe.html>
80      says that initially, the O_NONBLOCK and FD_CLOEXEC flags are cleared on
81      both fd[0] amd fd[1].  */
82
83   if (flags & O_NONBLOCK)
84     {
85       int fcntl_flags;
86
87       if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0
88           || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
89           || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0
90           || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
91         goto fail;
92     }
93
94   if (flags & O_CLOEXEC)
95     {
96       int fcntl_flags;
97
98       if ((fcntl_flags = fcntl (fd[1], F_GETFD, 0)) < 0
99           || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
100           || (fcntl_flags = fcntl (fd[0], F_GETFD, 0)) < 0
101           || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
102         goto fail;
103     }
104
105 # if O_BINARY
106   if (flags & O_BINARY)
107     {
108       setmode (fd[1], O_BINARY);
109       setmode (fd[0], O_BINARY);
110     }
111   else if (flags & O_TEXT)
112     {
113       setmode (fd[1], O_TEXT);
114       setmode (fd[0], O_TEXT);
115     }
116 # endif
117
118   return 0;
119
120  fail:
121   {
122     int saved_errno = errno;
123     close (fd[0]);
124     close (fd[1]);
125     errno = saved_errno;
126     return -1;
127   }
128
129 #endif
130 }