SlideShare une entreprise Scribd logo
1  sur  16
Advanced Debugging with gdbDavid KhosidSept 21, 2009david.kh@gmail.com
Agenda Techniques for debugging big, modern software: STL containers and algorithms, Boost Ex: how to see containers Signals Multi-threaded (ex.: how to follow a thread?) Repetitive tasks on the almost unchanging code base Remote debugging Examples 2
GDB was first written by Richard Stallman  in 1986 as part of his GNU system Richard Stallman, “Debugging with gdb” www.gnu.org/software/gdb/documentation Help: 	$gdb –h 		(gdb) h 		(gdb) aproposCommand names may be truncated if the abbreviation is unambiguous. TAB completion.  Command Cheat Sheetwww.yolinux.com/TUTORIALS/GDB-Commands.html Last GDB version is 6.8, new 7.0 soon: 2009-09-23 3 Sources of information
Item #1: C++ and STL - Containers How to see container’s content? Commands file, ex. .gdbinithttp://www.yolinux.com/TUTORIALS/src/dbinit_stl_views-1.03.txtLimitations: a little libstdc++ compiled in debug modeLimitations: - different product , not for QA, not for client, not in performance tuning stage- performance  4
Item #1: C++ and STL - Containers How to see container’s content? Auxiliary functionstypedef map<string, float> MapStringFloat;void mapPrint(const MapStringFloat& m){       for(MapStringFloat::const_iterator pos = m.begin(); pos != m.end(); ++pos){                     cout << pos->first << " : " << pos->second << ""; }Limitations: - you can’t do that without a process to debug (investigating core files)- optimization of unused functions. Solution: ‘volatile’ Pretty-printing of STL containers in future versions of GDB 5
Item #2: Extending GDB – User-defined commands (gdb) show user commandname Example: (gdb)define adder	print $arg0 + $arg1 + $arg2 end(gdb) adder 1 2 3  6
Item #3: Automating repetitive tasks  What GDB Does During Startup1. Executes all commands from system init file 2. Executes all the commands from ~/.gdbinit3. Process command line options and operands 4. Executes all the commands from ./.gdbinit5. reads command files specified by the `-x' option 6. … 7
Automating tasks - history, recording continueWhat GDB Does During Startup… 6. Reads the command history recorded in the history file.  (gdb) set history filename fname(gdb) set history save on/off (gdb) show history (gdb) show commands 8
Item #4: Signals ‘i handle’ or ‘i signals’Print a table of all the signals and how gdb has been told to handle each one. handle signal [keywords...]keywords: nostop|stop,  print|noprint and pass|nopassEx: handle SIG35 nostop print pass 	handle SIG36 stop (implies the ‘print’ as well)	handle SIG37 nostop print nopass	handle SIG38 nostopnoprintnopass 9
Item #5: Multi-threads Use case: debugging specific thread, while controlling behavior of others. facilities for debugging multi-thread programs:• automatic notification of new threads• ‘thread threadno’, to switch among threads• ‘info threads’, to inquire about existing threads• thread-specific breakpoints• set mode for locking scheduler during execution 	(gdb) set scheduler-locking step/on/offothers: Interrupted System Calls Example:(gdb) i threads(gbd) b foo.cpp:13 thread 28 if x > lim 10
Item #5: Remote debugging Use case: - GDB runs on one machine (host) and the program  being debugged (exe.verXYZ.stripped ) runs on another (target). - GDB communicates via Serial or TCP/IP.- Host and target: exactly match between the executables and libraries, with one exception: stripped on the target.- Complication: compiling on one machine (CC view), keeping code in different place (ex. /your/path/verXYZ) Solution: - Connect gdb to source in the given place:(gdb) set substitute-path /usr/src /mnt/cross (gdb) dir /your/path/verXYZ 11
Remote debugging - example Using gdbserver through TCP connection: remote (10.10.0.225)>  gdbserver :9999 program_strippedor remote> ./gdbserver :9999 –attach <pid> host> gdb programhost>(gdb) handle SIGTRAP nostopnoprint pass			 to avoid pausing when launching the threadshost> (gdb) target remote 10.10.0.225:9999 TARGET (Android Dev phone)	 HOST (Fedora Linux) 12
Item #6: Back to the past  Convenience variables are used to store values that you may want to refer later. Any string preceded by $ is regarded as a convenience variable. Ex.:set $table = *table_ptr 	(gdb) show conv Checkpoint - a snapshot of a program’s state(gdb) checkpoint(gdb) i checkpoint(gdb) restartcheckpoint-id Value history- values printed by the print command. 13
Small Items: #7, #8  #7. 	How to see macros? 	$ g++ -gdwarf-2 -g3 a.cpp -o prog #8. 	64 bit .vs. 32bit  -m32 flag On 64-bit machine, install another 32-bit version of GDB 	$ ls -l `which gdb32` 	/usr/bin/gdb32 ->  ‘/your/install/path’ 14
Lightweight how-to's How to remove a symbol table from a file?A: 	strip How to supply arguments to your program in GDB?A1: With --args option 	#sudo gdb -silent --args /bin/ping google.comA2: As arguments to run: (gdb) runarg1 arg2run without arguments uses the same arguments used by the previous run. A3: With set args  command: 		(gdb) set args arg1 arg2(gdb) show args set args without arguments – removes all arguments.  How to know where you are (file, next execution line)?A:  	(gdb) f 15
Lightweight how-to's - continue How to find out the crash file executable? A1: #file core.1234A2: #gdb core.1234A3: use /proc/sys/kernel/core_pattern#echo "core_%e.%p" > /proc/sys/kernel/core_pattern 	if the program foo dumps its core, 	the core_foo.1234 will be created. How to find out why your program stopped?A: (gdb) iprog Which command(s) can be used to exit from loops?A:(gdb)until lineNo ‘print’, ‘info’, ‘show’- what is a difference?‘print’ – print value of expression‘info’ – showing things about the program being debugged‘show’ – showing things about the debugger 16

