断点有两个地址?

Breakpoint has Two Addresses?

我最近设置了一个断点,初始地址是:

(gdb) b viewscreen_movieplayerst::create(char, viewscreenst*)
Breakpoint 1 at 0x804beec

第二个(常用地址)是:

   (gdb) run

   Breakpoint 1, 0xf7b46630 
   in viewscreen_movieplayerst::create(char,viewscreenst*)()
   from/path/libs/libgraphics.so

这是因为可执行文件被剥离了吗?还是可执行文件执行了,执行完后地址变了?

此外,主要是:

(gdb) b main 
Breakpoint 1 at 0x804bdec

这似乎与地址非常接近,所以我将其包括在内。

编辑:

What does the concept of relocation mean?

So most of the binary is composed of reloc table?

也许您正在从 Unix 上的共享库函数中看到过程链接 Table (PLT) 地址?

编译器构建 table 个 'trampoline' 地址,间接引用共享库依赖项。好复杂的题目,有详细的文章here

这是一个简单的例子。

lib.cpp

#include <iostream>


int foo()
{
  return 0;
}

junk.cpp

#include<iostream>

int foo();
int main(int argc, char* argv[])
{
  int k = foo();
  return 0;
}

编译

/tmp$ g++ -fPIC -g -std=c++11 -shared -o libtest_library.so lib.cpp
/tmp$ g++  -g -std=c++11  -o tramp junk.cpp -L . -l test_library

gdb 流浪汉

Reading symbols from tramp...done.
(gdb) p foo
 = (<text from jump slot in .got.plt, no debug info>) 0x4006d6 <foo()@plt+6>
(gdb) b foo
Breakpoint 1 at 0x4006d0
(gdb) d 1
(gdb) r
Starting program: /tmp/tramp 
lib:  0x602010
[Inferior 1 (process 12804) exited normally]
(gdb) b foo
Breakpoint 2 at 0x4006d0 (2 locations)
(gdb) info break
Num     Type           Disp Enb Address            What
2       breakpoint     keep y   <MULTIPLE>         
2.1                         y     0x00000000004006d0 <foo()@plt>
2.2                         y     0x00002aaaaacd0a99 in foo() at lib.cpp:6

如您所见,符号'foo' 有两个地址和两个断点。一个是 PLT,另一个是共享库中的符号位置。

如评论所述,模板实例化和编译器优化也可以为一个符号或源代码行创建多个地址。