Linux 字符设备驱动结构(二)—— 自动创建设备节点

上一篇我们介绍到创建设备文件的方法,利用cat /proc/devices查看申请到的设备名,设备号。

第一种是使用mknod手工创建:mknod filename type major minor

第二种是自动创建设备节点:利用udev(mdev)来实现设备文件的自动创建,首先应保证支持udev(mdev),由busybox配置。

      具体udev相关知识这里不详细阐述,可以移步Linux 文件系统与设备文件系统 —— udev 设备文件系统,这里主要讲使用方法。

     

    在驱动用加入对udev 的支持主要做的就是:在驱动初始化的代码里调用class_create(...)为该设备创建一个class,再为每个设备调用device_create(...)创建对应的设备

    内核中定义的struct class结构体,顾名思义,一个struct class结构体类型变量对应一个类,内核同时提供了class_create(…)函数,可以用它来创建一个类,这个类存放于sysfs下面,一旦创建好了这个类,再调用 device_create(…)函数来在/dev目录下创建相应的设备节点。

     这样,加载模块的时候,用户空间中的udev会自动响应 device_create()函数,去/sysfs下寻找对应的类从而创建设备节点。


下面是两个函数的解析:

1、class_create(...) 函数

功能:创建一个类;

下面是具体定义:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #define class_create(owner, name)       \  
  2. ({                      \  
  3.     static struct lock_class_key __key; \  
  4.     __class_create(owner, name, &__key);    \  
  5. })  

owner:THIS_MODULE
name  : 名字

__class_create(owner, name, &__key)源代码如下:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct class *__class_create(struct module *owner, const char *name,  
  2.                  struct lock_class_key *key)  
  3. {  
  4.     struct class *cls;  
  5.     int retval;  
  6.   
  7.     cls = kzalloc(sizeof(*cls), GFP_KERNEL);  
  8.     if (!cls) {  
  9.         retval = -ENOMEM;  
  10.         goto error;  
  11.     }  
  12.   
  13.     cls->name = name;  
  14.     cls->owner = owner;  
  15.     cls->class_release = class_create_release;  
  16.   
  17.     retval = __class_register(cls, key);  
  18.     if (retval)  
  19.         goto error;  
  20.   
  21.     return cls;  
  22.   
  23. error:  
  24.     kfree(cls);  
  25.     return ERR_PTR(retval);  
  26. }  
  27. EXPORT_SYMBOL_GPL(__class_create);  

销毁函数:void class_destroy(struct class *cls)

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. void class_destroy(struct class *cls)  
  2. {  
  3.     if ((cls == NULL) || (IS_ERR(cls)))  
  4.         return;  
  5.   
  6.     class_unregister(cls);  
  7. }  


2、device_create(...) 函数

struct device *device_create(struct class *class, struct device *parent,
                 dev_t devt, void *drvdata, const char *fmt, ...)

功能:创建一个字符设备文件

参数:

      struct class *class  :类
      struct device *parent:NULL
     dev_t devt  :设备号
     void *drvdata  :null、
     const char *fmt  :名字

返回:

    struct device *

下面是源码解析:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct device *device_create(struct class *classstruct device *parent,  
  2.                  dev_t devt, void *drvdata, const char *fmt, ...)  
  3. {  
  4.     va_list vargs;  
  5.     struct device *dev;  
  6.   
  7.     va_start(vargs, fmt);  
  8.     dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);  
  9.     va_end(vargs);  
  10.     return dev;  
  11. }  

device_create_vargs(class, parent, devt, drvdata, fmt, vargs)解析如下:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct device *device_create_vargs(struct class *classstruct device *parent,  
  2.                    dev_t devt, void *drvdata, const char *fmt,  
  3.                    va_list args)  
  4. {  
  5.     return device_create_groups_vargs(class, parent, devt, drvdata, NULL,  
  6.                       fmt, args);  
  7. }  
现在就不继续往下跟了,大家可以继续往下跟;


下面是一个实例:

