From nobody Fri Dec 19 06:31:34 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0C24CE7A8A for ; Sun, 24 Sep 2023 13:38:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231276AbjIXNiY (ORCPT ); Sun, 24 Sep 2023 09:38:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60550 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230306AbjIXNh6 (ORCPT ); Sun, 24 Sep 2023 09:37:58 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 87466171B for ; Sun, 24 Sep 2023 06:37:32 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CB2F9C433B9; Sun, 24 Sep 2023 13:37:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695562651; bh=zU6UylpWMhPcntmE4WUBkG80m4hiVOExDKzxHQrqwhQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZqPcYsbqMLiLbpcfHCwh07roWj6RSCGhOTxB51sOEG8nlGLfdVQXdMrr6blomR6QZ SuCGpfrfjSRb+y93ncmw10Oz978PpXIvEtJlrWM6pRoWORsgv2wLCjRYHvAU0p31C6 GVhnp3XTxLRED9uh32ukhfRHXrh4+k1+gnP5HOoYfFFJyAZu4otNhFToVm9y2HieYl iAmTpbX+fG+UeQWRUj9ZVp7rbVHma8Hssi8Qcp7BXSfVxuf9mEtpw//tNLW1U6Dcem 9hRCT9cfL3R9u0K359sTpg1ZGlQVnHNpIi3m5CSX5z35uqzD5UNbUiim43xlAU4PGF 1eLs7YeqE8Hxg== From: "Masami Hiramatsu (Google)" To: Alexei Starovoitov , Steven Rostedt , Florent Revest Cc: linux-trace-kernel@vger.kernel.org, LKML , Martin KaFai Lau , bpf , Sven Schnelle , Alexei Starovoitov , Jiri Olsa , Arnaldo Carvalho de Melo , Daniel Borkmann , Alan Maguire , Mark Rutland , Peter Zijlstra , Thomas Gleixner , Guo Ren Subject: [PATCH v5 08/12] tracing: Add ftrace_fill_perf_regs() for perf event Date: Sun, 24 Sep 2023 22:37:25 +0900 Message-Id: <169556264478.146934.11293821252078942426.stgit@devnote2> X-Mailer: git-send-email 2.34.1 In-Reply-To: <169556254640.146934.5654329452696494756.stgit@devnote2> References: <169556254640.146934.5654329452696494756.stgit@devnote2> User-Agent: StGit/0.19 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Masami Hiramatsu (Google) Add ftrace_fill_perf_regs() which should be compatible with the perf_fetch_caller_regs(). In other words, the pt_regs returned from the ftrace_fill_perf_regs() must satisfy 'user_mode(regs) =3D=3D false' and can= be used for stack tracing. Signed-off-by: Masami Hiramatsu (Google) --- arch/arm64/include/asm/ftrace.h | 7 +++++++ arch/powerpc/include/asm/ftrace.h | 7 +++++++ arch/s390/include/asm/ftrace.h | 5 +++++ arch/x86/include/asm/ftrace.h | 7 +++++++ include/linux/ftrace.h | 31 +++++++++++++++++++++++++++++++ 5 files changed, 57 insertions(+) diff --git a/arch/arm64/include/asm/ftrace.h b/arch/arm64/include/asm/ftrac= e.h index 5ad24f315d52..5fbe8fe3e8a5 100644 --- a/arch/arm64/include/asm/ftrace.h +++ b/arch/arm64/include/asm/ftrace.h @@ -148,6 +148,13 @@ ftrace_partial_regs(const struct ftrace_regs *fregs, s= truct pt_regs *regs) return regs; } =20 +#define arch_ftrace_fill_perf_regs(fregs, _regs) do { \ + (_regs)->pc =3D (fregs)->pc; \ + (_regs)->regs[29] =3D (fregs)->fp; \ + (_regs)->sp =3D (fregs)->sp; \ + (_regs)->pstate =3D PSR_MODE_EL1h; \ + } while (0) + int ftrace_regs_query_register_offset(const char *name); =20 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec); diff --git a/arch/powerpc/include/asm/ftrace.h b/arch/powerpc/include/asm/f= trace.h index 9e5a39b6a311..53fa39ef476b 100644 --- a/arch/powerpc/include/asm/ftrace.h +++ b/arch/powerpc/include/asm/ftrace.h @@ -52,6 +52,13 @@ static __always_inline struct pt_regs *arch_ftrace_get_r= egs(struct ftrace_regs * return fregs->regs.msr ? &fregs->regs : NULL; } =20 +#define arch_ftrace_fill_perf_regs(fregs, _regs) do { \ + (_regs)->result =3D 0; \ + (_regs)->nip =3D (fregs)->regs.nip; \ + (_regs)->gpr[1] =3D (fregs)->regs.gpr[1]; \ + asm volatile("mfmsr %0" : "=3Dr" ((_regs)->msr)); \ + } while (0) + static __always_inline void ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs, unsigned long ip) diff --git a/arch/s390/include/asm/ftrace.h b/arch/s390/include/asm/ftrace.h index 6de3bf4d0092..94ceb9564d44 100644 --- a/arch/s390/include/asm/ftrace.h +++ b/arch/s390/include/asm/ftrace.h @@ -99,6 +99,11 @@ ftrace_regs_set_instruction_pointer(struct ftrace_regs *= fregs, #define ftrace_regs_query_register_offset(name) \ regs_query_register_offset(name) =20 +#define arch_ftrace_fill_perf_regs(fregs, _regs) do { \ + (_regs)->psw.addr =3D (fregs)->regs.psw.addr; \ + (_regs)->gprs[15] =3D (fregs)->regs.gprs[15]; \ + } while (0) + #endif /* CONFIG_FUNCTION_TRACER */ =20 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS diff --git a/arch/x86/include/asm/ftrace.h b/arch/x86/include/asm/ftrace.h index 897cf02c20b1..800c2af8af01 100644 --- a/arch/x86/include/asm/ftrace.h +++ b/arch/x86/include/asm/ftrace.h @@ -48,6 +48,13 @@ arch_ftrace_get_regs(struct ftrace_regs *fregs) return &fregs->regs; } =20 +#define arch_ftrace_fill_perf_regs(fregs, _regs) do { \ + (_regs)->ip =3D (fregs)->regs.ip; \ + (_regs)->sp =3D (fregs)->regs.sp; \ + (_regs)->cs =3D __KERNEL_CS; \ + (_regs)->flags =3D 0; \ + } while (0) + #define ftrace_regs_set_instruction_pointer(fregs, _ip) \ do { (fregs)->regs.ip =3D (_ip); } while (0) =20 diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 819511ab75b7..962c3e6c5e3b 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h @@ -190,6 +190,37 @@ ftrace_partial_regs(struct ftrace_regs *fregs, struct = pt_regs *regs) =20 #endif /* !CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS || CONFIG_HAVE_PT_REGS_TO_= FTRACE_REGS_CAST */ =20 +#ifdef CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS + +/* + * Please define arch dependent pt_regs which compatible to the + * perf_arch_fetch_caller_regs() but based on ftrace_regs. + * This requires + * - user_mode(_regs) returns false (always kernel mode). + * - able to use the _regs for stack trace. + */ +#ifndef arch_ftrace_fill_perf_regs +/* As same as perf_arch_fetch_caller_regs(), do nothing by default */ +#define arch_ftrace_fill_perf_regs(fregs, _regs) do {} while (0) +#endif + +static __always_inline struct pt_regs * +ftrace_fill_perf_regs(struct ftrace_regs *fregs, struct pt_regs *regs) +{ + arch_ftrace_fill_perf_regs(fregs, regs); + return regs; +} + +#else /* !CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS */ + +static __always_inline struct pt_regs * +ftrace_fill_perf_regs(struct ftrace_regs *fregs, struct pt_regs *regs) +{ + return &fregs->regs; +} + +#endif + /* * When true, the ftrace_regs_{get,set}_*() functions may be used on fregs. * Note: this can be true even when ftrace_get_regs() cannot provide a pt_= regs.