Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Thu,  1 Mar 2018 14:19:47 +0400
From: kpark3469@...il.com
To: kernel-hardening@...ts.openwall.com
Cc: keescook@...omium.org,
	james.morse@....com,
	catalin.marinas@....com,
	will.deacon@....com,
	mark.rutland@....com,
	keun-o.park@...kmatter.ae
Subject: [PATCH 0/4] usercopy: reimplement arch_within_stack_frames

From: Sahara <keun-o.park@...kmatter.ae>

This series of patches introduce the arm64 arch_within_stack_frames
implementation using stacktrace functions. Also the base code is
moved from thread_info.h to stacktrace.h. x86 code is reimplemented
to use frame pointer unwinder functions.

Note: The code is still missing in case of using x86 ORC unwinder and
guess unwinder.

James Morse (1):
  arm64: usercopy: implement arch_within_stack_frames

Sahara (3):
  stacktrace: move arch_within_stack_frames from thread_info.h
  arm64: usercopy: consider dynamic array stack variable
  x86: usercopy: reimplement arch_within_stack_frames with unwinder

 arch/arm/kernel/stacktrace.c       |  1 -
 arch/arm64/Kconfig                 |  1 +
 arch/arm64/kernel/stacktrace.c     | 82 +++++++++++++++++++++++++++++++++++++-
 arch/cris/kernel/stacktrace.c      |  1 -
 arch/metag/kernel/stacktrace.c     |  2 -
 arch/mips/kernel/stacktrace.c      |  1 -
 arch/sh/kernel/stacktrace.c        |  1 -
 arch/sparc/kernel/stacktrace.c     |  1 -
 arch/um/kernel/stacktrace.c        |  1 -
 arch/unicore32/kernel/process.c    |  1 -
 arch/unicore32/kernel/stacktrace.c |  2 -
 arch/x86/include/asm/thread_info.h | 51 +-----------------------
 arch/x86/include/asm/unwind.h      |  5 +++
 arch/x86/kernel/Makefile           |  2 +-
 arch/x86/kernel/stacktrace.c       | 81 ++++++++++++++++++++++++++++++++++++-
 arch/x86/kernel/unwind_frame.c     |  4 +-
 arch/xtensa/kernel/stacktrace.c    |  1 -
 include/linux/page_ext.h           |  1 -
 include/linux/stacktrace.h         | 25 ++++++++++++
 include/linux/thread_info.h        | 21 ----------
 kernel/sysctl.c                    |  1 -
 mm/usercopy.c                      |  2 +-
 22 files changed, 196 insertions(+), 92 deletions(-)

-- 
2.7.4

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.