用户堆栈上的机器代码 - 操作系统

时间:2015-04-13 14:18:55

标签: c assembly operating-system stack kernel

我正在使用xv6操作系统,我的班级正致力于为它实现信号。

我已经想出如何在内核中实现处理程序(这是前两个练习),但现在我必须弄清楚如何运行用户定义的处理程序。

程序调用一个看起来像这样的信号函数

signal(int signum, void (*handler)(int))

用户程序,例如alarmtest3.c,将其用户函数作为第二个参数传递:

signal (14, snooze); // 14 is the signum for alarm 

我需要弄清楚的是,一旦处于信号状态,如何让内核调用另一个系统调用sigret()。我相信需要这个系统调用来存储内核堆栈的陷阱帧的副本。一切都发生后,重新回到用户空间。

用户堆栈应如下所示:

|other stack frames|
|a few bytes of machine code to call sys_sigret|
|signum parameter for the handler function|
|address of the first byte of the code above|

我知道要存储的机器代码,我在程序集文件中找到它。我只是不知道"几个字节的机器代码来调用sys_sigret"。如何将此机器代码存储在堆栈中?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

在堆栈上存储代码不一定是个好主意,但如果你需要这样做,那就这样吧。至于如何:只需在内核内存中创建所述机器代码,然后将其与自己的地址一起复制到用户堆栈,以便在信号处理程序返回时执行。

这就是linux的用法:

static const struct {
        u16 poplmovl;
        u32 val;
        u16 int80;
} __attribute__((packed)) retcode = {
        0xb858,         /* popl %eax; movl $..., %eax */
        __NR_sigreturn,
        0x80cd,         /* int $0x80 */
};

/*
 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
 *
 * WE DO NOT USE IT ANY MORE! It's only left here for historical
 * reasons and because gdb uses it as a signature to notice
 * signal handler stack frames.
 */
err |= __put_user(*((u64 *)&retcode), (u64 *)frame->retcode);