最佳答案
我正在尝试编写一些简单的测试代码,作为挂钩系统调用表的演示。
“ sys _ call _ table”在2.6中不再导出,所以我只是从 System.map 文件中获取地址,我可以看到它是正确的(查看我找到的地址的内存,我可以看到指向系统调用的指针)。
但是,当我试图修改这个表时,内核会发出一个“ Oops”,表示“无法在虚拟地址 c061e4f4处理内核分页请求”,然后机器重新启动。
这是 CentOS 5.4,运行2.6.18-164.10.1。El5.有什么保护措施吗,还是我只是被窃听了?我知道它是 SELinux 自带的,我也试过把它设置为允许模式,但是没有什么区别
这是我的密码:
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/unistd.h>
void **sys_call_table;
asmlinkage int (*original_call) (const char*, int, int);
asmlinkage int our_sys_open(const char* file, int flags, int mode)
{
printk("A file was opened\n");
return original_call(file, flags, mode);
}
int init_module()
{
// sys_call_table address in System.map
sys_call_table = (void*)0xc061e4e0;
original_call = sys_call_table[__NR_open];
// Hook: Crashes here
sys_call_table[__NR_open] = our_sys_open;
}
void cleanup_module()
{
// Restore the original call
sys_call_table[__NR_open] = original_call;
}