All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/6] KASAN for arm64
@ 2015-09-17  9:38 ` Andrey Ryabinin
  0 siblings, 0 replies; 76+ messages in thread
From: Andrey Ryabinin @ 2015-09-17  9:38 UTC (permalink / raw)
  To: linux-arm-kernel

As usual patches available in git
	git://github.com/aryabinin/linux.git kasan/arm64v6

Changes since v5:
 - Rebase on top of 4.3-rc1
 - Fixed EFI boot.
 - Updated Doc/features/KASAN.

Changes since v4:
 - Generate KASAN_SHADOW_OFFSET using 32 bit arithmetic
 - merge patches x86/kasan: switch to generic kasan_populate_zero_shadow()
    and mm: introduce generic kasan_populate_zero_shadow() into one.
 - remove useless check for start != 0 in clear_pgds()
 - Don't generate KASAN_SHADOW_OFFSET in Makefile for x86,
   assign it in Makefile.kasan if CONFIG_KASAN_SHADOW_OFFSET was defined.
 
Changes since v3:
 - Generate KASAN_SHADOW_OFFSET in Makefile
 - zero_p*_populate() functions now return void
 - Switch x86 to generic kasan_populate_zero_shadow() too
 - Add license headers
 - fix memleak in kasan_populate_zero_shadow:
       Following code could leak memory when pgd_populate() is nop:
                void *p = early_alloc(PAGE_SIZE, NUMA_NO_NODE);
                pgd_populate(&init_mm, pgd, p);
        This was replaced by:
                 pgd_populate(&init_mm, pgd, early_alloc(PAGE_SIZE, NUMA_NO_NODE));

Changes since v2:
 - Rebase on top of v4.2-rc3
 - Address feedback from Catalin.
 - Print memory assignment from Linus
 - Add message about KASAN being initialized

Changes since v1:
 - Address feedback from Catalin.
 - Generalize some kasan init code from arch/x86/mm/kasan_init_64.c
    and reuse it for arm64.
 - Some bugfixes, including:
        add missing arm64/include/asm/kasan.h
        add tlb flush after changing ttbr1
 - Add code comments.


Andrey Ryabinin (5):
  arm64: introduce VA_START macro - the first kernel virtual address.
  arm64: move PGD_SIZE definition to pgalloc.h
  x86, efi, kasan: #undef memset/memcpy/memmove per arch.
  arm64: add KASAN support
  Documentation/features/KASAN: arm64 supports KASAN now

Linus Walleij (1):
  ARM64: kasan: print memory assignment

 .../features/debug/KASAN/arch-support.txt          |   2 +-
 arch/arm64/Kconfig                                 |   1 +
 arch/arm64/Makefile                                |   7 +
 arch/arm64/include/asm/kasan.h                     |  36 +++++
 arch/arm64/include/asm/memory.h                    |   2 +
 arch/arm64/include/asm/pgalloc.h                   |   1 +
 arch/arm64/include/asm/pgtable.h                   |   9 +-
 arch/arm64/include/asm/string.h                    |  16 ++
 arch/arm64/kernel/Makefile                         |   2 +
 arch/arm64/kernel/arm64ksyms.c                     |   3 +
 arch/arm64/kernel/head.S                           |   3 +
 arch/arm64/kernel/module.c                         |  16 +-
 arch/arm64/kernel/setup.c                          |   4 +
 arch/arm64/lib/memcpy.S                            |   3 +
 arch/arm64/lib/memmove.S                           |   7 +-
 arch/arm64/lib/memset.S                            |   3 +
 arch/arm64/mm/Makefile                             |   3 +
 arch/arm64/mm/init.c                               |   6 +
 arch/arm64/mm/kasan_init.c                         | 165 +++++++++++++++++++++
 arch/arm64/mm/pgd.c                                |   2 -
 arch/x86/include/asm/efi.h                         |  12 ++
 drivers/firmware/efi/Makefile                      |   8 +
 drivers/firmware/efi/libstub/efistub.h             |   4 -
 lib/Makefile                                       |   3 +-
 scripts/Makefile.kasan                             |   4 +-
 25 files changed, 307 insertions(+), 15 deletions(-)
 create mode 100644 arch/arm64/include/asm/kasan.h
 create mode 100644 arch/arm64/mm/kasan_init.c

-- 
2.4.6

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

end of thread, other threads:[~2015-10-09 14:34 UTC | newest]

Thread overview: 76+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-17  9:38 [PATCH v6 0/6] KASAN for arm64 Andrey Ryabinin
2015-09-17  9:38 ` Andrey Ryabinin
2015-09-17  9:38 ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 1/6] arm64: introduce VA_START macro - the first kernel virtual address Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 2/6] arm64: move PGD_SIZE definition to pgalloc.h Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 3/6] x86, efi, kasan: #undef memset/memcpy/memmove per arch Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-29  8:38   ` Ingo Molnar
2015-09-29  8:38     ` Ingo Molnar
2015-09-29 15:34     ` Andrey Ryabinin
2015-09-29 15:34       ` Andrey Ryabinin
2015-09-29 15:34       ` Andrey Ryabinin
2015-09-29 15:34       ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 4/6] arm64: add KASAN support Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 5/6] ARM64: kasan: print memory assignment Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38 ` [PATCH v6 6/6] Documentation/features/KASAN: arm64 supports KASAN now Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-09-17  9:38   ` Andrey Ryabinin
2015-10-07 10:04 ` [PATCH v6 0/6] KASAN for arm64 Catalin Marinas
2015-10-07 10:04   ` Catalin Marinas
2015-10-07 10:04   ` Catalin Marinas
     [not found]   ` <20151007100411.GG3069-M2fw3Uu6cmfZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2015-10-08 10:36     ` Andrey Ryabinin
2015-10-08 10:36       ` Andrey Ryabinin
2015-10-08 10:36       ` Andrey Ryabinin
2015-10-08 10:36       ` Andrey Ryabinin
     [not found]       ` <CAPAsAGxR-yqtmFeo65Xw_0RQyEy=mN1uG=GKtqoMLr_x_N0u5w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-08 11:06         ` Mark Rutland
