内核里读写文件

不能直接用 sys_read, sys_open, 因为这些函数没有 export出来。

可以使用  vfs_write, vfs_read.

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/syscalls.h>
#include <linux/fcntl.h>
#include <asm/uaccess.h>

static void read_file(char *filename)
{
//  int fd;
  char buf[1];
  struct file * file;
//  loff_t pos = 0;

  mm_segment_t old_fs = get_fs();
  set_fs(KERNEL_DS);

  file = filp_open(filename, O_RDONLY, 0);
  if (file) {
#if 0
    while (vfs_read(file, buf, 1, &pos) == 1)
#else
	while(file->f_op->read(file, buf, 1, &file->f_pos) == 1)
#endif
	{
      printk("%c", buf[0]);
	}
    printk("\n");
    filp_close(file, NULL);
  }
  set_fs(old_fs);
}

static int __init rwfile_init(void)
{
  read_file("/etc/group");
  return 0;
}

static void __exit rwfile_exit(void)
{ }

MODULE_LICENSE("GPL");
module_init(rwfile_init);
module_exit(rwfile_exit);

makefile文件:

obj-m := rwfile.o
ARCH = arm
CROSS_COMPILE = arm-linux-gnueabi- 
all:
	make ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(HOME)/code/linux-3.10.28 M=$(PWD) modules
clean:
	make ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(HOME)/code/linux-3.10.28 M=$(PWD) clean


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值