转载:http://blog.csdn.net/gangyanliang/article/details/7244664
内容简介:
本文主要讲述序列文件(seq_file)接口的内核实现,如何使用它将Linux内核里面常用的数据结构通过文件(主要关注proc文件)导出到 用户空间,最后定义了一些宏以便于编程,减少重复代码。在分析序列文件接口实现的过程中,还连带涉及到一些应用陷阱和避免手段。
序列文件接口:
UNIX的世界里,文件是最普通的概念,所以用文件来作为内核和用户空间传递数据的接口也是再普通不过的事情,并且这样的接口对于shell也是相
当友好的,方便管理员通过shell直接管理系统。由于伪文件系统proc文件系统在处理大数据结构(大于一页的数据)方面有比较大的局限性,使得在那种
情况下进行编程特别别扭,很容易导致bug,所以序列文件接口被发明出来,它提供了更加友好的接口,以方便程序员。之所以选择序列文件接口这个名字,应该
是因为它主要用来导出一条条的记录数据。
为了能给大家一个具体形象的认识,我们首先来看一段用序列文件接口通过proc文件导出内核双向循环链接表的实例代码:
#include <linux/kernel.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> static struct mutex lock; static struct list_head head; struct my_data { struct list_head list; int value; }; static void add_one(void) { struct my_data *data; mutex_lock(&lock); data = kmalloc(sizeof(*data), GFP_KERNEL); if (data != NULL) list_add(&data->list, &head); mutex_unlock(&lock); } static ssize_t _seq_write(struct file *file, const char __user * buffer, size_t count, loff_t *ppos) { add_one(); return count; } static int _seq_show(struct seq_file *m, void *p) { struct my_data *data = list_entry(p, struct my_data, list); seq_printf(m, "value: %d/n", data->value); return 0; } static void *_seq_start(struct seq_file *m, loff_t *pos) { mutex_lock(&lock); return seq_list_start(&head, *pos); } static void *_seq_next(struct seq_file *m, void *p, loff_t *pos) { return seq_list_next(p, &head, pos); } static void _seq_stop(struct seq_file *m, void *p) { mutex_unlock(&lock); } static struct seq_operations _seq_ops = { .start = _seq_start, .next = _seq_next, .stop = _seq_stop, .show = _seq_show }; static int _seq_open(struct inode *inode, struct file *file) { return seq_open(file, &_seq_ops); } static struct file_operations _seq_fops = { .open = _seq_open, .read = seq_read, .write = _seq_write, .llseek = seq_lseek, .release = seq_release }; static void clean_all(struct list_head *head) { struct my_data *data; while (!list_empty(head)) { data = list_entry(head->next, struct my_data, list); list_del(&data->list); kfree(data); } } static int __init init(void) { struct proc_dir_entry *entry; mutex_init(&lock); INIT_LIST_HEAD(&head); add_one(); add_one(); add_one(); entry = create_proc_entry("my_data",S_IWUSR | S_IRUGO, NULL); if (entry == NULL) { clean_all(&head); return -ENOMEM; } entry->proc_fops = &_seq_fops; return 0; } static void __exit fini(void) { remove_proc_entry("my_data", NULL); clean_all(&head); } module_init(init); module_exit(fini);
Seq_file File System
针对proc文件的不足而诞生了Seq_file。
Seq_file的实现基于proc文件。使用Seq_file,用户必须抽象出一个链接对象,然后可以依次遍历这个链接对象。这个链接对象可以是链表,数组,哈希表等等。
1.编程接口
Seq_file必须实现四个操作函数:start(), next(), show(), stop()。
struct seq_operations { void * (*start) (struct seq_file *m, loff_t *pos); void (*stop) (struct seq_file *m, void *v); void * (*next) (struct seq_file *m, void *v, loff_t *pos); int (*show) (struct seq_file *m, void *v); };
start():
主要实现初始化工作,在遍历一个链接对象开始时,调用。返回一个链接对象的偏移或者SEQ_START_TOKEN(表征这是所有循环的开始)。出错返回ERR_PTR。
stop():
当所有链接对象遍历结束时调用。主要完成一些清理工作。
next():
用来在遍历中寻找下一个链接对象。返回下一个链接对象或者NULL(遍历结束)。
show():
对遍历对象进行操作的函数。主要是调用seq_printf(), seq_puts()之类的函数,打印出这个对象节点的信息。
下图描述了seq_file函数对一个链表的遍历。
2、重要的数据结构
除了struct seq_operations以外,另一个最重要的数据结构是struct seq_file:
struct seq_file { char *buf; size_t size; size_t from; size_t count; loff_t index; u64 version; struct mutex lock; const struct seq_operations *op; void *private; };
该结构会在seq_open函数调用中分配,然后作为参数传递给每个seq_file的操作函数。Privat变量可以用来在各个操作函数之间传递参数。
seq_hello.c
#include <net/net_namespace.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> #define PROC_NAME "test_proc" #define MAX_LINES 10 typedef struct item { unsigned long key; unsigned char value; }user_item; user_item items[4]; MODULE_AUTHOR("ZHANG JIE:[email protected]"); MODULE_LICENSE("GPL"); static void *my_seq_start(struct seq_file *s, loff_t *pos) { static unsigned long counter = 0; printk(KERN_INFO"Invoke start/n"); if ( *pos == 0 ) { /* yes => return a non null value to begin the sequence */ return &counter; } else { /* no => it‘s the end of the sequence, return end to stop reading */ *pos = 0; return NULL; } } static void *my_seq_next(struct seq_file *s, void *v, loff_t *pos) { unsigned long *tmp_v = (unsigned long *)v; if (*pos < MAX_LINES) { (*tmp_v)++; (*pos)++; return tmp_v; } else { *pos = 0; return NULL; } } static void my_seq_stop(struct seq_file *s, void *v) { printk("Invoke stop/n"); } static int my_seq_show(struct seq_file *s, void *v) { int i; loff_t *spos = (loff_t *) v; for (i = 0; i < 4; i++) { items[i].key = *spos; } items[0].value = ‘0‘; items[1].value = ‘1‘; items[2].value = ‘2‘; items[3].value = ‘3‘; seq_printf(s, "%ld=%c,%ld=%c,%ld=%c,%ld=%c;/n", items[0].key, items[0].value, items[1].key, items[1].value, items[2].key, items[2].value, items[3].key, items[3].value); return 0; } static struct seq_operations my_seq_ops = { .start = my_seq_start, .next = my_seq_next, .stop = my_seq_stop, .show = my_seq_show }; static int my_open(struct inode *inode, struct file *file) { return seq_open(file, &my_seq_ops); }; static struct file_operations my_file_ops = { .owner = THIS_MODULE, .open = my_open, .read = seq_read, .llseek = seq_lseek, .release = seq_release }; int init_module(void) { struct proc_dir_entry *entry; entry = create_proc_entry(PROC_NAME, 0, init_net.proc_net); if (entry) { entry->proc_fops = &my_file_ops; } printk(KERN_INFO"Initialze /proc/net/test_proc success!/n"); return 0; } void cleanup_module(void) { remove_proc_entry(PROC_NAME, init_net.proc_net); printk(KERN_INFO"Remove /proc/net/test_proc success!/n"); }
Makefile
obj-m := seq_hello.o KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) default: $(MAKE) -C $(KDIR) M=$(PWD) modules clean: $(RM) *.o *.mod.c *.ko *.symvers *.markers *.order
测试
[[email protected]:~/Desktop/net/seq]# cat /proc/net/test_proc
完。