我从此URL复制并粘贴代码,用于使用内核模块创建和读取/写入proc文件,并获取proc_root未声明的错误。同样的例子是在几个网站上,所以我认为它的工作原理。有什么想法我会收到这个错误吗?我的makefile需要不同的东西吗?下面是我的makefile:
基本proc文件创建的示例代码(直接复制和粘贴以完成初始测试): http://tldp.org/LDP/lkmpg/2.6/html/lkmpg.html#AEN769
Makefile 我正在使用:
obj-m := counter.o
KDIR := /MY/LINUX/SRC
PWD := $(shell pwd)
default:
$(MAKE) ARCH=um -C $(KDIR) SUBDIRS=$(PWD) modules
答案 0 :(得分:14)
这个例子已经过时了。在当前的内核API下,将NULL
传递给procfs的根目录。
此外,您应该使用create_proc_entry
而不是proc_create()
,而不是const struct file_operations *
。
答案 1 :(得分:6)
在proc文件系统中创建条目的界面发生了变化。您可以查看http://pointer-overloading.blogspot.in/2013/09/linux-creating-entry-in-proc-file.html了解详情
以下是带有新界面的'hello_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, "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,
.llseek = seq_lseek,
.release = single_release,
};
static int __init hello_proc_init(void) {
proc_create("hello_proc", 0, NULL, &hello_proc_fops);
return 0;
}
static void __exit hello_proc_exit(void) {
remove_proc_entry("hello_proc", NULL);
}
MODULE_LICENSE("GPL");
module_init(hello_proc_init);
module_exit(hello_proc_exit);
答案 2 :(得分:0)
更新:
The above accepted answer 可能对您有用。它不再适用于 GNU/Linux 5.6.y 及更高版本!从 5.6 开始,proc_create()
将接受 proc_ops
作为参数而不是 file_operations
。字段以 proc_
开头,owner
(check here) 中没有 proc_ops
字段。
顺便提一下,程序员希望代码可移植。在这种情况下,相同的代码将适用于不同版本的 GNU/Linux。因此,您可能还需要使用 LINUX_VERSION_CODE
中的 KERNEL_VERSION(5,6,0)
、linux/version.h
宏。例如,
#include <linux/version.h>
...
...
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5,6,0))
static struct file_operations
#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
static struct proc_ops
#endif
proc_file_ops = {
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5,6,0))
owner : THIS_MODULE,
read : proc_file_read,
write : proc_file_write
#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
proc_read : proc_file_read,
proc_write : proc_file_write
#endif
};
...
...
AFAIK 除了这些,我没有注意到任何其他重大变化:)