Contenu connexe

Tendances

2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細 (様々なメモリの利用)
2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細(様々なメモリの利用)2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細(様々なメモリの利用)
2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細 (様々なメモリの利用)
智啓 出川
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
Houcheng Lin
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
Dhaval Kaneria
 
BlueZで遊んでみる - BLE大阪勉強会
BlueZで遊んでみる - BLE大阪勉強会BlueZで遊んでみる - BLE大阪勉強会
BlueZで遊んでみる - BLE大阪勉強会
Shinji Kobayashi
 
U boot porting guide for SoC
U boot porting guide for SoCU boot porting guide for SoC
U boot porting guide for SoC
Macpaul Lin
 

Tendances (20)

2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細 (様々なメモリの利用)
2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細(様々なメモリの利用)2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細(様々なメモリの利用)
2015年度先端GPGPUシミュレーション工学特論 第5回 GPUのメモリ階層の詳細 (様々なメモリの利用)
 
Android Things : Building Embedded Devices
Android Things : Building Embedded DevicesAndroid Things : Building Embedded Devices
Android Things : Building Embedded Devices
 
OpenWrt From Top to Bottom
OpenWrt From Top to BottomOpenWrt From Top to Bottom
OpenWrt From Top to Bottom
 
How A Compiler Works: GNU Toolchain
How A Compiler Works: GNU ToolchainHow A Compiler Works: GNU Toolchain
How A Compiler Works: GNU Toolchain
 
TMUX Rocks!
TMUX Rocks!TMUX Rocks!
TMUX Rocks!
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
 
U-Boot Porting on New Hardware
U-Boot Porting on New HardwareU-Boot Porting on New Hardware
U-Boot Porting on New Hardware
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
 
Debugging Modern C++ Application with Gdb
Debugging Modern C++ Application with GdbDebugging Modern C++ Application with Gdb
Debugging Modern C++ Application with Gdb
 
초보자를 위한 Git & GitHub
초보자를 위한 Git & GitHub초보자를 위한 Git & GitHub
초보자를 위한 Git & GitHub
 
LLVM
LLVMLLVM
LLVM
 
Gstreamer: an Overview
Gstreamer: an OverviewGstreamer: an Overview
Gstreamer: an Overview
 
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
 
Conan.io - The C/C++ package manager for Developers
Conan.io - The C/C++ package manager for DevelopersConan.io - The C/C++ package manager for Developers
Conan.io - The C/C++ package manager for Developers
 
Launch the First Process in Linux System
Launch the First Process in Linux SystemLaunch the First Process in Linux System
Launch the First Process in Linux System
 
BlueZで遊んでみる - BLE大阪勉強会
BlueZで遊んでみる - BLE大阪勉強会BlueZで遊んでみる - BLE大阪勉強会
BlueZで遊んでみる - BLE大阪勉強会
 
Git and GitHub
Git and GitHubGit and GitHub
Git and GitHub
 
U boot porting guide for SoC
U boot porting guide for SoCU boot porting guide for SoC
U boot porting guide for SoC
 
用十分鐘 向jserv學習作業系統設計
用十分鐘  向jserv學習作業系統設計用十分鐘  向jserv學習作業系統設計
用十分鐘 向jserv學習作業系統設計
 

