From: Andrew Jones <ajones@ventanamicro.com>
To: opensbi@lists.infradead.org
Subject: [PATCH 2/2] lib: sbi_ipi: Return error for invalid hartids
Date: Sat, 15 Mar 2025 11:50:27 +0100 [thread overview]
Message-ID: <20250315-3b8fa85cf3a12cf25ebda46e@orel> (raw)
In-Reply-To: <c3d6baae077d2ee5015e709edd477002f23a8fe1.camel@126.com>
On Sat, Mar 15, 2025 at 12:19:30PM +0800, Xiang W wrote:
> ? 2025-03-14?? 17:30 +0100?Andrew Jones???
> > sbi_send_ipi() should return SBI_ERR_INVALID_PARAM if even one hartid
> > constructed from hart_mask_base and hart_mask, is not valid.
> >
> > Signed-off-by: Andrew Jones <ajones@ventanamicro.com>
> > ---
> > ?lib/sbi/sbi_ipi.c | 9 +++++++++
> > ?1 file changed, 9 insertions(+)
> >
> > diff --git a/lib/sbi/sbi_ipi.c b/lib/sbi/sbi_ipi.c
> > index 52898d302376..2de459b089ff 100644
> > --- a/lib/sbi/sbi_ipi.c
> > +++ b/lib/sbi/sbi_ipi.c
> > @@ -116,6 +116,11 @@ int sbi_ipi_send_many(ulong hmask, ulong hbase, u32 event, void *data)
> > ? struct sbi_domain *dom = sbi_domain_thishart_ptr();
> > ? struct sbi_scratch *scratch = sbi_scratch_thishart_ptr();
> > ?
> > + if (hmask == 0 && hbase != -1UL) {
> > + /* Nothing to do, but it's not an error either. */
> > + return 0;
> > + }
> > +
> A modification here would change the original intent of the function.
> lib/sbi/sbi_system.c#L72 will eventually call sbi_ipi_send_many(0, -1, ...)
How could the above condition affect that call where hbase == -1? This
condition explicitly checks that hbase != -1.
> for sending ipi interrupts to all harts, this modification breaks
> sbi_system_reset
Is that an assertion based on a failed test? Because it looks like it
should still work to me.
(kvm-unit-tests SBI testing also tests IPI broadcast, and it's still
passing.)
drew
>
> Regards,
> Xiang W
> > ? /* Find the target harts */
> > ? rc = sbi_hsm_hart_interruptible_mask(dom, &target_mask);
> > ? if (rc)
> > @@ -123,6 +128,7 @@ int sbi_ipi_send_many(ulong hmask, ulong hbase, u32 event, void *data)
> > ?
> > ? if (hbase != -1UL) {
> > ? struct sbi_hartmask tmp_mask = { 0 };
> > + int count = sbi_popcount(hmask);
> > ?
> > ? for (i = hbase; hmask; i++, hmask >>= 1) {
> > ? if (hmask & 1UL)
> > @@ -130,6 +136,9 @@ int sbi_ipi_send_many(ulong hmask, ulong hbase, u32 event, void *data)
> > ? }
> > ?
> > ? sbi_hartmask_and(&target_mask, &target_mask, &tmp_mask);
> > +
> > + if (sbi_hartmask_weight(&target_mask) != count)
> > + return SBI_EINVAL;
> > ? }
> > ?
> > ? /* Send IPIs */
> > --
> > 2.48.1
> >
>
next prev parent reply other threads:[~2025-03-15 10:50 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-14 16:30 [PATCH 0/2] lib: sbi_ipi: Return error for invalid hartids Andrew Jones
2025-03-14 16:30 ` [PATCH 1/2] sbi: Introduce sbi_hartmask_weight Andrew Jones
2025-03-16 6:26 ` Anup Patel
2025-03-16 6:46 ` Xiang W
2025-03-14 16:30 ` [PATCH 2/2] lib: sbi_ipi: Return error for invalid hartids Andrew Jones
2025-03-15 4:19 ` Xiang W
2025-03-15 10:50 ` Andrew Jones [this message]
2025-03-15 11:19 ` Anup Patel
2025-03-16 6:29 ` Anup Patel
2025-03-16 6:45 ` Xiang W
2025-03-17 4:56 ` Xiang W
2025-03-17 8:45 ` Andrew Jones
2025-03-17 10:27 ` Xiang W
2025-04-14 10:01 ` [PATCH 0/2] " Anup Patel
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=20250315-3b8fa85cf3a12cf25ebda46e@orel \
--to=ajones@ventanamicro.com \
--cc=opensbi@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.