I understand how an address space is partitioned into: code, data, stack and heap. However, I am having trouble mapping what goes to where for a given C code.
I know that: global variables are in the data section. static variables are in the data section. local variables are in the stack section. dynamic allocated space are in the heap section. My questions is, when including a library into a program, where does it place in an address space?
I hope this question makes sense..
Actually if you have linux based pc, you can check it by yourself in the following way:
compile
$ gcc -o main ./main.c -g
launch
$ gdb ./main
Show mapping info
(gdb) r
(gdb) info proc mappings
Mapped address spaces:
So we see, that ld-so has placed c library to the addresses
0x7ffff7bcd000 - 0x7ffff7dd5000
. The offset field - is an offset in the ELF file itself. We can check which sections corresponds to which offset using readelf:Foe example:
That means that
.text
section have offset0x1f8b0
. From the mapping above, we can conclude that virtual address of the beginning of the .text section in main app address space will be0x7ffff7bcd000 + 0x1f8b0