En vedette

Debugger Principle Overview & GDB Tricks
Debugger Principle Overview & GDB TricksDebugger Principle Overview & GDB Tricks
Debugger Principle Overview & GDB Tricks
dutor
 

En vedette (20)

Crash Dump Analysis 101
Crash Dump Analysis 101Crash Dump Analysis 101
Crash Dump Analysis 101
 
Gdb remote debugger
Gdb remote debuggerGdb remote debugger
Gdb remote debugger
 
From printk to QEMU: Xen/Linux Kernel debugging
From printk to QEMU: Xen/Linux Kernel debuggingFrom printk to QEMU: Xen/Linux Kernel debugging
From printk to QEMU: Xen/Linux Kernel debugging
 
Advanced Tracing features using GDB and LTTng
Advanced Tracing features using GDB and LTTngAdvanced Tracing features using GDB and LTTng
Advanced Tracing features using GDB and LTTng
 
Debugger Principle Overview & GDB Tricks
Debugger Principle Overview & GDB TricksDebugger Principle Overview & GDB Tricks
Debugger Principle Overview & GDB Tricks
 
Aag c45 697761
Aag c45 697761Aag c45 697761
Aag c45 697761
 
Reverse, Multi-Process and Non-Stop Debugging come to the CDT
Reverse, Multi-Process and Non-Stop Debugging come to the CDTReverse, Multi-Process and Non-Stop Debugging come to the CDT
Reverse, Multi-Process and Non-Stop Debugging come to the CDT
 
Real time debugging: using non-intrusive tracepoints to debug live systems
Real time debugging: using non-intrusive tracepoints to debug live systemsReal time debugging: using non-intrusive tracepoints to debug live systems
Real time debugging: using non-intrusive tracepoints to debug live systems
 
Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!
 
Udev
UdevUdev
Udev
 
LAS16-403: GDB Linux Kernel Awareness
LAS16-403: GDB Linux Kernel AwarenessLAS16-403: GDB Linux Kernel Awareness
LAS16-403: GDB Linux Kernel Awareness
 
Linux booting process!!
Linux booting process!!Linux booting process!!
Linux booting process!!
 
Vim Rocks!
Vim Rocks!Vim Rocks!
Vim Rocks!
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting Process
 
DPDK Summit - 08 Sept 2014 - Futurewei - Jun Xu - Revisit the IP Stack in Lin...
DPDK Summit - 08 Sept 2014 - Futurewei - Jun Xu - Revisit the IP Stack in Lin...DPDK Summit - 08 Sept 2014 - Futurewei - Jun Xu - Revisit the IP Stack in Lin...
DPDK Summit - 08 Sept 2014 - Futurewei - Jun Xu - Revisit the IP Stack in Lin...
 
Linux installation and booting process
Linux installation and booting processLinux installation and booting process
Linux installation and booting process
 
kubernetes, pourquoi et comment
kubernetes, pourquoi et commentkubernetes, pourquoi et comment
kubernetes, pourquoi et comment
 
Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015
 
introduction to linux kernel tcp/ip ptocotol stack
introduction to linux kernel tcp/ip ptocotol stack introduction to linux kernel tcp/ip ptocotol stack
introduction to linux kernel tcp/ip ptocotol stack
 
Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)
 

Similaire à Advanced Debugging with GDB

ELC-E Linux Awareness
ELC-E Linux AwarenessELC-E Linux Awareness
ELC-E Linux Awareness
Peter Griffin
 
gdb-tutorial.pdf
gdb-tutorial.pdfgdb-tutorial.pdf
gdb-tutorial.pdf
ligi14
 
LAS16-403 - GDB Linux Kernel Awareness
LAS16-403 - GDB Linux Kernel Awareness LAS16-403 - GDB Linux Kernel Awareness
LAS16-403 - GDB Linux Kernel Awareness
Peter Griffin
 
Gdb tutorial-handout
Gdb tutorial-handoutGdb tutorial-handout
Gdb tutorial-handout
Suraj Kumar
 

Similaire à Advanced Debugging with GDB (20)

ELC-E Linux Awareness
ELC-E Linux AwarenessELC-E Linux Awareness
ELC-E Linux Awareness
 
gdb-tutorial.pdf
gdb-tutorial.pdfgdb-tutorial.pdf
gdb-tutorial.pdf
 
lab1-ppt.pdf
lab1-ppt.pdflab1-ppt.pdf
lab1-ppt.pdf
 
GNU Debugger
GNU DebuggerGNU Debugger
GNU Debugger
 
