老僧非是爱花红

导航

内核hung检测机制(2)

实践部分

编写ko触发D状态死锁

hung_task.c


#include <linux/init.h>
#include <linux/module.h>

DEFINE_MUTEX(ckw_hung_task_mutex);

static int __init hung_task_init(void){

	pr_err("init \r\n");
	mutex_lock(&ckw_hung_task_mutex);
	pr_err("now we try to get mutex again, thus will triger hung task check\r\n");
	mutex_lock(&ckw_hung_task_mutex);
	pr_err("we should never get here\r\n");
	return 0;
}

static void __exit hung_task_exit(void){
	pr_err("exit \r\n");
}

module_init(hung_task_init);
module_exit(hung_task_exit);
MODULE_LICENSE("GPL");

Makefile

ifneq ($(KERNELRELEASE),)
obj-m += hung_task.o
else
KBUILD_DIR:=/lib/modules/$(shell uname -r)/build
PWD:= $(shell pwd)
all:
	make -C $(KBUILD_DIR) M=$(PWD) modules

clean:
	make -C $(KBUILD_DIR) M=$(PWD) modules clean
endif

实验结果

(默认超时时长为120秒才识别为hung状态,可通过echo 10 > /proc/sys/kernel/hung_task_timeout_secs调整)

如上图所示,ko中通过嵌套申请mutex锁导致D状态死锁,内核hungtaskd检测到死锁并输出相关日志。

注:此时hung住的进程为insmod,这时仍然处于进程上下文。

posted on 2023-01-07 00:52  老僧非是爱花红  阅读(52)  评论(0编辑  收藏  举报