lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 17 Aug 2017 16:12:48 +0900
From:   Masami Hiramatsu <mhiramat@...nel.org>
To:     Ingo Molnar <mingo@...nel.org>
Cc:     Russell King <linux@...linux.org.uk>,
        Catalin Marinas <catalin.marinas@....com>,
        Will Deacon <will.deacon@....com>,
        Thomas Gleixner <tglx@...utronix.de>,
        Ingo Molnar <mingo@...hat.com>,
        "H . Peter Anvin" <hpa@...or.com>, Arnd Bergmann <arnd@...db.de>,
        Thierry Reding <treding@...dia.com>,
        Peter Zijlstra <peterz@...radead.org>,
        Andrew Morton <akpm@...ux-foundation.org>, x86@...nel.org,
        linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
        linux-arch@...r.kernel.org, Masami Hiramatsu <mhiramat@...nel.org>
Subject: [PATCH -tip 0/4] Add section address checking helper

Hi,

This series adds some address checking helpers in sections.h
so that each one doesn't need to implement it individually.
This series contains basically cleanup patches. Each patch
replaces some checking code with helper function but changes
no behavior.

 - [1/4]: x86: add in_entry_text() helper to cleanup kprobes
	  and unwind_frame code.
 - [2/4]: arm: move in_exception_text() to asm/sections.h and
	  cleanup using memory_contains().
 - [3/4]: arm64: move in_exception_text() to asm/sections.h and
	  cleanup using memory_contains().
 - [4/4]: add in_init_text() and in_core_text() and use it in
	  kernel/extable.c and kernel/kallsyms.c, also this
	  cleanup core_kernel_data using memory_contains().

By the way, I found core_kernel_text() and is_kernel_text()
has different behavior, is_kernel_text() checks arch dependent
text area and in_gate_area_no_mm(), but core_kernel_text()
doesn't. (and core_kernel_text() checks inittext section
while booting up)
Can we ignore this difference or better to merge it?

Thank you,
---

Masami Hiramatsu (4):
      x86: Add in_entry_text() helper function
      arm: Cleanup in_exception_text() and move it in asm/sections.h
      arm64: Cleanup in_exception_text() and move it in asm/sections.h
      extable: kallsyms: Add in_init_text() and in_core_text() helper


 arch/arm/include/asm/sections.h   |   17 +++++++++++++++++
 arch/arm/include/asm/traps.h      |   22 +---------------------
 arch/arm64/include/asm/sections.h |   16 ++++++++++++++++
 arch/arm64/include/asm/traps.h    |   16 ----------------
 arch/x86/include/asm/sections.h   |   15 +++++++++++++++
 arch/x86/kernel/kprobes/opt.c     |    5 +----
 arch/x86/kernel/unwind_frame.c    |   15 +--------------
 include/asm-generic/sections.h    |   24 ++++++++++++++++++++++++
 kernel/extable.c                  |   18 ++++--------------
 kernel/kallsyms.c                 |   14 +++-----------
 10 files changed, 82 insertions(+), 80 deletions(-)

--
Masami Hiramatsu (Linaro)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