如何从内核空间获取信号到用户空间?
答案 0 :(得分:6)
要从内核到用户空间获取信号,请在用户空间和内核空间代码中使用以下代码,如下所示:
用户空间应用程序:
signal(SIGIO, &signal_handler_func);
fcntl(fd, F_SETOWN, getpid());
oflags = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, oflags | FASYNC);
定义 signal_handler_func 功能:
void signal_handler_func (int sig)
{
//handle the action corresponding to the signal here
}
内核空间模块:
int ret = 0;
struct siginfo info;
memset(&info, 0, sizeof(struct siginfo));
info.si_signo = SIG_TEST;
info.si_code = SI_QUEUE;
info.si_int = 1234;
send_sig_info(SIG_TEST, &info, t);//send signal to user land
t是用户应用程序的PID。
答案 1 :(得分:1)
使用内核API函数kill_proc_info(int sig,struct siginfo * info,pid_t pid)
注意这实际上是一个糟糕的答案。这些函数确实向用户空间发送信号,但正确的方法是执行此操作,因为提问者打算使用这里记录的fasync字符设备方法:http://www.xml.com/ldd/chapter/book/ch05.html#t4
答案 2 :(得分:1)
有一种称为NetLink接口的东西,它为内核进程和用户进程之间的通信提供了一组API。它类似于套接字接口,并且通信是异步的,因此比IOCTL更受欢迎。