Project

General

Profile

Actions

Bug #14505

closed

IO.popen / Open3.popen2 / backtick subprocess remains blocked

Added by lionel_perrin (Lionel PERRIN) about 6 years ago. Updated over 4 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
[ruby-core:85729]

Description

The following ruby code never returns

`ruby -r oci8 -e puts 'hello'`
IO.popen(%w(ruby -r oci8 -e)+["puts 'hello'"]) { |o| puts o.read } # this never returns too
Open3.capture2(*%w(ruby -r oci8 -e)+["puts 'hello'"]) # and this is blocked too

while its python equivalent runs successfully

import subprocess
subprocess.call(['ruby', '-r', 'oci8', '-e', 'puts "hello"'])

The issue seems to require some 'unusual' context to be triggered. The ruby-oci8 (https://github.com/kubo/ruby-oci8) gem used by the subprocess loads an oracle dll which seems to open some file descriptors. Anyway, I wouldn't expect the caller to be affected by the libraries loaded by the subprocesses.

I've reproduced the problem with ruby 2.5.0p0 (2017-12-25 revision 61468) [x86_64-linux] (gemset 2.7.6)

Thanks for your help,

Lionel

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0