Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1541099
| From | Dmitry Vyukov <dvyukov@google.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] kasan: Support for r/w instrumentation control |
| Date | 2016-12-13 15:20 +0100 |
| Message-ID | <sNW62-2d2-7@gated-at.bofh.it> (permalink) |
| References | <sNOrL-63l-13@gated-at.bofh.it> <sNR6h-7sY-23@gated-at.bofh.it> <sNRIZ-7VX-7@gated-at.bofh.it> <sNRIZ-7VX-5@gated-at.bofh.it> <sNW62-2d2-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, Dec 13, 2016 at 2:59 PM, Andrey Ryabinin <aryabinin@virtuozzo.com> wrote: > On 12/13/2016 12:38 PM, Dmitry Vyukov wrote: >> On Tue, Dec 13, 2016 at 10:20 AM, Andrey Ryabinin >> <aryabinin@virtuozzo.com> wrote: >>> >>> >>> On 12/13/2016 11:58 AM, Dmitry Vyukov wrote: >>> >>>> --- a/Documentation/dev-tools/kasan.rst >>>> +++ b/Documentation/dev-tools/kasan.rst >>>> @@ -40,6 +40,14 @@ similar to the following to the respective kernel Makefile: >>>> >>>> KASAN_SANITIZE := n >>>> >>>> +Sometimes it may be useful to disable instrumentation of reads, or writes >>>> +or both for the entire kernel. For example, if binary size is a concern, >>>> +it may be useful to disable instrumentation of reads to reduce binary size but >>>> +still catch more harmful bugs on writes. Or, if one is interested only in >>>> +sanitization of a particular module and performance is a concern, she can >>>> +disable instrumentation of both reads and writes for kernel code. >>>> +Instrumentation can be disabled with CONFIG_KASAN_READS and >>>> CONFIG_KASAN_WRITES. >>>> + >>> >>> I don't understand this. How this can be related to modules? Configs are global. >>> You can't just disable/enable config per module. >> >> >> Build everything without instrumentation. Then enable instrumentation >> and do "make lib/test_kasan.ko". >> Or build everything, copy out bzImage, change config, build everything again. > > Yeah, this is soooooo convenient... > > Seriously speaking, per-file instrumentation is absolutely irrelevant to this patch and should have been > addressed from a different angle. E.g. see how UBSAN/GCOV/KCOV do that. KASAN already has that functionality (i.e. KASAN_SANITIZE_main.o := n). But that functionality is intended for cases when we want to persistently disable instrumentation of some files (e.g. if they cause crashes of false positives). CONFIG_KASAN_READS/WRITES is intended for situations when one wants to disable instrumentation wholesale. > As for this patch, I'd say only one option would be enough - KASAN_DONT_SANITIZE_READS. > Nobody wants to sanitize only reads without writes, right? Writes are fewer and more dangerous. I've asked this question in v1. See the case related to modules -- one can use completely uninstrumented kernel, but load an instrumented modules.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2] kasan: Support for r/w instrumentation control Maninder Singh <maninder1.s@samsung.com> - 2016-12-13 07:10 +0100
Re: [PATCH v2] kasan: Support for r/w instrumentation control Dmitry Vyukov <dvyukov@google.com> - 2016-12-13 10:00 +0100
Re: [PATCH v2] kasan: Support for r/w instrumentation control Dmitry Vyukov <dvyukov@google.com> - 2016-12-13 10:40 +0100
Re: [PATCH v2] kasan: Support for r/w instrumentation control Dmitry Vyukov <dvyukov@google.com> - 2016-12-13 15:20 +0100
Re: [PATCH v2] kasan: Support for r/w instrumentation control Dmitry Vyukov <dvyukov@google.com> - 2016-12-16 11:50 +0100
csiph-web