Skip to content
Advertisement

Cannot insert breakpoints. Addresses with low values

I’m trying to debug this simple C program:

JavaScript

But when I disassemble the main function I get this:

JavaScript

And this is already pretty strange because addresses starts with a prefix of 4… for 32 bit executables and 8… for 64 bit executables I think.

But going on I then put a breakpoint:

JavaScript

I run it and I get this error message:

JavaScript

Advertisement

Answer

Your code was most probably compiled as Position-Independent Executable (PIE) to allow Address Space Layout Randomization (ASLR). On some systems, gcc is configured to create PIEs by default (that implies the options -pie -fPIE being passed to gcc).

When you start GDB to debug a PIE, it starts reading addresses from 0, since your executable was not started yet, and therefore not relocated (in PIEs, all addresses including the .text section are relocatable and they start at 0, similar to a dynamic shared object). This is a sample output:

JavaScript

As you can see, this shows a similar output to yours, with .text adresses starting at low values.

Relocation takes place once you start your executable, so after that, your code will be placed at some random address in your process memory:

JavaScript

As you can see, the addresses now take “real” values that you can set breakpoints to. Note that usually you will still not see the effect of ASLR in GDB though, since it disables randomization by default (debugging a program with randomized location would be cumbersome). You can check this with show disable-randomization. If you really want to see the effects of ASLR in your PIE, set disable-randomization off. Then every run will relocate your code to random addresses.

So the bottom line is: When debugging PIE code, start your program in GDB first and then figure out the addresses.

Alternatively, you can explicitly disable the creation of PIE code and compile your application using gcc filename.c -o filename -no-pie -fno-PIE. My system does not enforce PIE creation by default, so unfortunately I don’t know about the implications of disabling PIE on such a system (would be glad to see comments on that).

For a more comprehensive explanation of position-independent code (PIC) in general (which is of utmost importance for shared libraries), have a look at Ulrich Drepper’s paper “How to Write Shared Libraries”.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement