采用模块动态添加自己的系统调用 [已试验成功]
由于传统的添加自己的系统调用的方法,需要重新编译内核,比较浪费时间,尤其是有错误时更是不便调试.本文将呈现采用模块动态加载的方法添加自己的系统调用.本实验已在RedHat9.0下试验成功.
模块代码为:
/******* syscall.c ***********/
#include
#include
#include
#include
#include
#define __NR_testsyscall 253 //选一个没有用到的系统调用号
MODULE_LICENSE("GPL");
extern void *sys_call_table[];
asmlinkage intsys_testsyscall()
{
printk("hello world!\n");
return 0;
}
int init_module()
{
sys_call_table=sys_testsyscall;
printk("system call testsyscall() loaded success\n");
printk("sys_call_table addr:0x%lx\n",(unsigned long)sys_call_table);
printk("sys_testsyscall() addr:0x%lx\n",(unsigned long) &sys_call_table);
printk("n=%ld\n",((unsigned long)&sys_call_table -(unsigned long)sys_call_table)/4);
return 0;
}
void cleanup_module()
{
printk("In the exit module!\n");
}
相应的测试程序:
/********** test.c ***************/
#include
#include
#define __NR_testsyscall 253
_syscall0(int,testsyscall)
intmain()
{ int i;
i= testsyscall();
printf("i=%d\n",i);
return 0;
}
我所用的Makefile:
INCLUDE=/usr/src/linux/include
CFLAGS=-g -Wall -D__KERNEL__ -DMODULE-I $(INCLUDE)
syscall.o:syscall.c
gcc $(CFLAGS) -c syscall.c -o syscall.o
然后, make生成 syscall.o,再 insmod syscall.o 将其加载到内核.
最后编译test.c,生成可执行文件test, 运行测试.
用dmesg查看进程希望,若成功输出:hello world!
则表示实验成功!
实验虽然简单,但仍可体现采用模块添加自己的系统调用的方法.希望对浏览此文的同道中人有所帮助.
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/67414/showart_1713090.html 楼主能把详细的截图和文字说明附上吗,我最近也在尝试添加系统调用,但试了很多次都不成功还有内核升级也是,在网上试了很多文字说明都出现了这样那样的问题。所以,望楼主能帮助下,谢谢!
页:
[1]