Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:mm\kasan\generic_report.c Create Date:2022-07-28 15:54:18
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:get_wild_bug_type

Proto:static const char *get_wild_bug_type(struct kasan_access_info *info)

Type:char

Parameter:

TypeParameterName
struct kasan_access_info *info
99  bug_type = "unknown-crash"
101  If access_addr < PAGE_SIZE Then bug_type = "null-ptr-deref"
103  Else if access_addr < TASK_SIZE Then bug_type = "user-memory-access"
105  Else bug_type = "wild-memory-access"
108  Return bug_type
Caller
NameDescribe
get_bug_type