为什么忽略SIGTRAP不能与asm一起使用? [英] Why does ignoring SIGTRAP not work with asm?

查看:118
本文介绍了为什么忽略SIGTRAP不能与asm一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正试图忽略SIGTRAP.我有以下概念验证代码:

I'm trying to ignore SIGTRAP. I have the following proof-of-concept code:

#include <signal.h>
#include <stdlib.h>
int main(){
    signal(SIGTRAP, SIG_IGN);
    write(1, "A", 1);
    asm("int3");
    write(1, "B", 1);
    return 0;
}

运行它时,我希望看到"AB",但是看到

When I run it, I expect to see "AB", but I see

ATrace/breakpoint trap (core dumped)

为什么我的程序尽管忽略了SIGTRAP还是终止了?

Why does my program terminate despite it ignoring SIGTRAP?

推荐答案

根据

According to this site a blocked/ignored signal is automatically unblocked inside the kernel code when it is raised. So if the same signal is raised repeatedly, an infinite loop will not happen. Instead the application is terminated on the second signal raise, at least in the Linux kernel implementation.

因此,当使用raise()时,SIGTRAP仅会被升起一次,不会造成任何问题.但是使用asm("int3")时,处理器将重新执行引发信号的指令.围绕此第二次导致进程终止.

So when using raise(), the SIGTRAP will only be raised once, causing no problems. But with asm("int3") the processor will re-execute the instruction which raised the signal. The second time around this causes process termination.

相关的内核源代码(对于旧版2.6.27)在此处(函数force_sig_info):

The relevant kernel source (for the old 2.6.27) is here (function force_sig_info):

939        if (blocked || ignored) {
940                action->sa.sa_handler = SIG_DFL;
941                if (blocked) {
942                        sigdelset(&t->blocked, sig);
943                        recalc_sigpending_and_wake(t);
944                }
945        }

这篇关于为什么忽略SIGTRAP不能与asm一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