]>
git.saurik.com Git - bison.git/blob - lib/subpipe.c
1 /* Subprocesses with pipes.
3 Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
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 2, or (at your option)
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 /* Written by Paul Eggert <eggert@twinsun.com>
20 and Florian Krohm <florian@edamail.fishkill.ibm.com>. */
31 #if ! defined SIGCHLD && defined SIGCLD
32 # define SIGCHLD SIGCLD
41 # define STDIN_FILENO 0
44 # define STDOUT_FILENO 1
46 #if ! HAVE_DUP2 && ! defined dup2
50 # define dup2(f, t) (close (t), fcntl (f, F_DUPFD, t))
54 # include <sys/wait.h>
57 # define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8)
60 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
66 #if ! HAVE_WORKING_VFORK
71 #include "unistd-safer.h"
74 #define _(Msgid) gettext (Msgid)
77 /* Initialize this module. */
83 /* System V fork+wait does not work if SIGCHLD is ignored. */
84 signal (SIGCHLD
, SIG_DFL
);
89 /* Create a subprocess that is run as a filter. ARGV is the
90 NULL-terminated argument vector for the subprocess. Store read and
91 write file descriptors for communication with the subprocess into
92 FD[0] and FD[1]: input meant for the process can be written into
93 FD[0], and output from the process can be read from FD[1]. Return
96 To avoid deadlock, the invoker must not let incoming data pile up
97 in FD[1] while writing data to FD[0]. */
100 create_subpipe (char const * const *argv
, int fd
[2])
109 if (pipe (pipe_fd
) != 0
110 || (to_in_fd
= fd_safer (pipe_fd
[0])) < 0
111 || (to_out_fd
= fd_safer (pipe_fd
[1])) < 0
112 || pipe (pipe_fd
) != 0
113 || (from_in_fd
= fd_safer (pipe_fd
[0])) < 0
114 || (from_out_fd
= fd_safer (pipe_fd
[1])) < 0)
115 error (EXIT_FAILURE
, errno
, "pipe");
117 /* Save the local variables in the parent now, in case vfork
121 pipe_fd
[0] = to_in_fd
;
122 pipe_fd
[1] = from_out_fd
;
126 error (EXIT_FAILURE
, errno
, "fork");
133 dup2 (to_in_fd
, STDIN_FILENO
);
135 dup2 (from_out_fd
, STDOUT_FILENO
);
138 /* The cast to (char **) rather than (char * const *) is needed
139 for portability to older hosts with a nonstandard prototype
141 execvp (argv
[0], (char **) argv
);
143 _exit (errno
== ENOENT
? 127 : 126);
153 /* Wait for the subprocess to exit. */
156 reap_subpipe (pid_t pid
, char const *program
)
158 #if HAVE_WAITPID || defined waitpid
160 if (waitpid (pid
, &wstatus
, 0) < 0)
161 error (EXIT_FAILURE
, errno
, "waitpid");
164 int status
= WIFEXITED (wstatus
) ? WEXITSTATUS (wstatus
) : -1;
166 error (EXIT_FAILURE
, 0,
168 ? "subsidiary program `%s' could not be invoked"
170 ? "subsidiary program `%s' not found"
172 ? "subsidiary program `%s' failed"
173 : "subsidiary program `%s' failed (exit status %d)"),