快速业务通道

Linux内核模块读写文件

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-08

在Linux内核中进行文件的读写操作,在一般情况下

不推荐这样操作,但在不得已时,也是可以实现的.

#include <linux/init.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/dcache.h>
#include <linux/fs.h>
#include <linux/err.h>

#include <linux/string.h>
#include <linux/errno.h>

#include <asm/fcntl.h>
#include <asm/processor.h>
#include <asm/uaccess.h>

MODULE_LICENSE("Dual BSD/GPL");
int add_integar(int a,int b)
{
return (a b);
}

int sub_integar(int a,int b)
{
return (a - b);
}

EXPORT_SYMBOL(add_integar);
EXPORT_SYMBOL(sub_integar);

int init_module(void)
{
int result = 0;
struct task_struct *task = NULL;
char *path = NULL,*ptr = NULL;
char *read_buf = NULL;
struct file* filp = NULL;
mm_segment_t old_fs;


task = current;
read_buf = kmalloc(PAGE_SIZE,GFP_KERNEL);
if (!read_buf)
{
printk("KK Read Buf Alloc Error!rn");
return 0;
}
path = kmalloc(PAGE_SIZE,GFP_KERNEL);
if (!path)
{
printk("KK Allocate Errorrn");
return 0;
}

//==================test read write log file=====================
#define MY_FILE "/root/log_file.log"
filp = filp_open(MY_FILE,O_CREAT|O_RDWR,0600); //创建文件
if (filp)
{
old_fs = get_fs();
set_fs(get_ds());

result = filp->f_op->write(filp,read_buf,PAGE_SIZE,&filp->f_pos); //写文件
if (result)
{
printk("New Log Write OK Length:%d n",result);
}
else
{
printk("Write Log File Error n");
}

set_fs(old_fs);

filp_close(filp,NULL);
}
else
{
printk("Create New Log file failtrue!!n");
}

kfree(read_buf);
read_buf = NULL;
kfree(path);
path = NULL;

printk(KERN_INFO"Loading the module ...KKn");
return 0;
}

void cleanup_module(void)
{
printk(KERN_INFO"Unloading the module...KK...n");

return ;
}

注意的地方:

set_fs(get_ds())函数的作用是设置进程能访问的虚拟地址的空间范围.
如果不设置,系统会认为是用户空间,只有3G,在内核时,特别是
在调用其它的系统调用时,也如此,否则,就会出错!!!!!!!

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号