-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IO::Socket::INET does not appear to be thread safe #11604
Comments
From wayne.kohler@gmail.comCreated by wayne.kohler@gmail.comThis is a bug report for perl from wayne.kohler@gmail.com, ----------------------------------------------------------------- I have an piece of code where I need to open a socket connection to an xinetd based service The gist of the code that creates the threads is basically as follows: foreach my $host (@{$self->{hosts}}) { The thread entry function is as follows: sub get_data { The problem I was seeing is that the code intermittently was not returning results sub get_data { When I examined the header of the debug file for the failing host, I saw the following: #### Socket handle = IO::Socket::INET=GLOB(0x6e29b20) I noticed that the Peer host IP address was incorrect, it was the address of a different #### Socket handle = IO::Socket::INET=GLOB(0x6b03190) So, even though I called IO::Socket::INET in two separate threads with different host I started digging into the INET.pm code, and found that it is using the following code sub _get_addr { Since $multi is not set, the else clause gets exectued. So, looking deeper, I found void if ((*host != '\0') && inet_aton(host, &ip_address)) { phe = gethostbyname(host); XSRETURN_UNDEF; This is using the standard gethostbyname function, which is apparantly NOT thread safe based (Excerpted from: http://compute.cnr.berkeley.edu/cgi-bin/man-cgi?gethostbyname+3) Reentrant Interfaces (Excerpted from: http://pubs.opengroup.org/onlinepubs/009695399/functions/gethostbyname.html) The gethostbyaddr() function need not be reentrant. A function that is not required to be reentrant is not required to be thread-safe. (Excerpted from: https://bugzilla.redhat.com/show_bug.cgi?id=485682) This turns out to be much worse than it sounds: NOTE: An interesting point to note is that I am running on virtual machines, hosted on The workaround I'm going to pursue is to use the IP address instead of the host Perl Info
|
From @jkeenanOn Fri Aug 26 13:40:24 2011, wkohler wrote:
Trying to boil down the original post ...
[snip one link that didn't work]
http://pubs.opengroup.org/onlinepubs/009695399/functions/gethostbyname.html)
Can some familiar with threading, reentrance and socket issues evaluate Thank you very much. |
The RT System itself - Status changed from 'new' to 'open' |
From @rgarciaOn 24 March 2012 02:44, James E Keenan via RT <perlbug-followup@perl.org> wrote:
I believe that Socket.xs should use the gethostbyname_r variant if |
From @LeontOn Sat, Mar 24, 2012 at 2:44 AM, James E Keenan via RT
Core is very confusing in this regard. Perl #defines almost all I *really* dislike the current system. It makes thread-safe code in I would really like this to be changed. In particular by Leon |
Migrated from rt.perl.org#97860 (status was 'open')
Searchable as RT97860$
The text was updated successfully, but these errors were encountered: