编写内核模块源文件
#include <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
static int hello_init(void)
{
printk(KERN_ALERT "<1>Hello world!.... from kernel space \n");
return 0;
}
static void hello_cleanup(void)
{
printk(KERN_ALERT "<1>Goodbye, world! Leave from kernel space....\n");
}
module_init(hello_init);
module_exit(hello_cleanup);
编写Makefile:
obj-m += hellomod.o
KERNELDIR := /lib/modules/2.6.9-22.ELsmp/build/
PWD := $(shell pwd)
modules:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
modules_install:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
clean:
rm -rf *.o *~ core .depend .*.cmd *.kl *.mod.c .tmp_versions
执行make命令进行编译就行了, 执行完毕后,会生成几个文件
运行命令:
insmod hellomod.ko
在/var/log/message下,就可以看到
运行命令
lsmod
运行命令
rmmod hellomod
在/var/log/message下,就可以看到
错误调试
有的同学,在编译完内核模块,没有问题,在加载的时候发现如下的错误
针对这种错误, 我们在/var/log/message中可以看到如下的错误
这里要查看,在Makefile中引用的KERNELDIR是不是当前系统使用的那个, 查看方法是
利用uname -a 命令
这里只要将Makefile中的KERNELDIR改为 /lib/modules/2.6.9-22.ELsmp/build
再重编译一次, 就可以了,
上面的错误是笔者在实际过程中遇到的, 可能还有其他的原因,要具体看/var/log/message中提示的错误决定。