LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] x86/hyperv: Avoid erroneously sending IPI to 'self'
@ 2021-10-06 12:50 Vitaly Kuznetsov
2021-10-06 15:15 ` Michael Kelley
0 siblings, 1 reply; 3+ messages in thread
From: Vitaly Kuznetsov @ 2021-10-06 12:50 UTC (permalink / raw)
To: linux-hyperv, Wei Liu
Cc: x86, linux-kernel, Thomas Gleixner, Michael Kelley,
K. Y. Srinivasan, Haiyang Zhang, Stephen Hemminger, Dexuan Cui
__send_ipi_mask_ex() uses an optimization: when the target CPU mask is
equal to 'cpu_present_mask' it uses 'HV_GENERIC_SET_ALL' format to avoid
converting the specified cpumask to VP_SET. This case was overlooked when
'exclude_self' parameter was added. As the result, a spurious IPI to
'self' can be send.
Reported-by: Thomas Gleixner <tglx@linutronix.de>
Fixes: dfb5c1e12c28 ("x86/hyperv: remove on-stack cpumask from hv_send_ipi_mask_allbutself")
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
---
arch/x86/hyperv/hv_apic.c | 20 +++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/arch/x86/hyperv/hv_apic.c b/arch/x86/hyperv/hv_apic.c
index 32a1ad356c18..db2d92fb44da 100644
--- a/arch/x86/hyperv/hv_apic.c
+++ b/arch/x86/hyperv/hv_apic.c
@@ -122,17 +122,27 @@ static bool __send_ipi_mask_ex(const struct cpumask *mask, int vector,
ipi_arg->reserved = 0;
ipi_arg->vp_set.valid_bank_mask = 0;
- if (!cpumask_equal(mask, cpu_present_mask)) {
+ /*
+ * Use HV_GENERIC_SET_ALL and avoid converting cpumask to VP_SET
+ * when the IPI is sent to all currently present CPUs.
+ */
+ if (!cpumask_equal(mask, cpu_present_mask) || exclude_self) {
ipi_arg->vp_set.format = HV_GENERIC_SET_SPARSE_4K;
if (exclude_self)
nr_bank = cpumask_to_vpset_noself(&(ipi_arg->vp_set), mask);
else
nr_bank = cpumask_to_vpset(&(ipi_arg->vp_set), mask);
- }
- if (nr_bank < 0)
- goto ipi_mask_ex_done;
- if (!nr_bank)
+
+ /*
+ * 'nr_bank <= 0' means some CPUs in cpumask can't be
+ * represented in VP_SET. Return an error and fall back to
+ * native (architectural) method of sending IPIs.
+ */
+ if (nr_bank <= 0)
+ goto ipi_mask_ex_done;
+ } else {
ipi_arg->vp_set.format = HV_GENERIC_SET_ALL;
+ }
status = hv_do_rep_hypercall(HVCALL_SEND_IPI_EX, 0, nr_bank,
ipi_arg, NULL);
--
2.31.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] x86/hyperv: Avoid erroneously sending IPI to 'self'
2021-10-06 12:50 [PATCH] x86/hyperv: Avoid erroneously sending IPI to 'self' Vitaly Kuznetsov
@ 2021-10-06 15:15 ` Michael Kelley
2021-10-06 15:55 ` Wei Liu
0 siblings, 1 reply; 3+ messages in thread
From: Michael Kelley @ 2021-10-06 15:15 UTC (permalink / raw)
To: vkuznets, linux-hyperv, Wei Liu
Cc: x86, linux-kernel, Thomas Gleixner, KY Srinivasan, Haiyang Zhang,
Stephen Hemminger, Dexuan Cui
From: Vitaly Kuznetsov <vkuznets@redhat.com> Sent: Wednesday, October 6, 2021 5:50 AM
>
> __send_ipi_mask_ex() uses an optimization: when the target CPU mask is
> equal to 'cpu_present_mask' it uses 'HV_GENERIC_SET_ALL' format to avoid
> converting the specified cpumask to VP_SET. This case was overlooked when
> 'exclude_self' parameter was added. As the result, a spurious IPI to
> 'self' can be send.
>
> Reported-by: Thomas Gleixner <tglx@linutronix.de>
> Fixes: dfb5c1e12c28 ("x86/hyperv: remove on-stack cpumask from hv_send_ipi_mask_allbutself")
> Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
> ---
> arch/x86/hyperv/hv_apic.c | 20 +++++++++++++++-----
> 1 file changed, 15 insertions(+), 5 deletions(-)
>
> diff --git a/arch/x86/hyperv/hv_apic.c b/arch/x86/hyperv/hv_apic.c
> index 32a1ad356c18..db2d92fb44da 100644
> --- a/arch/x86/hyperv/hv_apic.c
> +++ b/arch/x86/hyperv/hv_apic.c
> @@ -122,17 +122,27 @@ static bool __send_ipi_mask_ex(const struct cpumask *mask, int vector,
> ipi_arg->reserved = 0;
> ipi_arg->vp_set.valid_bank_mask = 0;
>
> - if (!cpumask_equal(mask, cpu_present_mask)) {
> + /*
> + * Use HV_GENERIC_SET_ALL and avoid converting cpumask to VP_SET
> + * when the IPI is sent to all currently present CPUs.
> + */
> + if (!cpumask_equal(mask, cpu_present_mask) || exclude_self) {
> ipi_arg->vp_set.format = HV_GENERIC_SET_SPARSE_4K;
> if (exclude_self)
> nr_bank = cpumask_to_vpset_noself(&(ipi_arg->vp_set), mask);
> else
> nr_bank = cpumask_to_vpset(&(ipi_arg->vp_set), mask);
> - }
> - if (nr_bank < 0)
> - goto ipi_mask_ex_done;
> - if (!nr_bank)
> +
> + /*
> + * 'nr_bank <= 0' means some CPUs in cpumask can't be
> + * represented in VP_SET. Return an error and fall back to
> + * native (architectural) method of sending IPIs.
> + */
> + if (nr_bank <= 0)
> + goto ipi_mask_ex_done;
> + } else {
> ipi_arg->vp_set.format = HV_GENERIC_SET_ALL;
> + }
>
> status = hv_do_rep_hypercall(HVCALL_SEND_IPI_EX, 0, nr_bank,
> ipi_arg, NULL);
> --
> 2.31.1
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] x86/hyperv: Avoid erroneously sending IPI to 'self'
2021-10-06 15:15 ` Michael Kelley
@ 2021-10-06 15:55 ` Wei Liu
0 siblings, 0 replies; 3+ messages in thread
From: Wei Liu @ 2021-10-06 15:55 UTC (permalink / raw)
To: Michael Kelley
Cc: vkuznets, linux-hyperv, Wei Liu, x86, linux-kernel,
Thomas Gleixner, KY Srinivasan, Haiyang Zhang, Stephen Hemminger,
Dexuan Cui
On Wed, Oct 06, 2021 at 03:15:22PM +0000, Michael Kelley wrote:
> From: Vitaly Kuznetsov <vkuznets@redhat.com> Sent: Wednesday, October 6, 2021 5:50 AM
[...]
> > --
> > 2.31.1
>
> Reviewed-by: Michael Kelley <mikelley@microsoft.com>
LGTM.
Applied to hyperv-fixes. Thanks.
Wei.
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-06 15:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-06 12:50 [PATCH] x86/hyperv: Avoid erroneously sending IPI to 'self' Vitaly Kuznetsov
2021-10-06 15:15 ` Michael Kelley
2021-10-06 15:55 ` Wei Liu
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).