2015-10-08 11:06           ` Mark Rutland
2015-10-08 11:06           ` Mark Rutland
2015-10-08 11:06           ` Mark Rutland
2015-10-08 11:11       ` Mark Rutland
2015-10-08 11:11         ` Mark Rutland
2015-10-08 11:11         ` Mark Rutland
2015-10-08 11:23         ` Andrey Ryabinin
2015-10-08 11:23           ` Andrey Ryabinin
2015-10-08 11:23           ` Andrey Ryabinin
     [not found]           ` <56165228.8060201-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-10-08 12:09             ` Ard Biesheuvel
2015-10-08 12:09               ` Ard Biesheuvel
2015-10-08 12:09               ` Ard Biesheuvel
2015-10-08 12:09               ` Ard Biesheuvel
2015-10-08 15:11               ` Catalin Marinas
2015-10-08 15:11                 ` Catalin Marinas
2015-10-08 15:11                 ` Catalin Marinas
2015-10-08 16:01                 ` Ard Biesheuvel
2015-10-08 16:01                   ` Ard Biesheuvel
2015-10-08 16:01                   ` Ard Biesheuvel
     [not found]                 ` <20151008151144.GM17192-M2fw3Uu6cmfZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2015-10-08 16:07                   ` Andrey Ryabinin
2015-10-08 16:07                     ` Andrey Ryabinin
2015-10-08 16:07                     ` Andrey Ryabinin
2015-10-08 16:07                     ` Andrey Ryabinin
2015-10-09  9:32                     ` Andrey Ryabinin
2015-10-09  9:32                       ` Andrey Ryabinin
2015-10-09  9:32                       ` Andrey Ryabinin
2015-10-09  9:48                       ` Mark Rutland
2015-10-09  9:48                         ` Mark Rutland
2015-10-09  9:48                         ` Mark Rutland
2015-10-09 10:18                         ` Andrey Ryabinin
2015-10-09 10:18                           ` Andrey Ryabinin
2015-10-09 10:18                           ` Andrey Ryabinin
2015-10-09 10:18                           ` Andrey Ryabinin
     [not found]                           ` <CAPAsAGzOXOXDu+K3VG31BgcKCkk0LPmRv_YE4syNLCwr9h+2ug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-09 12:42                             ` Mark Rutland
2015-10-09 12:42                               ` Mark Rutland
2015-10-09 12:42                               ` Mark Rutland
2015-10-09 12:42                               ` Mark Rutland
2015-10-09 14:34                               ` Andrey Ryabinin
2015-10-09 14:34                                 ` Andrey Ryabinin
2015-10-09 14:34                                 ` Andrey Ryabinin
2015-10-09 14:34                                 ` Andrey Ryabinin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.