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:	Mon, 1 Dec 2014 16:45:13 +0800
From:	Wang Nan <wangnan0@...wei.com>
To:	<tixy@...aro.org>, <masami.hiramatsu.pt@...achi.com>,
	<linux@....linux.org.uk>
CC:	<lizefan@...wei.com>, <linux-kernel@...r.kernel.org>,
	<linux-arm-kernel@...ts.infradead.org>
Subject: [PATCH v11 0/7] ARM: kprobes: OPTPROBES and other improvements.

This is version 11 of optprobe related patch series. I decide to merge
all related patches in one series to make my work easier. This series is
grouped by 3 different parts:

Patch 1/7 moves all ARM probe related code to arch/arm/probes according
to suggestion from Russell King.

Patch 2/7 - 5/7 introduce checker framework and use it to detect stack
consumption for each probed instructions. Previous discussion can
be found from:

https://lkml.org/lkml/2014/11/22/18
https://lkml.org/lkml/2014/11/21/55
https://lkml.org/lkml/2014/11/18/26

Patch 6/7 and 7/7 are for real optprobe work. Previous discussion can
be found from:

https://lkml.org/lkml/2014/11/19/31
https://lkml.org/lkml/2014/11/18/41
https://lkml.org/lkml/2014/10/25/48
https://lkml.org/lkml/2014/10/22/254
https://lkml.org/lkml/2014/8/27/255
https://lkml.org/lkml/2014/8/12/12
https://lkml.org/lkml/2014/8/8/992
https://lkml.org/lkml/2014/8/8/5
https://lkml.org/lkml/2014/8/5/63

The main modifications in this series are reside in patch 7/7. Please refer
to its own commit message.

Masami Hiramatsu (1):
  kprobes: Pass the original kprobe for preparing optimized kprobe

Wang Nan (6):
  ARM: probes: move all probe code to dedicate directory
  ARM: kprobes: introduces checker
  ARM: kprobes: collects stack consumption for store instructions
  ARM: kprobes: disallow probing stack consuming instructions
  ARM: kprobes: Add test cases for stack consuming instructions
  ARM: kprobes: enable OPTPROBES for ARM 32

 arch/arm/Kconfig                                 |   1 +
 arch/arm/Makefile                                |   1 +
 arch/arm/{kernel => include/asm}/insn.h          |   0
 arch/arm/include/asm/kprobes.h                   |  35 ++-
 arch/arm/{kernel => include/asm}/patch.h         |   0
 arch/arm/include/asm/probes.h                    |  13 +
 arch/arm/kernel/Makefile                         |  16 +-
 arch/arm/kernel/entry-armv.S                     |   3 +-
 arch/arm/kernel/ftrace.c                         |   3 +-
 arch/arm/kernel/jump_label.c                     |   5 +-
 arch/arm/kernel/patch.c                          |   3 +-
 arch/arm/probes/Makefile                         |  16 ++
 arch/arm/{kernel => probes}/kprobes-arm.c        |   3 +
 arch/arm/{kernel => probes}/kprobes-common.c     |   0
 arch/arm/probes/kprobes-opt-arm.c                | 343 +++++++++++++++++++++++
 arch/arm/{kernel => probes}/kprobes-test-arm.c   |  29 +-
 arch/arm/{kernel => probes}/kprobes-test-thumb.c |  12 +
 arch/arm/{kernel => probes}/kprobes-test.c       |   0
 arch/arm/{kernel => probes}/kprobes-test.h       |   0
 arch/arm/{kernel => probes}/kprobes-thumb.c      |   4 +
 arch/arm/{kernel => probes}/kprobes.c            |  17 +-
 arch/arm/{kernel => probes}/kprobes.h            |   7 +-
 arch/arm/{kernel => probes}/probes-arm.c         |   5 +-
 arch/arm/{kernel => probes}/probes-arm.h         |   3 +-
 arch/arm/probes/probes-checkers-arm.c            |  99 +++++++
 arch/arm/probes/probes-checkers-common.c         | 101 +++++++
 arch/arm/probes/probes-checkers-thumb.c          | 110 ++++++++
 arch/arm/probes/probes-checkers.h                |  54 ++++
 arch/arm/{kernel => probes}/probes-thumb.c       |  10 +-
 arch/arm/{kernel => probes}/probes-thumb.h       |   6 +-
 arch/arm/{kernel => probes}/probes.c             |  70 ++++-
 arch/arm/{kernel => probes}/probes.h             |  11 +-
 arch/arm/{kernel => probes}/uprobes-arm.c        |   0
 arch/arm/{kernel => probes}/uprobes.c            |   2 +-
 arch/arm/{kernel => probes}/uprobes.h            |   0
 arch/x86/kernel/kprobes/opt.c                    |   3 +-
 include/linux/kprobes.h                          |   3 +-
 kernel/kprobes.c                                 |   8 +-
 38 files changed, 942 insertions(+), 54 deletions(-)
 rename arch/arm/{kernel => include/asm}/insn.h (100%)
 rename arch/arm/{kernel => include/asm}/patch.h (100%)
 create mode 100644 arch/arm/probes/Makefile
 rename arch/arm/{kernel => probes}/kprobes-arm.c (98%)
 rename arch/arm/{kernel => probes}/kprobes-common.c (100%)
 create mode 100644 arch/arm/probes/kprobes-opt-arm.c
 rename arch/arm/{kernel => probes}/kprobes-test-arm.c (97%)
 rename arch/arm/{kernel => probes}/kprobes-test-thumb.c (98%)
 rename arch/arm/{kernel => probes}/kprobes-test.c (100%)
 rename arch/arm/{kernel => probes}/kprobes-test.h (100%)
 rename arch/arm/{kernel => probes}/kprobes-thumb.c (99%)
 rename arch/arm/{kernel => probes}/kprobes.c (97%)
 rename arch/arm/{kernel => probes}/kprobes.h (85%)
 rename arch/arm/{kernel => probes}/probes-arm.c (99%)
 rename arch/arm/{kernel => probes}/probes-arm.h (95%)
 create mode 100644 arch/arm/probes/probes-checkers-arm.c
 create mode 100644 arch/arm/probes/probes-checkers-common.c
 create mode 100644 arch/arm/probes/probes-checkers-thumb.c
 create mode 100644 arch/arm/probes/probes-checkers.h
 rename arch/arm/{kernel => probes}/probes-thumb.c (99%)
 rename arch/arm/{kernel => probes}/probes-thumb.h (92%)
 rename arch/arm/{kernel => probes}/probes.c (86%)
 rename arch/arm/{kernel => probes}/probes.h (97%)
 rename arch/arm/{kernel => probes}/uprobes-arm.c (100%)
 rename arch/arm/{kernel => probes}/uprobes.c (99%)
 rename arch/arm/{kernel => probes}/uprobes.h (100%)

-- 
1.8.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