I was testing Git::Repository with my fcgi script. I am neither able to create a git object nor run any git command using that module. IPC::Open3::open3 is failing with the error:
Not a GLOB reference at /usr/local/lib/perl/5.10.1/FCGI.pm line 125
I added a cluck in FCGI::OPEN() and a warn in IPC::Open3::xopen() and here is what I got:
mod_fcgid: stderr: IPC::Open3::xopen() called with args: GLOB(0xe92360) <&=5
mod_fcgid: stderr: IPC::Open3::xopen() called with args: GLOB(0xe92438) >&=9
mod_fcgid: stderr: IPC::Open3::xopen() called with args: GLOB(0xe92498) >&=12
mod_fcgid: stderr: FCGI::OPEN() called with args: FCGI::Stream=SCALAR(0x14e43f0) >&=12
mod_fcgid: stderr: at /usr/local/lib/perl/5.10.1/FCGI.pm line 125
mod_fcgid: stderr: \tFCGI::Stream::OPEN('FCGI::Stream=SCALAR(0x14e43f0)', '>&=12') called at /usr/share/perl/5.10/IPC/Open3.pm line 67
mod_fcgid: stderr: \tIPC::Open3::xopen('GLOB(0xe92498)', '>&=12') called at /usr/share/perl/5.10/IPC/Open3.pm line 162
mod_fcgid: stderr:
mod_fcgid: stderr: \tIPC::Open3::_open3('open3', 'MyModule', 'GLOB(0x1a56078)', 'GLOB(0x1906738)', 'GLOB(0x12f5430)' , '/usr/bin/git', '--version') called at /usr/share/perl/5.10/IPC/Open3.pm line 233
mod_fcgid: stderr: \tIPC::Open3::open3('GLOB(0x1a56078)', 'GLOB(0x1906738)', 'GLOB(0x12f5430)', '/usr/bin/git', '--version') called at /usr/local/lib/site_perl/MyModule.pm line 113
FCGI::OPEN() is called only when STDERR is opened. STDIN and STDOUT doesn't reach FCGI::OPEN(). I looked at IPC::Open3 and this is where it is failing:
if ($dad_rdr ne $dad_err) {
if ($dup_err) {
# I have to use a fileno here because in this one case
# I'm doing a dup but the filehandle might be a reference
# (from the special case above).
xopen \*STDERR, ">&" . xfileno($dad_err)
if fileno(STDERR) != xfileno($dad_err);
} else {
xclose $dad_err;
xopen \*STDERR, ">&=" . fileno $kid_err; # this is failing
}
} else {
xopen \*STDERR, ">&STDOUT" if fileno(STDERR) != fileno(STDOUT);
}
I can replace open3 with IPC::Run::start and everything works fine. But I really like to understand what is going wrong with STDERR here. Is it a bug with FCGI.pm or Open3.pm or am I doing something wrong?
I am running apache 2.2.16 with libapache2-mod-fcgid 1:2.3.6, libfcgi-perl 0.71-1 and libcgi-fast-perl 5.10.1 on debian squeeze. Perl version is 5.10.1.
How to reproduce:
use CGI::Fast;
use Symbol ();
use IPC::Open3 qw(open3);
while (my $cgi = new CGI::Fast) {
my $pid;
my $in = Symbol::gensym;
my $out = Symbol::gensym;
my $err = Symbol::gensym;
$pid = open3( $in, $out, $err, '/usr/bin/git', '--version');
}
This should be fixed in the latest version (1.102) of System-Command: https://metacpan.org/release/BOOK/System-Command-1.102 .
The patch is https://github.com/book/System-Command/commit/d5009728cc66e5f9bb2057df4be70648571a29cd