From: Dmitry Vyukov <dvyukov@google.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com>,
Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Alexander Potapenko <glider@google.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Vincenzo Frascino <vincenzo.frascino@arm.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
chinwen.chang@mediatek.com, yee.lee@mediatek.com,
casper.li@mediatek.com, andrew.yang@mediatek.com,
kasan-dev@googlegroups.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Subject: Re: [PATCH] kasan: separate double free case from invalid free
Date: Mon, 4 Jul 2022 09:46:04 +0200 [thread overview]
Message-ID: <CACT4Y+Y3we9jdc1gJ_rhJZg7YWXm7F6F245ZQQFMknrxXRuo7Q@mail.gmail.com> (raw)
In-Reply-To: <20220703161552.6a3304c8d316e4fdcce42caa@linux-foundation.org>
On Mon, 4 Jul 2022 at 01:15, Andrew Morton <akpm@linux-foundation.org> wrote:
>
> On Wed, 15 Jun 2022 14:22:18 +0800 Kuan-Ying Lee <Kuan-Ying.Lee@mediatek.com> wrote:
>
> > Currently, KASAN describes all invalid-free/double-free bugs as
> > "double-free or invalid-free". This is ambiguous.
> >
> > KASAN should report "double-free" when a double-free is a more
> > likely cause (the address points to the start of an object) and
> > report "invalid-free" otherwise [1].
> >
> > [1] https://bugzilla.kernel.org/show_bug.cgi?id=212193
> >
> > ...
>
> Could we please have some review of this?
Looks reasonable to me.
Looking through git log it seems the only reason to combine them was
laziness/didn't seem important enough.
Reviewed-by: Dmitry Vyukov <dvyukov@google.com>
I will update syzkaller parsing of bug messages to not produce
duplicates for existing double-frees.
Not sure if anything needs to be done for other kernel testing systems.
> > diff --git a/mm/kasan/common.c b/mm/kasan/common.c
> > index c40c0e7b3b5f..707c3a527fcb 100644
> > --- a/mm/kasan/common.c
> > +++ b/mm/kasan/common.c
> > @@ -343,7 +343,7 @@ static inline bool ____kasan_slab_free(struct kmem_cache *cache, void *object,
> >
> > if (unlikely(nearest_obj(cache, virt_to_slab(object), object) !=
> > object)) {
> > - kasan_report_invalid_free(tagged_object, ip);
> > + kasan_report_invalid_free(tagged_object, ip, KASAN_REPORT_INVALID_FREE);
> > return true;
> > }
> >
> > @@ -352,7 +352,7 @@ static inline bool ____kasan_slab_free(struct kmem_cache *cache, void *object,
> > return false;
> >
> > if (!kasan_byte_accessible(tagged_object)) {
> > - kasan_report_invalid_free(tagged_object, ip);
> > + kasan_report_invalid_free(tagged_object, ip, KASAN_REPORT_DOUBLE_FREE);
> > return true;
> > }
> >
> > @@ -377,12 +377,12 @@ bool __kasan_slab_free(struct kmem_cache *cache, void *object,
> > static inline bool ____kasan_kfree_large(void *ptr, unsigned long ip)
> > {
> > if (ptr != page_address(virt_to_head_page(ptr))) {
> > - kasan_report_invalid_free(ptr, ip);
> > + kasan_report_invalid_free(ptr, ip, KASAN_REPORT_INVALID_FREE);
> > return true;
> > }
> >
> > if (!kasan_byte_accessible(ptr)) {
> > - kasan_report_invalid_free(ptr, ip);
> > + kasan_report_invalid_free(ptr, ip, KASAN_REPORT_DOUBLE_FREE);
> > return true;
> > }
> >
> > diff --git a/mm/kasan/kasan.h b/mm/kasan/kasan.h
> > index 610d60d6e5b8..01c03e45acd4 100644
> > --- a/mm/kasan/kasan.h
> > +++ b/mm/kasan/kasan.h
> > @@ -125,6 +125,7 @@ static inline bool kasan_sync_fault_possible(void)
> > enum kasan_report_type {
> > KASAN_REPORT_ACCESS,
> > KASAN_REPORT_INVALID_FREE,
> > + KASAN_REPORT_DOUBLE_FREE,
> > };
> >
> > struct kasan_report_info {
> > @@ -277,7 +278,7 @@ static inline void kasan_print_address_stack_frame(const void *addr) { }
> >
> > bool kasan_report(unsigned long addr, size_t size,
> > bool is_write, unsigned long ip);
> > -void kasan_report_invalid_free(void *object, unsigned long ip);
> > +void kasan_report_invalid_free(void *object, unsigned long ip, enum kasan_report_type type);
> >
> > struct page *kasan_addr_to_page(const void *addr);
> > struct slab *kasan_addr_to_slab(const void *addr);
> > diff --git a/mm/kasan/report.c b/mm/kasan/report.c
> > index b341a191651d..fe3f606b3a98 100644
> > --- a/mm/kasan/report.c
> > +++ b/mm/kasan/report.c
> > @@ -176,8 +176,12 @@ static void end_report(unsigned long *flags, void *addr)
> > static void print_error_description(struct kasan_report_info *info)
> > {
> > if (info->type == KASAN_REPORT_INVALID_FREE) {
> > - pr_err("BUG: KASAN: double-free or invalid-free in %pS\n",
> > - (void *)info->ip);
> > + pr_err("BUG: KASAN: invalid-free in %pS\n", (void *)info->ip);
> > + return;
> > + }
> > +
> > + if (info->type == KASAN_REPORT_DOUBLE_FREE) {
> > + pr_err("BUG: KASAN: double-free in %pS\n", (void *)info->ip);
> > return;
> > }
> >
> > @@ -433,7 +437,7 @@ static void print_report(struct kasan_report_info *info)
> > }
> > }
> >
> > -void kasan_report_invalid_free(void *ptr, unsigned long ip)
> > +void kasan_report_invalid_free(void *ptr, unsigned long ip, enum kasan_report_type type)
> > {
> > unsigned long flags;
> > struct kasan_report_info info;
> > @@ -448,7 +452,7 @@ void kasan_report_invalid_free(void *ptr, unsigned long ip)
> >
> > start_report(&flags, true);
> >
> > - info.type = KASAN_REPORT_INVALID_FREE;
> > + info.type = type;
> > info.access_addr = ptr;
> > info.first_bad_addr = kasan_reset_tag(ptr);
> > info.access_size = 0;
> > --
> > 2.18.0
> >
next prev parent reply other threads:[~2022-07-04 7:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-15 6:22 Kuan-Ying Lee
2022-07-03 23:15 ` Andrew Morton
2022-07-04 7:46 ` Dmitry Vyukov [this message]
2022-07-12 20:36 ` Andrey Konovalov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CACT4Y+Y3we9jdc1gJ_rhJZg7YWXm7F6F245ZQQFMknrxXRuo7Q@mail.gmail.com \
--to=dvyukov@google.com \
--cc=Kuan-Ying.Lee@mediatek.com \
--cc=akpm@linux-foundation.org \
--cc=andrew.yang@mediatek.com \
--cc=andreyknvl@gmail.com \
--cc=casper.li@mediatek.com \
--cc=chinwen.chang@mediatek.com \
--cc=glider@google.com \
--cc=kasan-dev@googlegroups.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-mm@kvack.org \
--cc=matthias.bgg@gmail.com \
--cc=ryabinin.a.a@gmail.com \
--cc=vincenzo.frascino@arm.com \
--cc=yee.lee@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox