• V
    mm/vmalloc.c: fix kasan shadow poisoning size · c041098c
    Vincenzo Frascino 提交于
    The size of vm area can be affected by the presence or not of the guard
    page.  In particular when VM_NO_GUARD is present, the actual accessible
    size has to be considered like the real size minus the guard page.
    
    Currently kasan does not keep into account this information during the
    poison operation and in particular tries to poison the guard page as well.
    
    This approach, even if incorrect, does not cause an issue because the tags
    for the guard page are written in the shadow memory.  With the future
    introduction of the Tag-Based KASAN, being the guard page inaccessible by
    nature, the write tag operation on this page triggers a fault.
    
    Fix kasan shadow poisoning size invoking get_vm_area_size() instead of
    accessing directly the field in the data structure to detect the correct
    value.
    
    Link: https://lkml.kernel.org/r/20201027160213.32904-1-vincenzo.frascino@arm.com
    Fixes: d98c9e83 ("kasan: fix crashes on access to memory mapped by vm_map_ram()")
    Signed-off-by: NVincenzo Frascino <vincenzo.frascino@arm.com>
    Cc: Andrey Konovalov <andreyknvl@google.com>
    Cc: Dmitry Vyukov <dvyukov@google.com>
    Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
    Cc: Alexander Potapenko <glider@google.com>
    Cc: Marco Elver <elver@google.com>
    Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
    c041098c
vmalloc.c 91.4 KB