मैं GDB का उपयोग करके पायथन स्टैक ट्रेस जानकारी कैसे प्राप्त कर सकता हूं?


11

मैं GDB का उपयोग कर रहा हूं कुबंटु 12.04 पर मेरे अजगर आवेदन में एक विभाजन दोष को डीबग करना। माना जाता है कि GDB संस्करण 7 में अजगर स्टैक (http://docs.python.org/devguide/gdb.html) के बारे में जानकारी निकालने के लिए अंतर्निहित मैक्रोज़ हैं, लेकिन मुझे इसे काम करने में परेशानी हो रही है। मैंने अजगर-डीबीजी स्थापित किया है।

जब मैं GDB में एक अजगर स्टैक ट्रेस के लिए पूछता हूं, तो परिणाम इस तरह दिखता है:

(gdb) py-bt
#5 (unable to read python frame information)
#16 (unable to read python frame information)
#26 (unable to read python frame information)
...

मेरा GDB संस्करण 7.4-2012.04-0ubuntu2 है, पायथन 2.7.3-0ubuntu3 है।

जवाबों:


16

यहां समस्या यह है: GDB में डिबगिंग प्रतीकों तक पहुंच के लिए, आपको एक अलग बाइनरी आमंत्रित करना होगा: "अजगर" के बजाय "अजगर-डीबीजी" (इसे /usr/share/doc/pyzon2.7-dbg/README.debug में पाया गया) )।


1
यह बताते हुए कि यह कैसे fedoraproject.org/wiki/Features/EasierPythonDebugging या कहीं और मुझे मिल सकता है में उल्लेख नहीं किया गया है । धन्यवाद ल्यूक।
13

यह सच नहीं है। आपको बस उन डिबगिंग प्रतीकों को प्राप्त करना होगा जो आपके द्वारा उपयोग किए जा रहे अजगर से मेल खाते हैं। एक virtualenv से निपटने के रूप में वहाँ हो सकता है getchas कि अजगर अपने सिस्टम के अजगर से मेल नहीं हो सकता है। Podoliaka.org.org/04/10/debugging-cpython-gdb
aggieNick02

6

Ubuntu 16.04 पर मैं पायथन 3.5 में पायथन स्टैक ट्रेस पाने में कामयाब रहा:

  1. स्थापना python3-dbgऔर python3-dev:

    $ sudo apt install python3-dbg python3-dev

    python3-dbgपैकेज लघु प्रलेखन के साथ आता है कि इसका उपयोग कैसे करना है /usr/share/doc/python3-dbg/README.debugजिसमें मैं अगले चरण में उपयोग करूंगा।

  2. अनपैक किए गए GDB सहायक स्क्रिप्ट /usr/share/doc/python3.5/gdbinit.gzको इसमें शामिल करना ~/.gdbinit:

    zcat /usr/share/doc/python3.5/gdbinit.gz >> ~/.gdbinit

अब जीडीबी पायथन बाइनरी के लिए प्रतीकों को खोजने में सक्षम होगा और py-btजीडीबी में पायथन स्टैक ट्रेस प्रदर्शित करने के लिए काम करता है:

$ gdb -p 4762
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Attaching to process 4762
[New LWP 4852]
[New LWP 4853]
[New LWP 4854]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f38e43deb5d in poll () at ../sysdeps/unix/syscall-template.S:84
84      ../sysdeps/unix/syscall-template.S: No such file or directory.
(gdb) py-bt
Traceback (most recent call first):
  File "/usr/bin/indicator-cpufreq", line 80, in <module>
    Gtk.main()
(gdb)

मेरे gdbinit.gz उबंटू 16.04 पर कई कमांड्स हैं जैसे pystackकि नहीं है py-bt। किसी भी विचार क्या चल रहा है?
एंटोन

python 3.5भले ही मैं पहले ही स्थापित हो चुका हूं, फिर भी क्यों python 3.6?
स्काईट्री

0

शायद यह किसी को मदद करता है: पैकेज python2.7-dbgसे आने वाले बाइनरी का नाम मेरे डेबियन सिस्टम पर दिया गया है python2.7-dbg। मैंने python2.7-devपैकेज भी स्थापित किया और apt-get source python2.7-dbg, ताकि gdbपायथन दुभाषिया को स्रोत फाइलें मिल सकें।

इस सब जगह के साथ, मैं डिबग करने में कामयाब रहा, जिसमें SIGSEGVमैं भाग रहा था: https://bugs.python.org/issue34870

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.