ubuntu编译字符设备

前言

创建一个简单的字符设备驱动程序。

​ 本文命令的运行基本上都需要root权限,使用root账号,或者在命令前面加上sudo。

​ 如果你使用ssh远程连接的服务器进行代码编写。那么不要在root用户下创建文件或者文件夹。这会导致你ssh连接vscode编写代码的权限问题。可以在普通用户创建好所有的文件,然后编写。

代码

驱动程序

hello_driver.c

#include <linux/types.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/cdev.h>
 
 
dev_t hello_devid;
struct cdev hello_cdev;
int hello_major = 0;
int hello_minor;
 
 
uint8_t kernel_buffer[1024] = {0};
static struct class *hello_class;
 
 
 
static int hello_world_open(struct inode * inode, struct file * file)
{
	printk("hello_world_open\r\n");
	return 0;
}
 
static int hello_world_release (struct inode * inode, struct file * file)
{
	printk("hello_world_release\r\n");
	return 0;
}
 
static ssize_t hello_world_read (struct file * file, char __user * buffer, size_t size, loff_t * ppos)
{
	printk("hello_world_read size:%ld\r\n",size);
	copy_to_user(buffer,kernel_buffer,size);
	return size;
}
 
static ssize_t hello_world_write(struct file * file, const char __user * buffer, size_t size, loff_t *ppos)
{
	printk("hello_world_write size:%ld\r\n",size);
	copy_from_user(kernel_buffer,buffer,size);
	return size;
}
 
 
static const struct file_operations hello_world_fops = {
	.owner		= THIS_MODULE,
	.open		= hello_world_open,
	.release = hello_world_release,
	.read		= hello_world_read,
	.write	= hello_world_write,
};
 
 
static int __init hello_driver_init(void)
{
	int ret;
	printk("hello_driver_init\r\n");
 
	alloc_chrdev_region(&hello_devid, 0, 1, "hello");
	hello_major = MAJOR(hello_devid);
	hello_minor = MINOR(hello_devid);
	printk("hello driver major=%d,minor=%d\r\n",hello_major, hello_minor);	
 
	hello_cdev.owner = THIS_MODULE;
	cdev_init(&hello_cdev, &hello_world_fops);
	cdev_add(&hello_cdev, hello_devid, 1);
	
	hello_class = class_create(THIS_MODULE,"hello_class");
 
	device_create(hello_class,NULL,hello_devid,NULL,"hello"); /* /dev/hello */
 
	return 0;
}
 
static void __exit hello_driver_cleanup(void)
{
	printk("hello_driver_cleanup\r\n");
	cdev_del(&hello_cdev);
	unregister_chrdev_region(hello_devid, 1);
	
	device_destroy(hello_class,hello_devid);
	class_destroy(hello_class);
	
}
 
 
module_init(hello_driver_init);
module_exit(hello_driver_cleanup);
MODULE_LICENSE("GPL");

Makefile文件

KERNELDIR := /lib/modules/$(shell uname -r)/build
CURRENT_PATH := $(shell pwd)
obj-m := hello_driver.o

KBUILD_CFLAGS   += -Wno-unused-result -Wno-unused-variable
build: kernel_modules
 
kernel_modules:
	$(MAKE) ${CFLAGS} -C $(KERNELDIR) M=$(CURRENT_PATH) modules
	$(CROSS_COMPILE)gcc -o test_app test_app.c
clean:
	$(MAKE) -C $(KERNELDIR) M=$(CURRENT_PATH) clean
	rm -rf test_app

测试程序

test_app.c

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>

uint8_t buffer[512] = {0};
 
int main(int argc, char *argv[])
{
	int fd;
	int ret;
	
	fd  = open(argv[1], O_RDWR);
    if(!fd)
    {
        printf("everthing is error\n");
    }
 
	if(!strcmp("read",argv[2]))
	{
		printf("read data from kernel\r\n");
		ret = read(fd,buffer,sizeof(buffer));
		printf("ret len:%d data:%s\r\n",ret,buffer);
	}
 
	if(!strcmp("write",argv[2]))
	{
		printf("write data to kernel %s len:%ld\r\n",argv[3],strlen(argv[3]));
		ret = write(fd,argv[3],strlen(argv[3]));
		printf("ret len:%d\r\n",ret);
	}
 
	
	close(fd);
 
	
}

编译

执行make命令编译

root@ubuntu:/home/dong/workspace/drivercode# make
make  -C /lib/modules/5.19.0-38-generic/build M=/home/dong/workspace/drivercode modules
make[1]: Entering directory '/usr/src/linux-headers-5.19.0-38-generic'
warning: the compiler differs from the one used to build the kernel
  The kernel was built by: x86_64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
  You are using:           gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0
  CC [M]  /home/dong/workspace/drivercode/hello_driver.o
  MODPOST /home/dong/workspace/drivercode/Module.symvers
  CC [M]  /home/dong/workspace/drivercode/hello_driver.mod.o
  LD [M]  /home/dong/workspace/drivercode/hello_driver.ko
  BTF [M] /home/dong/workspace/drivercode/hello_driver.ko
