内核模块写入proc

时间:2015-03-20 12:10:49

标签: 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);

我插入了模块和proc文件&#34; hello_proc&#34;在目录/ proc中成功创建。我要做的下一件事是编写命令的输出:

ls -l -t /proc | head -21 > /proc/hello_proc 

to file&#34; hello_proc&#34;然后阅读。当我这样做时(以​​root身份):

root@anubhav-Inspiron-3421:~$ ls -l -t /proc | head -21 > /proc/hello_proc 

执行才停止。

现在,我在互联网上检查了很多代码和资源,但找不到解释如何写入proc文件的代码和资源。 youtube上也没有资源。

我发现写入proc文件的最好的东西是使用函数&#34; create_proc_entry&#34;创建proc文件的代码,看起来相当简单,但对于较旧的内核版本,与我的不同。提出任何建议/指示。

1 个答案:

答案 0 :(得分:2)

seq_write没有按照你的想法行事。它实际上就像seq_printf,只是它只写了固定数量的字节(而不是格式化的outpuut)。 seq_xxx API不支持写入设备。你必须单独实现它。

有关如何在读取端使用single_open创建可写设备的相当简单的模型,请查看proc_pid_set_comm_operations,它实现/proc/<pid>/comm并且还支持写入。

另请注意,create_proc_entry已被弃用,但将create_proc_entry更改为proc_create非常简单。如Documentation / filesystems / seq_file.txt中所述:

-       entry = create_proc_entry("sequence", 0, NULL);
-       if (entry)
-               entry->proc_fops = &ct_file_ops;
+       entry = proc_create("sequence", 0, NULL, &ct_file_ops);