linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] KASAN support for RISC-V
@ 2019-10-02  6:16 Nick Hu
  2019-10-02  6:16 ` [PATCH v2 1/2] kasan: Archs don't check memmove if not support it Nick Hu
  2019-10-02  6:16 ` [PATCH v2 2/2] riscv: Add KASAN support Nick Hu
  0 siblings, 2 replies; 4+ messages in thread
From: Nick Hu @ 2019-10-02  6:16 UTC (permalink / raw)
  To: alankao, paul.walmsley, palmer, aou, aryabinin, glider, dvyukov,
	alexios.zavras, allison, Anup.Patel, tglx, gregkh, atish.patra,
	kstewart, linux-riscv, linux-kernel, kasan-dev, linux-mm
  Cc: Nick Hu

KASAN is an important runtime memory debugging feature in linux kernel
which can detect use-after-free and out-of- bounds problems.

Changes in v2:
  - Remove the porting of memmove and exclude the check instead.
  - Fix some code noted by Christoph Hellwig

Nick Hu (2):
  kasan: Archs don't check memmove if not support it.
  riscv: Add KASAN support

 arch/riscv/Kconfig                  |   1 +
 arch/riscv/include/asm/kasan.h      |  27 ++++++++
 arch/riscv/include/asm/pgtable-64.h |   5 ++
 arch/riscv/include/asm/string.h     |   9 +++
 arch/riscv/kernel/head.S            |   3 +
 arch/riscv/kernel/riscv_ksyms.c     |   2 +
 arch/riscv/kernel/setup.c           |   5 ++
 arch/riscv/kernel/vmlinux.lds.S     |   1 +
 arch/riscv/lib/memcpy.S             |   5 +-
 arch/riscv/lib/memset.S             |   5 +-
 arch/riscv/mm/Makefile              |   6 ++
 arch/riscv/mm/kasan_init.c          | 104 ++++++++++++++++++++++++++++
 mm/kasan/common.c                   |   2 +
 13 files changed, 171 insertions(+), 4 deletions(-)
 create mode 100644 arch/riscv/include/asm/kasan.h
 create mode 100644 arch/riscv/mm/kasan_init.c

-- 
2.17.0


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-02 10:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02  6:16 [PATCH v2 0/2] KASAN support for RISC-V Nick Hu
2019-10-02  6:16 ` [PATCH v2 1/2] kasan: Archs don't check memmove if not support it Nick Hu
2019-10-02  6:16 ` [PATCH v2 2/2] riscv: Add KASAN support Nick Hu
2019-10-02 10:55   ` Andrey Konovalov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).