Linux 內(nèi)核學(xué)習(xí)(9)---- Linux sysfs 文件系統(tǒng)(2)

struct device 類(lèi)型

系統(tǒng)中的任一設(shè)備在設(shè)備模型中都由一個(gè) device 對(duì)象描述隧哮,其對(duì)應(yīng)的數(shù)據(jù)結(jié)構(gòu) struct device

struct device {
    struct kobject kobj;
    struct device       *parent;
    struct device_private   *p;
    const char      *init_name; /* initial name of the device */
    const struct device_type *type;
    struct bus_type *bus;       /* type of bus device is on */
    struct device_driver *driver;   /* which driver has allocated this device */
    void        *platform_data; /* Platform specific data, device core doesn't touch it */
    void        *driver_data;   /* Driver data, set and get with dev_set_drvdata/dev_get_drvdata */
    ....
    struct dev_links_info   links;
    struct dev_pm_info  power;
    struct dev_pm_domain    *pm_domain;
    const struct dma_map_ops *dma_ops;
    u64     *dma_mask;  /* dma mask (if dma'able device) */
    u64     coherent_dma_mask;
    u64     bus_dma_mask;   /* upstream dma_mask constraint */
    unsigned long   dma_pfn_offset;
    struct device_dma_parameters *dma_parms;
    ......
};

device 內(nèi)嵌一個(gè) kobject 對(duì)象,用于實(shí)現(xiàn)引用計(jì)數(shù)的管理并且通過(guò)它實(shí)現(xiàn) sysfs 的層級(jí)結(jié)構(gòu)
driver 域指向管理該設(shè)備的驅(qū)動(dòng)程序?qū)ο螅琩river_data 是提供給驅(qū)動(dòng)程序的數(shù)據(jù)
bus 域描述設(shè)備連接的總線類(lèi)型

內(nèi)核提供了相應(yīng)的函數(shù)枕面,操作device 對(duì)象:
device_reigster 函數(shù)將一個(gè)新的 device 對(duì)象插入設(shè)備模型护盈,并且自動(dòng)在 /sys/devices 下創(chuàng)建一個(gè)新的目錄
device_unregister 完成相反的操作
device_reigster 中最終是調(diào)用 kobject_add 這些底層函數(shù)躲雅,將 device 中包含的 kobject 注冊(cè)到整個(gè) kobject 的層級(jí)結(jié)構(gòu)中

sysfs 相關(guān)API

使用默認(rèn)目錄

sysfs 默認(rèn)掛載在 "sys" 目錄下,對(duì)于內(nèi)核態(tài)是 "kobject"屠缭,對(duì)于用戶態(tài)箍鼓,映射在總線(bus) 對(duì)應(yīng)的目錄下崭参,一般的設(shè)備驅(qū)動(dòng)呵曹,我們使用的是 platform 虛擬總線,因此會(huì)映射在 /sys/platform/device/xxx 下
設(shè)備驅(qū)動(dòng)創(chuàng)建時(shí)何暮,就會(huì)創(chuàng)建該目錄奄喂,因此不需要手動(dòng)創(chuàng)建
在bus/devices 下創(chuàng)建文件:

static inline int sysfs_create_files(struct kobject *kobj, const struct attribute * const *attr)
自定義目錄

在 /sys 目錄下創(chuàng)建自定義目錄,創(chuàng)建目錄使用下面的接口:

struct kobject *kobject_create_and_add(const char *name, struct kobject *parent)
{
    struct kobject *kobj;
    int retval;

    kobj = kobject_create();
    if (!kobj)
        return NULL;

    retval = kobject_add(kobj, parent, "%s", name);
    if (retval) {
        pr_warn("%s: kobject_add error: %d\n", __func__, retval);
        kobject_put(kobj);
        kobj = NULL;
    }
    return kobj;
}

name 表示目錄名稱
parent 表示父目錄海洼,NULL 為默認(rèn)在 /sys 目錄下創(chuàng)建

創(chuàng)建和釋放文件

內(nèi)核 kobject 中的 attribute 映射到用戶態(tài)就是文件跨新,attribute 分為下面三類(lèi)結(jié)構(gòu):

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
};

struct attribute_group {
    const char      *name;
    umode_t         (*is_visible)(struct kobject *,
                          struct attribute *, int);
    umode_t         (*is_bin_visible)(struct kobject *,
                          struct bin_attribute *, int);
    struct attribute    **attrs;
    struct bin_attribute    **bin_attrs;
};

struct bin_attribute {
    struct attribute    attr;
    size_t          size;
    void            *private;
    ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *,
        char *, loff_t, size_t);
    ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *,
         char *, loff_t, size_t);
    int (*mmap)(struct file *, struct kobject *, struct bin_attribute *attr,
        struct vm_area_struct *vma);
};
  • struct attribute :屬性的通用結(jié)構(gòu),其他部分在使用時(shí)可以將 struct attribute 嵌入大到更大的屬性結(jié)構(gòu)中
  • struct bin_attribute:為二進(jìn)制屬性專門(mén)設(shè)計(jì)坏逢,在 sysfs 中表現(xiàn)為二進(jìn)制文件域帐,大多數(shù)設(shè)備參數(shù)的映射
  • struct attribute_group:提供一組屬性的集合,集中管理 attribute 和 bin_attribute

sysfs 提供了下面的接口是整,將屬性關(guān)聯(lián)到對(duì)應(yīng)的 kobject 上:

static inline int sysfs_create_files(struct kobject *kobj, const struct attribute * const *attr)
static inline int sysfs_create_file_ns(struct kobject *kobj, const struct attribute *attr, const void *ns)
int __must_check sysfs_create_bin_file(struct kobject *kobj, const struct bin_attribute *attr);
int __must_check sysfs_create_group(struct kobject *kobj, const struct attribute_group *grp);

struct attribute 包含了一個(gè) mode 屬性肖揣,即文件的訪問(wèn)權(quán)限,可讀浮入,可寫(xiě)龙优,可執(zhí)行,可以用已經(jīng)定義的宏表示
(S_IWUSR | S_IRUGO)事秀,也可以用數(shù)字表示(0600)
宏的含義如下
S_IRUSR:用戶讀權(quán)限
S_IWUSR:用戶寫(xiě)權(quán)限
S_IRGRP:用戶組讀權(quán)限
S_IWGRP:用戶組寫(xiě)權(quán)限
S_IROTH:其他組都權(quán)限
S_IWOTH:其他組寫(xiě)權(quán)限

attribute 初始化宏

sysfs 接口提供了一組宏定義來(lái)初始化上面的 struct attibute 結(jié)構(gòu)

#define __ATTR(_name, _mode, _show, _store) {               \
    .attr = {.name = __stringify(_name),                \
         .mode = VERIFY_OCTAL_PERMISSIONS(_mode) },     \
    .show   = _show,                        \
    .store  = _store,                       \
}

#define __ATTR_PREALLOC(_name, _mode, _show, _store) {          \
    .attr = {.name = __stringify(_name),                \
         .mode = SYSFS_PREALLOC | VERIFY_OCTAL_PERMISSIONS(_mode) },\
    .show   = _show,                        \
    .store  = _store,                       \
}

#define __ATTR_RO(_name) {                      \
    .attr   = { .name = __stringify(_name), .mode = 0444 },     \
    .show   = _name##_show,                     \
}

#define __ATTR_RO_MODE(_name, _mode) {                  \
    .attr   = { .name = __stringify(_name),             \
            .mode = VERIFY_OCTAL_PERMISSIONS(_mode) },      \
    .show   = _name##_show,                     \
}

#define __ATTR_WO(_name) {                      \
    .attr   = { .name = __stringify(_name), .mode = 0200 },     \
    .store  = _name##_store,                    \
}
#define __ATTR_RW(_name) __ATTR(_name, 0644, _name##_show, _name##_store)
#define __ATTR_NULL { .attr = { .name = NULL } }
屬性的讀寫(xiě)方法
struct kobj_attribute {
    struct attribute attr;
    ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
            char *buf);
    ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr,
             const char *buf, size_t count);
};
  • show 函數(shù)在讀操作時(shí)被調(diào)用彤断,它會(huì)拷貝 attr 提供的屬性值到 buffer 指定的緩沖區(qū)中,緩沖區(qū)的大小為 PAGE_SIZE 字節(jié)易迹,如果讀取成功宰衙,則返回實(shí)際寫(xiě)入 buffer 的字節(jié)數(shù),如果失敗睹欲,返回負(fù)的錯(cuò)誤碼
  • store 函數(shù)在寫(xiě)操作時(shí)被調(diào)用菩浙,它會(huì)從 buffer 中讀取 size 大小的字節(jié),并將其保存在 attr 所表示的屬性結(jié)構(gòu)體變量中句伶,如果成功劲蜻,則將返回實(shí)際從buffer中讀取的字節(jié)數(shù),如果失敗考余,返回負(fù)的錯(cuò)誤碼

