为什么忽略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 }