hello.c

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #include <linux/module.h>  
  2. #include <linux/fs.h>  
  3. #include <linux/cdev.h>  
  4. #include <linux/device.h>  
  5.   
  6. static int major = 250;  
  7. static int minor=0;  
  8. static dev_t devno;  
  9. static struct class *cls;  
  10. static struct device *test_device;  
  11.   
  12. static int hello_open (struct inode *inode, struct file *filep)  
  13. {  
  14.     printk("hello_open \n");  
  15.     return 0;  
  16. }  
  17. static struct file_operations hello_ops=  
  18. {  
  19.     .open = hello_open,  
  20. };  
  21.   
  22. static int hello_init(void)  
  23. {  
  24.     int ret;      
  25.     printk("hello_init \n");  
  26.   
  27.   
  28.     devno = MKDEV(major,minor);  
  29.     ret = register_chrdev(major,"hello",&hello_ops);  
  30.   
  31.     cls = class_create(THIS_MODULE, "myclass");  
  32.     if(IS_ERR(cls))  
  33.     {  
  34.         unregister_chrdev(major,"hello");  
  35.         return -EBUSY;  
  36.     }  
  37.     test_device = device_create(cls,NULL,devno,NULL,"hello");//mknod /dev/hello  
  38.     if(IS_ERR(test_device))  
  39.     {  
  40.         class_destroy(cls);  
  41.         unregister_chrdev(major,"hello");  
  42.         return -EBUSY;  
  43.     }     
  44.     return 0;  
  45. }  
  46. static void hello_exit(void)  
  47. {  
  48.     device_destroy(cls,devno);  
  49.     class_destroy(cls);   
  50.     unregister_chrdev(major,"hello");  
  51.     printk("hello_exit \n");  
  52. }  
  53. MODULE_LICENSE("GPL");  
  54. module_init(hello_init);  
  55. module_exit(hello_exit);  

test.c

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #include <sys/types.h>  
  2. #include <sys/stat.h>  
  3. #include <fcntl.h>  
  4. #include <stdio.h>  
  5.   
  6.   
  7. main()  
  8. {  
  9.     int fd;  
  10.   
  11.   
  12.     fd = open("/dev/hello",O_RDWR);  
  13.     if(fd<0)  
  14.     {  
  15.         perror("open fail \n");  
  16.         return ;  
  17.     }  
  18.   
  19.   
  20.     close(fd);  
  21. }  

makefile

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. ifneq  ($(KERNELRELEASE),)  
  2. obj-m:=hello.o  
  3. $(info "2nd")  
  4. else  
  5. KDIR := /lib/modules/$(shell uname -r)/build  
  6. PWD:=$(shell pwd)  
  7. all:  
  8.     $(info "1st")  
  9.     make -C $(KDIR) M=$(PWD) modules  
  10. clean:  
  11.     rm -f *.ko *.o *.symvers *.mod.c *.mod.o *.order  
  12. endif  

下面可以看几个class几个名字的对应关系:




上一篇我们介绍到创建设备文件的方法,利用cat /proc/devices查看申请到的设备名,设备号。

第一种是使用mknod手工创建:mknod filename type major minor

第二种是自动创建设备节点:利用udev(mdev)来实现设备文件的自动创建,首先应保证支持udev(mdev),由busybox配置。

      具体udev相关知识这里不详细阐述,可以移步Linux 文件系统与设备文件系统 —— udev 设备文件系统,这里主要讲使用方法。

     

    在驱动用加入对udev 的支持主要做的就是:在驱动初始化的代码里调用class_create(...)为该设备创建一个class,再为每个设备调用device_create(...)创建对应的设备

    内核中定义的struct class结构体,顾名思义,一个struct class结构体类型变量对应一个类,内核同时提供了class_create(…)函数,可以用它来创建一个类,这个类存放于sysfs下面,一旦创建好了这个类,再调用 device_create(…)函数来在/dev目录下创建相应的设备节点。

     这样,加载模块的时候,用户空间中的udev会自动响应 device_create()函数,去/sysfs下寻找对应的类从而创建设备节点。


下面是两个函数的解析:

1、class_create(...) 函数

功能:创建一个类;

