1

我正在尝试使用 GDB 找出堆栈中某个位置存储的内容。我有一个声明:

cmpl $0x176,-0x10(%ebp)

在这个函数中,我将 0x176 与 -0x10(%ebp) 进行比较,我想知道是否有办法查看存储在 -0x10(%ebp) 的内容。

4

1 回答 1

4

我想知道是否有办法查看存储在 -0x10(%ebp) 的内容。

假设您已使用调试信息进行编译,info locals将告诉您当前帧中的所有局部变量。之后,会告诉你从toprint (char*)&a_local - (char*)$ebp开始的偏移量,你通常可以找出 local 接近于。a_local%ebp0x176

此外,如果您的本地人有初始化程序,您可以info line NN找出哪个汇编指令范围对应于给定本地人的初始化,然后disas ADDR0,ADDR1查看反汇编,并再次了解哪个本地人位于哪个偏移量处。

另一种选择是readelf -w a.out, 并查找如下条目:

int foo(int x) { int a = x; int b = x + 1; return b - a; }

<1><25>: Abbrev Number: 2 (DW_TAG_subprogram)
 <26>   DW_AT_external    : 1        
 <27>   DW_AT_name        : foo      
 <2b>   DW_AT_decl_file   : 1        
 <2c>   DW_AT_decl_line   : 1        
 <2d>   DW_AT_prototyped  : 1        
 <2e>   DW_AT_type        : <0x67>   
 <32>   DW_AT_low_pc      : 0x0      
 <36>   DW_AT_high_pc     : 0x23     
 <3a>   DW_AT_frame_base  : 0x0      (location list)
 <3e>   DW_AT_sibling     : <0x67>   
<2><42>: Abbrev Number: 3 (DW_TAG_formal_parameter)
 <43>   DW_AT_name        : x        
 <45>   DW_AT_decl_file   : 1        
 <46>   DW_AT_decl_line   : 1        
 <47>   DW_AT_type        : <0x67>   
 <4b>   DW_AT_location    : 2 byte block: 91 0       (DW_OP_fbreg: 0)
<2><4e>: Abbrev Number: 4 (DW_TAG_variable)
 <4f>   DW_AT_name        : a        
 <51>   DW_AT_decl_file   : 1        
 <52>   DW_AT_decl_line   : 1        
 <53>   DW_AT_type        : <0x67>   
 <57>   DW_AT_location    : 2 byte block: 91 74      (DW_OP_fbreg: -12)
<2><5a>: Abbrev Number: 4 (DW_TAG_variable)
 <5b>   DW_AT_name        : b        
 <5d>   DW_AT_decl_file   : 1        
 <5e>   DW_AT_decl_line   : 1        
 <5f>   DW_AT_type        : <0x67>   
 <63>   DW_AT_location    : 2 byte block: 91 70      (DW_OP_fbreg: -16)

这告诉您x存储在fbreg+0aatfbreg-12bat fbreg-16。现在您只需要检查位置列表即可了解如何fbreg%ebp. 上述代码的列表如下所示:

Contents of the .debug_loc section:

Offset   Begin    End      Expression
00000000 00000000 00000001 (DW_OP_breg4: 4)
00000000 00000001 00000003 (DW_OP_breg4: 8)
00000000 00000003 00000023 (DW_OP_breg5: 8)
00000000 <End of list>

所以对于身体的大部分,fbreg%ebp+8,这意味着a%ebp-4。拆卸确认:

00000000 <foo>:
   0:   55                      push   %ebp
   1:   89 e5                   mov    %esp,%ebp
   3:   83 ec 10                sub    $0x10,%esp
   6:   8b 45 08                mov    0x8(%ebp),%eax  # 'x' => %eax
   9:   89 45 fc                mov    %eax,-0x4(%ebp) # '%eax' => 'a'

...

于 2012-04-18T03:19:24.397 回答