Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1453277

Re: [PATCH v8 2/3] mm, kasan: align free_meta_offset on sizeof(void*)

From Alexander Potapenko <glider@google.com>
Newsgroups linux.kernel
Subject Re: [PATCH v8 2/3] mm, kasan: align free_meta_offset on sizeof(void*)
Date 2016-08-01 17:30 +0200
Message-ID <s1nke-834-21@gated-at.bofh.it> (permalink)
References <rZVzH-8cC-13@gated-at.bofh.it> <rZVzI-8cC-31@gated-at.bofh.it> <s1mRc-7Ds-15@gated-at.bofh.it> <s1mRc-7Ds-13@gated-at.bofh.it> <s1nke-834-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, Aug 1, 2016 at 5:11 PM, Andrey Ryabinin <aryabinin@virtuozzo.com> wrote:
>
>
> On 08/01/2016 05:56 PM, Alexander Potapenko wrote:
>> On Mon, Aug 1, 2016 at 4:55 PM, Andrey Ryabinin <aryabinin@virtuozzo.com> wrote:
>>>
>>>
>>> On 07/28/2016 06:31 PM, Alexander Potapenko wrote:
>>>> When free_meta_offset is not zero, it is usually aligned on 4 bytes,
>>>> because the size of preceding kasan_alloc_meta is aligned on 4 bytes.
>>>> As a result, accesses to kasan_free_meta fields may be misaligned.
>>>>
>>>> Signed-off-by: Alexander Potapenko <glider@google.com>
>>>> ---
>>>>  mm/kasan/kasan.c | 3 ++-
>>>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c
>>>> index 6845f92..0379551 100644
>>>> --- a/mm/kasan/kasan.c
>>>> +++ b/mm/kasan/kasan.c
>>>> @@ -390,7 +390,8 @@ void kasan_cache_create(struct kmem_cache *cache, size_t *size,
>>>>       /* Add free meta. */
>>>>       if (cache->flags & SLAB_DESTROY_BY_RCU || cache->ctor ||
>>>>           cache->object_size < sizeof(struct kasan_free_meta)) {
>>>> -             cache->kasan_info.free_meta_offset = *size;
>>>> +             cache->kasan_info.free_meta_offset =
>>>> +                     ALIGN(*size, sizeof(void *));
>>>
>>> This cannot work.
>> Well, it does, at least on my tests.
>
> JFYI. You aligned only meta offset, but didn't change the size, so after the '*size += sizeof(struct kasan_free_meta);'
> *size may point into the middle of free_meta struct.
> Plus, alignment wasn't taken into account in kasan_metadata_size().
That's what I do in PATCH 3/3
(https://marc.info/?l=linux-mm&m=146971994204507&w=2)


-- 
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

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v8 0/3] mm, kasan: stackdepot and quarantine for SLUB Alexander Potapenko <glider@google.com> - 2016-07-28 17:40 +0200
  [PATCH v8 1/3] mm, kasan: account for object redzone in SLUB's nearest_obj() Alexander Potapenko <glider@google.com> - 2016-07-28 17:40 +0200
  [PATCH v8 2/3] mm, kasan: align free_meta_offset on sizeof(void*) Alexander Potapenko <glider@google.com> - 2016-07-28 17:40 +0200
    Re: [PATCH v8 2/3] mm, kasan: align free_meta_offset on sizeof(void*) Alexander Potapenko <glider@google.com> - 2016-08-01 17:00 +0200
      Re: [PATCH v8 2/3] mm, kasan: align free_meta_offset on sizeof(void*) Alexander Potapenko <glider@google.com> - 2016-08-01 17:30 +0200
  [PATCH v8 3/3] mm, kasan: switch SLUB to stackdepot, enable memory quarantine for SLUB Alexander Potapenko <glider@google.com> - 2016-07-28 17:40 +0200

csiph-web