seq_file機制提供了標准的例程,使得順序文件的處理好不費力。小的文件系統中的文件,通常用戶層是從頭到尾讀取的,其內容可能是遍歷一些數據項創建的。Seq_file機制容許用最小代價實現此類文件,無論名稱如何,但順序文件是可以進行定為操作的,但其實現不怎麼高效。順序訪問,即逐個訪問讀取數據項,顯然是首選的訪問模式。某個方面具有優勢,通常會在其他方面付出代價。
下面我們一步一步來看看怎麼編寫序列文件的處理程序。對於文件、設備相關驅動程序(其實設備也是文件)的操作,我們都知道需要提供一個struct file_operations的實例。對於這裡序列文件的操作,內核中附加提供了一個struct seq_operations結構,該結構很簡單:
- 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()之類的函數,打印出這個對象節點的信息。
由於c語言中任何數據類型的數據塊都可以轉化為數據塊的內存基址(指針)+數據塊大小來傳遞,不難想到基於我們上面提供的函數,將我們操作的數據用於序列文件的讀寫、定為、釋放等操作完全可以通用話。內核也為我們提供了這些用於讀寫、定位、釋放等操作的通用函數。當然這些操作需要數據結構的支持(比如讀取當前位置、數據大小等等),這就是在後面我們會看到的struct seq_file結構。由於我們讀寫的是文件,在內核中必須提供一個struct file_operations結構的實例,我們可以直接用內核為我們提供的上述函數,並且重寫file_operatios結構的open方法,用該方法將虛擬文件系統關聯到我們處理的序列文件,那麼那些通用的讀寫函數就可以正常工作了。原理基本上是這樣的,下面我們看怎麼用file_operatios結構的open方法將我們的序列文件關聯到虛擬文件系統。在此之前,我們看看序列文件的表示結構struct seq_file:
- struct seq_file {
- char *buf;
- size_t size;
- size_t from;
- size_t count;
- loff_t index;
- loff_t read_pos;
- u64 version;
- struct mutex lock;
- const struct seq_operations *op;
- void *private;
- };
Buf指向一個內存緩沖區,用於構建傳輸給用戶層的數據。Count指定了需要傳輸到用戶層的剩余的字節數。復制操作的起始位置由from指定,而size給出了緩沖區總的字節數。Index是緩沖區的另一個索引。他標記了內核向緩沖區寫入下一個新紀錄的起始位置。要注意的是,index和from的演變過程是不同的,因為從內核向緩沖區寫入數據,與將這些數據復制到用戶空間,這兩種操作是不同的。
一般情況,對於序列文件,我們的文件操作實例如下:
- static struct file_operations my_operations={
- .open =my_open,
- .read =seq_read,
- .llseek =seq_lseek,
- .release =seq_release,
- };
其中,my_open函數需要我們重寫的,也是我們將其用於關聯我們的序列文件。其他都是內核為我們實現好的,在後面我們會詳細介紹。
- static int my_open(struct inode *inode,struct file *filp)
- {
- return seq_open(filp,&my_seq_operations);
- }
我們這裡調用seq_open函數建立這種關聯。
- int seq_open(struct file *file, const struct seq_operations *op)
- {
- struct seq_file *p = file->private_data;/*p為seq_file結構實例*/
-
- if (!p) {
- p = kmalloc(sizeof(*p), GFP_KERNEL);
- if (!p)
- return -ENOMEM;
- file->private_data = p;/*放到file的private_data中*/
- }
- memset(p, 0, sizeof(*p));
- mutex_init(&p->lock);
- p->op = op;/*設置seq_file的operation為op*/
-
- /*
- * Wrappers around seq_open(e.g. swaps_open) need to be
- * aware of this. If they set f_version themselves, they
- * should call seq_open first and then set f_version.
- */
- file->f_version = 0;
-
- /*
- * seq_files support lseek() and pread(). They do not implement
- * write() at all, but we clear FMODE_PWRITE here for historical
- * reasons.
- *
- * If a client of seq_files a) implements file.write() and b) wishes to
- * support pwrite() then that client will need to implement its own
- * file.open() which calls seq_open() and then sets FMODE_PWRITE.
- */
- file->f_mode &= ~FMODE_PWRITE;
- return 0;
- }
可以看到,我們的seq_file結構以file的私有數據字段傳入虛擬文件系統,同時在open函數中設置了seq_file的操作實例。
我們看下面這個簡單的例子:
- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/proc_fs.h>
- #include <linux/seq_file.h>
-
-
- #define MAX_SIZE 10
-
-
- MODULE_LICENSE("GPL");
- MODULE_AUTHOR("Mike Feng");
-
- /*用於操作的數據*/
- struct my_data
- {
- int data;
- };
-
- /*全局變量*/
- struct my_data *md;
-
- /*數據的申請*/
- struct my_data* my_data_init(void)
- {
- int i;
- md=(struct my_data*)kmalloc(MAX_SIZE*sizeof(struct my_data),GFP_KERNEL);
-
- for(i=0;i<MAX_SIZE;i++)
- (md+i)->data=i;
-
- return md;
- }
-
- /*seq的start函數,僅僅做越界判斷然後返回pos*/
- void *my_seq_start(struct seq_file *file,loff_t *pos)
- {
- return (*pos<MAX_SIZE)? pos :NULL;
- }
-
- /*seq的next函數,僅僅做越界判斷然後pos遞增*/
- void *my_seq_next(struct seq_file *p,void *v,loff_t *pos)
- {
- (*pos)++;
- if(*pos>=MAX_SIZE)
- return NULL;
-
- return pos;
- }
-
- /*seq的show函數,讀數據的顯示*/
- int my_seq_show(struct seq_file *file,void *v)
- {
- unsigned int i=*(loff_t*)v;
- seq_printf(file,"The %d data is:%d\n",i,(md+i)->data);
-
- return 0;
- }
-
- /*seq的stop函數,什麼��不做*/
- void my_seq_stop(struct seq_file *file,void *v)
- {
-
- }
-
-
- /*operations of seq_file */
- static const struct seq_operations my_seq_ops={
- .start =my_seq_start,
- .next =my_seq_next,
- .stop =my_seq_stop,
- .show =my_seq_show,
- };
-
- /*file的open函數,用於seq文件與虛擬文件聯系*/
- static int my_open(struct inode *inode,struct file *filp)
- {
- return seq_open(filp,&my_seq_ops);
- }
-
- /*file操作*/
- static const struct file_operations my_file_ops={
- .open =my_open,
- .read =seq_read,
- .llseek =seq_lseek,
- .release=seq_release,
- .owner =THIS_MODULE,
- };
-
- static __init int my_seq_init(void)
- {
- struct proc_dir_entry *p;
- my_data_init();
- p=create_proc_entry("my_seq",0,NULL);
- if(p)
- {
- p->proc_fops=&my_file_ops;
- }
-
- return 0;
-
- }
-
- static void my_seq_exit(void)
- {
- remove_proc_entry("my_seq",NULL);
- }
-
- module_init(my_seq_init);
- module_exit(my_seq_exit);
實驗與結果: