web-dev-qa-db-ja.com

GDBを使用してpythonスタックトレース情報を取得するにはどうすればよいですか?

Kubuntu 12.04のpythonアプリケーションでセグメンテーションフォールトをデバッグするためにGDBを使用しています。おそらくGDBバージョン7には、pythonスタック(http://docs.python.org/devguide/gdb.html)に関する情報を抽出するための組み込みマクロがありますが、動作させるのに問題があります。 python-dbgをインストールしました。

GDBでpythonスタックトレースを要求すると、結果は次のようになります。

(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、Pythonは2.7.3-0ubuntu3です。

11
Luke

問題は次のとおりです。GDBのデバッグシンボルにアクセスするには、別のバイナリを呼び出す必要があります。「python」ではなく「python-dbg」(/ usr/share/doc/python2.7-dbg/README.debugにあります) )。

16
Luke

Ubuntu 16.04では、Python 3.5でPythonスタックトレースを取得できました。

  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

これで、gdbはPythonバイナリのシンボルを見つけることができ、py-btはgdbでPythonスタックトレースを表示するために機能します。

$ 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)
5
rutsky

たぶんこれは誰かを助けるかもしれません:バイナリはpython2.7-dbgパッケージに由来する私のDebianシステムではpython2.7-dbgという名前です。また、python2.7-devパッケージとapt-get source python2.7-dbgもインストールしたので、gdbはPythonインタープリターのソースファイルを見つけることができました。

これがすべて整ったので、実行していたSIGSEGVをデバッグできました。 https://bugs.python.org/issue3487

0
Per Lundberg