Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753310AbaGMKj2 (ORCPT ); Sun, 13 Jul 2014 06:39:28 -0400 Received: from mail-vc0-f182.google.com ([209.85.220.182]:46652 "EHLO mail-vc0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750941AbaGMKjW (ORCPT ); Sun, 13 Jul 2014 06:39:22 -0400 MIME-Version: 1.0 In-Reply-To: <53C08876.10209@zytor.com> References: <1404903678-8257-1-git-send-email-a.ryabinin@samsung.com> <53C08876.10209@zytor.com> Date: Sun, 13 Jul 2014 14:39:21 +0400 Message-ID: Subject: Re: [RFC/PATCH -next 00/21] Address sanitizer for kernel (kasan) - dynamic memory error detector. From: Andrey Ryabinin To: "H. Peter Anvin" Cc: Andrey Ryabinin , linux-kernel@vger.kernel.org, Dmitry Vyukov , Konstantin Serebryany , Alexey Preobrazhensky , Andrey Konovalov , Yuri Gribov , Konstantin Khlebnikov , Sasha Levin , Michal Marek , Russell King , Thomas Gleixner , Ingo Molnar , Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , linux-kbuild@vger.kernel.org, linux-arm-kernel@lists.infradead.org, x86@kernel.org, linux-mm@kvack.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2014-07-12 4:59 GMT+04:00 H. Peter Anvin : > On 07/09/2014 04:00 AM, Andrey Ryabinin wrote: >> >> Address sanitizer dedicates 1/8 of the low memory to the shadow memory and uses direct >> mapping with a scale and offset to translate a memory address to its corresponding >> shadow address. >> >> Here is function to translate address to corresponding shadow address: >> >> unsigned long kasan_mem_to_shadow(unsigned long addr) >> { >> return ((addr) >> KASAN_SHADOW_SCALE_SHIFT) >> + kasan_shadow_start - (PAGE_OFFSET >> KASAN_SHADOW_SCALE_SHIFT); >> } >> >> where KASAN_SHADOW_SCALE_SHIFT = 3. >> > > How does that work when memory is sparsely populated? > Sparsemem configurations currently may not work with kasan. I suppose I will have to move shadow area to vmalloc address space and make it (shadow) sparse too if needed. > -hpa > > -- > 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: email@kvack.org -- Best regards, Andrey Ryabinin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/