device 中對(duì)sysfs的封裝

/* interface for exporting device attributes */
struct device_attribute {
    struct attribute    attr;
    ssize_t (*show)(struct device *dev, struct device_attribute *attr,
            char *buf);
    ssize_t (*store)(struct device *dev, struct device_attribute *attr,
             const char *buf, size_t count);
};

#define DEVICE_ATTR(_name, _mode, _show, _store) \
    struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
#define DEVICE_ATTR_PREALLOC(_name, _mode, _show, _store) \
    struct device_attribute dev_attr_##_name = \
        __ATTR_PREALLOC(_name, _mode, _show, _store)
#define DEVICE_ATTR_RW(_name) \
    struct device_attribute dev_attr_##_name = __ATTR_RW(_name)
#define DEVICE_ATTR_RO(_name) \
    struct device_attribute dev_attr_##_name = __ATTR_RO(_name)
#define DEVICE_ATTR_WO(_name) \
    struct device_attribute dev_attr_##_name = __ATTR_WO(_name)

extern int device_create_file(struct device *device, const struct device_attribute *entry);
extern void device_remove_file(struct device *dev, const struct device_attribute *attr);

struct device 結(jié)構(gòu)中包含了 kobject 對(duì)象先嬉,相應(yīng)的 include/linux/Device.h 包含了 struct device_attribute 結(jié)構(gòu)體
定義對(duì)應(yīng)的 device_attribute 結(jié)構(gòu),使用 device_create_file 接口楚堤,就可以向 device 目錄下添加對(duì)應(yīng)的文件

DEVICE_ATTR 開(kāi)頭的宏是對(duì) __ATTR 宏的進(jìn)一步封裝

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末疫蔓,一起剝皮案震驚了整個(gè)濱河市含懊,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌衅胀,老刑警劉巖岔乔,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異滚躯,居然都是意外死亡雏门,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門(mén)掸掏,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)茁影,“玉大人,你說(shuō)我怎么就攤上這事丧凤∧枷校” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵愿待,是天一觀的道長(zhǎng)浩螺。 經(jīng)常有香客問(wèn)我,道長(zhǎng)仍侥,這世上最難降的妖魔是什么要出? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮访圃,結(jié)果婚禮上厨幻,老公的妹妹穿的比我還像新娘。我一直安慰自己腿时,他們只是感情好况脆,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著批糟,像睡著了一般格了。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上徽鼎,一...
    開(kāi)封第一講書(shū)人閱讀 49,185評(píng)論 1 284
  • 那天盛末,我揣著相機(jī)與錄音,去河邊找鬼否淤。 笑死悄但,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的石抡。 我是一名探鬼主播檐嚣,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼啰扛!你這毒婦竟也來(lái)了嚎京?” 一聲冷哼從身側(cè)響起嗡贺,我...
    開(kāi)封第一講書(shū)人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎鞍帝,沒(méi)想到半個(gè)月后诫睬,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡帕涌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年摄凡,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宵膨。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡架谎,死狀恐怖炸宵,靈堂內(nèi)的尸體忽然破棺而出辟躏,到底是詐尸還是另有隱情,我是刑警寧澤土全,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布捎琐,位于F島的核電站,受9級(jí)特大地震影響裹匙,放射性物質(zhì)發(fā)生泄漏瑞凑。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一概页、第九天 我趴在偏房一處隱蔽的房頂上張望籽御。 院中可真熱鬧,春花似錦惰匙、人聲如沸技掏。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)哑梳。三九已至,卻和暖如春绘盟,著一層夾襖步出監(jiān)牢的瞬間鸠真,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工龄毡, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留吠卷,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓沦零,卻偏偏與公主長(zhǎng)得像祭隔,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子蠢终,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容