1

我正在为我的大学课程构建一个简单的调试器,但在处理 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等待。

那么我做错了什么?

4

1 回答 1

0

它在这条线上的问题:

ptrace(PTRACE_SYSCALL,childid, NULL, NULL);

它必须是这样的:

ptrace(PTRACE_SYSCALL,childid, NULL, signal_variable);

signal_variable在全局范围内声明的 int 在哪里,以便处理程序和调试器可以看到它。它的起始值为 0。

信号处理程序现在接收信号并将其传递到此变量中,并在下一个循环中,当 ptrace 命令跟踪程序继续时,它也会向它发送信号。发生这种情况是因为当您跟踪程序时,被跟踪程序在接收到信号时停止执行并等待进一步的指令,以了解如何通过 ptrace 处理来自跟踪程序的信号。

于 2013-04-20T20:09:55.410 回答