RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 839788 - NULL pointer dereference in Perl
Summary: NULL pointer dereference in Perl
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: perl
Version: 6.3
Hardware: x86_64
OS: Linux
high
high
Target Milestone: rc
: ---
Assignee: Petr Pisar
QA Contact: Martin Kyral
URL: https://rt.perl.org/rt3//Public/Bug/D...
Whiteboard:
Depends On:
Blocks: 947775 960054
TreeView+ depends on / blocked
 
Reported: 2012-07-12 20:33 UTC by john.r.moser
Modified: 2018-12-03 17:41 UTC (History)
6 users (show)

Fixed In Version: perl-5.10.1-132.el6
Doc Type: Bug Fix
Doc Text:
Cause: Exiting scope of an object whose desctructor method has been declared but has not been defined. Consequence: The Perl interpreter crashes. Fix: Variable dealocator has been fixed not to dereference NULL pointer that designated undefined destructor method. Result: Interpreter copes with undefined destructors properly.
Clone Of:
Environment:
Last Closed: 2013-11-21 04:40:44 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
Patch for perl bug 71952 (1019 bytes, patch)
2012-07-17 19:51 UTC, john.r.moser
no flags Details | Diff
RPM spec file, modified from perl-5.10.1-127.el6 (84.07 KB, text/plain)
2012-09-07 22:27 UTC, Will Saxon
no flags Details
modified patch (1008 bytes, patch)
2012-09-07 22:28 UTC, Will Saxon
no flags Details | Diff


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2013:1534 0 normal SHIPPED_LIVE perl bug fix and enhancement update 2013-11-20 21:40:56 UTC

Description john.r.moser 2012-07-12 20:33:00 UTC
Description of problem:

When trying to run PandoraFMS agent, Perl segfaults.  I have traced this to a bug as per the following URL:

http://stackoverflow.com/questions/5038337/why-does-my-threaded-perl-script-segfault



Version-Release number of selected component (if applicable):

perl.x86_64                        4:5.10.1-127.el6                        @base

[root@pandora pandora_server]# perl -Mthreads -e 'print "$threads::VERSION\n"'
1.82



How reproducible:

Extremely.  Here's a test command:

[root@pandora pandora_server]# perl -e "sub M::DESTROY; bless {}, M;"
Segmentation fault



Steps to Reproduce:
1. The following command specifically triggers this bug:

  perl -e "sub M::DESTROY; bless {}, M;"

Additionally, you could attempt to run PandoraFMS agent on x86-64 running RedHat 6.3.  It sends one alert, then segfaults the second round.


  
Actual results:

Segmentation fault.

perl[19896]: segfault at 0 ip 00007f41a5694d6c sp 00007fffe20e3050 error 4 in libperl.so[7f41a55dc000+162000]

pandora_agent[19528] general protection ip:7f69181eafd0 sp:7f690e55ba40 error:0 in libperl.so[7f6918156000+162000]

Note that in any case the fault is in libperl.so, 162000 bytes from the base of the library's load address.  The fault is thus extremely reproducible and can easily be traced by running the given perl one-liner through perl while watching with a debugger.  A newer version of perl may have the bug fixed already; current is 5.16.



Expected results:

Should work.


Additional info:

This particular issue should have been fixed in threads 1.73, yet it still exists in version 1.82 of Perl threads on RHEL 6.3.  This leads me to believe there's another coding error responsible that's not triggered on x86, but is on x86-64.

Comment 2 john.r.moser 2012-07-16 13:02:57 UTC
According to tests, this also segfaults in Perl 5.11.0.  A fellow on Freenode ran the above test through his development environment and reports:

All stable releases between and including 5.6.2 and 5.10.0 x86_64 Perl run the code without crashing.

All stable releases from and including 5.12 and above run the code without crashing.

Perl releases 5.10.1 and 5.11.0 segfault on the above test case.

Comment 3 john.r.moser 2012-07-17 19:38:07 UTC
http://www.nntp.perl.org/group/perl.perl5.porters/2010/01/msg155286.html

Appears to be this exact bug!

Comment 4 john.r.moser 2012-07-17 19:51:51 UTC
Created attachment 598738 [details]
Patch for perl bug 71952

Patch as per perl #71952:

http://code.activestate.com/lists/perl5-porters/147074/

Comment 5 Marcela Mašláňová 2012-07-18 10:55:33 UTC
Thank you for the report and the patch.

Comment 7 Jon Hermansen 2012-08-02 23:06:19 UTC
I'm experiencing this same bug while using Thread::Pool::Simple on CentOS 6.3. Would be great to see it fixed!

Comment 8 Will Saxon 2012-09-07 22:25:28 UTC
I rebuilt perl based on the SRPM using this patch, and it seems to work. I had to modify the spec file and the patch so that it would apply cleanly. I'll attach both to this bug.

Comment 9 Will Saxon 2012-09-07 22:27:37 UTC
Created attachment 610850 [details]
RPM spec file, modified from perl-5.10.1-127.el6

Comment 10 Will Saxon 2012-09-07 22:28:46 UTC
Created attachment 610851 [details]
modified patch

this is modified from the original patch to apply cleanly against the perl-5.10.1-127.el6 SRPM as new patch 23.

Comment 18 errata-xmlrpc 2013-11-21 04:40:44 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

http://rhn.redhat.com/errata/RHBA-2013-1534.html


Note You need to log in before you can comment on or make changes to this bug.