]> git.cworth.org Git - tar/blob - gnu/pipe-safer.c
upstream: Fix extraction of device nodes.
[tar] / gnu / pipe-safer.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Invoke pipe, but avoid some glitches.
4    Copyright (C) 2005-2006, 2009-2010 Free Software 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 Jim Meyering.  */
20
21 #include <config.h>
22
23 #include "unistd-safer.h"
24
25 #include <unistd.h>
26 #include <errno.h>
27
28 /* Like pipe, but ensure that neither of the file descriptors is
29    STDIN_FILENO, STDOUT_FILENO, or STDERR_FILENO.  Fail with ENOSYS on
30    platforms that lack pipe.  */
31
32 int
33 pipe_safer (int fd[2])
34 {
35 #if HAVE_PIPE
36   if (pipe (fd) == 0)
37     {
38       int i;
39       for (i = 0; i < 2; i++)
40         {
41           fd[i] = fd_safer (fd[i]);
42           if (fd[i] < 0)
43             {
44               int e = errno;
45               close (fd[1 - i]);
46               errno = e;
47               return -1;
48             }
49         }
50
51       return 0;
52     }
53 #else
54   errno = ENOSYS;
55 #endif
56
57   return -1;
58 }