下面是具体定义:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #define class_create(owner, name)       \  
  2. ({                      \  
  3.     static struct lock_class_key __key; \  
  4.     __class_create(owner, name, &__key);    \  
  5. })  

owner:THIS_MODULE
name  : 名字

__class_create(owner, name, &__key)源代码如下:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct class *__class_create(struct module *owner, const char *name,  
  2.                  struct lock_class_key *key)  
  3. {  
  4.     struct class *cls;  
  5.     int retval;  
  6.   
  7.     cls = kzalloc(sizeof(*cls), GFP_KERNEL);  
  8.     if (!cls) {  
  9.         retval = -ENOMEM;  
  10.         goto error;  
  11.     }  
  12.   
  13.     cls->name = name;  
  14.     cls->owner = owner;  
  15.     cls->class_release = class_create_release;  
  16.   
  17.     retval = __class_register(cls, key);  
  18.     if (retval)  
  19.         goto error;  
  20.   
  21.     return cls;  
  22.   
  23. error:  
  24.     kfree(cls);  
  25.     return ERR_PTR(retval);  
  26. }  
  27. EXPORT_SYMBOL_GPL(__class_create);  

销毁函数:void class_destroy(struct class *cls)

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. void class_destroy(struct class *cls)  
  2. {  
  3.     if ((cls == NULL) || (IS_ERR(cls)))  
  4.         return;  
  5.   
  6.     class_unregister(cls);  
  7. }  


2、device_create(...) 函数

struct device *device_create(struct class *class, struct device *parent,
                 dev_t devt, void *drvdata, const char *fmt, ...)

功能:创建一个字符设备文件

参数:

      struct class *class  :类
      struct device *parent:NULL
     dev_t devt  :设备号
     void *drvdata  :null、
     const char *fmt  :名字

返回:

    struct device *

下面是源码解析:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct device *device_create(struct class *classstruct device *parent,  
  2.                  dev_t devt, void *drvdata, const char *fmt, ...)  
  3. {  
  4.     va_list vargs;  
  5.     struct device *dev;  
  6.   
  7.     va_start(vargs, fmt);  
  8.     dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);  
  9.     va_end(vargs);  
  10.     return dev;  
  11. }  

device_create_vargs(class, parent, devt, drvdata, fmt, vargs)解析如下:

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. struct device *device_create_vargs(struct class *classstruct device *parent,  
  2.                    dev_t devt, void *drvdata, const char *fmt,  
  3.                    va_list args)  
  4. {  
  5.     return device_create_groups_vargs(class, parent, devt, drvdata, NULL,  
  6.                       fmt, args);  
  7. }  
现在就不继续往下跟了,大家可以继续往下跟;


下面是一个实例:

hello.c

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #include <linux/module.h>  
  2. #include <linux/fs.h>  
  3. #include <linux/cdev.h>  
  4. #include <linux/device.h>  
  5.   
  6. static int major = 250;  
  7. static int minor=0;  
  8. static dev_t devno;  
  9. static struct class *cls;  
  10. static struct device *test_device;  
  11.   
  12. static int hello_open (struct inode *inode, struct file *filep)  
  13. {  
  14.     printk("hello_open \n");  
  15.     return 0;  
  16. }  
  17. static struct file_operations hello_ops=  
  18. {  
  19.     .open = hello_open,  
  20. };  
  21.   
  22. static int hello_init(void)  
  23. {  
  24.     int ret;      
  25.     printk("hello_init \n");  
  26.   
  27.   
  28.     devno = MKDEV(major,minor);  
  29.     ret = register_chrdev(major,"hello",&hello_ops);  
  30.   
  31.     cls = class_create(THIS_MODULE, "myclass");  
  32.     if(IS_ERR(cls))  
  33.     {  
  34.         unregister_chrdev(major,"hello");  
  35.         return -EBUSY;  
  36.     }  
  37.     test_device = device_create(cls,NULL,devno,NULL,"hello");//mknod /dev/hello  
  38.     if(IS_ERR(test_device))  
  39.     {  
  40.         class_destroy(cls);  
  41.         unregister_chrdev(major,"hello");  
  42.         return -EBUSY;  
  43.     }     
  44.     return 0;  
  45. }  
  46. static void hello_exit(void)  
  47. {  
  48.     device_destroy(cls,devno);  
  49.     class_destroy(cls);   
  50.     unregister_chrdev(major,"hello");  
  51.     printk("hello_exit \n");  
  52. }  
  53. MODULE_LICENSE("GPL");  
  54. module_init(hello_init);  
  55. module_exit(hello_exit);  

