mbox series

[SRU,jammy,0/5] ftrace graph return address recovery support for s390x Livepatch

Message ID 20230330191101.2034512-1-john.cabaj@canonical.com
Headers show
Series ftrace graph return address recovery support for s390x Livepatch | expand

Message

John Cabaj March 30, 2023, 7:10 p.m. UTC
BugLink: https://bugs.launchpad.net/bugs/1639924 (Kernel livepatch support for s390x)

[Impact]
* Additional patch required to support Livepatch for s390x
* Fixes Livepatch transition issues when using ftrace graph tracing

[Fix]
87cbae6dcc95 ("kprobes: treewide: Remove trampoline_address from kretprobe_trampoline_handler()")
a9623ec2e36c ("kprobes: treewide: Make it harder to refer kretprobe_trampoline directly")
78ef68e5815f ("kprobes: Add kretprobe_find_ret_addr() for searching return address")
d8dd7cae7285 ("390/unwind: recover kretprobe modified return address in stacktrace")
da7a651be4dd ("s390/unwind: fix fgraph return address recovery")

[Test Case]
* Compile tested
* Boot tested
* Tested a Livepatch (patch to /proc/meminfo module)
* Tested Livepatch from ftrace graphed function (via https://github.com/SUSE/qa_test_klp/, klp_tc_10.sh)

[Where things could go wrong]
* Functionality already exists upstream, kernel was boot and Livepatch tested - should have no regressions


Masami Hiramatsu (3):
  kprobes: treewide: Remove trampoline_address from
    kretprobe_trampoline_handler()
  kprobes: treewide: Make it harder to refer kretprobe_trampoline
    directly
  kprobes: Add kretprobe_find_ret_addr() for searching return address

Sumanth Korikkar (1):
  s390/unwind: fix fgraph return address recovery

Vasily Gorbik (1):
  s390/unwind: recover kretprobe modified return address in stacktrace

 arch/arc/include/asm/kprobes.h                |   2 +-
 arch/arc/kernel/kprobes.c                     |  13 +-
 arch/arm/probes/kprobes/core.c                |   9 +-
 arch/arm64/include/asm/kprobes.h              |   2 +-
 arch/arm64/kernel/probes/kprobes.c            |   5 +-
 arch/arm64/kernel/probes/kprobes_trampoline.S |   4 +-
 arch/csky/include/asm/kprobes.h               |   2 +-
 arch/csky/kernel/probes/kprobes.c             |   4 +-
 arch/csky/kernel/probes/kprobes_trampoline.S  |   4 +-
 arch/ia64/kernel/kprobes.c                    |  11 +-
 arch/mips/kernel/kprobes.c                    |  15 ++-
 arch/parisc/kernel/kprobes.c                  |   6 +-
 arch/powerpc/include/asm/kprobes.h            |   2 +-
 arch/powerpc/kernel/kprobes.c                 |  18 +--
 arch/powerpc/kernel/optprobes.c               |   2 +-
 arch/powerpc/kernel/stacktrace.c              |   2 +-
 arch/riscv/include/asm/kprobes.h              |   2 +-
 arch/riscv/kernel/probes/kprobes.c            |   4 +-
 arch/riscv/kernel/probes/kprobes_trampoline.S |   4 +-
 arch/s390/include/asm/kprobes.h               |   2 +-
 arch/s390/include/asm/unwind.h                |  13 ++
 arch/s390/kernel/kprobes.c                    |  12 +-
 arch/s390/kernel/stacktrace.c                 |   2 +-
 arch/s390/kernel/unwind_bc.c                  |   8 +-
 arch/sh/include/asm/kprobes.h                 |   2 +-
 arch/sh/kernel/kprobes.c                      |  12 +-
 arch/sparc/include/asm/kprobes.h              |   2 +-
 arch/sparc/kernel/kprobes.c                   |  12 +-
 arch/x86/include/asm/kprobes.h                |   1 -
 arch/x86/kernel/kprobes/core.c                |  22 ++--
 include/linux/kprobes.h                       |  40 ++++++-
 kernel/kprobes.c                              | 112 +++++++++++++-----
 kernel/trace/trace_output.c                   |   2 +-
 33 files changed, 222 insertions(+), 131 deletions(-)

Comments

Stefan Bader March 31, 2023, 9:52 a.m. UTC | #1
On 30.03.23 21:10, John Cabaj wrote:
> BugLink: https://bugs.launchpad.net/bugs/1639924 (Kernel livepatch support for s390x)
> 
> [Impact]
> * Additional patch required to support Livepatch for s390x
> * Fixes Livepatch transition issues when using ftrace graph tracing
> 
> [Fix]
> 87cbae6dcc95 ("kprobes: treewide: Remove trampoline_address from kretprobe_trampoline_handler()")
> a9623ec2e36c ("kprobes: treewide: Make it harder to refer kretprobe_trampoline directly")
> 78ef68e5815f ("kprobes: Add kretprobe_find_ret_addr() for searching return address")
> d8dd7cae7285 ("390/unwind: recover kretprobe modified return address in stacktrace")
> da7a651be4dd ("s390/unwind: fix fgraph return address recovery")
> 
> [Test Case]
> * Compile tested
> * Boot tested
> * Tested a Livepatch (patch to /proc/meminfo module)
> * Tested Livepatch from ftrace graphed function (via https://github.com/SUSE/qa_test_klp/, klp_tc_10.sh)
> 
> [Where things could go wrong]
> * Functionality already exists upstream, kernel was boot and Livepatch tested - should have no regressions
> 
> 
> Masami Hiramatsu (3):
>    kprobes: treewide: Remove trampoline_address from
>      kretprobe_trampoline_handler()
>    kprobes: treewide: Make it harder to refer kretprobe_trampoline
>      directly
>    kprobes: Add kretprobe_find_ret_addr() for searching return address
> 
> Sumanth Korikkar (1):
>    s390/unwind: fix fgraph return address recovery
> 
> Vasily Gorbik (1):
>    s390/unwind: recover kretprobe modified return address in stacktrace
> 
>   arch/arc/include/asm/kprobes.h                |   2 +-
>   arch/arc/kernel/kprobes.c                     |  13 +-
>   arch/arm/probes/kprobes/core.c                |   9 +-
>   arch/arm64/include/asm/kprobes.h              |   2 +-
>   arch/arm64/kernel/probes/kprobes.c            |   5 +-
>   arch/arm64/kernel/probes/kprobes_trampoline.S |   4 +-
>   arch/csky/include/asm/kprobes.h               |   2 +-
>   arch/csky/kernel/probes/kprobes.c             |   4 +-
>   arch/csky/kernel/probes/kprobes_trampoline.S  |   4 +-
>   arch/ia64/kernel/kprobes.c                    |  11 +-
>   arch/mips/kernel/kprobes.c                    |  15 ++-
>   arch/parisc/kernel/kprobes.c                  |   6 +-
>   arch/powerpc/include/asm/kprobes.h            |   2 +-
>   arch/powerpc/kernel/kprobes.c                 |  18 +--
>   arch/powerpc/kernel/optprobes.c               |   2 +-
>   arch/powerpc/kernel/stacktrace.c              |   2 +-
>   arch/riscv/include/asm/kprobes.h              |   2 +-
>   arch/riscv/kernel/probes/kprobes.c            |   4 +-
>   arch/riscv/kernel/probes/kprobes_trampoline.S |   4 +-
>   arch/s390/include/asm/kprobes.h               |   2 +-
>   arch/s390/include/asm/unwind.h                |  13 ++
>   arch/s390/kernel/kprobes.c                    |  12 +-
>   arch/s390/kernel/stacktrace.c                 |   2 +-
>   arch/s390/kernel/unwind_bc.c                  |   8 +-
>   arch/sh/include/asm/kprobes.h                 |   2 +-
>   arch/sh/kernel/kprobes.c                      |  12 +-
>   arch/sparc/include/asm/kprobes.h              |   2 +-
>   arch/sparc/kernel/kprobes.c                   |  12 +-
>   arch/x86/include/asm/kprobes.h                |   1 -
>   arch/x86/kernel/kprobes/core.c                |  22 ++--
>   include/linux/kprobes.h                       |  40 ++++++-
>   kernel/kprobes.c                              | 112 +++++++++++++-----
>   kernel/trace/trace_output.c                   |   2 +-
>   33 files changed, 222 insertions(+), 131 deletions(-)
> 

Rejected for the following reasons:

- you cannot re-use a bug report which already is in progress

There was already a submission to jammy for this and it is already 
applied. There is no way we can get this tracked correctly. Open a new 
bug report for the additional patch and re-submit just that one.

-Stefan