* [PATCH] cpu hotplug: Prevent Page Fault in cpuhp_remove_callbacks()
@ 2017-07-19 22:36 Ethan Barnes
2017-07-20 14:05 ` Thomas Gleixner
2017-07-20 14:49 ` [tip:smp/hotplug] smp/hotplug: Handle removal correctly in cpuhp_store_callbacks() tip-bot for Ethan Barnes
0 siblings, 2 replies; 3+ messages in thread
From: Ethan Barnes @ 2017-07-19 22:36 UTC (permalink / raw)
To: linux-kernel
Cc: Thomas Gleixner, Srivatsa S. Bhat, Paul McKenney, Ingo Molnar,
Sebastian Siewior
Hi,
There is a page fault in cpu hotplug when removing the callbacks for the
last dynamic state.
The last dynamic state will not be removed, causing a page fault when
hotplug thinks the callbacks still exists and calls it.
The problem is as follows:
- __cpuhp_remove_state() eventually calls cpuhp_store_callbacks() with
NULLs for most params.
- If state is the last state (i.e. CPUHP_AP_ONLINE_DYN or
CPUHP_BP_PREPARE_STATE) then cpuhp_store_callbacks() calls
cpuhp_reserve_state(), which returns the *next* available DYN state.
- The NULLs are stored in that *next* state (i.e. AP_ONLINE_DYN + 1 or
BP_PREPARE_DYN + 1) instead of in AP_ONLINE_DYN or BP_PREPARE_DYN. Thus,
the last state is never cleared. The callbacks now point to invalid memory.
- When the cpu is onlined again and/or offlined, then the invalid
callback is invoked, causing a page fault.
The patch above solves this by detecting when a state is being removed,
and not calling cpuhp_reserve_state().
I have brought this up before, but hoping to get some traction on it
this time:
https://lkml.org/lkml/2017/7/5/574
Thx,
Ethan
Signed-off-by: Ethan Barnes <ethan.barnes@sandisk.com>
---
diff --git a/kernel/cpu.c b/kernel/cpu.c
index eee0331..f7fda16 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1252,7 +1252,8 @@ static int cpuhp_store_callbacks(enum cpuhp_state
state, const char *name,
struct cpuhp_step *sp;
int ret = 0;
- if (state == CPUHP_AP_ONLINE_DYN || state == CPUHP_BP_PREPARE_DYN) {
+ if (name &&
+ (state == CPUHP_AP_ONLINE_DYN || state ==
CPUHP_BP_PREPARE_DYN)) {
ret = cpuhp_reserve_state(state);
if (ret < 0)
return ret;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] cpu hotplug: Prevent Page Fault in cpuhp_remove_callbacks()
2017-07-19 22:36 [PATCH] cpu hotplug: Prevent Page Fault in cpuhp_remove_callbacks() Ethan Barnes
@ 2017-07-20 14:05 ` Thomas Gleixner
2017-07-20 14:49 ` [tip:smp/hotplug] smp/hotplug: Handle removal correctly in cpuhp_store_callbacks() tip-bot for Ethan Barnes
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2017-07-20 14:05 UTC (permalink / raw)
To: Ethan Barnes
Cc: linux-kernel, Srivatsa S. Bhat, Paul McKenney, Ingo Molnar,
Sebastian Siewior
On Wed, 19 Jul 2017, Ethan Barnes wrote:
> There is a page fault in cpu hotplug when removing the callbacks for the
> last dynamic state.
> The last dynamic state will not be removed, causing a page fault when
> hotplug thinks the callbacks still exists and calls it.
>
> The problem is as follows:
> - __cpuhp_remove_state() eventually calls cpuhp_store_callbacks() with
> NULLs for most params.
> - If state is the last state (i.e. CPUHP_AP_ONLINE_DYN or
> CPUHP_BP_PREPARE_STATE) then cpuhp_store_callbacks() calls
> cpuhp_reserve_state(), which returns the *next* available DYN state.
> - The NULLs are stored in that *next* state (i.e. AP_ONLINE_DYN + 1 or
> BP_PREPARE_DYN + 1) instead of in AP_ONLINE_DYN or BP_PREPARE_DYN. Thus,
> the last state is never cleared. The callbacks now point to invalid memory.
> - When the cpu is onlined again and/or offlined, then the invalid
> callback is invoked, causing a page fault.
Indeed.
> The patch above solves this by detecting when a state is being removed,
> and not calling cpuhp_reserve_state().
>
> I have brought this up before, but hoping to get some traction on it
> this time:
> https://lkml.org/lkml/2017/7/5/574
Escaped my attention.
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index eee0331..f7fda16 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1252,7 +1252,8 @@ static int cpuhp_store_callbacks(enum cpuhp_state
> state, const char *name,
That patch is corrupted by your mail-client or mail-server or both.
> struct cpuhp_step *sp;
> int ret = 0;
>
> - if (state == CPUHP_AP_ONLINE_DYN || state == CPUHP_BP_PREPARE_DYN) {
> + if (name &&
> + (state == CPUHP_AP_ONLINE_DYN || state ==
> CPUHP_BP_PREPARE_DYN)) {
> ret = cpuhp_reserve_state(state);
> if (ret < 0)
> return ret;
> Western Digital Corporation (and its subsidiaries) E-mail Confidentiality Notice & Disclaimer:
>
Can you please make sure that there is a blank line before that
automatically inserted disclaimer?
Thanks,
tglx
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:smp/hotplug] smp/hotplug: Handle removal correctly in cpuhp_store_callbacks()
2017-07-19 22:36 [PATCH] cpu hotplug: Prevent Page Fault in cpuhp_remove_callbacks() Ethan Barnes
2017-07-20 14:05 ` Thomas Gleixner
@ 2017-07-20 14:49 ` tip-bot for Ethan Barnes
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Ethan Barnes @ 2017-07-20 14:49 UTC (permalink / raw)
To: linux-tip-commits
Cc: srivatsa, bigeasy, mingo, mingo, tglx, linux-kernel,
Ethan.Barnes, hpa, paulmck, ethan.barnes
Commit-ID: 0c96b27305faf06c068b45e07d28336c80dac286
Gitweb: http://git.kernel.org/tip/0c96b27305faf06c068b45e07d28336c80dac286
Author: Ethan Barnes <Ethan.Barnes@wdc.com>
AuthorDate: Wed, 19 Jul 2017 22:36:00 +0000
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 20 Jul 2017 16:40:24 +0200
smp/hotplug: Handle removal correctly in cpuhp_store_callbacks()
If cpuhp_store_callbacks() is called for CPUHP_AP_ONLINE_DYN or
CPUHP_BP_PREPARE_DYN, which are the indicators for dynamically allocated
states, then cpuhp_store_callbacks() allocates a new dynamic state. The
first allocation in each range returns CPUHP_AP_ONLINE_DYN or
CPUHP_BP_PREPARE_DYN.
If cpuhp_remove_state() is invoked for one of these states, then there is
no protection against the allocation mechanism. So the removal, which
should clear the callbacks and the name, gets a new state assigned and
clears that one.
As a consequence the state which should be cleared stays initialized. A
consecutive CPU hotplug operation dereferences the state callbacks and
accesses either freed or reused memory, resulting in crashes.
Add a protection against this by checking the name argument for NULL. If
it's NULL it's a removal. If not, it's an allocation.
[ tglx: Added a comment and massaged changelog ]
Fixes: 5b7aa87e0482 ("cpu/hotplug: Implement setup/removal interface")
Signed-off-by: Ethan Barnes <ethan.barnes@sandisk.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.or>
Cc: "Srivatsa S. Bhat" <srivatsa@mit.edu>
Cc: Sebastian Siewior <bigeasy@linutronix.d>
Cc: Paul McKenney <paulmck@linux.vnet.ibm.com>
Cc: stable@vger.kernel.org
Link: http://lkml.kernel.org/r/DM2PR04MB398242FC7776D603D9F99C894A60@DM2PR04MB398.namprd04.prod.outlook.com
---
kernel/cpu.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index eee0331..a88c29a 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1252,7 +1252,17 @@ static int cpuhp_store_callbacks(enum cpuhp_state state, const char *name,
struct cpuhp_step *sp;
int ret = 0;
- if (state == CPUHP_AP_ONLINE_DYN || state == CPUHP_BP_PREPARE_DYN) {
+ /*
+ * If name is NULL, then the state gets removed.
+ *
+ * CPUHP_AP_ONLINE_DYN and CPUHP_BP_PREPARE_DYN are handed out on
+ * the first allocation from these dynamic ranges, so the removal
+ * would trigger a new allocation and clear the wrong (already
+ * empty) state, leaving the callbacks of the to be cleared state
+ * dangling, which causes wreckage on the next hotplug operation.
+ */
+ if (name && (state == CPUHP_AP_ONLINE_DYN ||
+ state == CPUHP_BP_PREPARE_DYN)) {
ret = cpuhp_reserve_state(state);
if (ret < 0)
return ret;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-20 14:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-19 22:36 [PATCH] cpu hotplug: Prevent Page Fault in cpuhp_remove_callbacks() Ethan Barnes
2017-07-20 14:05 ` Thomas Gleixner
2017-07-20 14:49 ` [tip:smp/hotplug] smp/hotplug: Handle removal correctly in cpuhp_store_callbacks() tip-bot for Ethan Barnes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome