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 639392 - Generating python backtrace with "py-bt" fails with a traceback
Summary: Generating python backtrace with "py-bt" fails with a traceback
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: python
Version: 6.0
Hardware: All
OS: Linux
low
medium
Target Milestone: rc
: ---
Assignee: Dave Malcolm
QA Contact: Petr Šplíchal
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2010-10-01 16:02 UTC by Petr Šplíchal
Modified: 2016-06-01 01:47 UTC (History)
1 user (show)

Fixed In Version: python-2.6.6-9.el6
Doc Type: Bug Fix
Doc Text:
On AMD64 and Intel 64 architectures, running gdb (configured using "--with-python") on python applications to generate backtraces caused a traceback error. python-gdb.py, the python module that deals with the case of debugging a python process, was updated to prevent this.
Clone Of:
Environment:
Last Closed: 2011-05-19 11:37:05 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2011:0554 0 normal SHIPPED_LIVE Moderate: python security, bug fix, and enhancement update 2011-05-19 11:35:29 UTC

Description Petr Šplíchal 2010-10-01 16:02:50 UTC
Description of problem:

Using python gdb command "py-bt" to generate backtrace results in
a python traceback. This is x86_64-only, works fine on all other
architectures.

# rpm -q python gdb

    python-2.6.5-3.el6.x86_64
    gdb-7.1-29.el6.x86_64

# cat foo.py
    class Foo:
        def bar(self):
            from ctypes import string_at
            string_at(0xDEADBEEF) # this code will cause Python to segfault

    f = Foo()

    # Let's assign some data of various kinds to the instance:
    f.someattr = 42
    f.someotherattr = {'one':1, 'two':2L, 'three':[(), (None,), (None, None)]}

    # Now let's trigger the segfault
    f.bar()

# gdb -q --args python foo.py

Reading symbols from /usr/bin/python...Reading symbols from
/usr/lib/debug/usr/bin/python2.6.debug...done.
done.
(gdb) r
Starting program: /usr/bin/python foo.py
[Thread debugging using libthread_db enabled]

Program received signal SIGSEGV, Segmentation fault.
__strlen_sse2 () at ../sysdeps/x86_64/strlen.S:31
31  pcmpeqb (%rdi), %xmm2

(gdb) py-bt
#10 (unable to read python frame information)
#14 (unable to read python frame information)
Traceback (most recent call last):
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 1326,
in invoke
    frame.print_summary()
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 1181,
in print_summary
    pyop = self.get_pyop()
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 1154,
in get_pyop
    return PyFrameObjectPtr.from_pyobject_ptr(f)
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 349,
in from_pyobject_ptr
    return cls(gdbval)
TypeError: __init__() takes exactly 3 arguments (2 given)
Error occurred in Python command.

Comment 1 Dave Malcolm 2010-10-01 17:40:48 UTC
The code in question is the error-handling pass here (still present in upstream code):
        try:
            p = PyObjectPtr(gdbval)
            cls = cls.subclass_from_type(p.type())
            return cls(gdbval, cast_to=cls.get_gdb_type())
        except RuntimeError:
            # Handle any kind of error e.g. NULL ptrs by simply using the base
            # class
            pass
        return cls(gdbval)

I've seen this backtrace from time to time; haven't yet been able to reproduce it at will.  It should be possible to fix this by replacing the above with something like:
        p = PyObjectPtr(gdbval)
        try:
            cls = cls.subclass_from_type(p.type())
            return cls(gdbval, cast_to=cls.get_gdb_type())
        except RuntimeError:
            # Handle any kind of error e.g. NULL ptrs by simply using the base
            # class
            pass
        return p

though I'm not yet sure if that's the correct fix.

Comment 2 Dave Malcolm 2011-01-19 22:19:57 UTC
Correction:
  the reproducer in comment #0 does reliably reproduce this for me (on x86_64)

Trying the approach in comment #1 doesn't work; I get:
Traceback (most recent call last):
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 1325, in invoke
    frame.print_summary()
  File "/usr/lib/debug/usr/lib64/libpython2.6.so.1.0.debug-gdb.py", line 1183, in print_summary
    sys.stdout.write(pyop.current_line())
AttributeError: 'PyObjectPtr' object has no attribute 'current_line'
Error occurred in Python command: 'PyObjectPtr' object has no attribute 'current_line'

Comment 6 Laura Bailey 2011-05-10 01:00:56 UTC
    Technical note added. If any revisions are required, please edit the "Technical Notes" field
    accordingly. All revisions will be proofread by the Engineering Content Services team.
    
    New Contents:
On AMD64 and Intel 64 architectures, running gdb (configured using "--with-python") on python applications to generate backtraces caused a traceback error. python-gdb.py, the python module that deals with the case of debugging a python process, was updated to prevent this.

Comment 7 errata-xmlrpc 2011-05-19 11:37:05 UTC
An advisory has been issued which should help the problem
described in this bug report. This report is therefore being
closed with a resolution of ERRATA. For more information
on therefore solution and/or where to find the updated files,
please follow the link below. You may reopen this bug report
if the solution does not work for you.

http://rhn.redhat.com/errata/RHSA-2011-0554.html

Comment 8 errata-xmlrpc 2011-05-19 13:07:43 UTC
An advisory has been issued which should help the problem
described in this bug report. This report is therefore being
closed with a resolution of ERRATA. For more information
on therefore solution and/or where to find the updated files,
please follow the link below. You may reopen this bug report
if the solution does not work for you.

http://rhn.redhat.com/errata/RHSA-2011-0554.html


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