我像 1 年前写了一些 freebsd 内核模块,当时它们运行良好。但现在我无法编译。
我要做的是通过修改 sysent 表来挂钩现有的系统调用。
static int
mkdir_hook (struct proc *p, struct mkdir_args *ua)
{
printf("Making dir: %s\n", ua->path);
return mkdir(p, ua);
}
static int
load (struct module *module, int cmd, void *arg)
{
int error = 0;
switch (cmd) {
case MOD_LOAD :
sysent[SYS_mkdir]=mkdir_hook_sysent;
break;
case MOD_UNLOAD :
sysent[SYS_mkdir].sy_call=(sy_call_t*)mkdir;
break;
default :
error = EINVAL;
break;
}
return error;
}
我收到以下错误
test.c:21: warning: implicit declaration of function 'mkdir'
test.c:21: warning: nested extern declaration of 'mkdir' [-Wnested-externs]
test.c:49: error: 'mkdir' undeclared (first use in this function)
test.c:49: error: (Each undeclared identifier is reported only once
test.c:49: error: for each function it appears in.)
所以我认为它可能缺少图书馆。这是我的包括
#include <sys/types.h>
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/module.h>
#include <sys/sysent.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/linker.h>
#include <sys/sysproto.h>
#include <sys/sysent.h>
#include <sys/proc.h>
#include <sys/syscall.h>
我读了man 2 mkdir
,还是没有头绪。似乎不再支持从内核模块中调用另一个系统调用,或者它需要额外的配置?
请帮忙,非常感谢。