Lab01 GDB
Lab01 GDB
1. Overview
gdb is a debugger for C (and C++). It allows you to do things like running a program up to a certain
point, then stop and print out the values of particular variables at that point, or step through the program
line-by-line, and print out the values of individual variable after executing each line. gdb uses a
command line interface.
2. Objectives
This lab aims to provide students with ability:
a) To compose/edit code in Linux terminal with nano text editor or remotely in VSCode
b) To compile source code with various gcc options for debugging in gdb;
c) To load, set breakpoints, run program step-by-step, examining CPU registers, memory areas.
3. Lab Environment
Students can either practice the labs with Ubuntu linux VM (VirtualBox) or WSL2 (preferable).
On either way, install nasm, gcc, gdb-peda by doing the following commands at linux prompt:
~# sudo apt update
~# sudo apt install git nasm gcc gcc-multilib
~# git clone https://github.com/longld/peda.git ~/peda
~# echo "source ~/peda/peda.py" >> ~/.gdbinit
For writing code, students are recommend to install VSCode with the following extensions:
Extensions Description
4. GDB tutorial
This is a brief description some of the most commonly used features of gdb.
4.1. Compiling
~# gcc -g -m32 -o test.out test.c // compile to 32-bit executable code, embedding symbols for debug
Sometime, to make the machine code easy to read, the flag -mpreferred-stack-boundary=2 is used
~# gdb test.out -q
gdb-peda$
4. Tasks
4.1. Compose a simple C program vscode
#include <stdio.h>
void func(int x, int y)
{
x = x + y;
printf("%d\n",x);
}
int main()
{
int a=5;
int b=7;
func(a,b);
printf("Hello\n");
return 0;
}
4.2. Compile source code
gdb test.out -q
gdb-peda$ list
Disassemble main function (watch main function in assembly)
Insert breakpoints
To examine registers, the program needed to be executed and stop at a particular point. You need to
insert breakpoints to do this.
gdb-peda$ i b
Num Type Disp Enb Address What
1 breakpoint keep y 0x000012b5 <main+15>
2 breakpoint keep y 0x00001276 <func+4>
Execute program, the code execution will stop at the first breakpoint which is the first instruction of the
main function:
gdb-peda$ r
a) Execute the program step by step then examine the values of variables a, b in main()
b) Try to set a, b to values other than 5,7 while executing program then check the final result.