linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: Bui Quang Minh <minhquangbui99@gmail.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	Alexander Mikhalitsyn <alexander@mihalicyn.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>, x86 <x86@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Juri Lelli <juri.lelli@redhat.com>,
	Vincent Guittot <vincent.guittot@linaro.org>,
	Dietmar Eggemann <dietmar.eggemann@arm.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
	Daniel Bristot de Oliveira <bristot@redhat.com>,
	Valentin Schneider <vschneid@redhat.com>,
	"Paul E. McKenney" <paulmck@kernel.org>,
	Boqun Feng <boqun.feng@gmail.com>,
	Kees Cook <keescook@chromium.org>,
	"Chang S. Bae" <chang.seok.bae@intel.com>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	Brian Gerst <brgerst@gmail.com>
Subject: Re: [PATCH] rseq: x86: Fix rseq_cs get cleared when returning from signal handler
Date: Mon, 20 Jun 2022 11:39:10 -0400 (EDT)	[thread overview]
Message-ID: <258546133.12151.1655739550814.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <20220618182515.95831-1-minhquangbui99@gmail.com>

----- On Jun 18, 2022, at 2:25 PM, Bui Quang Minh minhquangbui99@gmail.com wrote:

> rseq.rseq_cs is not expected to be cleared when we are still in critical
> section. When using rseq with RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL, if the
> signal is delivered, we don't restart to the abort ip but go to signal
> handler then return and continue the critical section execution. While in
> signal handler, if a preemption, migration or another signal is delivered,
> we will fall into rseq_ip_fixup again. At that moment, the IP is in signal
> handler not in critical section so the rseq.rseq_cs is cleared. Later, when
> we return back to critical section from signal handlers, we get the
> rseq.rseq_cs incorrectly cleared.
> 
> Another scenario is when a preemption or migration happens, then a signal
> is delivered. When preparing to return to user mode, in
> exit_to_user_mode_loop, we first handle the signal and set return IP to
> signal handler. After that, rseq_handle_notify_resume is called to handle
> the preemption/migration, sees the IP is the address of signal handler not
> in critical section and clear rseq.rseq_cs.
> 
> To handle this case, a RSEQ_CS_FLAG_IN_SIGNAL_HANDLER is added. This flag
> is set in rseq.flags (it is easier to read and update rseq.flags than
> rseq.rseq_cs.flags) by the kernel when rseq does not restart on signal.
> When this flag is set, we don't clear rseq.rseq_cs when the IP is outside
> of critical section. The flag is unset in sigreturn path when the last
> signal handler returns back to the critical section.

Hi,

You raise valid points.

May I first ask what is your use-case for RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL ?

Considering the added per-arch complexity, I think we should consider whether
it's worthwhile to keep supporting this flag, and whether there are actual users
of it out there, or if we should handle this by deprecating this flag.

Thanks,

Mathieu

