linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Alexander Potapenko <glider@google.com>
To: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Dmitriy Vyukov <dvyukov@google.com>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>,
	kasan-dev <kasan-dev@googlegroups.com>,
	Linux Memory Management List <linux-mm@kvack.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm-kasan-switch-slub-to-stackdepot-enable-memory-quarantine-for-slub-fix
Date: Fri, 15 Jul 2016 19:17:04 +0200	[thread overview]
Message-ID: <CAG_fn=VjFQs2xOwDH=v9FaKxJjy8rHSSNr3qMrANnFdOEhSXbg@mail.gmail.com> (raw)
In-Reply-To: <1468601423-28676-1-git-send-email-aryabinin@virtuozzo.com>

On Fri, Jul 15, 2016 at 6:50 PM, Andrey Ryabinin
<aryabinin@virtuozzo.com> wrote:
> - Remove CONFIG_SLAB ifdefs. The code works just fine with both allocators.
> - Reset metada offsets if metadata doesn't fit. Otherwise kasan_metadata_size()
> will give us the wrong results.
>
> Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
Acked-by: Alexander Potapenko <glider@google.com>
> ---
>  mm/kasan/kasan.c | 17 +++++------------
>  1 file changed, 5 insertions(+), 12 deletions(-)
>
> diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c
> index d92a7a2..b6f99e8 100644
> --- a/mm/kasan/kasan.c
> +++ b/mm/kasan/kasan.c
> @@ -372,9 +372,7 @@ void kasan_cache_create(struct kmem_cache *cache, size_t *size,
>                         unsigned long *flags)
>  {
>         int redzone_adjust;
> -#ifdef CONFIG_SLAB
>         int orig_size = *size;
> -#endif
>
>         /* Add alloc meta. */
>         cache->kasan_info.alloc_meta_offset = *size;
> @@ -392,25 +390,20 @@ void kasan_cache_create(struct kmem_cache *cache, size_t *size,
>         if (redzone_adjust > 0)
>                 *size += redzone_adjust;
>
> -#ifdef CONFIG_SLAB
> -       *size = min(KMALLOC_MAX_SIZE,
> -                   max(*size,
> -                       cache->object_size +
> -                       optimal_redzone(cache->object_size)));
> +       *size = min(KMALLOC_MAX_SIZE, max(*size, cache->object_size +
> +                                       optimal_redzone(cache->object_size)));
> +
>         /*
>          * If the metadata doesn't fit, don't enable KASAN at all.
>          */
>         if (*size <= cache->kasan_info.alloc_meta_offset ||
>                         *size <= cache->kasan_info.free_meta_offset) {
> +               cache->kasan_info.alloc_meta_offset = 0;
> +               cache->kasan_info.free_meta_offset = 0;
>                 *size = orig_size;
>                 return;
>         }
> -#else
> -       *size = max(*size,
> -                       cache->object_size +
> -                       optimal_redzone(cache->object_size));
>
> -#endif
>         *flags |= SLAB_KASAN;
>  }
>
> --
> 2.7.3
>



-- 
Alexander Potapenko
Software Engineer

Google Germany GmbH
Erika-Mann-Straße, 33
80636 München

Geschäftsführer: Matthew Scott Sucherman, Paul Terence Manicle
Registergericht und -nummer: Hamburg, HRB 86891
Sitz der Gesellschaft: Hamburg

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

      reply	other threads:[~2016-07-15 17:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-15 16:50 Andrey Ryabinin
2016-07-15 17:17 ` Alexander Potapenko [this message]

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='CAG_fn=VjFQs2xOwDH=v9FaKxJjy8rHSSNr3qMrANnFdOEhSXbg@mail.gmail.com' \
    --to=glider@google.com \
    --cc=akpm@linux-foundation.org \
    --cc=aryabinin@virtuozzo.com \
    --cc=dvyukov@google.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=kasan-dev@googlegroups.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /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