1

我需要实现一个 Linux 内核驱动程序,它(在第一步中)只将所有文件操作转发到另一个文件(在后面的步骤中,这应该被管理和操作,但我不想在这里讨论这个)。

我的想法如下,但是在阅读时,内核崩溃了:

static struct {
    struct file *file;
    char *file_name;
    int open;
} file_out_data = {
.file_name  = "/any_file",
.open       = 0, 
};


int memory_open(struct inode *inode, struct file *filp) {
  PRINTK("<1>open memory module\n");
    /* 
     * We don't want to talk to two processes at the same time 
     */
    if (file_out_data.open)
        return -EBUSY;
    /*
     * Initialize the message 
     */
    Message_Ptr = Message;
    try_module_get(THIS_MODULE);

        file_out_data.file = filp_open(file_out_data.file_name, filp->f_flags, filp->f_mode); //here should be another return handling in case of fail
    file_out_data.open++;

  /* Success */
  return 0;
}

int memory_release(struct inode *inode, struct file *filp) {
      PRINTK("<1>release memory module\n");
    /* 
     * We're now ready for our next caller 
     */
    file_out_data.open--;
    filp_close(file_out_data.file,NULL);

    module_put(THIS_MODULE);
  /* Success */
  return 0;
}

ssize_t memory_read(struct file *filp, char *buf, 
                    size_t count, loff_t *f_pos) { 
   PRINTK("<1>read memory module \n");
ret=file_out_data.file->f_op->read(file_out_data.file,buf,count,f_pos); //corrected one, false one is to find in the history
    return ret;

}

那么,谁能告诉我为什么?

4

3 回答 3

2

为什么要增加file_out_data.open两次并减少一次?这可能会导致您file_out_data.file在关闭后使用。

于 2012-04-13T13:02:09.293 回答
2
  1. 不要使用set_fs(),因为没有理由这样做。
  2. 使用file->f_fop->read()而不是vfs_read. 看一下filefile_operations结构。
于 2012-04-13T14:02:12.780 回答
0

您想在读取的文件中写入内存吗?因为你正在阅读而不是写作......可能我错了

于 2013-05-27T13:12:56.397 回答