内核模块程序使用proc

时间:2015-03-20 05:11:43

标签: c linux linux-kernel

我已经制作了以下内核模块来创建一个进程" hello_proc"在/ proc目录中:

#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>

static int hello_proc_show(struct seq_file *m, void *v) 
{
    seq_printf(m, "P5 : Hello proc!\n");
    return 0;
}

static int hello_proc_open(struct inode *inode, struct  file *file) 
{
    return single_open(file, hello_proc_show, NULL);
}

static const struct file_operations hello_proc_fops = {
    .owner = THIS_MODULE,
    .open = hello_proc_open,
    .read = seq_read,
    //.write = seq_write,
    .llseek = seq_lseek,
    .release = single_release,
};

static int hello_proc_init(void) 
{
    proc_create("hello_proc", 0, NULL, &hello_proc_fops);
    //printk("P5 : Process hello proc created");
    return 0;
}

static void hello_proc_exit(void) 
{
    remove_proc_entry("hello_proc", NULL);
}

MODULE_LICENSE("GPL");
module_init(hello_proc_init);
module_exit(hello_proc_exit);

我现在想写(并读取)命令的内容,比如&#34; ls -l / proc&#34; 到proc文件&#34; hello_proc&#34;。

我的问题是,如何解决我在将以下数据写入proc文件时遇到的以下错误&#34; hello_proc&#34;:

anubhav@anubhav-Inspiron-3421:~/Desktop/pro/p5$ sudo ls -l -t /proc | head -21 > /proc/hello_proc
bash: /proc/hello_proc: Permission denied 

anubhav@anubhav-Inspiron-3421:~/Desktop/pro/p5$ ls -l -t /proc | head -21 > sudo /proc/hello_proc
ls: cannot access /proc/4273: No such file or directory

anubhav@anubhav-Inspiron-3421:~/Desktop/pro/p5$ ls -l -t /proc | head -21 > /proc/hello_proc
bash: /proc/hello_proc: Permission denied

1 个答案:

答案 0 :(得分:2)

首先解决Permission Denied Error

  1. root (su)
  2. 登录
  3. 运行命令

    $ ls -l -t /proc | head -21 > /proc/hello_proc
    
  4. 现在您将面临另一个问题,如下所示。

      

    head:写入错误:输入/输出错误
      head:写错误

    原因是您没有为proc文件编写写文件操作fops。在代码中,您已经注释掉了写操作。