LAS16-403 - GDB Linux Kernel Awareness
LAS16-403 - GDB Linux Kernel Awareness LAS16-403 - GDB Linux Kernel Awareness
LAS16-403 - GDB Linux Kernel Awareness
 
Debuging like a pro
Debuging like a proDebuging like a pro
Debuging like a pro
 
Usage of GDB
Usage of GDBUsage of GDB
Usage of GDB
 
Gdb tutorial-handout
Gdb tutorial-handoutGdb tutorial-handout
Gdb tutorial-handout
 
Anatomy of ROCgdb presentation at gcc cauldron 2022
Anatomy of ROCgdb presentation at gcc cauldron 2022Anatomy of ROCgdb presentation at gcc cauldron 2022
Anatomy of ROCgdb presentation at gcc cauldron 2022
 
Debugging of (C)Python applications
Debugging of (C)Python applicationsDebugging of (C)Python applications
Debugging of (C)Python applications
 
Debugging Python with gdb
Debugging Python with gdbDebugging Python with gdb
Debugging Python with gdb
 
Analyze corefile and backtraces with GDB for Mysql/MariaDB on Linux - Nilanda...
Analyze corefile and backtraces with GDB for Mysql/MariaDB on Linux - Nilanda...Analyze corefile and backtraces with GDB for Mysql/MariaDB on Linux - Nilanda...
Analyze corefile and backtraces with GDB for Mysql/MariaDB on Linux - Nilanda...
 
Debugging Hung Python Processes With GDB
Debugging Hung Python Processes With GDBDebugging Hung Python Processes With GDB
Debugging Hung Python Processes With GDB
 
Linux kernel debugging
Linux kernel debuggingLinux kernel debugging
Linux kernel debugging
 
Wavedigitech gdb
Wavedigitech gdbWavedigitech gdb
Wavedigitech gdb
 
Roll your own toy unix clone os
Roll your own toy unix clone osRoll your own toy unix clone os
Roll your own toy unix clone os
 
Linux Kernel Debugging
Linux Kernel DebuggingLinux Kernel Debugging
Linux Kernel Debugging
 
Debug generic process
Debug generic processDebug generic process
Debug generic process
 
Docker 활용법: dumpdocker
Docker 활용법: dumpdockerDocker 활용법: dumpdocker
Docker 활용법: dumpdocker
 
Android Logging System
Android Logging SystemAndroid Logging System
Android Logging System
 

Dernier

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Dernier (20)

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

