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 capture.
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/
167 ? do { my $fh; open($fh, $_[1] . '&=' . $1) and close($fh); }
169 or croak "$Me: close($_[0]) failed: $!";
173 return $1 if $_[0] =~ /\A=?(\d+)\z/; # deal with fh just being an fd
177 use constant FORCE_DEBUG_SPAWN => 0;
178 use constant DO_SPAWN => $^O eq 'os2' || $^O eq 'MSWin32' || FORCE_DEBUG_SPAWN;
183 # simulate autovivification of filehandles because
184 # it's too ugly to use @_ throughout to make perl do it for us
188 $_[0] = gensym unless defined $_[0] && length $_[0];
189 $_[1] = gensym unless defined $_[1] && length $_[1];
192 # must strip crud for croak to add back, or looks ugly
193 $@ =~ s/(?<=value attempted) at .*//s;
197 my @handles = ({ mode => '<', handle => \*STDIN },
198 { mode => '>', handle => \*STDOUT },
199 { mode => '>', handle => \*STDERR },
203 $_->{parent} = shift;
204 $_->{open_as} = gensym;
207 if (@_ > 1 and $_[0] eq '-') {
208 croak "Arguments don't make sense when the command is '-'"
211 $handles[2]{parent} ||= $handles[1]{parent};
212 $handles[2]{dup_of_out} = $handles[1]{parent} eq $handles[2]{parent};
216 $_->{dup} = ($_->{parent} =~ s/^[<>]&//);
218 if ($_->{parent} !~ /\A=?(\d+)\z/) {
219 # force unqualified filehandles into caller's package
220 $package //= caller 1;
221 $_->{parent} = qualify $_->{parent}, $package;
224 next if $_->{dup} or $_->{dup_of_out};
225 if ($_->{mode} eq '<') {
226 xpipe $_->{open_as}, $_->{parent};
228 xpipe $_->{parent}, $_->{open_as};
234 # Used to communicate exec failures.
235 xpipe my $stat_r, my $stat_w;
238 croak "$Me: fork failed: $!" unless defined $kidpid;
239 if ($kidpid == 0) { # Kid
241 # A tie in the parent should not be allowed to cause problems.
247 my $flags = fcntl $stat_w, &Fcntl::F_GETFD, 0;
248 croak "$Me: fcntl failed: $!" unless $flags;
249 fcntl $stat_w, &Fcntl::F_SETFD, $flags|&Fcntl::FD_CLOEXEC
250 or croak "$Me: fcntl failed: $!";
252 # If she wants to dup the kid's stderr onto her stdout I need to
253 # save a copy of her stdout before I put something else there.
254 if (!$handles[2]{dup_of_out} && $handles[2]{dup}
255 && xfileno($handles[2]{parent}) == fileno \*STDOUT) {
257 xopen($tmp, '>&', $handles[2]{parent});
258 $handles[2]{parent} = $tmp;
262 if ($_->{dup_of_out}) {
263 xopen \*STDERR, ">&STDOUT"
264 if defined fileno STDERR && fileno STDERR != fileno STDOUT;
265 } elsif ($_->{dup}) {
266 xopen $_->{handle}, $_->{mode} . '&', $_->{parent}
267 if fileno $_->{handle} != xfileno($_->{parent});
269 xclose $_->{parent}, $_->{mode};
270 xopen $_->{handle}, $_->{mode} . '&=',
271 fileno $_->{open_as};
274 return 1 if ($_[0] eq '-');
277 croak "$Me: exec of @_ failed";
286 utf8::encode $err if $] >= 5.008;
287 print $stat_w pack('IIa*', $bang, length($err), $err);
290 eval { require POSIX; POSIX::_exit(255); };
295 my $to_read = length(pack('I', 0)) * 2;
296 my $bytes_read = read($stat_r, my $buf = '', $to_read);
298 (my $bang, $to_read) = unpack('II', $buf);
299 read($stat_r, my $err = '', $to_read);
301 utf8::decode $err if $] >= 5.008;
303 $err = "$Me: " . ($! = $bang);
311 # All the bookkeeping of coincidence between handles is
312 # handled in spawn_with_handles.
317 if ($_->{dup_of_out}) {
318 $_->{open_as} = $handles[1]{open_as};
319 } elsif ($_->{dup}) {
320 $_->{open_as} = $_->{parent} =~ /\A[0-9]+\z/
321 ? $_->{parent} : \*{$_->{parent}};
322 push @close, $_->{open_as};
324 push @close, \*{$_->{parent}}, $_->{open_as};
329 spawn_with_handles(\@handles, \@close, @_);
335 next if $_->{dup} or $_->{dup_of_out};
336 xclose $_->{open_as}, $_->{mode};
339 # If the write handle is a dup give it away entirely, close my copy
341 xclose $handles[0]{parent}, $handles[0]{mode} if $handles[0]{dup};
343 select((select($handles[0]{parent}), $| = 1)[0]); # unbuffer pipe
350 croak "open3(@_): not enough arguments";
352 return _open3 'open3', @_
355 sub spawn_with_handles {
356 my $fds = shift; # Fields: handle, mode, open_as
357 my $close_in_child = shift;
358 my ($fd, $pid, @saved_fh, $saved, %saved, @errs);
360 foreach $fd (@$fds) {
361 $fd->{tmp_copy} = IO::Handle->new_from_fd($fd->{handle}, $fd->{mode});
362 $saved{fileno $fd->{handle}} = $fd->{tmp_copy} if $fd->{tmp_copy};
364 foreach $fd (@$fds) {
365 bless $fd->{handle}, 'IO::Handle'
366 unless eval { $fd->{handle}->isa('IO::Handle') } ;
367 # If some of handles to redirect-to coincide with handles to
368 # redirect, we need to use saved variants:
369 $fd->{handle}->fdopen(defined fileno $fd->{open_as}
370 ? $saved{fileno $fd->{open_as}} || $fd->{open_as}
374 unless ($^O eq 'MSWin32') {
376 # Stderr may be redirected below, so we save the err text:
377 foreach $fd (@$close_in_child) {
378 next unless fileno $fd;
379 fcntl($fd, Fcntl::F_SETFD(), 1) or push @errs, "fcntl $fd: $!"
380 unless $saved{fileno $fd}; # Do not close what we redirect!
385 if (FORCE_DEBUG_SPAWN) {
386 pipe my $r, my $w or die "Pipe failed: $!";
388 die "Fork failed: $!" unless defined $pid;
390 { no warnings; exec @_ }
403 $pid = eval { system 1, @_ }; # 1 == P_NOWAIT
405 push @errs, "IO::Pipe: Can't spawn-NOWAIT: $!" if !$pid || $pid < 0;
408 # Do this in reverse, so that STDERR is restored first:
409 foreach $fd (reverse @$fds) {
410 $fd->{handle}->fdopen($fd->{tmp_copy}, $fd->{mode});
412 foreach (values %saved) {
413 $_->close or croak "Can't close: $!";
415 croak join "\n", @errs if @errs;
419 1; # so require is happy