内核数据结构 通用链表 list
Linux kernel: 3.10.67
Linux内核使用一种双向循环链表 list_head 作为通用链表
include/linux/types.h
中定义 list_head 的数据结构,include/linux/list.h
中定义 list_head 的操作函数,其全部实现为inline函数
数据结构
1 | struct list_head { |
链表的表头和节点均用 list_head 结构表示,
list_head 结构包含两个list_head指针,分别指向链表的前一节点和后一节点
空链表只包含一个表头,其prev、next指针均指向表头自身;
表头的next指针指向链表的头节点,prev指针指向链表的尾节点;
头节点的prev指针指向表头,尾节点的next指针指向表头
操作函数
init
LIST_HEAD
1 |
|
静态声明并初始化链表头/链表节点
LIST_HEAD_INIT/INIT_LIST_HEAD
1 |
|
动态初始化链表头/链表节点,刚刚初始化的链表头/链表节点的prev、next指针均指向链表头/链表节点自身
add
1 | static inline void __list_add(struct list_head *new, |
在prev、next节点之间添加new节点
list_add
1 | static inline void list_add(struct list_head *new, struct list_head *head) |
在head链表的头部添加new节点(在head节点之后添加new节点)
list_add_tail
1 | static inline void list_add_tail(struct list_head *new, struct list_head *head) |
在head链表的尾部添加new节点(在head节点之前添加new节点)
delete
1 | static inline void __list_del(struct list_head * prev, struct list_head * next) |
删除prev、next链表节点之间的节点
1 | static inline void __list_del_entry(struct list_head *entry) |
删除entry链表节点
list_del
1 | static inline void list_del(struct list_head *entry) |
删除entry链表节点,并设置entry的prev、next指针的值为LIST_POISON1、LIST_POISON2
include/linux/poison.h
中定义
1 |
|
list corruption 包括以下几种情形
- 声明 list_head 类型的变量但未对其初始化,因而其prev、next指针的值为0(即NULL,static storage duration)或不确定(automatic storage duration)
- 使用bad pointer为prev、next指针赋值,从而导致prev、next指针的值为NULL
- 调用list_del()删除该链表节点,未对该链表节点重新初始化时再次引用该节点,此时prev、next指针的值为LIST_POISON1、LIST_POISON2,这种链表节点称为use-after-free
LIST_POISON1、LIST_POISON2实际为特殊的内存地址,主要用于调试,使用LIST_POISON1、LIST_POISON2的目的是 more easily detect different classes of list corruption,即将上述的错误3与其他错误区分开来,从而便于调试
list_del_init
1 | static inline void list_del_init(struct list_head *entry) |
删除entry链表节点,并初始化该链表节点,即将该链表节点的prev、next指针指向自身
replace
list_replace
1 | static inline void list_replace(struct list_head *old, struct list_head *new) |
以new节点替换old节点
list_replace_init
1 | static inline void list_replace_init(struct list_head *old, |
以new节点替换old节点,并初始化old节点
move
list_move
1 | static inline void list_move(struct list_head *list, struct list_head *head) |
将list链表节点从原链表中移除,并添加到新链表head的头部
list_move_tail
1 | static inline void list_move_tail(struct list_head *list, struct list_head *head) |
将list链表节点从原链表中移除,并添加到新链表head的尾部
list_rotate_left
1 | static inline void list_rotate_left(struct list_head *head) |
将head链表的头节点移到链表的尾部
judge
list_is_last
1 | static inline int list_is_last(const struct list_head *list, |
判断list节点是否为链表的尾节点,其中head是该链表的表头
list_empty
1 | static inline int list_empty(const struct list_head *head) |
判断head链表是否为空链表,即链表只包含一个表头
list_empty_careful
1 | static inline int list_empty_careful(const struct list_head *head) |
判断链表head是否为空链表,同时当前没有其他CPU修改该链表节点的prev、next成员
list_is_singular
1 | static inline int list_is_singular(const struct list_head *head) |
判断head链表中除了链表头,是否只有一个节点
cut
1 | static inline void __list_cut_position(struct list_head *list, |
将head链表中从head至entry的一段链表节点(不包括head,但包括entry)剪切出来,并添加到list链表的头部
list_cut_position
1 | static inline void list_cut_position(struct list_head *list, |
将head链表中从head至entry的一段链表节点剪切出来,并添加到list链表的头部,同时对参数的有效性进行检查
- 若head链表为空,则直接返回
- 若head链表只有一个链表节点,同时该节点不为entry,即entry节点不在head链表中,则函数直接返回
- 若链表头head与链表节点entry相等,则直接初始化list链表,此时会丢失list链表中的信息
splice
1 | static inline void __list_splice(const struct list_head *list, |
将list链表(不包括list链表头)添加到prev、next链表节点之间
list_splice
1 | static inline void list_splice(const struct list_head *list, |
将list链表(不包括list链表头)添加到head链表的头部
list_splice_tail
1 | static inline void list_splice_tail(struct list_head *list, |
将list链表(不包括list链表头)添加到head链表的尾部
list_splice_init
1 | static inline void list_splice_init(struct list_head *list, |
将list链表(不包括list链表头)添加到head链表的头部,同时初始化list链表头
list_splice_tail_init
1 | static inline void list_splice_tail_init(struct list_head *list, |
将list链表(不包括list链表头)添加到head链表的尾部,同时初始化list链表头
get the entry
head_list结构内嵌入type数据结构,约定该数据结构称为数据节点,该数据结构组成的链表称为数据链表
list_entry
1 |
|
head_list结构内嵌入type结构,当已知head_list的地址时,获取包含该head_list的数据节点的地址
@ptr 该head_list的地址
@member type数据结构中该head_list成员的名称
@type 该head_list所在的数据结构
list_first_entry
1 |
|
返回包含ptr链表的头节点的type类型的数据节点,list_head在该数据结构中的成员名称为member
list_first_entry_or_null
1 |
|
ptr链表非空时,返回包含ptr链表的头节点的type类型的数据节点,list_head在该数据结构中的成员名称为member;否则返回NULL
list_next_entry
1 |
|
返回包含ptr链表节点的下一个链表节点的数据节点,list_head在该数据结构中的成员名称为member
list_prev_entry
1 |
|
返回包含ptr链表节点的上一个链表节点的数据节点,list_head在该数据结构中的成员名称为member
list_safe_reset_next
1 |
|
返回pos数据节点的下一节点,并保存在n中,list_head在该数据结构中的成员名称为member
iterate the list
list_for_each
1 |
|
顺序遍历链表head,pos用来存储当前的链表节点
1 |
|
顺序遍历链表head,pos用来存储当前的链表节点,与list_for_each()完全相同
list_for_each_prev
1 |
|
逆序遍历链表head,pos用来存储当前的链表节点
list_for_each_safe
1 |
|
顺序遍历链表head
@pos 存储当前的链表节点
@n 备份当前链表节点的下一个节点,因而该函数在当前链表节点被移除时也能正常遍历整个链表
list_for_each_prev_safe
1 |
|
逆序遍历链表head
@pos 存储当前的链表节点
@n 备份当前链表节点的上一个节点,因而该函数在当前链表节点被移除时也能正常遍历整个链表
iterate the entry
list_for_each_entry
1 |
|
由链表头开始顺序遍历数据链表
@pos 存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
list_for_each_entry_reverse
1 |
|
由链表头开始逆序遍历数据链表
@pos 存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
list_prepare_entry
1 |
|
用于准备list_for_each_entry_continue()中的pos指针
pos为开始遍历的数据节点,若pos存在定义,则直接返回pos;否则返回包含head链表头的数据节点,即此时遍历实际由链表头开始
list_for_each_entry_continue
1 |
|
由特定数据节点pos之后开始顺序遍历数据链表,即实际由pos数据节点的下一节点开始遍历
@pos 由特定数据节点pos之后开始遍历数据链表,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
list_for_each_entry_continue_reverse
1 |
|
由特定数据节点pos之前开始逆序遍历数据链表,即实际由pos数据节点的上一节点开始遍历
@pos 由特定数据节点pos之前开始遍历数据链表,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
list_for_each_entry_from
1 |
|
由特定数据节点pos开始顺序遍历数据链表
@pos 由特定数据节点pos开始遍历数据链表,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
list_for_each_entry_safe
1 |
|
由链表头开始顺序遍历数据链表
@pos 存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
@n 备份当前数据节点的下一节点
list_for_each_entry_safe_continue
1 |
|
由特定数据节点pos之后开始顺序遍历数据链表,即实际由pos数据节点的下一节点开始遍历
@pos 由特定数据节点pos之后开始遍历数据链表,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
@n 备份当前数据节点的下一个数据节点
list_for_each_entry_safe_from
1 |
|
由特定数据节点pos开始顺序遍历数据链表
@pos 由特定数据节点pos开始遍历数据链表,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
@n 备份当前数据节点的下一个数据节点
list_for_each_entry_safe_reverse
1 |
|
由特定数据节点pos之前开始逆序遍历数据链表,即实际由pos数据节点的上一节点开始遍历
@pos 由特定数据节点pos之前开始遍历数据链表 ,同时pos用于存储当前的数据节点
@head 链表头
@member list_head在该数据结构中的名称
@n 备份当前数据节点的下一个数据节点