Advanced Debugging with GDB

  • 1. Advanced Debugging with gdbDavid KhosidSept 21, 2009david.kh@gmail.com
  • 2. Agenda Techniques for debugging big, modern software: STL containers and algorithms, Boost Ex: how to see containers Signals Multi-threaded (ex.: how to follow a thread?) Repetitive tasks on the almost unchanging code base Remote debugging Examples 2
  • 3. GDB was first written by Richard Stallman in 1986 as part of his GNU system Richard Stallman, “Debugging with gdb” www.gnu.org/software/gdb/documentation Help: $gdb –h (gdb) h (gdb) aproposCommand names may be truncated if the abbreviation is unambiguous. TAB completion. Command Cheat Sheetwww.yolinux.com/TUTORIALS/GDB-Commands.html Last GDB version is 6.8, new 7.0 soon: 2009-09-23 3 Sources of information
  • 4. Item #1: C++ and STL - Containers How to see container’s content? Commands file, ex. .gdbinithttp://www.yolinux.com/TUTORIALS/src/dbinit_stl_views-1.03.txtLimitations: a little libstdc++ compiled in debug modeLimitations: - different product , not for QA, not for client, not in performance tuning stage- performance 4
  • 5. Item #1: C++ and STL - Containers How to see container’s content? Auxiliary functionstypedef map<string, float> MapStringFloat;void mapPrint(const MapStringFloat& m){ for(MapStringFloat::const_iterator pos = m.begin(); pos != m.end(); ++pos){ cout << pos->first << " : " << pos->second << ""; }Limitations: - you can’t do that without a process to debug (investigating core files)- optimization of unused functions. Solution: ‘volatile’ Pretty-printing of STL containers in future versions of GDB 5
  • 6. Item #2: Extending GDB – User-defined commands (gdb) show user commandname Example: (gdb)define adder print $arg0 + $arg1 + $arg2 end(gdb) adder 1 2 3 6
  • 7. Item #3: Automating repetitive tasks What GDB Does During Startup1. Executes all commands from system init file 2. Executes all the commands from ~/.gdbinit3. Process command line options and operands 4. Executes all the commands from ./.gdbinit5. reads command files specified by the `-x' option 6. … 7
  • 8. Automating tasks - history, recording continueWhat GDB Does During Startup… 6. Reads the command history recorded in the history file. (gdb) set history filename fname(gdb) set history save on/off (gdb) show history (gdb) show commands 8
  • 9. Item #4: Signals ‘i handle’ or ‘i signals’Print a table of all the signals and how gdb has been told to handle each one. handle signal [keywords...]keywords: nostop|stop, print|noprint and pass|nopassEx: handle SIG35 nostop print pass handle SIG36 stop (implies the ‘print’ as well) handle SIG37 nostop print nopass handle SIG38 nostopnoprintnopass 9
  • 10. Item #5: Multi-threads Use case: debugging specific thread, while controlling behavior of others. facilities for debugging multi-thread programs:• automatic notification of new threads• ‘thread threadno’, to switch among threads• ‘info threads’, to inquire about existing threads• thread-specific breakpoints• set mode for locking scheduler during execution (gdb) set scheduler-locking step/on/offothers: Interrupted System Calls Example:(gdb) i threads(gbd) b foo.cpp:13 thread 28 if x > lim 10
  • 11. Item #5: Remote debugging Use case: - GDB runs on one machine (host) and the program being debugged (exe.verXYZ.stripped ) runs on another (target). - GDB communicates via Serial or TCP/IP.- Host and target: exactly match between the executables and libraries, with one exception: stripped on the target.- Complication: compiling on one machine (CC view), keeping code in different place (ex. /your/path/verXYZ) Solution: - Connect gdb to source in the given place:(gdb) set substitute-path /usr/src /mnt/cross (gdb) dir /your/path/verXYZ 11
  • 12. Remote debugging - example Using gdbserver through TCP connection: remote (10.10.0.225)> gdbserver :9999 program_strippedor remote> ./gdbserver :9999 –attach <pid> host> gdb programhost>(gdb) handle SIGTRAP nostopnoprint pass to avoid pausing when launching the threadshost> (gdb) target remote 10.10.0.225:9999 TARGET (Android Dev phone) HOST (Fedora Linux) 12
  • 13. Item #6: Back to the past Convenience variables are used to store values that you may want to refer later. Any string preceded by $ is regarded as a convenience variable. Ex.:set $table = *table_ptr (gdb) show conv Checkpoint - a snapshot of a program’s state(gdb) checkpoint(gdb) i checkpoint(gdb) restartcheckpoint-id Value history- values printed by the print command. 13
  • 14. Small Items: #7, #8 #7. How to see macros? $ g++ -gdwarf-2 -g3 a.cpp -o prog #8. 64 bit .vs. 32bit -m32 flag On 64-bit machine, install another 32-bit version of GDB $ ls -l `which gdb32` /usr/bin/gdb32 -> ‘/your/install/path’ 14
  • 15. Lightweight how-to's How to remove a symbol table from a file?A: strip How to supply arguments to your program in GDB?A1: With --args option #sudo gdb -silent --args /bin/ping google.comA2: As arguments to run: (gdb) runarg1 arg2run without arguments uses the same arguments used by the previous run. A3: With set args command: (gdb) set args arg1 arg2(gdb) show args set args without arguments – removes all arguments. How to know where you are (file, next execution line)?A: (gdb) f 15
  • 16. Lightweight how-to's - continue How to find out the crash file executable? A1: #file core.1234A2: #gdb core.1234A3: use /proc/sys/kernel/core_pattern#echo "core_%e.%p" > /proc/sys/kernel/core_pattern if the program foo dumps its core, the core_foo.1234 will be created. How to find out why your program stopped?A: (gdb) iprog Which command(s) can be used to exit from loops?A:(gdb)until lineNo ‘print’, ‘info’, ‘show’- what is a difference?‘print’ – print value of expression‘info’ – showing things about the program being debugged‘show’ – showing things about the debugger 16
  • 17. Problem Determination Tools for Linux -Wall  Code review Program’s traces, syslog, profilers Static Source Code Analysis: scan.coverity.com – free for FOSS Flexelint Dynamic analysis: Valgrind, strace, /proc filesystem, lsof, ldd, nm, objdump, wireshark 17
  • 18. Summary Start from thinking of Use Case, then look in the manual, use ‘apropos’ and ‘help’ Productivity:Stepping through a program is less productive than thinking harder and adding output statements and self-checking code at critical places. When to use GDB? - core file, - when a problem can be reproduced, repeating errors - self-educating When not?Other tools, traces Questions? 18