2

我有一些由我自己的编译器制作的 asm 程序,当我想运行它们时,它们最后会出现分段错误。所有指令都按我想要的方式执行,但执行由段错误完成。

当我尝试使用 gdb 来查看段错误时,它似乎总是出现在以下行:0x11ee90 <_dl_debug_state> push %ebp>

我什至不知道这条线是什么,首先如何防止它导致段错误。

这是这种程序的一个例子:

    file    "test_appel.c"
    .text                
.globl f  
    .type f, @function  
f:                        
    pushl   %ebp                     
    movl    %esp,   %ebp               
    subl    $16,    %esp
    movl    8(%ebp), %eax 
    pushl   %eax                        
    movl    12(%ebp), %eax 
    popl    %ecx          
    imull   %ecx,   %eax  
    movl    %eax,   16(%ebp) 
    movl    16(%ebp), %eax 
    leave
    ret         
    .section    .rodata
.LC0:
    .string "appel à fonction pour la multiplication\n"
.LC1:
    .string "resultat 2 * 3 = %d\n"
    .text                
.globl main  
    .type main, @function  
main:                        
    pushl   %ebp                     
    movl    %esp,   %ebp               
    andl    $-16,   %esp  
    subl    $32,    %esp
    movl    $2, %eax 
    movl    %eax,   8(%ebp) 
    movl    $3, %eax 
    movl    %eax,   12(%ebp) 
    movl    12(%ebp), %eax 
    movl    %eax    ,4(%esp) 
    movl    8(%ebp), %eax 
    movl    %eax    ,0(%esp) 
    call    f
    movl    %eax,   4(%ebp) 
    movl    4(%esp),    %eax    
    movl    (%esp), %ecx     
    pushl   %eax             
    pushl   %ecx             
    movl     $.LC0, %eax 
    movl    %eax,   (%esp)  
    call    printf         
    popl    %ecx             
    popl    %eax             
    movl    %eax,   4(%esp)   
    movl    %ecx,   (%esp)    
    movl    4(%esp),%eax      
    movl    (%esp), %ecx     
    pushl   %eax             
    pushl   %ecx             
    movl    4(%ebp), %eax 
    movl    %eax,   %edx
    movl    %edx,   4(%esp)                    
    movl    $.LC1,  (%esp)  
    call    printf                            
    popl    %ecx             
    popl    %eax             
    movl    %eax,   4(%esp)   
    movl    %ecx,   (%esp)    
    leave
    ret  
4

3 回答 3

2

segfault,它似乎总是出现在以下行:0x11ee90 <_dl_debug_state> push %ebp>

那只是意味着您已经损坏或耗尽了堆栈。

实际上,您的编译器确实似乎发出了会破坏整个堆栈的代码。特别是这些说明:

movl    %eax,   8(%ebp)
...
movl    %eax,   12(%ebp) 

调用者(这是 libc 的一部分)中损坏的局部变量,因此在main返回后看到崩溃也就不足为奇了。

您可能打算发出:movl %eax, -8(%ebp)movl %eax, -12(%ebp).

于 2012-05-19T21:30:55.037 回答
0

问题是您正在破坏返回指令。如您所知,ebp + 4 始终包含执行被调用函数后控件跳转的返回指令地址。在您的情况下,您有这样的声明:

       movl    %eax,   4(%ebp)

您正在将“f()”的返回值写入 ebp+4,这会破坏返回指令地址。你删除这个语句你不会得到分段错误。

于 2012-05-21T14:48:54.337 回答
0

when i try to use gdb in order to look at the segfault, it appears that it always occurs at the line : 0x11ee90 <_dl_debug_state> push %ebp>

当在函数调用期间将基指针 :%ebp推入堆栈时,会发生分段错误。这看起来像是之前发生的堆栈损坏的后果。

您没有从 GDB 共享完整的堆栈跟踪,也没有共享地址空间信息。

在 gdb 中,当它出现段错误时,会执行 adisassemble以获取更多信息,并bt获取所有被调用的函数来实现这一点。

于 2012-05-19T21:30:17.283 回答