Skip to content

Commit

Permalink
kasan: simplify kasan_complete_mode_report_info for tag-based modes
Browse files Browse the repository at this point in the history
memcpy the alloc/free tracks when collecting the information about a bad
access instead of copying fields one by one.

Link: https://lkml.kernel.org/r/[email protected]
Fixes: 5d4c6ac ("kasan: record and report more information")
Signed-off-by: Andrey Konovalov <[email protected]>
Reviewed-by: Marco Elver <[email protected]>
Cc: Alexander Potapenko <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Dmitry Vyukov <[email protected]>
Cc: Juntong Deng <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
xairy authored and akpm00 committed Dec 29, 2023
1 parent fd4064f commit a3fbe30
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions mm/kasan/report_tags.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,6 @@ static const char *get_common_bug_type(struct kasan_report_info *info)
return "invalid-access";
}

#ifdef CONFIG_KASAN_EXTRA_INFO
static void kasan_complete_extra_report_info(struct kasan_track *track,
struct kasan_stack_ring_entry *entry)
{
track->cpu = entry->track.cpu;
track->timestamp = entry->track.timestamp;
}
#endif /* CONFIG_KASAN_EXTRA_INFO */

void kasan_complete_mode_report_info(struct kasan_report_info *info)
{
unsigned long flags;
Expand Down Expand Up @@ -80,11 +71,8 @@ void kasan_complete_mode_report_info(struct kasan_report_info *info)
if (free_found)
break;

info->free_track.pid = entry->track.pid;
info->free_track.stack = entry->track.stack;
#ifdef CONFIG_KASAN_EXTRA_INFO
kasan_complete_extra_report_info(&info->free_track, entry);
#endif /* CONFIG_KASAN_EXTRA_INFO */
memcpy(&info->free_track, &entry->track,
sizeof(info->free_track));
free_found = true;

/*
Expand All @@ -98,11 +86,8 @@ void kasan_complete_mode_report_info(struct kasan_report_info *info)
if (alloc_found)
break;

info->alloc_track.pid = entry->track.pid;
info->alloc_track.stack = entry->track.stack;
#ifdef CONFIG_KASAN_EXTRA_INFO
kasan_complete_extra_report_info(&info->alloc_track, entry);
#endif /* CONFIG_KASAN_EXTRA_INFO */
memcpy(&info->alloc_track, &entry->track,
sizeof(info->alloc_track));
alloc_found = true;

/*
Expand Down

0 comments on commit a3fbe30

Please sign in to comment.