linux内核中的offsetof、container_of、双链表list.h实践

2023-10-11 09:52

本文主要是介绍linux内核中的offsetof、container_of、双链表list.h实践,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

先直接上程序,代码中包含了注释已经说清楚。在linux的应用层中编译、测试:

感谢李慧芹的B站课程:史上最强最细腻的linux嵌入式C语言学习教程【李慧芹老师】_哔哩哔哩_bilibili

#include <stdio.h>
#include <stdlib.h>// 下面的宏来自于: <linux/kernel.h>
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)#define container_of(ptr, type, member) ({			\const typeof( ((type *)0)->member ) *__mptr = (ptr);	\(type *)( (char *)__mptr - offsetof(type,member) );})// 下面的结构体定义来自于 <linux/types.h>
struct list_head {struct list_head 	*next;struct list_head  	*prev;
};// 	下面的宏及函数摘自于 <linux/list.h>
#define list_entry(ptr, type, member) \container_of(ptr, type, member)#define list_for_each(pos, head) \for (pos = (head)->next; pos != (head); pos = pos->next)	#define LIST_HEAD_INIT(name) { &(name), &(name) }#define LIST_HEAD(name) \struct list_head name = LIST_HEAD_INIT(name)void INIT_LIST_HEAD(struct list_head *list)
{list->next = list;list->prev = list;
}// 将 new 插入到 prev 和 next 的中间
void __list_add(struct list_head *new,struct list_head *prev,struct list_head *next)
{next->prev = new;new->next = next;new->prev = prev;prev->next = new;
}// 将 new 插入到 head 的后面
void list_add(struct list_head *new, struct list_head *head)
{__list_add(new, head, head->next);
}// 将 new 插入到 head 的前面
void list_add_tail(struct list_head *new, struct list_head *head)
{__list_add(new, head->prev, head);
}void __list_del(struct list_head * prev, struct list_head * next)
{next->prev = prev;prev->next = next;
}void __list_del_entry(struct list_head *entry)
{__list_del(entry->prev, entry->next);
}//
// 下面是业务层应用代码
//
// 应用层业务的结构体定义:
struct student
{int 				id;char 				name[128];int 				ch;		//语文分数int 				ma;		//数学分数int 				en;		//英语分数struct list_head 	list;	//包含一个 list_head
};void print_stu(struct student *st);int main()
{//// 0.1 测试宏 offsetof 使用//printf("id 		offset=%ld\n", offsetof(struct student, id));printf("name 	offset=%ld\n", offsetof(struct student, name));printf("ch 		offset=%ld\n", offsetof(struct student, ch));printf("ma 		offset=%ld\n", offsetof(struct student, ma));printf("en		offset=%ld\n", offsetof(struct student, en));printf("list	offset=%ld\n", offsetof(struct student, list));
/*	id              offset=0name    		offset=4ch              offset=132ma              offset=136en              offset=140list    		offset=144上面看出,宏offsetof(TYPE, MEMBER),就是返回成员MEMBER相对首的偏移!
*/// 0.2 测试宏 container_of 使用struct student stu={100, "std100", 78, 88, 98, NULL,};struct student *p=container_of(&stu.list, struct student, list);printf("&stu=%p\n", &stu);printf("&stu.list=%p\n", &stu.list);printf("&p=%p\n", p);
/*&stu=		0x7fffa2f4e1b0&stu.list=	0x7fffa2f4e240		0x240-0x1b0=144 即是上述list的偏移off&p=			0x7fffa2f4e1b0		上面看出,宏container_of(ptr, type, member) 即是返回结构体变量的首地址。那么问题来了,为何搞这么复杂的一个转换来获取首地址呢?直接使用&stu不就得到完了嘛!别急,看下面的应用!
*/int i=0;LIST_HEAD(head);//// 1. 创建5个结构体,使用 list 连起来//for(i=0; i<5; i++){struct student *st=malloc(sizeof(struct student));sprintf(st->name, "stu%02d", i+1);st->id=i+1;st->ch=rand()%100;st->ma=rand()%100;st->en=rand()%100;printf("id=%d, name=%s, ch=%d, ma=%d, en=%d\n",st->id, st->name, st->ch, st->ma, st->en);list_add(&(st->list), &head); //这里每次插入到head的后面!}
/*id=1, name=stu01, ch=83, ma=86, en=77id=2, name=stu02, ch=15, ma=93, en=35id=3, name=stu03, ch=86, ma=92, en=49id=4, name=stu04, ch=21, ma=62, en=27id=5, name=stu05, ch=90, ma=59, en=63注意上述创建的原始顺序!
*/printf("\n");	//// 2. 遍历打印//struct list_head *c;list_for_each(c, &head){struct student *st=container_of(c, struct student, list);print_stu(st);}
/*id=5, name=stu05, ch=90, ma=59, en=63id=4, name=stu04, ch=21, ma=62, en=27id=3, name=stu03, ch=86, ma=92, en=49id=2, name=stu02, ch=15, ma=93, en=35id=1, name=stu01, ch=83, ma=86, en=77因为是每次插入到head的后面,所以链表里面的顺序是5、4、3....
*/	//// 3. 查找一个节点//list_for_each(c, &head){struct student *st=container_of(c, struct student, list);if(st->id==3){printf("\nfind it!\n");print_stu(st);}}//// 4. 删除一个节点//list_for_each(c, &head){struct student *st=container_of(c, struct student, list);if(st->id==3){__list_del_entry(&st->list);free(st);}}//// 5. 再次输出打印//printf("\nreprintf:\n");		list_for_each(c, &head){struct student *st=container_of(c, struct student, list);print_stu(st);}	
}void print_stu(struct student *st)
{printf("id=%d, name=%s, ch=%d, ma=%d, en=%d\n",st->id, st->name, st->ch, st->ma, st->en);	
}