> 
> Reviewed-by: Alexander Mikhalitsyn <alexander@mihalicyn.com>
> Signed-off-by: Bui Quang Minh <minhquangbui99@gmail.com>
> ---
> arch/x86/kernel/signal.c  |  7 ++++
> include/linux/sched.h     |  5 +++
> include/uapi/linux/rseq.h |  8 +++-
> kernel/rseq.c             | 80 ++++++++++++++++++++++++++++++++++++---
> 4 files changed, 94 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c
> index 9c7265b524c7..7aadf69d6849 100644
> --- a/arch/x86/kernel/signal.c
> +++ b/arch/x86/kernel/signal.c
> @@ -646,6 +646,10 @@ SYSCALL_DEFINE0(sigreturn)
> 	 */
> 	if (!restore_sigcontext(regs, &frame->sc, 0))
> 		goto badframe;
> +
> +	if (rseq_sigreturn(regs))
> +		goto badframe;
> +
> 	return regs->ax;
> 
> badframe:
> @@ -678,6 +682,9 @@ SYSCALL_DEFINE0(rt_sigreturn)
> 	if (restore_altstack(&frame->uc.uc_stack))
> 		goto badframe;
> 
> +	if (rseq_sigreturn(regs))
> +		goto badframe;
> +
> 	return regs->ax;
> 
> badframe:
> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index c46f3a63b758..656b03232d0a 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -2340,6 +2340,8 @@ static inline void rseq_execve(struct task_struct *t)
> 	t->rseq_event_mask = 0;
> }
> 
> +int rseq_sigreturn(struct pt_regs *regs);
> +
> #else
> 
> static inline void rseq_set_notify_resume(struct task_struct *t)
> @@ -2365,6 +2367,9 @@ static inline void rseq_fork(struct task_struct *t,
> unsigned long clone_flags)
> static inline void rseq_execve(struct task_struct *t)
> {
> }
> +static inline int rseq_sigreturn(struct pt_regs *regs)
> +{
> +}
> 
> #endif
> 
> diff --git a/include/uapi/linux/rseq.h b/include/uapi/linux/rseq.h
> index 77ee207623a9..f946af8e21e6 100644
> --- a/include/uapi/linux/rseq.h
> +++ b/include/uapi/linux/rseq.h
> @@ -26,6 +26,7 @@ enum rseq_cs_flags_bit {
> 	RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT	= 0,
> 	RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT	= 1,
> 	RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT	= 2,
> +	RSEQ_CS_FLAG_IN_SIGNAL_HANDLER_BIT	= 3,
> };
> 
> enum rseq_cs_flags {
> @@ -35,6 +36,8 @@ enum rseq_cs_flags {
> 		(1U << RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT),
> 	RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE	=
> 		(1U << RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT),
> +	RSEQ_CS_FLAG_IN_SIGNAL_HANDLER		=
> +		(1U << RSEQ_CS_FLAG_IN_SIGNAL_HANDLER_BIT),
> };
> 
> /*
> @@ -115,7 +118,7 @@ struct rseq {
> 	 * Restartable sequences flags field.
> 	 *
> 	 * This field should only be updated by the thread which
> -	 * registered this data structure. Read by the kernel.
> +	 * registered this data structure. Read and set by the kernel.
> 	 * Mainly used for single-stepping through rseq critical sections
> 	 * with debuggers.
> 	 *
> @@ -128,6 +131,9 @@ struct rseq {
> 	 * - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE
> 	 *     Inhibit instruction sequence block restart on migration for
> 	 *     this thread.
> +	 * - RSEQ_CS_FLAG_IN_SIGNAL_HANDLER
> +	 *     Mark that this thread is in critical section but currently in
> +	 *     signal handlers, so don't clear the rseq_cs field.
> 	 */
> 	__u32 flags;
> } __attribute__((aligned(4 * sizeof(__u64))));
> diff --git a/kernel/rseq.c b/kernel/rseq.c
> index 97ac20b4f738..a4aca612724b 100644
> --- a/kernel/rseq.c
> +++ b/kernel/rseq.c
> @@ -172,14 +172,16 @@ static int rseq_get_rseq_cs(struct task_struct *t, struct
> rseq_cs *rseq_cs)
> 
> static int rseq_need_restart(struct task_struct *t, u32 cs_flags)
> {
> -	u32 flags, event_mask;
> +	u32 old_flags, flags, event_mask;
> 	int ret;
> 
> 	/* Get thread flags. */
> -	ret = get_user(flags, &t->rseq->flags);
> +	ret = get_user(old_flags, &t->rseq->flags);
> 	if (ret)
> 		return ret;
> 
> +	flags = old_flags;
> +
> 	/* Take critical section flags into account. */
> 	flags |= cs_flags;
> 
> @@ -203,6 +205,21 @@ static int rseq_need_restart(struct task_struct *t, u32
> cs_flags)
> 	t->rseq_event_mask = 0;
> 	preempt_enable();
> 
> +	/*
> +	 * If we don't restart on signal event, set the
> +	 * RSEQ_CS_FLAG_IN_SIGNAL_HANDLER flag so that later rseq_ip_fixup
> +	 * doesn't clear rseq_cs pointer as the IP is outside of critical
> +	 * section.
> +	 */
> +	if ((flags & RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL) &&
> +	    (event_mask & RSEQ_EVENT_SIGNAL) &&
> +	    !(old_flags & RSEQ_CS_FLAG_IN_SIGNAL_HANDLER)) {
> +		old_flags |= RSEQ_CS_FLAG_IN_SIGNAL_HANDLER;
> +		ret = put_user(old_flags, &t->rseq->flags);
> +		if (ret)
> +			return ret;
> +	}
> +
> 	return !!(event_mask & ~flags);
> }
> 
> @@ -248,10 +265,23 @@ static int rseq_ip_fixup(struct pt_regs *regs)
> 	/*
> 	 * Handle potentially not being within a critical section.
> 	 * If not nested over a rseq critical section, restart is useless.
> -	 * Clear the rseq_cs pointer and return.
> +	 * In case the RSEQ_CS_FLAG_IN_SIGNAL_HANDLER is set, we are in
> +	 * signal handlers and later return to critical section so don't
> +	 * clear rseq_cs pointer.
> +	 * Otherwise, clear the rseq_cs pointer and return.
> 	 */
> -	if (!in_rseq_cs(ip, &rseq_cs))
> -		return clear_rseq_cs(t);
> +	if (!in_rseq_cs(ip, &rseq_cs)) {
> +		u32 flags;
> +
> +		ret = get_user(flags, &t->rseq->flags);
> +		if (ret)
> +			return ret;
> +		if (flags & RSEQ_CS_FLAG_IN_SIGNAL_HANDLER)
> +			return 0;
> +		else
> +			return clear_rseq_cs(t);
> +	}
> +
> 	ret = rseq_need_restart(t, rseq_cs.flags);
> 	if (ret <= 0)
> 		return ret;
> @@ -322,6 +352,46 @@ void rseq_syscall(struct pt_regs *regs)
> 
> #endif
> 
> +#ifdef CONFIG_RSEQ
> +
> +int rseq_sigreturn(struct pt_regs *regs)
> +{
> +	int ret;
> +	struct rseq_cs rseq_cs;
> +	struct task_struct *t = current;
> +
> +	if (t->rseq) {
> +		u32 flags;
> +
> +		ret = get_user(flags, &t->rseq->flags);
> +		if (ret)
> +			return ret;
> +
> +		if (flags & RSEQ_CS_FLAG_IN_SIGNAL_HANDLER) {
> +			ret = rseq_get_rseq_cs(t, &rseq_cs);
> +			if (ret)
> +				return ret;
> +
> +			/*
> +			 * If the returned IP is in critical section, it
> +			 * means we handle all the possible nested signal,
> +			 * so unset the RSEQ_CS_FLAG_IN_SIGNAL_HANDLER.
> +			 */
> +			if (in_rseq_cs(regs->ip, &rseq_cs)) {
> +				flags &= ~RSEQ_CS_FLAG_IN_SIGNAL_HANDLER;
> +
> +				ret = put_user(flags, &t->rseq->flags);
> +				if (ret)
> +					return ret;
> +			}
> +		}
> +	}
> +
> +	return 0;
> +}
> +
> +#endif
> +
> /*
>  * sys_rseq - setup restartable sequences for caller thread.
>  */
> --
> 2.25.1

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com

  reply	other threads:[~2022-06-20 15:39 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-18 18:25 [PATCH] rseq: x86: Fix rseq_cs get cleared when returning from signal handler Bui Quang Minh
2022-06-20 15:39 ` Mathieu Desnoyers [this message]
2022-06-20 15:46   ` Alexander Mikhalitsyn
2022-06-20 18:10     ` Mathieu Desnoyers
2022-06-20 18:36       ` Alexander Mikhalitsyn
     [not found]         ` <CAB=H8NXaMvNU+0Z02VPnLmQde-F8pdw2Ms2SqiOzWtuTcyNjaA@mail.gmail.com>
     [not found]           ` <CAO1ikSbnEbN1-=rY+aOUbjvPS=i9AFJaGBpmbkGR-9UinNKbKw@mail.gmail.com>
     [not found]             ` <87y1xper17.fsf@email.froward.int.ebiederm.org>
2022-06-21 20:05               ` Mathieu Desnoyers
2022-06-21 21:04                 ` Eric W. Biederman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=258546133.12151.1655739550814.JavaMail.zimbra@efficios.com \
    --to=mathieu.desnoyers@efficios.com \
    --cc=alexander@mihalicyn.com \
    --cc=boqun.feng@gmail.com \
    --cc=bp@alien8.de \
    --cc=brgerst@gmail.com \
    --cc=bristot@redhat.com \
    --cc=bsegall@google.com \
    --cc=chang.seok.bae@intel.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=dietmar.eggemann@arm.com \
    --cc=ebiederm@xmission.com \
    --cc=hpa@zytor.com \
    --cc=juri.lelli@redhat.com \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mgorman@suse.de \
    --cc=mingo@redhat.com \
    --cc=minhquangbui99@gmail.com \
    --cc=paulmck@kernel.org \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    --cc=vincent.guittot@linaro.org \
    --cc=vschneid@redhat.com \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).