Skipping BTF generation for /home/dong/workspace/drivercode/hello_driver.ko due to unavailability of vmlinux
make[1]: Leaving directory '/usr/src/linux-headers-5.19.0-38-generic'
gcc -o test_app test_app.c

会生成hello_driver.ko文件和test_app

加载模块

insmod hello_driver.ko

卸载模块

rmmod hello_driver

查看模块

lsmod |grep hello_driver

运行测试

创建设备文件

这个文件不是随便创造的,会分配设备号,如果不使用分配的设备号创建会出现读写错误。

​ 每一次加载或者卸载模块都会有dmesg信息。

​ 使用dmesg -c清除信息。加载模块,使用dmesg查看模块信息。

root@ubuntu:/home/dong/workspace/drivercode# dmesg
[164284.337396] hello_driver_init
[164284.337399] hello driver major=238,minor=0

我的设备主设备号就是238,从设备号是0

创建设备文件命令

mknod /dev/hello c 238 0

测试

读 : ./test_app /dev/hello read

写: ./test_app /dev/hello write 需要写入的内容

原文链接:https://www.cnblogs.com/wdgray/p/17337041.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:ubuntu编译字符设备 - Python技术站

(0)
上一篇 2023年4月22日
下一篇 2023年4月22日

相关文章

  • Linux yum 命令安装mysql8.0的教程详解

    Linux yum命令安装mysql8.0的教程详解 MySQL是世界上最流行的开源数据库之一,安装MySQL可以让你更好地管理数据和进行相关开发。本文将会详细地介绍如何使用yum命令在Linux上安装MySQL 8.0,并提供了两个示例说明。 步骤1:安装并启用MySQL源 要安装MySQL 8.0,您需要使用yum命令从官方MySQL源中安装MySQL。…

    Linux 2023年5月14日
    00
  • Keepalived虚拟ip linux下如何设置vip(虚拟ip)

    在做HA的时候需要为服务器设计虚拟IP,也就是一个主机对应多个IP地址?刚听起来好神奇,原来这样也是可能的看了下面的这个链接 自己配了一下http://hi.baidu.com/pbottle/item/7175d29702a0a0bd83d29533 在eth0处引用别名,设置完子网掩码即可ifconfig eth0:0 166.111.69.100 ne…

    Linux 2023年4月11日
    00
  • CentOS 6.5配置本地Yum源教程

    CentOS6.5配置本地Yum源教程 1.安装httpd和createrepo软件包 首先需要安装 httpd 服务程序和 createrepo 工具,执行以下命令安装它们: yum install -y httpd createrepo 2.创建本地Yum仓库目录 接着创建一个本地yum仓库目录,这里我们以 /var/www/html/centos6.5…

    Linux 2023年5月14日
    00
  • Linux 软链接link/ln -s

    在Linux中,链接分为软的和硬的,至于两者之间有什么差别,大家可以参考下https://www.ibm.com/developerworks/cn/linux/l-cn-hardandsymb-links/   软链接绕不过ln/link 命令   1.创建软链接 ln  -s  [源文件或目录]  [目标文件或目录] 例如: 当前路径创建test 引向/…

    Linux 2023年4月11日
    00
  • 自制YUM仓库的步骤讲解

    下面是详细的自制YUM仓库步骤攻略: 1. 安装HTTPD服务器 首先需要安装HTTPD服务器,使用以下命令安装: yum install httpd -y 确认安装成功,启用HTTPD服务,并设置开机自启动: systemctl start httpd.service systemctl enable httpd.service 2. 创建本地yum软件仓…

    Linux 2023年5月14日
    00
  • Linux mkinitrd命令

    Linux mkinitrd命令的作用与使用方法 作用 mkinitrd命令是Linux系统中一个重要的命令,它主要用于创建initrd(Initial RAM Disk)镜像文件,该文件通常用于在系统启动时加载必要的模块和驱动程序。具体而言,initrd在启动时,被Linux内核所加载,内核从中读取模块,挂载根文件系统,初始化设备,最终使系统进入用户态,为…

    Linux 2023年3月28日
    00
  • 如何在Linux系统上安装软件包?

    在Linux系统上安装软件包,通常有两种方式:使用操作系统自带的包管理工具进行安装,或者直接从官方网站下载源码并手动安装。 使用包管理工具进行安装 Linux系统通常使用APT、YUM、DNF、Pacman等包管理工具进行软件包安装,这些工具可以从官方软件源中下载和安装软件包,也可以在本地安装源中搜索并安装软件包。以下是使用APT进行软件包安装的示例: 首先…

    Linux 2023年4月19日
    00
  • VMware Workstation安装Linux系统

    下面是详细讲解“VMware Workstation安装Linux系统”的完整攻略。 步骤一:下载 VMware Workstation 在官方网站 VMware Workstation 下载 VMware Workstation。 步骤二:安装 VMware Workstation 下载完成后,你可以通过 Windows 的双击运行安装程序的方式安装 VM…

    Linux 2023年5月24日
    00
合作推广
合作推广
分享本页
返回顶部