这篇关于linux内核中的offsetof、container_of、双链表list.h实践的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/187227

相关文章

SpringBoot简单整合ElasticSearch实践

《SpringBoot简单整合ElasticSearch实践》Elasticsearch支持结构化和非结构化数据检索,通过索引创建和倒排索引文档,提高搜索效率,它基于Lucene封装,分为索引库、类型... 目录一:ElasticSearch支持对结构化和非结构化的数据进行检索二:ES的核心概念Index:

Python数据验证神器Pydantic库的使用和实践中的避坑指南

《Python数据验证神器Pydantic库的使用和实践中的避坑指南》Pydantic是一个用于数据验证和设置的库,可以显著简化API接口开发,文章通过一个实际案例,展示了Pydantic如何在生产环... 目录1️⃣ 崩溃时刻:当你的API接口又双叒崩了!2️⃣ 神兵天降:3行代码解决验证难题3️⃣ 深度

Linux内核定时器使用及说明

《Linux内核定时器使用及说明》文章详细介绍了Linux内核定时器的特性、核心数据结构、时间相关转换函数以及操作API,通过示例展示了如何编写和使用定时器,包括按键消抖的应用... 目录1.linux内核定时器特征2.Linux内核定时器核心数据结构3.Linux内核时间相关转换函数4.Linux内核定时

C++ move 的作用详解及陷阱最佳实践

《C++move的作用详解及陷阱最佳实践》文章详细介绍了C++中的`std::move`函数的作用,包括为什么需要它、它的本质、典型使用场景、以及一些常见陷阱和最佳实践,感兴趣的朋友跟随小编一起看... 目录C++ move 的作用详解一、一句话总结二、为什么需要 move?C++98/03 的痛点⚡C++

Linux镜像文件制作方式

《Linux镜像文件制作方式》本文介绍了Linux镜像文件制作的过程,包括确定磁盘空间布局、制作空白镜像文件、分区与格式化、复制引导分区和其他分区... 目录1.确定磁盘空间布局2.制作空白镜像文件3.分区与格式化1) 分区2) 格式化4.复制引导分区5.复制其它分区1) 挂载2) 复制bootfs分区3)

C# List.Sort四种重载总结

《C#List.Sort四种重载总结》本文详细分析了C#中List.Sort()方法的四种重载形式及其实现原理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友... 目录1. Sort方法的四种重载2. 具体使用- List.Sort();- IComparable

Linux服务器数据盘移除并重新挂载的全过程

《Linux服务器数据盘移除并重新挂载的全过程》:本文主要介绍在Linux服务器上移除并重新挂载数据盘的整个过程,分为三大步:卸载文件系统、分离磁盘和重新挂载,每一步都有详细的步骤和注意事项,确保... 目录引言第一步:卸载文件系统第二步:分离磁盘第三步:重新挂载引言在 linux 服务器上移除并重新挂p

Linux下屏幕亮度的调节方式

《Linux下屏幕亮度的调节方式》文章介绍了Linux下屏幕亮度调节的几种方法,包括图形界面、手动调节(使用ACPI内核模块)和外接显示屏调节,以及自动调节软件(CaliseRedshift和Reds... 目录1 概述2 手动调节http://www.chinasem.cn2.1 手动屏幕调节2.2 外接显

Linux(centos7)虚拟机没有IP问题及解决方案

《Linux(centos7)虚拟机没有IP问题及解决方案》文章介绍了在CentOS7中配置虚拟机网络并使用Xshell连接虚拟机的步骤,首先,检查并配置网卡ens33的ONBOOT属性为yes,然后... 目录输入查看ZFhrxIP命令:ip addr查看,没有虚拟机IP修改ens33配置文件重启网络Xh

linux实现对.jar文件的配置文件进行修改

《linux实现对.jar文件的配置文件进行修改》文章讲述了如何使用Linux系统修改.jar文件的配置文件,包括进入文件夹、编辑文件、保存并退出编辑器,以及重新启动项目... 目录linux对.jar文件的配置文件进行修改第一步第二步 第三步第四步总结linux对.jar文件的配置文件进行修改第一步进