4 no strict 'refs'; # because users pass me bareword filehandles
5 our ($VERSION, @ISA, @EXPORT);
10 use Symbol qw(gensym qualify);
18 IPC::Open3 - open a process for reading, writing, and error handling using open3()
22 $pid = open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR,
23 'some cmd and args', 'optarg', ...);
26 use Symbol 'gensym'; $err = gensym;
27 $pid = open3($wtr, $rdr, $err,
28 'some cmd and args', 'optarg', ...);
31 my $child_exit_status = $? >> 8;
35 Extremely similar to open2(), open3() spawns the given $cmd and
36 connects CHLD_OUT for reading from the child, CHLD_IN for writing to
37 the child, and CHLD_ERR for errors. If CHLD_ERR is false, or the
38 same file descriptor as CHLD_OUT, then STDOUT and STDERR of the child
39 are on the same filehandle (this means that an autovivified lexical
40 cannot be used for the STDERR filehandle, see SYNOPSIS). The CHLD_IN
41 will have autoflush turned on.
43 If CHLD_IN begins with C<< <& >>, then CHLD_IN will be closed in the
44 parent, and the child will read from it directly. If CHLD_OUT or
45 CHLD_ERR begins with C<< >& >>, then the child will send output
46 directly to that filehandle. In both cases, there will be a dup(2)
47 instead of a pipe(2) made.
49 If either reader or writer is the null string, this will be replaced
50 by an autogenerated filehandle. If so, you must pass a valid lvalue
51 in the parameter slot so it can be overwritten in the caller, or
52 an exception will be raised.
54 The filehandles may also be integers, in which case they are understood
57 open3() returns the process ID of the child process. It doesn't return on
58 failure: it just raises an exception matching C</^open3:/>. However,
59 C<exec> failures in the child (such as no such file or permission denied),
60 are just reported to CHLD_ERR, as it is not possible to trap them.
62 If the child process dies for any reason, the next write to CHLD_IN is
63 likely to generate a SIGPIPE in the parent, which is fatal by default.
64 So you may wish to handle this signal.
66 Note if you specify C<-> as the command, in an analogous fashion to
67 C<open(FOO, "-|")> the child process will just be the forked Perl
68 process rather than an external command. This feature isn't yet
69 supported on Win32 platforms.
71 open3() does not wait for and reap the child process after it exits.
72 Except for short programs where it's acceptable to let the operating system
73 take care of this, you need to do this yourself. This is normally as
74 simple as calling C<waitpid $pid, 0> when you're done with the process.
75 Failing to do this can result in an accumulation of defunct or "zombie"
76 processes. See L<perlfunc/waitpid> for more information.
78 If you try to read from the child's stdout writer and their stderr
79 writer, you'll have problems with blocking, which means you'll want
80 to use select() or the IO::Select, which means you'd best use
81 sysread() instead of readline() for normal stuff.
83 This is very dangerous, as you may block forever. It assumes it's
84 going to talk to something like B<bc>, both writing to it and reading
85 from it. This is presumably safe because you "know" that commands
86 like B<bc> will read a line at a time and output a line at a time.
87 Programs like B<sort> that read their entire input stream first,
88 however, are quite apt to cause deadlock.
90 The big problem with this approach is that if you don't have control
91 over source code being run in the child process, you can't control
92 what it does with pipe buffering. Thus you can't just open a pipe to
93 C<cat -v> and continually read and write a line from it.
101 Like Open3 but without STDERR catpure.
105 This is a CPAN module that has better error handling and more facilities
112 The order of arguments differs from that of open2().
116 # &open3: Marc Horowitz <marc@mit.edu>
117 # derived mostly from &open2 by tom christiansen, <tchrist@convex.com>
118 # fixed for 5.001 by Ulrich Kunitz <kunitz@mai-koeln.com>
119 # ported to Win32 by Ron Schmidt, Merrill Lynch almost ended my career
120 # fixed for autovivving FHs, tchrist again
121 # allow fd numbers to be used, by Frank Tobin
122 # allow '-' as command (c.f. open "-|"), by Adam Spiers <perl@adamspiers.org>
124 # usage: $pid = open3('wtr', 'rdr', 'err' 'some cmd and args', 'optarg', ...);
126 # spawn the given $cmd and connect rdr for
127 # reading, wtr for writing, and err for errors.
128 # if err is '', or the same as rdr, then stdout and
129 # stderr of the child are on the same fh. returns pid
130 # of child (or dies on failure).
133 # if wtr begins with '<&', then wtr will be closed in the parent, and
134 # the child will read from it directly. if rdr or err begins with
135 # '>&', then the child will send output directly to that fd. In both
136 # cases, there will be a dup() instead of a pipe() made.
139 # WARNING: this is dangerous, as you may block forever
140 # unless you are very careful.
142 # $wtr is left unbuffered.
145 # rdr or wtr are null
146 # a system call fails
148 our $Me = 'open3 (bug)'; # you should never see this, it's always localized
150 # Fatal.pm needs to be fixed WRT prototypes.
153 pipe $_[0], $_[1] or croak "$Me: pipe($_[0], $_[1]) failed: $!";
156 # I tried using a * prototype character for the filehandle but it still
157 # disallows a bareword while compiling under strict subs.
160 open $_[0], $_[1], @_[2..$#_] and return;
162 carp "$Me: open(@_) failed: $!";
166 $_[0] =~ /\A=?(\d+)\z/ ? eval { require POSIX; POSIX::close($1); } : close $_[0]
167 or croak "$Me: close($_[0]) failed: $!";
171 return $1 if $_[0] =~ /\A=?(\d+)\z/; # deal with fh just being an fd
175 use constant FORCE_DEBUG_SPAWN => 0;
176 use constant DO_SPAWN => $^O eq 'os2' || $^O eq 'MSWin32' || FORCE_DEBUG_SPAWN;
181 # simulate autovivification of filehandles because
182 # it's too ugly to use @_ throughout to make perl do it for us
186 $_[0] = gensym unless defined $_[0] && length $_[0];
187 $_[1] = gensym unless defined $_[1] && length $_[1];
190 # must strip crud for croak to add back, or looks ugly
191 $@ =~ s/(?<=value attempted) at .*//s;
195 my @handles = ({ mode => '<', handle => \*STDIN },
196 { mode => '>', handle => \*STDOUT },
197 { mode => '>', handle => \*STDERR },
201 $_->{parent} = shift;
202 $_->{open_as} = gensym;
205 if (@_ > 1 and $_[0] eq '-') {
206 croak "Arguments don't make sense when the command is '-'"
209 $handles[2]{parent} ||= $handles[1]{parent};
210 $handles[2]{dup_of_out} = $handles[1]{parent} eq $handles[2]{parent};
214 $_->{dup} = ($_->{parent} =~ s/^[<>]&//);
216 if ($_->{parent} !~ /\A=?(\d+)\z/) {
217 # force unqualified filehandles into caller's package
218 $package //= caller 1;
219 $_->{parent} = qualify $_->{parent}, $package;
222 next if $_->{dup} or $_->{dup_of_out};
223 if ($_->{mode} eq '<') {
224 xpipe $_->{open_as}, $_->{parent};
226 xpipe $_->{parent}, $_->{open_as};
232 # Used to communicate exec failures.
233 xpipe my $stat_r, my $stat_w;
236 croak "$Me: fork failed: $!" unless defined $kidpid;
237 if ($kidpid == 0) { # Kid
239 # A tie in the parent should not be allowed to cause problems.
245 my $flags = fcntl $stat_w, &Fcntl::F_GETFD, 0;
246 croak "$Me: fcntl failed: $!" unless $flags;
247 fcntl $stat_w, &Fcntl::F_SETFD, $flags|&Fcntl::FD_CLOEXEC
248 or croak "$Me: fcntl failed: $!";
250 # If she wants to dup the kid's stderr onto her stdout I need to
251 # save a copy of her stdout before I put something else there.
252 if (!$handles[2]{dup_of_out} && $handles[2]{dup}
253 && xfileno($handles[2]{parent}) == fileno \*STDOUT) {
255 xopen($tmp, '>&', $handles[2]{parent});
256 $handles[2]{parent} = $tmp;
260 if ($_->{dup_of_out}) {
261 xopen \*STDERR, ">&STDOUT"
262 if defined fileno STDERR && fileno STDERR != fileno STDOUT;
263 } elsif ($_->{dup}) {
264 xopen $_->{handle}, $_->{mode} . '&', $_->{parent}
265 if fileno $_->{handle} != xfileno($_->{parent});
268 xopen $_->{handle}, $_->{mode} . '&=',
269 fileno $_->{open_as};
272 return 1 if ($_[0] eq '-');
275 croak "$Me: exec of @_ failed";
284 utf8::encode $err if $] >= 5.008;
285 print $stat_w pack('IIa*', $bang, length($err), $err);
288 eval { require POSIX; POSIX::_exit(255); };
293 my $to_read = length(pack('I', 0)) * 2;
294 my $bytes_read = read($stat_r, my $buf = '', $to_read);
296 (my $bang, $to_read) = unpack('II', $buf);
297 read($stat_r, my $err = '', $to_read);
299 utf8::decode $err if $] >= 5.008;
301 $err = "$Me: " . ($! = $bang);
309 # All the bookkeeping of coincidence between handles is
310 # handled in spawn_with_handles.
315 if ($_->{dup_of_out}) {
316 $_->{open_as} = $handles[1]{open_as};
317 } elsif ($_->{dup}) {
318 $_->{open_as} = $_->{parent} =~ /\A[0-9]+\z/
319 ? $_->{parent} : \*{$_->{parent}};
320 push @close, $_->{open_as};
322 push @close, \*{$_->{parent}}, $_->{open_as};
327 spawn_with_handles(\@handles, \@close, @_);
333 next if $_->{dup} or $_->{dup_of_out};
334 xclose $_->{open_as};
337 # If the write handle is a dup give it away entirely, close my copy
339 xclose $handles[0]{parent} if $handles[0]{dup};
341 select((select($handles[0]{parent}), $| = 1)[0]); # unbuffer pipe
348 croak "open3(@_): not enough arguments";
350 return _open3 'open3', @_
353 sub spawn_with_handles {
354 my $fds = shift; # Fields: handle, mode, open_as
355 my $close_in_child = shift;
356 my ($fd, $pid, @saved_fh, $saved, %saved, @errs);
358 foreach $fd (@$fds) {
359 $fd->{tmp_copy} = IO::Handle->new_from_fd($fd->{handle}, $fd->{mode});
360 $saved{fileno $fd->{handle}} = $fd->{tmp_copy} if $fd->{tmp_copy};
362 foreach $fd (@$fds) {
363 bless $fd->{handle}, 'IO::Handle'
364 unless eval { $fd->{handle}->isa('IO::Handle') } ;
365 # If some of handles to redirect-to coincide with handles to
366 # redirect, we need to use saved variants:
367 $fd->{handle}->fdopen(defined fileno $fd->{open_as}
368 ? $saved{fileno $fd->{open_as}} || $fd->{open_as}
372 unless ($^O eq 'MSWin32') {
374 # Stderr may be redirected below, so we save the err text:
375 foreach $fd (@$close_in_child) {
376 next unless fileno $fd;
377 fcntl($fd, Fcntl::F_SETFD(), 1) or push @errs, "fcntl $fd: $!"
378 unless $saved{fileno $fd}; # Do not close what we redirect!
383 if (FORCE_DEBUG_SPAWN) {
384 pipe my $r, my $w or die "Pipe failed: $!";
386 die "Fork failed: $!" unless defined $pid;
388 { no warnings; exec @_ }
401 $pid = eval { system 1, @_ }; # 1 == P_NOWAIT
403 push @errs, "IO::Pipe: Can't spawn-NOWAIT: $!" if !$pid || $pid < 0;
406 # Do this in reverse, so that STDERR is restored first:
407 foreach $fd (reverse @$fds) {
408 $fd->{handle}->fdopen($fd->{tmp_copy}, $fd->{mode});
410 foreach (values %saved) {
411 $_->close or croak "Can't close: $!";
413 croak join "\n", @errs if @errs;
417 1; # so require is happy