test.c

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #include <sys/types.h>  
  2. #include <sys/stat.h>  
  3. #include <fcntl.h>  
  4. #include <stdio.h>  
  5.   
  6.   
  7. main()  
  8. {  
  9.     int fd;  
  10.   
  11.   
  12.     fd = open("/dev/hello",O_RDWR);  
  13.     if(fd<0)  
  14.     {  
  15.         perror("open fail \n");  
  16.         return ;  
  17.     }  
  18.   
  19.   
  20.     close(fd);  
  21. }  

makefile

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. ifneq  ($(KERNELRELEASE),)  
  2. obj-m:=hello.o  
  3. $(info "2nd")  
  4. else  
  5. KDIR := /lib/modules/$(shell uname -r)/build  
  6. PWD:=$(shell pwd)  
  7. all:  
  8.     $(info "1st")  
  9.     make -C $(KDIR) M=$(PWD) modules  
  10. clean:  
  11.     rm -f *.ko *.o *.symvers *.mod.c *.mod.o *.order  
  12. endif  

下面可以看几个class几个名字的对应关系:




本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/402121.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python数据库使用-SQLite

https://www.liaoxuefeng.com/wiki/897692888725344/926177394024864 SQLite是一种嵌入式数据库&#xff0c;它的数据库就是一个文件。由于SQLite本身是C写的&#xff0c;而且体积很小&#xff0c;所以&#xff0c;经常被集成到各种应用程序中&#xff0c;甚至在iOS和Android的…

Linux 字符设备驱动结构(一)—— cdev 结构体、设备号相关知识解析

一、字符设备基础知识 1、设备驱动分类 linux系统将设备分为3类&#xff1a;字符设备、块设备、网络设备。使用驱动程序&#xff1a; 字符设备&#xff1a;是指只能一个字节一个字节读写的设备&#xff0c;不能随机读取设备内存中的某一数据&#xff0c;读取数据需要按照先后数…

Python数据库使用MySQL

https://www.liaoxuefeng.com/wiki/897692888725344/932709047411488 MySQL是Web世界中使用最广泛的数据库服务器。SQLite的特点是轻量级、可嵌入&#xff0c;但不能承受高并发访问&#xff0c;适合桌面和移动应用。而MySQL是为服务器端设计的数据库&#xff0c;能承受高并发访…

Linux 驱动开发之内核模块开发(四)—— 符号表的导出

Linux内核头文件提供了一个方便的方法用来管理符号的对模块外部的可见性,因此减少了命名空间的污染(命名空间的名称可能会与内核其他地方定义的名称冲突),并且适当信息隐藏。 如果你的模块需要输出符号给其他模块使用,应当使用下面的宏定义: EXPORT_SYMBOL(name); EXPORT_SYMBO…

Python的time模块和datatime模块

https://www.cnblogs.com/tkqasn/p/6001134.html

Linux 驱动开发之内核模块开发 (三)—— 模块传参

一、module_param() 定义 通常在用户态下编程&#xff0c;即应用程序&#xff0c;可以通过main()的来传递命令行参数&#xff0c;而编写一个内核模块&#xff0c;则通过module_param() 来传参。 module_param()宏是Linux 2.6内核中新增的&#xff0c;该宏被定义在include/linux…

Linux 驱动开发之内核模块开发 (二)—— 内核模块编译 Makefile 入门

一、模块的编译 我们在前面内核编译中驱动移植那块&#xff0c;讲到驱动编译分为静态编译和动态编译&#xff1b;静态编译即为将驱动直接编译进内核&#xff0c;动态编译即为将驱动编译成模块。 而动态编译又分为两种&#xff1a; a -- 内部编译 在内核源码目录内编译 b -- 外部…

