|
这个问题难住我好几天了!!各位高手请帮忙!!
我按以下步骤往内核中增加系统调用:
1,修改与系统调用号相关的文件
编辑入口表文件:
# cd /usr/src/linux/arch/i386/kernel
# vi entry.S
把函数的入口地址加到sys_call_table表中:
.long SYMBOL_NAME(sys_print_info) /* added by I */
2,修改相应的头文件:
# cd /usr/src/linux/include/asm
# vi unistd.h
把增加的sys_call_table表项所对应的向量,在include/asm/unistd.h中进行必要申明,以供用户进程和其他系统进程查询或调用。
增加
#define __NR_print_info 259 /* added by I */
同样的增加在/usr/include/asm/unistd.h中也进行了
3,编写系统调用函数
编辑sys.c文件:
# cd /usr/src/linux/kernel
# vi sys.c
在文件的最后增加一个系统调用函数:
asmlinkage int sys_print_info(int testflag)
{
printk(" It's my syscall function!\n");
return 0;
}
该函数有一个int型入口参数testflag,并返回整数0。
4,写测试程序test2.c,内容如下:
#include <syscall.h>
_syscall1(int,print_info,int,testflag)
main()
{
int i;
i=1;
i= print_info(0);
if(i==0)
{printf("i=%d , syscall success!\n",i);}
else {printf("i=%d,syscall failed!\n",i);}
}
5,编译内核,再重启动,进入新内核
6,编译运行程序
#gcc -o test2 test2.c
错误信息如下所示:
test2.c: In function `print_info':
test2.c:2: `errno' undeclared (first use in this function)
test2.c:2: (Each undeclared identifier is reported only once
test2.c:2: for each function it appears in.)
请问如何解决,不胜感激!!!
附:平台为RedHat 9.0 |
|