我正在为我的大学课程构建一个简单的调试器,但在处理 SIGINT 时遇到了问题。
我想要做的是当调试器进程(从现在开始 PDB)接收 SIGINT 信号时,将其传递给子进程(PDB 实际调试的那个)。
我正在这样做:
pid_t childid;
void catch_sigint(int sig)
{
signal(SIGINT,SIG_DFL);
kill(childid,sig);
}
int debuger (char *address, parm *vars)
{
int ignore=1;
int status;
childid = fork();
signal(SIGINT,catch_sigint);
if(childid==0)
{
ptrace(PTRACE_TRACEME,0, NULL,NULL);
if(execve(address,NULL,NULL)==-1)
{
perror("ERROR occured when trying to create program to trace\n");
exit(1);
}
}
else
{
int f_time=1;
while(1)
{
long system_call;
wait(&status);
if(WIFEXITED(status))break;
if(WIFSIGNALED(status))break;
system_call = ptrace(PTRACE_PEEKUSER,childid, 4 * ORIG_EAX, NULL);
if(!strcmp(vars->category,"process-control") || !strcmp(vars->category,"all"))
ignore = pr_calls(system_call,ignore,limit,childid,vars->mode); //function that takes the system call that is made and prints info about it
if(!strcmp(vars->category,"file-management") || !strcmp(vars->category,"all"))
ignore = fl_calls(system_call,ignore,limit,childid,vars->mode);
if(f_time){ignore=1;f_time=0;}
ptrace(PTRACE_SYSCALL,childid, NULL, NULL);
}
}
signal(SIGINT,SIG_DFL);
return 0;
}
该程序运行并派生一个子进程并执行一个程序以跟踪其系统调用。当它没有收到任何信号时,它工作正常。
但是当在一些跟踪过程中我按下 ctrl+c 我希望子进程停止并且 PDB 继续并停止(因为这条线if(WIFSIGNALED(status))break;
。这永远不会发生。它跟踪的程序继续它的系统调用和打印。
跟踪程序是:
#include <stdio.h>
int main(void)
{
for(;;) printf("HELLO WORLD\n");
return 0;
}
即使在我按 ctrl+c 后,该程序仍继续打印 HELLO WORLD。
我还观察到 ptrace 在 ctrl+c 之后给出的系统调用是 -38 并且在信号从 1407(我认为是正常值)到 639 之后,等待状态仅更改一次,然后在下一次又回到 1407等待。
那么我做错了什么?