Tagged Questions
0
votes
1answer
29 views
Symbol addresses in ELF
I am trying to read ELF symbol table.
I am facing following discrepancy in shared libraries and can't understand the reason behind it.
For libc, using readelf i got following output.
Num: Value ...
0
votes
1answer
76 views
Miss symbols when link static library to shared library
I have a problem that missing symbols when link static libraries and .o files to a shared libray. I have checked the symbol table of static libray, the functions i needed list in the table normally, ...
6
votes
1answer
243 views
Symbol visibility, exceptions, runtime error
I try to understand symbol visibility better. The GCC Wiki (http://gcc.gnu.org/wiki/Visibility) has a section about "Problems with C++ exceptions". According to GCC Wiki it is possible the have ...
3
votes
0answers
41 views
ELF reserved section
I'm currently working on object files in the ELF format generated from some C source files (I don't have, only the object files are available). As I wrote a small tool which extracts all the undefined ...
0
votes
1answer
154 views
Get location of symbols in a.out file
This question does a great job explaining how to get the symbols (variables, functions, etc) of an elf file.
Now that I have the symbols I will like to know on what location (module) they are.
For ...
1
vote
1answer
101 views
the size of vfprintf in libc symbol table is so big, why?
$ readelf -s /lib/i386-linux-gnu/libc-2.13.so
below is a line from the cmd ouput
Num: Value Size Type Bind Vis Ndx Name
2261: 00040130 20136 FUNC GLOBAL DEFAULT 12 ...
0
votes
1answer
194 views
symtab entries in a .o file of elf format
i am learning about linking..
i wrote the following code in c and made .o using gcc
int f()
{
static int x=0;
return x;
}
extern int z;
int g()
{
static int x=10;
return x;
}
static int y;
static ...
0
votes
2answers
628 views
Names of source shared libraries for imported symbols in ELF format
i'm working on program that will analyze object files in ELF and PE formats (kind of school/research project). Right now i'm about to process dynamic import symbols in executable files. I would like ...
3
votes
1answer
429 views
adding own symbols for file in gdb
Ok.. so I'm working doing debugging on x86 with gdb.
The particular files in question are stripped so I have no symbols from the binary itself. I have no access to the source code, but a rough idea of ...
1
vote
2answers
743 views
how can shared library get its own base address
I have the offset address's of all symbols (obtained with libelf executing on its own binary .so). Now, at runtime, I would need to calculate the absolutue address's of all those symbols and for that ...
5
votes
5answers
3k views
what are the meanings of the columns displayed by readelf?
Could someone explain the columns shown of the symbol table using readelf?
0
votes
4answers
7k views
ELF: linking: Why do I get undefined references in .so files
I'm trying to build a program against wxWidgets, and I get a linker error. I'd like to really understand what it means. The error is:
/usr/lib/libwx_baseu-2.8.so: undefined reference to ...
3
votes
1answer
86 views
What is the difference between “Local Linker Symbols” & “Local Program Variables”?
I want to know the difference between "Local Linker Symbols" & "Local Program Variables"?
I'm reading a book which has this:
What does each mean? Any examples?
4
votes
3answers
985 views
How find absolute address of symbol of shared libraries?
I want to write a little function's tracer. I use ptrace.
When I see a CALL instruction, I want to show the function name equivalent to the address call.
My tracer work with symbols with absolute ...
3
votes
3answers
2k views
Convert memory address range in running Linux process to symbols in object file?
Here is a snippet of the file /proc/self/smaps:
00af8000-00b14000 r-xp 00000000 fd:00 16417 /lib/ld-2.8.so
Size: 112 kB
Rss: 88 kB
Pss: 1 kB
...