实践部分
编写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,这时仍然处于进程上下文。
标签:pr,task,检测,init,mutex,内核,hung,exit From: https://www.cnblogs.com/ecjtusbs/p/17032022.html