Read the fucking source code!
--By 魯迅A picture is worth a thousand words.
--By 高爾基說明:node
今天來聊一下Linux設備模型的基石:kset/kobject/ktype
。linux
sysfs
文件系統提供了一種用戶與內核數據結構進行交互的方式,能夠經過mount -t sysfs sysfs /sys
來進行掛載;sysfs
文件系統以目錄結構進行展現與管理;probe
函數;spi
, i2c
, pci
等實體總線用於外設的鏈接,而針對集成在SoC中的外設控制器,Linux內核提供一種虛擬總線platform
用於這些外設控制器的鏈接,此外platform
總線也可用於沒有實體總線的外設;/sys
目錄下,bus
用於存放各種總線,其中總線中會存放掛載在該總線上的驅動和設備,好比serial8250
,devices
存放了系統中的設備信息,class
是針對不一樣的設備進行分類;上邊這些功能的實現,離不開kobject/kset/ktype
機制的支撐,開始旅程吧。shell
kobject
表明內核對象,結構體自己不單獨使用,而是嵌套在其餘高層結構中,用於組織成拓撲關係;sysfs
文件系統中一個目錄對應一個kobject
;看看結構體吧:數據結構
struct kobject { const char *name; /* 名字,對應sysfs下的一個目錄 */ struct list_head entry; /* kobject中插入的 list_head結構,用於構造雙向鏈表 */ struct kobject *parent; /* 指向當前kobject父對象的指針,體如今sys中就是包含當前kobject對象的目錄對象 */ struct kset *kset; /* 當前kobject對象所屬的集合 */ struct kobj_type *ktype; /* 當前kobject對象的類型 */ struct kernfs_node *sd; /* VFS文件系統的目錄項,是設備和文件之間的橋樑,sysfs中的符號連接是經過kernfs_node內的聯合體實現的 */ struct kref kref; /* kobject的引用計數,當計數爲0時,回調以前註冊的release方法釋放該對象 */ #ifdef CONFIG_DEBUG_KOBJECT_RELEASE struct delayed_work release; #endif unsigned int state_initialized:1; /* 初始化標誌位,初始化時被置位 */ unsigned int state_in_sysfs:1; /* kobject在sysfs中的狀態,在目錄中建立則爲1,不然爲0 */ unsigned int state_add_uevent_sent:1; /* 添加設備的uevent事件是否發送標誌,添加設備時向用戶空間發送uevent事件,請求新增設備 */ unsigned int state_remove_uevent_sent:1; /* 刪除設備的uevent事件是否發送標誌,刪除設備時向用戶空間發送uevent事件,請求卸載設備 */ unsigned int uevent_suppress:1; /* 是否忽略上報(不上報uevent) */ };
kset
是包含多個kobject
的集合;sysfs
的目錄中包含多個子目錄,那須要將它定義成一個kset
;kset
結構體中包含struct kobject
字段,可使用該字段連接到更上一層的結構,用於構建更復雜的拓撲結構;sysfs
中的設備組織結構很大程度上根據kset
組織的,/sys/bus
目錄就是一個kset
對象,在Linux設備模型中,註冊設備或驅動時就將kobject
添加到對應的kset
中;struct kset { struct list_head list; /* 包含在kset內的全部kobject構成一個雙向鏈表 */ spinlock_t list_lock; struct kobject kobj; /* 歸屬於該kset的全部的kobject的共有parent */ const struct kset_uevent_ops *uevent_ops; /* kset的uevent操做函數集,當kset中的kobject有狀態變化時,會回調這個函數集,以便kset添加新的環境變量或過濾某些uevent,若是一個kobject不屬於任何kset時,是不容許發送uevent的 */ } __randomize_layout;
kobj_type
用於表徵kobject
的類型,指定了刪除kobject
時要調用的函數,kobject
結構體中有struct kref
字段用於對kobject
進行引用計數,當計數值爲0時,就會調用kobj_type
中的release
函數對kobject
進行釋放,這個就有點相似於C++中的智能指針了;kobj_type
指定了經過sysfs
顯示或修改有關kobject
的信息時要處理的操做,實際是調用show/store
函數;struct kobj_type { void (*release)(struct kobject *kobj); /* 釋放kobject對象的接口,有點相似面向對象中的析構 */ const struct sysfs_ops *sysfs_ops; /* 操做kobject的方法集 */ struct attribute **default_attrs; const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj); const void *(*namespace)(struct kobject *kobj); }; struct sysfs_ops { /* kobject操做函數集 */ ssize_t (*show)(struct kobject *, struct attribute *, char *); ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); }; /* 所謂的attribute就是內核空間和用戶空間進行信息交互的一種方法,例如某個driver定義了一個變量,卻但願用戶空間程序能夠修改該變量,以控制driver的行爲,那麼能夠將該變量以sysfs attribute的形式開放出來 */ struct attribute { const char *name; umode_t mode; #ifdef CONFIG_DEBUG_LOCK_ALLOC bool ignore_lockdep:1; struct lock_class_key *key; struct lock_class_key skey; #endif };
能夠看一下kobject
建立的時候,與ktype
的關係,這樣理解起來更順:dom
kobject
在建立的時候,默認設置kobj_type
的值爲dynamic_kobj_ktype
,一般kobject
會嵌入在其餘結構中來使用,所以它的初始化跟特定的結構相關,典型的好比struct device
和struct device_driver
;/sys
文件系統中,經過echo/cat
的操做,最終會調用到show/store
函數,而這兩個函數的具體實現能夠放置到驅動程序中;爲了更形象的說明這幾個結構體的關係,再來一張圖:函數
kset
既是kobject
的集合,自己又是一個kobject
,進而能夠添加到其餘的集合中,從而就能夠構建成複雜的拓撲結構,知足/sys
文件夾下的文件組織需求;若是隻看kset/kobject
的數據結構組織,可能仍是會迷惑,它怎麼跟Linux的設備模型相關?這時就不得不提到Linux內核中一個很精妙的存在container_of
,它能夠經過成員變量的地址來獲取所在結構的地址信息。前文提到過kobject/kset
結構自己不會單獨使用,一般都是會嵌套在其餘結構中,既然kobjcet/kset
能組織成拓撲結構,那麼包含它們的結構一樣能夠構建這個關係,由於能夠經過container_of
就能夠找到結構體的首地址。工具
struct device
和struct device_driver
結構體中都包含了struct kobject
,而struct bus_type
結構體中包含了struct kset
結構,這個也就對應到前文提到的設備和驅動都添加到總線上,由總線來負責匹配;kobject/kset
的相關代碼比較簡單,畢竟它只是做爲一個結構體嵌入其餘high-level的結構中,充當紐帶的做用。不過,我仍是簡單的上一張圖吧:測試
先上一個原理圖:ui
#include <linux/kernel.h> #include <linux/module.h> #include <linux/slab.h> #include <linux/kobject.h> //自定義一個結構,包含了struct kobject子結構 struct test_kobj { int value; struct kobject kobj; }; //自定義個屬性結構體,包含了struct attribute結構 struct test_kobj_attribute { struct attribute attr; ssize_t (*show)(struct test_kobj *obj, struct test_kobj_attribute *attr, char *buf); ssize_t (*store)(struct test_kobj *obj, struct test_kobj_attribute *attr, const char *buf, size_t count); }; //聲明一個全局結構用於測試 struct test_kobj *obj; //用於初始化sysfs_ops中的函數指針 static ssize_t test_kobj_attr_show(struct kobject *kobj, struct attribute *attr, char *buf) { struct test_kobj_attribute *test_kobj_attr; ssize_t ret = -EIO; test_kobj_attr = container_of(attr, struct test_kobj_attribute, attr); //回調到具體的實現函數 if (test_kobj_attr->show) ret = test_kobj_attr->show(container_of(kobj, struct test_kobj, kobj), test_kobj_attr, buf); return ret; } //用於初始化sysfs_ops中的函數指針 static ssize_t test_kobj_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t count) { struct test_kobj_attribute *test_kobj_attr; ssize_t ret = -EIO; test_kobj_attr = container_of(attr, struct test_kobj_attribute, attr); //回調到具體的實現函數 if (test_kobj_attr->store) ret = test_kobj_attr->store(container_of(kobj, struct test_kobj, kobj), test_kobj_attr, buf, count); return ret; } //用於初始化kobj_ktype const struct sysfs_ops test_kobj_sysfs_ops = { .show = test_kobj_attr_show, .store = test_kobj_attr_store, }; //用於初始化kobj_ktype,最終用於釋放kobject void obj_release(struct kobject *kobj) { struct test_kobj *obj = container_of(kobj, struct test_kobj, kobj); printk(KERN_INFO "test kobject release %s\n", kobject_name(&obj->kobj)); kfree(obj); } //定義kobj_ktype,用於指定kobject的類型,初始化的時候使用 static struct kobj_type test_kobj_ktype = { .release = obj_release, .sysfs_ops = &test_kobj_sysfs_ops, }; //show函數的具體實現 ssize_t name_show(struct test_kobj *obj, struct test_kobj_attribute *attr, char *buffer) { return sprintf(buffer, "%s\n", kobject_name(&obj->kobj)); } //show函數的具體實現 ssize_t value_show(struct test_kobj *obj, struct test_kobj_attribute *attr, char *buffer) { return sprintf(buffer, "%d\n", obj->value); } //store函數的具體實現 ssize_t value_store(struct test_kobj *obj, struct test_kobj_attribute *attr, const char *buffer, size_t size) { sscanf(buffer, "%d", &obj->value); return size; } //定義屬性,最終註冊進sysfs系統 struct test_kobj_attribute name_attribute = __ATTR(name, 0664, name_show, NULL); struct test_kobj_attribute value_attribute = __ATTR(value, 0664, value_show, value_store); struct attribute *test_kobj_attrs[] = { &name_attribute.attr, &value_attribute.attr, NULL, }; //定義組 struct attribute_group test_kobj_group = { .name = "test_kobj_group", .attrs = test_kobj_attrs, }; //模塊初始化函數 static int __init test_kobj_init(void) { int retval; printk(KERN_INFO "test_kobj_init\n"); obj = kmalloc(sizeof(struct test_kobj), GFP_KERNEL); if (!obj) { return -ENOMEM; } obj->value = 1; memset(&obj->kobj, 0, sizeof(struct kobject)); //添加進sysfs系統 kobject_init_and_add(&obj->kobj, &test_kobj_ktype, NULL, "test_kobj"); //在sys文件夾下建立文件 retval = sysfs_create_files(&obj->kobj, (const struct attribute **)test_kobj_attrs); if (retval) { kobject_put(&obj->kobj); return retval; } //在sys文件夾下建立group retval = sysfs_create_group(&obj->kobj, &test_kobj_group); if (retval) { kobject_put(&obj->kobj); return retval; } return 0; } //模塊清理函數 static void __exit test_kobj_exit(void) { printk(KERN_INFO "test_kobj_exit\n"); kobject_del(&obj->kobj); kobject_put(&obj->kobj); return; } module_init(test_kobj_init); module_exit(test_kobj_exit); MODULE_AUTHOR("LoyenWang"); MODULE_LICENSE("GPL");
ifneq ($(KERNELRELEASE),) obj-m:=test_kobject.o else KERDIR := /lib/modules/$(shell uname -r)/build PWD:=$(shell pwd) all: make -C $(KERDIR) M=$(PWD) modules clean: rm -f *.ko *.o *.symvers *.cmd *.cmd.o modules.* *.mod.c endif
Makefile
沒有太多好說的,注意Tab
的使用,不然容易出錯;name
和value
外,還有一個test_kobj_group
的子文件夾;cat/echo
的操做,來操做name
和value
,分別會調用到底層的xxx_show
和xxx_store
函數;草草收場,洗洗睡了。spa
https://lwn.net/Articles/263200/
歡迎關注我的公衆號,不按期更新內核機制文章 。