操作系统概念第九版编程项目:Linux内核模块
【摘要】
源代码在最后面
实验题目:
源代码打包下载 链接: 点击此处下载 密码: i2ev
(第一部分实验是虚拟机上操作,第二部分是真机操作) 1,创建内核模块
编译模块
2,加载与卸载内核模块 加载
删除内核模块
第二部分
几个主要内核函数的功能 1,brithday_init():向内核注册模块的入口点 2,list_for_each_e...
源代码在最后面
实验题目:
源代码打包下载
链接: 点击此处下载 密码: i2ev
(第一部分实验是虚拟机上操作,第二部分是真机操作)
1,创建内核模块
编译模块
2,加载与卸载内核模块
加载
删除内核模块
第二部分
几个主要内核函数的功能
1,brithday_init():向内核注册模块的入口点
2,list_for_each_entry(ptr, &birthday_list, list):一个 for 循环,利用传入的 pos 作为循环变量,从表头 &birthday _list开始,逐项向后移动 ptr,并遍历每一个ptr的list子项直至又回&birthday_list
3,birthday_exit():向内核注册模块的退出点
1,编译模块,生成brithday.ko文件
命令行:make
2,调用内核函数并查看日志
命令行1:sudo insmod brithday.ko
命令行2:dmesg
退出内核函数调用并查看日志,最后清除内核日志
命令行1:sudo rmmod brithday 命令行2:dmesg命令行3:sudo dmesg -c
代码一
代码名称:birthday.c
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/init.h>
//声明一个list_head对象
static LIST_HEAD(brithday_list);
//定义插入链表的结构
struct brithday { int day; int month; int year; struct list_head list;
};
//brithday()将实例添加到链表中,(通过list_add_tail()函数),通过引用函数避免代码重复
void brithday(int day, int month, int year, struct brithday *person)
{ person->day=day; person->month=month; person->year=year; INIT_LIST_HEAD(&person->list); list_add_tail(&person->list, &brithday_list);
}
//内核模块入口函数
int brithday_init(void){
//创建并初始化struct brithday的实例 struct brithday *person; struct brithday *ptr;
char n[5]={'a','b','c','d','e'}; int i=0;
//设置五个人的名字,便于区分 person = kmalloc(sizeof(*person)*5, GFP_KERNEL); brithday(1,10,2020,person); person=person+1; brithday(2,9,2021,person); person=person+1; brithday(3,8,2022,person); person=person+1; brithday(4,7,2023,person); person=person+1; brithday(5,6,2024,person); //遍历链表并循环输出五个人的出生日期到缓冲区 list_for_each_entry(ptr, &brithday_list, list) { printk(KERN_INFO "%c 的出生日期是: %d 年 %d月 %d 日.\n",n[i],ptr->year,ptr->month,ptr->day); i=i+1; }
printk(KERN_INFO "Loading Module\n"); return 0;
}
//内核注册模块的退出函数
void brithday_exit(void)
{ struct brithday *ptr, *next; list_for_each_entry_safe(ptr, next, &brithday_list, list){ list_del(&ptr->list); kfree(ptr); } printk(KERN_INFO "Removing Moudle\n");
}
module_init(brithday_init);
module_exit(brithday_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Birthday Module");
MODULE_AUTHOR("SGG");
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
代码二
文件名:makefile
obj-m += birthday.o
all: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
- 1
- 2
- 3
- 4
- 5
文章来源: getup.blog.csdn.net,作者:乌龟哥哥呀,版权归原作者所有,如需转载,请联系作者。
原文链接:getup.blog.csdn.net/article/details/108930690
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)