您好我有一个类分配,要求我拦截一个打开的调用然后读取文件并编辑输出而不编辑文件本身这完全在内核空间的可加载模块中完成。当我说编辑时,我的意思是要改变她的单词,用一个下划线代替s,它会改变单词的每个实例,以便达到理想的结果。我已经在网上看了好几天试图解决这个问题我觉得我找到了一个合适的例子,但它一直给我一个错误。一旦我将模块输入到内核中,它立即说死了然后它说我无法删除它,因为它在使用时它不会强制我重新启动我的虚拟机。下面是代码。任何帮助将不胜感激,谢谢。
#include <linux/module.h> // Needed by all modules
#include <linux/kernel.h> // Needed for KERN_INFO
#include <linux/fs.h> // Needed by filp
#include <asm/uaccess.h> // Needed by segment descriptors
int init_module(void)
{
// Create variables
struct file *f;
char buf[128];
mm_segment_t fs;
int i;
// Init the buffer with 0
for(i=0;i<128;i++)
buf[i] = 0;
// To see in /var/log/messages that the module is operating
printk(KERN_INFO "My module is loaded\n");
// I am using Fedora and for the test I have chosen following file
// Obviously it is much smaller than the 128 bytes, but hell with it =)
f = filp_open("/etc/fedora-release", O_RDONLY, 0);
if(f == NULL)
printk(KERN_ALERT "filp_open error!!.\n");
else{
// Get current segment descriptor
fs = get_fs();
// Set segment descriptor associated to kernel space
set_fs(get_ds());
// Read the file
f->f_op->read(f, buf, 128, &f->f_pos);
// Restore segment descriptor
set_fs(fs);
// See what we read from file
printk(KERN_INFO "buf:%s\n",buf);
}
filp_close(f,NULL);
return 0;
}
void cleanup_module(void)
{
printk(KERN_INFO "My module is unloaded\n");
}
module_init(init_module);
module_exit(cleanup_module);
答案 0 :(得分:0)
关于从内核读取和写入文件,我建议您阅读以下文章并查看其中的代码片段: 驱动我坚果 - 你永远不应该在内核中做的事情 Linux Journal 2005,Greg Kroah-Hartman