From nobody Tue Feb 10 01:15:33 2026 Received: from canpmsgout10.his.huawei.com (canpmsgout10.his.huawei.com [113.46.200.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0948333065D; Wed, 28 Jan 2026 03:19:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=113.46.200.225 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769570396; cv=none; b=c/M/Saq7TTRflE+UZozZjiBRCBks6F3bm6OZO/q8svRBT/9zg5R7B8Jc2iQDAGAlSq1bLITRJDarlfhgrmOTWk/DsQ322k+vGaw5ynVdeDqt44PWp3IhLBeVfLIyJbTyjlrAmEffNFNMvV+x8mRouVJD1wJBtewcn5vLSIRymkA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769570396; c=relaxed/simple; bh=j7qP3ijifhxT/Uzo6bndSwTq85clo+PWHe/7SCm5Bqs=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=qOTAP0I6dQTDsQB9SCMtjO9F3EXyuzjpOpRGT0jSEL39LL8aHq8X3CWkLuQaZQn67vDhAQWEa1dp1N86xklkQxsFCjvL31tdB3ijv+6stYMlhOeuALtd5jhMHrS+3Mzr1KdL4D1h8RBK7kgAWfnUSPlSmFabtFYryuqNpWzGcb0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b=BXfZEhyp; arc=none smtp.client-ip=113.46.200.225 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b="BXfZEhyp" dkim-signature: v=1; a=rsa-sha256; d=huawei.com; s=dkim; c=relaxed/relaxed; q=dns/txt; h=From; bh=ATUUFmidkeR9BXD29aLuNzsnRH3fYuO7evClahxNZsE=; b=BXfZEhypal1a6UNYpBEhB+w+kmmr+wx6yhTxh1ozLf8QKisAyuHWonaew5EpHK78osjS2wjpZ uL4+ovTeVbOq2egLBRAg5apEr5Mc8g+jukLFX6jxZhkkNs/jMuxifZ/SSj22Brn4V6fO4rJI4OJ 5qw7AiSCkmKWrpf645hIvFk= Received: from mail.maildlp.com (unknown [172.19.163.200]) by canpmsgout10.his.huawei.com (SkyGuard) with ESMTPS id 4f16ql3xYPz1K974; Wed, 28 Jan 2026 11:16:19 +0800 (CST) Received: from dggpemf500011.china.huawei.com (unknown [7.185.36.131]) by mail.maildlp.com (Postfix) with ESMTPS id 5671540563; Wed, 28 Jan 2026 11:19:45 +0800 (CST) Received: from huawei.com (10.90.53.73) by dggpemf500011.china.huawei.com (7.185.36.131) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 28 Jan 2026 11:19:43 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , CC: Subject: [PATCH v11 03/14] arm64: ptrace: Move rseq_syscall() before audit_syscall_exit() Date: Wed, 28 Jan 2026 11:19:23 +0800 Message-ID: <20260128031934.3906955-4-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20260128031934.3906955-1-ruanjinjie@huawei.com> References: <20260128031934.3906955-1-ruanjinjie@huawei.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: kwepems200002.china.huawei.com (7.221.188.68) To dggpemf500011.china.huawei.com (7.185.36.131) Content-Type: text/plain; charset="utf-8" commit a9f3a74a29af ("entry: Provide generic syscall exit function") introduce generic syscall exit function and call rseq_syscall() before audit_syscall_exit() and arch_syscall_exit_tracehook(). And commit b74406f37737 ("arm: Add syscall detection for restartable sequences") add rseq support for arm32, which also call rseq_syscall() before audit_syscall_exit() and tracehook_report_syscall(). However, commit 409d5db49867c ("arm64: rseq: Implement backend rseq calls and select HAVE_RSEQ") implement arm64 rseq and call rseq_syscall() after audit_syscall_exit() and tracehook_report_syscall(). So compared to the generic entry and arm32 code, arm64 calls rseq_syscall() a bit later. But as commit b74406f37737 ("arm: Add syscall detection for restartable sequences") said, syscalls are not allowed inside restartable sequences, so should call rseq_syscall() at the very beginning of system call exiting path for CONFIG_DEBUG_RSEQ=3Dy kernel. This could help us to detect whether there is a syscall issued inside restartable sequences. As for the impact of raising SIGSEGV via rseq_syscall(), it makes no practical difference to signal delivery because signals are processed in arm64_exit_to_user_mode() at the very end. As for the "regs", rseq_syscall() only checks and update instruction_pointer(regs), ptrace can not modify the "pc" on syscall exit path but 'only changes the return value', so calling rseq_syscall() before or after ptrace_report_syscall_exit() makes no difference. And audit_syscall_exit() only checks the return value (x0 for arm64), so calling rseq_syscall() before or after audit syscall exit makes no difference. trace_sys_exit() only uses syscallno and the return value, so calling rseq_syscall() before or after trace_sys_exit() also makes no difference. In preparation for moving arm64 over to the generic entry code, move rseq_syscall() ahead before audit_syscall_exit(). No functional changes. Reviewed-by: Kevin Brodsky Signed-off-by: Jinjie Ruan --- arch/arm64/kernel/ptrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/kernel/ptrace.c b/arch/arm64/kernel/ptrace.c index 9f9aa3087c09..785280c76317 100644 --- a/arch/arm64/kernel/ptrace.c +++ b/arch/arm64/kernel/ptrace.c @@ -2443,6 +2443,8 @@ int syscall_trace_enter(struct pt_regs *regs, unsigne= d long flags) =20 void syscall_trace_exit(struct pt_regs *regs, unsigned long flags) { + rseq_syscall(regs); + audit_syscall_exit(regs); =20 if (flags & _TIF_SYSCALL_TRACEPOINT) @@ -2450,8 +2452,6 @@ void syscall_trace_exit(struct pt_regs *regs, unsigne= d long flags) =20 if (flags & (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP)) report_syscall_exit(regs); - - rseq_syscall(regs); } =20 /* --=20 2.34.1