Exynos4412 文件系统制作(三)—— 文件系统移植

根文件系统一直以来都是所有类Unix操作系统的一个重要组成部分&#xff0c;也可以认为是嵌入式Linux系统区别于其他一些传统嵌入式操作系统的重要特征&#xff0c;它给Linux带来了许多强大和灵活的功能&#xff0c;同时也带来了一些复杂性。我们需要清楚的了解根文件系统的基本…

Snapchat, 给年轻人要的安全感

这几天&#xff0c;Snapchat因拒绝Facebook和谷歌的收购请求而名声大噪。40亿美金的收购请求&#xff0c;并不是任何一个人都可以淡然处之的。一、关于SnapchatSnapchat由两位斯坦福大学生创办&#xff0c;在2011 年9月上线。Snapchat的主要是所有照片都有一个1到10秒的生命期&…

Exynos4412 文件系统制作(二)—— 文件系统简介

一、Linux磁盘分区和目录 Linux发行版本之间的差别很少&#xff0c;差别主要表现在系统管理的特色工具以及软件包管理方式的不同。目录结构基本上都是一样的。 Windows的文件结构是多个并列的树状结构&#xff0c;最顶部的是不同的磁盘&#xff08;分区&#xff09;&#xff0c…

python的urllib2模块

https://www.cnblogs.com/erliang/p/4063883.html https://blog.csdn.net/u014343243/article/details/49308043 https://docs.python.org/zh-cn/2.7/library/urllib2.html

Python中的yield

《python中yield的用法详解——最简单&#xff0c;最清晰的解释》 https://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/ https://www.runoob.com/w3cnote/python-yield-used-analysis.html

Exynos4412 内核移植(七)—— 内核相关知识补充

一、内核调试方法简单分析 1、addr2line: 解决oops错误 a -- oops消息 oops&#xff08;也称 panic&#xff09;&#xff0c;称程序运行崩溃&#xff0c;程序崩溃后会产生oops消息。应用程序或内核线程的崩溃都会产生oops消息&#xff0c;通常发生oops时&#xff0c;系统不会发…

MM引擎新应用——爱车加油记

基于MM应用引擎开发的EXTJS应用&#xff0c;车主每次加完汽油后&#xff0c;记录加油时的里程数以及加油金额和汽油价格&#xff0c;就可计算出上次加油后行驶的里程数、上次加油的平均油耗。点击刷新按钮&#xff0c;即可计算有记录以来的行驶公里数和再次期间加油金额和平均油…

Python风格

Python3学习之Python风格指南 PEP8 – Python代码样式指南&#xff08;中文版&#xff09;

### 阅读之痕-2013/11

2019独角兽企业重金招聘Python工程师标准>>> 阅读之痕-2013/11 Andy erpingwugmail.com 2013/11/01-2013/11/30 2013/11/01-2013/11/30 The story of rocksdb - Embedded key-value store for Flash and RAM http://rocksdb.org/intro.pdf High Performance Network…

Exynos4412 内核移植(六)—— 设备树解析

一、描述ARM Device Tree起源于OpenFirmware (OF)&#xff0c;在过去的Linux中&#xff0c;arch/arm/plat-xxx和arch/arm/mach-xxx中充斥着大量的垃圾代码&#xff0c;相当多数的代码只是在描述板级细节&#xff0c;而这些板级细节对于内核来讲&#xff0c;不过是垃圾&#xff…

Github Page创建个人主页以及绑定域名

2019独角兽企业重金招聘Python工程师标准>>> 在github中 我们可以通过github page创建个人主页 以及绑定域名 据说有300m空间 以及无限流量 不过只能支持静态html 以及一些脚本语言 顺便吐槽一下 阿里云最低配那个云空间服务器 512m内存 启动web服务器后 mys…

python基础-类

实例属性和类属性 类中&#xff0c;没有self指定的是类属性&#xff0c;有self指定的是实例属性。类中的方法是类属性。 类和实例都是名字空间。类是类属性的名字空间&#xff0c;实例时实例属性的名字空间。 可以通过类访问类属性&#xff0c;通过实例访问实例属性。如果实例…