* Out-of-bounds access when hartid >= NR_CPUS
@ 2021-10-25 15:54 Geert Uytterhoeven
2021-10-26 0:37 ` Ron Economos
2021-10-26 8:55 ` Atish Patra
0 siblings, 2 replies; 15+ messages in thread
From: Geert Uytterhoeven @ 2021-10-25 15:54 UTC (permalink / raw)
To: Paul Walmsley, Palmer Dabbelt, Albert Ou
Cc: linux-riscv, Linux Kernel Mailing List
Hi all,
When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire,
the 4th CPU either fails to come online, or the system crashes.
This happens because PolarFire has 5 CPU cores: hart 0 is an e51,
and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux:
- unused core has hartid 0 (sifive,e51),
- processor 0 has hartid 1 (sifive,u74-mc),
- processor 1 has hartid 2 (sifive,u74-mc),
- processor 2 has hartid 3 (sifive,u74-mc),
- processor 3 has hartid 4 (sifive,u74-mc).
I assume the same issue is present on the SiFive fu540 and fu740
SoCs, but I don't have access to these. The issue is not present
on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has
hartid 0.
arch/riscv/kernel/cpu_ops.c has:
void *__cpu_up_stack_pointer[NR_CPUS] __section(".data");
void *__cpu_up_task_pointer[NR_CPUS] __section(".data");
void cpu_update_secondary_bootdata(unsigned int cpuid,
struct task_struct *tidle)
{
int hartid = cpuid_to_hartid_map(cpuid);
/* Make sure tidle is updated */
smp_mb();
WRITE_ONCE(__cpu_up_stack_pointer[hartid],
task_stack_page(tidle) + THREAD_SIZE);
WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle);
The above two writes cause out-of-bound accesses beyond
__cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS.
}
arch/riscv/kernel/smpboot.c:setup_smp(void) detects CPUs like this:
for_each_of_cpu_node(dn) {
hart = riscv_of_processor_hartid(dn);
if (hart < 0)
continue;
if (hart == cpuid_to_hartid_map(0)) {
BUG_ON(found_boot_cpu);
found_boot_cpu = 1;
early_map_cpu_to_node(0, of_node_to_nid(dn));
continue;
}
if (cpuid >= NR_CPUS) {
pr_warn("Invalid cpuid [%d] for hartid [%d]\n",
cpuid, hart);
break;
}
cpuid_to_hartid_map(cpuid) = hart;
early_map_cpu_to_node(cpuid, of_node_to_nid(dn));
cpuid++;
}
So cpuid >= CONFIG_NR_CPUS (too many CPU cores) is already rejected.
How to fix this?
We could skip hartids >= NR_CPUS, but that feels strange to me, as
you need NR_CPUS to be larger (much larger if the first usable hartid
is a large number) than the number of CPUs used.
We could store the minimum hartid, and always subtract that when
accessing __cpu_up_{stack,pointer}_pointer[] (also in
arch/riscv/kernel/head.S), but that means unused cores cannot be in the
middle of the hartid range.
Are hartids guaranteed to be continuous? If not, we have no choice but
to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which
needs a more expensive conversion in arch/riscv/kernel/head.S.
Thanks for your comments!
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-25 15:54 Out-of-bounds access when hartid >= NR_CPUS Geert Uytterhoeven @ 2021-10-26 0:37 ` Ron Economos 2021-10-26 6:44 ` Geert Uytterhoeven 2021-10-26 8:55 ` Atish Patra 1 sibling, 1 reply; 15+ messages in thread From: Ron Economos @ 2021-10-26 0:37 UTC (permalink / raw) To: Geert Uytterhoeven, Paul Walmsley, Palmer Dabbelt, Albert Ou Cc: linux-riscv, Linux Kernel Mailing List On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > Hi all, > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > the 4th CPU either fails to come online, or the system crashes. > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > - unused core has hartid 0 (sifive,e51), > - processor 0 has hartid 1 (sifive,u74-mc), > - processor 1 has hartid 2 (sifive,u74-mc), > - processor 2 has hartid 3 (sifive,u74-mc), > - processor 3 has hartid 4 (sifive,u74-mc). > > I assume the same issue is present on the SiFive fu540 and fu740 > SoCs, but I don't have access to these. The issue is not present > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > hartid 0. > > arch/riscv/kernel/cpu_ops.c has: > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > void cpu_update_secondary_bootdata(unsigned int cpuid, > struct task_struct *tidle) > { > int hartid = cpuid_to_hartid_map(cpuid); > > /* Make sure tidle is updated */ > smp_mb(); > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > task_stack_page(tidle) + THREAD_SIZE); > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > The above two writes cause out-of-bound accesses beyond > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > } > > arch/riscv/kernel/smpboot.c:setup_smp(void) detects CPUs like this: > > for_each_of_cpu_node(dn) { > hart = riscv_of_processor_hartid(dn); > if (hart < 0) > continue; > > if (hart == cpuid_to_hartid_map(0)) { > BUG_ON(found_boot_cpu); > found_boot_cpu = 1; > early_map_cpu_to_node(0, of_node_to_nid(dn)); > continue; > } > if (cpuid >= NR_CPUS) { > pr_warn("Invalid cpuid [%d] for hartid [%d]\n", > cpuid, hart); > break; > } > > cpuid_to_hartid_map(cpuid) = hart; > early_map_cpu_to_node(cpuid, of_node_to_nid(dn)); > cpuid++; > } > > So cpuid >= CONFIG_NR_CPUS (too many CPU cores) is already rejected. > > How to fix this? > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > you need NR_CPUS to be larger (much larger if the first usable hartid > is a large number) than the number of CPUs used. The Ubuntu distro config for HiFive Unmatched set this to CONFIG_NR_CPUS=8. > > We could store the minimum hartid, and always subtract that when > accessing __cpu_up_{stack,pointer}_pointer[] (also in > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > middle of the hartid range. > > Are hartids guaranteed to be continuous? If not, we have no choice but > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > needs a more expensive conversion in arch/riscv/kernel/head.S. > > Thanks for your comments! > > Gr{oetje,eeting}s, > > Geert > > -- > Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org > > In personal conversations with technical people, I call myself a hacker. But > when I'm talking to journalists I just say "programmer" or something like that. > -- Linus Torvalds > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 0:37 ` Ron Economos @ 2021-10-26 6:44 ` Geert Uytterhoeven 2021-10-26 8:53 ` Heiko Stübner 0 siblings, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2021-10-26 6:44 UTC (permalink / raw) To: re Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, Linux Kernel Mailing List On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > the 4th CPU either fails to come online, or the system crashes. > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > - unused core has hartid 0 (sifive,e51), > > - processor 0 has hartid 1 (sifive,u74-mc), > > - processor 1 has hartid 2 (sifive,u74-mc), > > - processor 2 has hartid 3 (sifive,u74-mc), > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > SoCs, but I don't have access to these. The issue is not present > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > hartid 0. > > > > arch/riscv/kernel/cpu_ops.c has: > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > struct task_struct *tidle) > > { > > int hartid = cpuid_to_hartid_map(cpuid); > > > > /* Make sure tidle is updated */ > > smp_mb(); > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > task_stack_page(tidle) + THREAD_SIZE); > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > The above two writes cause out-of-bound accesses beyond > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > } > > > > arch/riscv/kernel/smpboot.c:setup_smp(void) detects CPUs like this: > > > > for_each_of_cpu_node(dn) { > > hart = riscv_of_processor_hartid(dn); > > if (hart < 0) > > continue; > > > > if (hart == cpuid_to_hartid_map(0)) { > > BUG_ON(found_boot_cpu); > > found_boot_cpu = 1; > > early_map_cpu_to_node(0, of_node_to_nid(dn)); > > continue; > > } > > if (cpuid >= NR_CPUS) { > > pr_warn("Invalid cpuid [%d] for hartid [%d]\n", > > cpuid, hart); > > break; > > } > > > > cpuid_to_hartid_map(cpuid) = hart; > > early_map_cpu_to_node(cpuid, of_node_to_nid(dn)); > > cpuid++; > > } > > > > So cpuid >= CONFIG_NR_CPUS (too many CPU cores) is already rejected. > > > > How to fix this? > > > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > > you need NR_CPUS to be larger (much larger if the first usable hartid > > is a large number) than the number of CPUs used. > The Ubuntu distro config for HiFive Unmatched set this to CONFIG_NR_CPUS=8. I know. Same for most defconfigs in Linux. But we do not tend to work around buffer overflows by changing config values. Besides, those configs will still experience the issue when run on e.g. an 8+1 core processor where the cores used by Linux have hartids 1-8. I noticed because I started with a starlight config with CONFIG_NR_CPUS=2 (which gave me only one core), changed that to CONFIG_NR_CPUS=4, and got a kernel that didn't boot at all (no output without earlycon).I know. Same for most defconfigs in Linux. But we do not tend to work around buffer overflows by changing config values. Besides, those configs will still experience the issue when run on e.g. an 8+1 core processor where the cores used by Linux have hartids 1-8. > > We could store the minimum hartid, and always subtract that when > > accessing __cpu_up_{stack,pointer}_pointer[] (also in > > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > > middle of the hartid range. > > > > Are hartids guaranteed to be continuous? If not, we have no choice but > > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > > needs a more expensive conversion in arch/riscv/kernel/head.S. https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf says: Hart IDs might not necessarily be numbered contiguously in a multiprocessor system, but at least one hart must have a hart ID of zero. Which means indexing arrays by hart ID is a no-go? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 6:44 ` Geert Uytterhoeven @ 2021-10-26 8:53 ` Heiko Stübner 2021-10-26 8:57 ` Geert Uytterhoeven 0 siblings, 1 reply; 15+ messages in thread From: Heiko Stübner @ 2021-10-26 8:53 UTC (permalink / raw) To: re, linux-riscv Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, Linux Kernel Mailing List, Geert Uytterhoeven Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > > the 4th CPU either fails to come online, or the system crashes. > > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > > - unused core has hartid 0 (sifive,e51), > > > - processor 0 has hartid 1 (sifive,u74-mc), > > > - processor 1 has hartid 2 (sifive,u74-mc), > > > - processor 2 has hartid 3 (sifive,u74-mc), > > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > > SoCs, but I don't have access to these. The issue is not present > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > > hartid 0. > > > > > > arch/riscv/kernel/cpu_ops.c has: > > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > > struct task_struct *tidle) > > > { > > > int hartid = cpuid_to_hartid_map(cpuid); > > > > > > /* Make sure tidle is updated */ > > > smp_mb(); > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > > task_stack_page(tidle) + THREAD_SIZE); > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > > > The above two writes cause out-of-bound accesses beyond > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > > > } > > > > > > arch/riscv/kernel/smpboot.c:setup_smp(void) detects CPUs like this: > > > > > > for_each_of_cpu_node(dn) { > > > hart = riscv_of_processor_hartid(dn); > > > if (hart < 0) > > > continue; > > > > > > if (hart == cpuid_to_hartid_map(0)) { > > > BUG_ON(found_boot_cpu); > > > found_boot_cpu = 1; > > > early_map_cpu_to_node(0, of_node_to_nid(dn)); > > > continue; > > > } > > > if (cpuid >= NR_CPUS) { > > > pr_warn("Invalid cpuid [%d] for hartid [%d]\n", > > > cpuid, hart); > > > break; > > > } > > > > > > cpuid_to_hartid_map(cpuid) = hart; > > > early_map_cpu_to_node(cpuid, of_node_to_nid(dn)); > > > cpuid++; > > > } > > > > > > So cpuid >= CONFIG_NR_CPUS (too many CPU cores) is already rejected. > > > > > > How to fix this? > > > > > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > > > you need NR_CPUS to be larger (much larger if the first usable hartid > > > is a large number) than the number of CPUs used. > > The Ubuntu distro config for HiFive Unmatched set this to CONFIG_NR_CPUS=8. > > I know. Same for most defconfigs in Linux. But we do not tend to > work around buffer overflows by changing config values. Besides, > those configs will still experience the issue when run on e.g. an > 8+1 core processor where the cores used by Linux have hartids 1-8. > > I noticed because I started with a starlight config with > CONFIG_NR_CPUS=2 (which gave me only one core), changed that to > CONFIG_NR_CPUS=4, and got a kernel that didn't boot at all (no output > without earlycon).I know. Same for most defconfigs in Linux. But we > do not tend to > work around buffer overflows by changing config values. Besides, > those configs will still experience the issue when run on e.g. an > 8+1 core processor where the cores used by Linux have hartids 1-8. > > > > We could store the minimum hartid, and always subtract that when > > > accessing __cpu_up_{stack,pointer}_pointer[] (also in > > > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > > > middle of the hartid range. > > > > > > Are hartids guaranteed to be continuous? If not, we have no choice but > > > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > > > needs a more expensive conversion in arch/riscv/kernel/head.S. > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > says: > > Hart IDs might not necessarily be numbered contiguously in a > multiprocessor system, but at least one hart must have a hart > ID of zero. > > Which means indexing arrays by hart ID is a no-go? Isn't that also similar on aarch64? On a rk3399 you get 0-3 and 100-101 and with the paragraph above something like this could very well exist on some riscv cpu too I guess. > > Gr{oetje,eeting}s, > > Geert > > -- > Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org > > In personal conversations with technical people, I call myself a hacker. But > when I'm talking to journalists I just say "programmer" or something like that. > -- Linus Torvalds > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 8:53 ` Heiko Stübner @ 2021-10-26 8:57 ` Geert Uytterhoeven 2021-10-26 9:28 ` Heiko Stübner 0 siblings, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2021-10-26 8:57 UTC (permalink / raw) To: Heiko Stübner Cc: re, linux-riscv, Paul Walmsley, Palmer Dabbelt, Albert Ou, Linux Kernel Mailing List Hi Heiko, On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > > > the 4th CPU either fails to come online, or the system crashes. > > > > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > > > - unused core has hartid 0 (sifive,e51), > > > > - processor 0 has hartid 1 (sifive,u74-mc), > > > > - processor 1 has hartid 2 (sifive,u74-mc), > > > > - processor 2 has hartid 3 (sifive,u74-mc), > > > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > > > SoCs, but I don't have access to these. The issue is not present > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > > > hartid 0. > > > > > > > > arch/riscv/kernel/cpu_ops.c has: > > > > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > > > struct task_struct *tidle) > > > > { > > > > int hartid = cpuid_to_hartid_map(cpuid); > > > > > > > > /* Make sure tidle is updated */ > > > > smp_mb(); > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > > > task_stack_page(tidle) + THREAD_SIZE); > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > > > > > The above two writes cause out-of-bound accesses beyond > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > > > > > } > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > > says: > > > > Hart IDs might not necessarily be numbered contiguously in a > > multiprocessor system, but at least one hart must have a hart > > ID of zero. > > > > Which means indexing arrays by hart ID is a no-go? > > Isn't that also similar on aarch64? > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > something like this could very well exist on some riscv cpu too I guess. Yes, it looks like hart IDs are similar to MPIDRs on ARM. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 8:57 ` Geert Uytterhoeven @ 2021-10-26 9:28 ` Heiko Stübner 2021-10-27 23:34 ` Atish Patra 0 siblings, 1 reply; 15+ messages in thread From: Heiko Stübner @ 2021-10-26 9:28 UTC (permalink / raw) To: Geert Uytterhoeven Cc: re, linux-riscv, Paul Walmsley, Palmer Dabbelt, Albert Ou, Linux Kernel Mailing List Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: > Hi Heiko, > > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > > > > the 4th CPU either fails to come online, or the system crashes. > > > > > > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > > > > - unused core has hartid 0 (sifive,e51), > > > > > - processor 0 has hartid 1 (sifive,u74-mc), > > > > > - processor 1 has hartid 2 (sifive,u74-mc), > > > > > - processor 2 has hartid 3 (sifive,u74-mc), > > > > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > > > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > > > > SoCs, but I don't have access to these. The issue is not present > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > > > > hartid 0. > > > > > > > > > > arch/riscv/kernel/cpu_ops.c has: > > > > > > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > > > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > > > > struct task_struct *tidle) > > > > > { > > > > > int hartid = cpuid_to_hartid_map(cpuid); > > > > > > > > > > /* Make sure tidle is updated */ > > > > > smp_mb(); > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > > > > task_stack_page(tidle) + THREAD_SIZE); > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > > > > > > > The above two writes cause out-of-bound accesses beyond > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > > > > > > > } > > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > > > says: > > > > > > Hart IDs might not necessarily be numbered contiguously in a > > > multiprocessor system, but at least one hart must have a hart > > > ID of zero. > > > > > > Which means indexing arrays by hart ID is a no-go? > > > > Isn't that also similar on aarch64? > > > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > > something like this could very well exist on some riscv cpu too I guess. > > Yes, it looks like hart IDs are similar to MPIDRs on ARM. and they have the set_cpu_logical_map construct to map hwids to a continuous list of cpu-ids. So with hartids not being necessarily continuous this looks like riscv would need a similar mechanism. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 9:28 ` Heiko Stübner @ 2021-10-27 23:34 ` Atish Patra 2021-10-28 15:09 ` Palmer Dabbelt 0 siblings, 1 reply; 15+ messages in thread From: Atish Patra @ 2021-10-27 23:34 UTC (permalink / raw) To: Heiko Stübner Cc: Geert Uytterhoeven, re, linux-riscv, Paul Walmsley, Palmer Dabbelt, Albert Ou, Linux Kernel Mailing List On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: > > Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: > > Hi Heiko, > > > > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > > > > > the 4th CPU either fails to come online, or the system crashes. > > > > > > > > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > > > > > - unused core has hartid 0 (sifive,e51), > > > > > > - processor 0 has hartid 1 (sifive,u74-mc), > > > > > > - processor 1 has hartid 2 (sifive,u74-mc), > > > > > > - processor 2 has hartid 3 (sifive,u74-mc), > > > > > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > > > > > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > > > > > SoCs, but I don't have access to these. The issue is not present > > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > > > > > hartid 0. > > > > > > > > > > > > arch/riscv/kernel/cpu_ops.c has: > > > > > > > > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > > > > > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > > > > > struct task_struct *tidle) > > > > > > { > > > > > > int hartid = cpuid_to_hartid_map(cpuid); > > > > > > > > > > > > /* Make sure tidle is updated */ > > > > > > smp_mb(); > > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > > > > > task_stack_page(tidle) + THREAD_SIZE); > > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > > > > > > > > > The above two writes cause out-of-bound accesses beyond > > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > > > > > > > > > } > > > > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > > > > says: > > > > > > > > Hart IDs might not necessarily be numbered contiguously in a > > > > multiprocessor system, but at least one hart must have a hart > > > > ID of zero. > > > > > > > > Which means indexing arrays by hart ID is a no-go? > > > > > > Isn't that also similar on aarch64? > > > > > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > > > something like this could very well exist on some riscv cpu too I guess. > > > > Yes, it looks like hart IDs are similar to MPIDRs on ARM. > > and they have the set_cpu_logical_map construct to map hwids > to a continuous list of cpu-ids. > > So with hartids not being necessarily continuous this looks like > riscv would need a similar mechanism. > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical cpu ids are continuous while hartid can be sparse. The issue here is that __cpu_up_stack/task_pointer are per hart but array size depends on the NR_CPUs which represents the logical CPU. That's why, having a maximum number of hartids defined in config will be helpful. > > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv -- Regards, Atish ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-27 23:34 ` Atish Patra @ 2021-10-28 15:09 ` Palmer Dabbelt 2021-10-28 16:12 ` Heiko Stübner 2021-10-28 16:21 ` Anup Patel 0 siblings, 2 replies; 15+ messages in thread From: Palmer Dabbelt @ 2021-10-28 15:09 UTC (permalink / raw) To: atishp; +Cc: heiko, geert, re, linux-riscv, Paul Walmsley, aou, linux-kernel On Wed, 27 Oct 2021 16:34:15 PDT (-0700), atishp@atishpatra.org wrote: > On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: >> >> Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: >> > Hi Heiko, >> > >> > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: >> > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: >> > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: >> > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: >> > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, >> > > > > > the 4th CPU either fails to come online, or the system crashes. >> > > > > > >> > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, >> > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: >> > > > > > - unused core has hartid 0 (sifive,e51), >> > > > > > - processor 0 has hartid 1 (sifive,u74-mc), >> > > > > > - processor 1 has hartid 2 (sifive,u74-mc), >> > > > > > - processor 2 has hartid 3 (sifive,u74-mc), >> > > > > > - processor 3 has hartid 4 (sifive,u74-mc). >> > > > > > >> > > > > > I assume the same issue is present on the SiFive fu540 and fu740 >> > > > > > SoCs, but I don't have access to these. The issue is not present >> > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has >> > > > > > hartid 0. >> > > > > > >> > > > > > arch/riscv/kernel/cpu_ops.c has: >> > > > > > >> > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); >> > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); >> > > > > > >> > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, >> > > > > > struct task_struct *tidle) >> > > > > > { >> > > > > > int hartid = cpuid_to_hartid_map(cpuid); >> > > > > > >> > > > > > /* Make sure tidle is updated */ >> > > > > > smp_mb(); >> > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], >> > > > > > task_stack_page(tidle) + THREAD_SIZE); >> > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); >> > > > > > >> > > > > > The above two writes cause out-of-bound accesses beyond >> > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. >> > > > > > >> > > > > > } >> > >> > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf >> > > > says: >> > > > >> > > > Hart IDs might not necessarily be numbered contiguously in a >> > > > multiprocessor system, but at least one hart must have a hart >> > > > ID of zero. >> > > > >> > > > Which means indexing arrays by hart ID is a no-go? >> > > >> > > Isn't that also similar on aarch64? >> > > >> > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above >> > > something like this could very well exist on some riscv cpu too I guess. >> > >> > Yes, it looks like hart IDs are similar to MPIDRs on ARM. >> >> and they have the set_cpu_logical_map construct to map hwids >> to a continuous list of cpu-ids. >> >> So with hartids not being necessarily continuous this looks like >> riscv would need a similar mechanism. >> > > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical > cpu ids are continuous > while hartid can be sparse. > > The issue here is that __cpu_up_stack/task_pointer are per hart but > array size depends on the NR_CPUs > which represents the logical CPU. > > That's why, having a maximum number of hartids defined in config will > be helpful. I don't understand why we'd have both: if we can't find a CPU number for a hart, then all we can do is just leave it offline. Wouldn't it be simpler to just rely on NR_CPUS? We'll need to fix the crashes on overflows either way. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-28 15:09 ` Palmer Dabbelt @ 2021-10-28 16:12 ` Heiko Stübner 2021-10-28 16:21 ` Anup Patel 1 sibling, 0 replies; 15+ messages in thread From: Heiko Stübner @ 2021-10-28 16:12 UTC (permalink / raw) To: atishp, Palmer Dabbelt Cc: geert, re, linux-riscv, Paul Walmsley, aou, linux-kernel Am Donnerstag, 28. Oktober 2021, 17:09:44 CEST schrieb Palmer Dabbelt: > On Wed, 27 Oct 2021 16:34:15 PDT (-0700), atishp@atishpatra.org wrote: > > On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: > >> > >> Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: > >> > Hi Heiko, > >> > > >> > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > >> > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > >> > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > >> > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > >> > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > >> > > > > > the 4th CPU either fails to come online, or the system crashes. > >> > > > > > > >> > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > >> > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > >> > > > > > - unused core has hartid 0 (sifive,e51), > >> > > > > > - processor 0 has hartid 1 (sifive,u74-mc), > >> > > > > > - processor 1 has hartid 2 (sifive,u74-mc), > >> > > > > > - processor 2 has hartid 3 (sifive,u74-mc), > >> > > > > > - processor 3 has hartid 4 (sifive,u74-mc). > >> > > > > > > >> > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > >> > > > > > SoCs, but I don't have access to these. The issue is not present > >> > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > >> > > > > > hartid 0. > >> > > > > > > >> > > > > > arch/riscv/kernel/cpu_ops.c has: > >> > > > > > > >> > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > >> > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > >> > > > > > > >> > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > >> > > > > > struct task_struct *tidle) > >> > > > > > { > >> > > > > > int hartid = cpuid_to_hartid_map(cpuid); > >> > > > > > > >> > > > > > /* Make sure tidle is updated */ > >> > > > > > smp_mb(); > >> > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > >> > > > > > task_stack_page(tidle) + THREAD_SIZE); > >> > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > >> > > > > > > >> > > > > > The above two writes cause out-of-bound accesses beyond > >> > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > >> > > > > > > >> > > > > > } > >> > > >> > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > >> > > > says: > >> > > > > >> > > > Hart IDs might not necessarily be numbered contiguously in a > >> > > > multiprocessor system, but at least one hart must have a hart > >> > > > ID of zero. > >> > > > > >> > > > Which means indexing arrays by hart ID is a no-go? > >> > > > >> > > Isn't that also similar on aarch64? > >> > > > >> > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > >> > > something like this could very well exist on some riscv cpu too I guess. > >> > > >> > Yes, it looks like hart IDs are similar to MPIDRs on ARM. > >> > >> and they have the set_cpu_logical_map construct to map hwids > >> to a continuous list of cpu-ids. > >> > >> So with hartids not being necessarily continuous this looks like > >> riscv would need a similar mechanism. > >> > > > > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical > > cpu ids are continuous > > while hartid can be sparse. > > > > The issue here is that __cpu_up_stack/task_pointer are per hart but > > array size depends on the NR_CPUs > > which represents the logical CPU. > > > > That's why, having a maximum number of hartids defined in config will > > be helpful. > > I don't understand why we'd have both: if we can't find a CPU number for > a hart, then all we can do is just leave it offline. Wouldn't it be > simpler to just rely on NR_CPUS? We'll need to fix the crashes on > overflows either way. I'd think so. The mhartid register is xlen big and as the spec says they don't have to be contiguously, so it looks like hw-designers could adopt really "creative" numbering. So having a NR_HARTS won't really help, because there could be huge gaps in numbering at some point. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-28 15:09 ` Palmer Dabbelt 2021-10-28 16:12 ` Heiko Stübner @ 2021-10-28 16:21 ` Anup Patel 2021-10-28 17:16 ` Palmer Dabbelt 1 sibling, 1 reply; 15+ messages in thread From: Anup Patel @ 2021-10-28 16:21 UTC (permalink / raw) To: Palmer Dabbelt Cc: Atish Patra, Heiko Stübner, Geert Uytterhoeven, re, linux-riscv, Paul Walmsley, Albert Ou, linux-kernel@vger.kernel.org List On Thu, Oct 28, 2021 at 8:39 PM Palmer Dabbelt <palmer@dabbelt.com> wrote: > > On Wed, 27 Oct 2021 16:34:15 PDT (-0700), atishp@atishpatra.org wrote: > > On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: > >> > >> Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: > >> > Hi Heiko, > >> > > >> > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > >> > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > >> > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > >> > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > >> > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > >> > > > > > the 4th CPU either fails to come online, or the system crashes. > >> > > > > > > >> > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > >> > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > >> > > > > > - unused core has hartid 0 (sifive,e51), > >> > > > > > - processor 0 has hartid 1 (sifive,u74-mc), > >> > > > > > - processor 1 has hartid 2 (sifive,u74-mc), > >> > > > > > - processor 2 has hartid 3 (sifive,u74-mc), > >> > > > > > - processor 3 has hartid 4 (sifive,u74-mc). > >> > > > > > > >> > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > >> > > > > > SoCs, but I don't have access to these. The issue is not present > >> > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > >> > > > > > hartid 0. > >> > > > > > > >> > > > > > arch/riscv/kernel/cpu_ops.c has: > >> > > > > > > >> > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > >> > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > >> > > > > > > >> > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > >> > > > > > struct task_struct *tidle) > >> > > > > > { > >> > > > > > int hartid = cpuid_to_hartid_map(cpuid); > >> > > > > > > >> > > > > > /* Make sure tidle is updated */ > >> > > > > > smp_mb(); > >> > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > >> > > > > > task_stack_page(tidle) + THREAD_SIZE); > >> > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > >> > > > > > > >> > > > > > The above two writes cause out-of-bound accesses beyond > >> > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > >> > > > > > > >> > > > > > } > >> > > >> > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > >> > > > says: > >> > > > > >> > > > Hart IDs might not necessarily be numbered contiguously in a > >> > > > multiprocessor system, but at least one hart must have a hart > >> > > > ID of zero. > >> > > > > >> > > > Which means indexing arrays by hart ID is a no-go? > >> > > > >> > > Isn't that also similar on aarch64? > >> > > > >> > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > >> > > something like this could very well exist on some riscv cpu too I guess. > >> > > >> > Yes, it looks like hart IDs are similar to MPIDRs on ARM. > >> > >> and they have the set_cpu_logical_map construct to map hwids > >> to a continuous list of cpu-ids. > >> > >> So with hartids not being necessarily continuous this looks like > >> riscv would need a similar mechanism. > >> > > > > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical > > cpu ids are continuous > > while hartid can be sparse. > > > > The issue here is that __cpu_up_stack/task_pointer are per hart but > > array size depends on the NR_CPUs > > which represents the logical CPU. > > > > That's why, having a maximum number of hartids defined in config will > > be helpful. > > I don't understand why we'd have both: if we can't find a CPU number for > a hart, then all we can do is just leave it offline. Wouldn't it be > simpler to just rely on NR_CPUS? We'll need to fix the crashes on > overflows either way., For HSM ops, we can easily fix this limitation because the HART start call has an opaque parameter which can be used to specify TP and SP for the HART being brought up. For spinwait ops, I don't see much value in fixing sparse hartid problems so let's document this problem and have appropriate checks in spinwait ops for out-of-bound array checks. Regards, Anup ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-28 16:21 ` Anup Patel @ 2021-10-28 17:16 ` Palmer Dabbelt 2021-10-28 23:40 ` Atish Patra 0 siblings, 1 reply; 15+ messages in thread From: Palmer Dabbelt @ 2021-10-28 17:16 UTC (permalink / raw) To: anup Cc: atishp, heiko, geert, re, linux-riscv, Paul Walmsley, aou, linux-kernel On Thu, 28 Oct 2021 09:21:31 PDT (-0700), anup@brainfault.org wrote: > On Thu, Oct 28, 2021 at 8:39 PM Palmer Dabbelt <palmer@dabbelt.com> wrote: >> >> On Wed, 27 Oct 2021 16:34:15 PDT (-0700), atishp@atishpatra.org wrote: >> > On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: >> >> >> >> Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: >> >> > Hi Heiko, >> >> > >> >> > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: >> >> > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: >> >> > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: >> >> > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: >> >> > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, >> >> > > > > > the 4th CPU either fails to come online, or the system crashes. >> >> > > > > > >> >> > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, >> >> > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: >> >> > > > > > - unused core has hartid 0 (sifive,e51), >> >> > > > > > - processor 0 has hartid 1 (sifive,u74-mc), >> >> > > > > > - processor 1 has hartid 2 (sifive,u74-mc), >> >> > > > > > - processor 2 has hartid 3 (sifive,u74-mc), >> >> > > > > > - processor 3 has hartid 4 (sifive,u74-mc). >> >> > > > > > >> >> > > > > > I assume the same issue is present on the SiFive fu540 and fu740 >> >> > > > > > SoCs, but I don't have access to these. The issue is not present >> >> > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has >> >> > > > > > hartid 0. >> >> > > > > > >> >> > > > > > arch/riscv/kernel/cpu_ops.c has: >> >> > > > > > >> >> > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); >> >> > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); >> >> > > > > > >> >> > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, >> >> > > > > > struct task_struct *tidle) >> >> > > > > > { >> >> > > > > > int hartid = cpuid_to_hartid_map(cpuid); >> >> > > > > > >> >> > > > > > /* Make sure tidle is updated */ >> >> > > > > > smp_mb(); >> >> > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], >> >> > > > > > task_stack_page(tidle) + THREAD_SIZE); >> >> > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); >> >> > > > > > >> >> > > > > > The above two writes cause out-of-bound accesses beyond >> >> > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. >> >> > > > > > >> >> > > > > > } >> >> > >> >> > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf >> >> > > > says: >> >> > > > >> >> > > > Hart IDs might not necessarily be numbered contiguously in a >> >> > > > multiprocessor system, but at least one hart must have a hart >> >> > > > ID of zero. >> >> > > > >> >> > > > Which means indexing arrays by hart ID is a no-go? >> >> > > >> >> > > Isn't that also similar on aarch64? >> >> > > >> >> > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above >> >> > > something like this could very well exist on some riscv cpu too I guess. >> >> > >> >> > Yes, it looks like hart IDs are similar to MPIDRs on ARM. >> >> >> >> and they have the set_cpu_logical_map construct to map hwids >> >> to a continuous list of cpu-ids. >> >> >> >> So with hartids not being necessarily continuous this looks like >> >> riscv would need a similar mechanism. >> >> >> > >> > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical >> > cpu ids are continuous >> > while hartid can be sparse. >> > >> > The issue here is that __cpu_up_stack/task_pointer are per hart but >> > array size depends on the NR_CPUs >> > which represents the logical CPU. >> > >> > That's why, having a maximum number of hartids defined in config will >> > be helpful. >> >> I don't understand why we'd have both: if we can't find a CPU number for >> a hart, then all we can do is just leave it offline. Wouldn't it be >> simpler to just rely on NR_CPUS? We'll need to fix the crashes on >> overflows either way., > > For HSM ops, we can easily fix this limitation because the HART > start call has an opaque parameter which can be used to specify TP > and SP for the HART being brought up. > > For spinwait ops, I don't see much value in fixing sparse hartid > problems so let's document this problem and have appropriate > checks in spinwait ops for out-of-bound array checks. Seems reasonable. That's the legacy method anyway, so hopefully vendors will have moved to the new stuff by the time we get sufficiently sparse hart IDs that this matters. We should fix the crashes, though. Happy to take a patch, otherwise I'll throw something together. > > Regards, > Anup ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-28 17:16 ` Palmer Dabbelt @ 2021-10-28 23:40 ` Atish Patra 0 siblings, 0 replies; 15+ messages in thread From: Atish Patra @ 2021-10-28 23:40 UTC (permalink / raw) To: Palmer Dabbelt Cc: Anup Patel, Heiko Stübner, Geert Uytterhoeven, re, linux-riscv, Paul Walmsley, Albert Ou, linux-kernel@vger.kernel.org List On Thu, Oct 28, 2021 at 10:16 AM Palmer Dabbelt <palmer@dabbelt.com> wrote: > > On Thu, 28 Oct 2021 09:21:31 PDT (-0700), anup@brainfault.org wrote: > > On Thu, Oct 28, 2021 at 8:39 PM Palmer Dabbelt <palmer@dabbelt.com> wrote: > >> > >> On Wed, 27 Oct 2021 16:34:15 PDT (-0700), atishp@atishpatra.org wrote: > >> > On Tue, Oct 26, 2021 at 2:34 AM Heiko Stübner <heiko@sntech.de> wrote: > >> >> > >> >> Am Dienstag, 26. Oktober 2021, 10:57:26 CEST schrieb Geert Uytterhoeven: > >> >> > Hi Heiko, > >> >> > > >> >> > On Tue, Oct 26, 2021 at 10:53 AM Heiko Stübner <heiko@sntech.de> wrote: > >> >> > > Am Dienstag, 26. Oktober 2021, 08:44:31 CEST schrieb Geert Uytterhoeven: > >> >> > > > On Tue, Oct 26, 2021 at 2:37 AM Ron Economos <re@w6rz.net> wrote: > >> >> > > > > On 10/25/21 8:54 AM, Geert Uytterhoeven wrote: > >> >> > > > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > >> >> > > > > > the 4th CPU either fails to come online, or the system crashes. > >> >> > > > > > > >> >> > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > >> >> > > > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > >> >> > > > > > - unused core has hartid 0 (sifive,e51), > >> >> > > > > > - processor 0 has hartid 1 (sifive,u74-mc), > >> >> > > > > > - processor 1 has hartid 2 (sifive,u74-mc), > >> >> > > > > > - processor 2 has hartid 3 (sifive,u74-mc), > >> >> > > > > > - processor 3 has hartid 4 (sifive,u74-mc). > >> >> > > > > > > >> >> > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > >> >> > > > > > SoCs, but I don't have access to these. The issue is not present > >> >> > > > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > >> >> > > > > > hartid 0. > >> >> > > > > > > >> >> > > > > > arch/riscv/kernel/cpu_ops.c has: > >> >> > > > > > > >> >> > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > >> >> > > > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > >> >> > > > > > > >> >> > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > >> >> > > > > > struct task_struct *tidle) > >> >> > > > > > { > >> >> > > > > > int hartid = cpuid_to_hartid_map(cpuid); > >> >> > > > > > > >> >> > > > > > /* Make sure tidle is updated */ > >> >> > > > > > smp_mb(); > >> >> > > > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > >> >> > > > > > task_stack_page(tidle) + THREAD_SIZE); > >> >> > > > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > >> >> > > > > > > >> >> > > > > > The above two writes cause out-of-bound accesses beyond > >> >> > > > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > >> >> > > > > > > >> >> > > > > > } > >> >> > > >> >> > > > https://riscv.org/wp-content/uploads/2017/05/riscv-privileged-v1.10.pdf > >> >> > > > says: > >> >> > > > > >> >> > > > Hart IDs might not necessarily be numbered contiguously in a > >> >> > > > multiprocessor system, but at least one hart must have a hart > >> >> > > > ID of zero. > >> >> > > > > >> >> > > > Which means indexing arrays by hart ID is a no-go? > >> >> > > > >> >> > > Isn't that also similar on aarch64? > >> >> > > > >> >> > > On a rk3399 you get 0-3 and 100-101 and with the paragraph above > >> >> > > something like this could very well exist on some riscv cpu too I guess. > >> >> > > >> >> > Yes, it looks like hart IDs are similar to MPIDRs on ARM. > >> >> > >> >> and they have the set_cpu_logical_map construct to map hwids > >> >> to a continuous list of cpu-ids. > >> >> > >> >> So with hartids not being necessarily continuous this looks like > >> >> riscv would need a similar mechanism. > >> >> > >> > > >> > RISC-V already has a similar mechanism cpuid_to_hartid_map. Logical > >> > cpu ids are continuous > >> > while hartid can be sparse. > >> > > >> > The issue here is that __cpu_up_stack/task_pointer are per hart but > >> > array size depends on the NR_CPUs > >> > which represents the logical CPU. > >> > > >> > That's why, having a maximum number of hartids defined in config will > >> > be helpful. > >> > >> I don't understand why we'd have both: if we can't find a CPU number for > >> a hart, then all we can do is just leave it offline. Wouldn't it be > >> simpler to just rely on NR_CPUS? We'll need to fix the crashes on > >> overflows either way., > > > > For HSM ops, we can easily fix this limitation because the HART > > start call has an opaque parameter which can be used to specify TP > > and SP for the HART being brought up. > > Sounds good to me. I will try to send a patch. > > For spinwait ops, I don't see much value in fixing sparse hartid > > problems so let's document this problem and have appropriate > > checks in spinwait ops for out-of-bound array checks. > > Seems reasonable. That's the legacy method anyway, so hopefully vendors > will have moved to the new stuff by the time we get sufficiently sparse > hart IDs that this matters. I hope so too. At least documenting this bug would be useful for anybody trapping this bug while using older spinwait methods. It will be an excuse for them to move to shiny & better booting methods. > > We should fix the crashes, though. Happy to take a patch, otherwise > I'll throw something together. > > > > > Regards, > > Anup -- Regards, Atish ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-25 15:54 Out-of-bounds access when hartid >= NR_CPUS Geert Uytterhoeven 2021-10-26 0:37 ` Ron Economos @ 2021-10-26 8:55 ` Atish Patra 2021-10-26 9:03 ` Geert Uytterhoeven 1 sibling, 1 reply; 15+ messages in thread From: Atish Patra @ 2021-10-26 8:55 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, Linux Kernel Mailing List On Mon, Oct 25, 2021 at 8:54 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote: > > Hi all, > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > the 4th CPU either fails to come online, or the system crashes. > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > - unused core has hartid 0 (sifive,e51), > - processor 0 has hartid 1 (sifive,u74-mc), > - processor 1 has hartid 2 (sifive,u74-mc), > - processor 2 has hartid 3 (sifive,u74-mc), > - processor 3 has hartid 4 (sifive,u74-mc). > > I assume the same issue is present on the SiFive fu540 and fu740 > SoCs, but I don't have access to these. The issue is not present > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > hartid 0. > > arch/riscv/kernel/cpu_ops.c has: > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > void cpu_update_secondary_bootdata(unsigned int cpuid, > struct task_struct *tidle) > { > int hartid = cpuid_to_hartid_map(cpuid); > > /* Make sure tidle is updated */ > smp_mb(); > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > task_stack_page(tidle) + THREAD_SIZE); > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > The above two writes cause out-of-bound accesses beyond > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > } > Thanks for reporting this. We need to fix this and definitely shouldn't hide it using configs. I guess I never tested with lower values (2 or 4) for CONFIG_NR_CPUS which explains how this bug was not noticed until now. > arch/riscv/kernel/smpboot.c:setup_smp(void) detects CPUs like this: > > for_each_of_cpu_node(dn) { > hart = riscv_of_processor_hartid(dn); > if (hart < 0) > continue; > > if (hart == cpuid_to_hartid_map(0)) { > BUG_ON(found_boot_cpu); > found_boot_cpu = 1; > early_map_cpu_to_node(0, of_node_to_nid(dn)); > continue; > } > if (cpuid >= NR_CPUS) { > pr_warn("Invalid cpuid [%d] for hartid [%d]\n", > cpuid, hart); > break; > } > > cpuid_to_hartid_map(cpuid) = hart; > early_map_cpu_to_node(cpuid, of_node_to_nid(dn)); > cpuid++; > } > > So cpuid >= CONFIG_NR_CPUS (too many CPU cores) is already rejected. > > How to fix this? > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > you need NR_CPUS to be larger (much larger if the first usable hartid > is a large number) than the number of CPUs used. > > We could store the minimum hartid, and always subtract that when > accessing __cpu_up_{stack,pointer}_pointer[] (also in > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > middle of the hartid range. Yeah. Both of the above proposed solutions are not ideal. > > Are hartids guaranteed to be continuous? If not, we have no choice but > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > needs a more expensive conversion in arch/riscv/kernel/head.S. > This will work for ordered booting with SBI HSM extension. However, it may fail for spinwait booting because cpuid_to_hartid_map might not have setup depending on when secondary harts are jumping to linux. Ideally, the size of the __cpu_up_{stack,task}_pointer[] should be the maximum hartid possible. How about adding a config for that ? We also need sanity checks cpu_update_secondary_bootdata to make sure that the hartid is within the bounds to avoid issues due to the suboptimal config value. > Thanks for your comments! > > Gr{oetje,eeting}s, > > Geert > > -- > Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org > > In personal conversations with technical people, I call myself a hacker. But > when I'm talking to journalists I just say "programmer" or something like that. > -- Linus Torvalds > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv -- Regards, Atish ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 8:55 ` Atish Patra @ 2021-10-26 9:03 ` Geert Uytterhoeven 2021-10-28 1:28 ` Atish Patra 0 siblings, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2021-10-26 9:03 UTC (permalink / raw) To: Atish Patra Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, Linux Kernel Mailing List Hi Atish, On Tue, Oct 26, 2021 at 10:55 AM Atish Patra <atishp@atishpatra.org> wrote: > On Mon, Oct 25, 2021 at 8:54 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote: > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > the 4th CPU either fails to come online, or the system crashes. > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > - unused core has hartid 0 (sifive,e51), > > - processor 0 has hartid 1 (sifive,u74-mc), > > - processor 1 has hartid 2 (sifive,u74-mc), > > - processor 2 has hartid 3 (sifive,u74-mc), > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > SoCs, but I don't have access to these. The issue is not present > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > hartid 0. > > > > arch/riscv/kernel/cpu_ops.c has: > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > struct task_struct *tidle) > > { > > int hartid = cpuid_to_hartid_map(cpuid); > > > > /* Make sure tidle is updated */ > > smp_mb(); > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > task_stack_page(tidle) + THREAD_SIZE); > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > The above two writes cause out-of-bound accesses beyond > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > } > > > > Thanks for reporting this. We need to fix this and definitely shouldn't hide it > using configs. I guess I never tested with lower values (2 or 4) for > CONFIG_NR_CPUS which explains how this bug was not noticed until now. > > How to fix this? > > > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > > you need NR_CPUS to be larger (much larger if the first usable hartid > > is a large number) than the number of CPUs used. > > > > We could store the minimum hartid, and always subtract that when > > accessing __cpu_up_{stack,pointer}_pointer[] (also in > > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > > middle of the hartid range. > > Yeah. Both of the above proposed solutions are not ideal. > > > > > Are hartids guaranteed to be continuous? If not, we have no choice but > > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > > needs a more expensive conversion in arch/riscv/kernel/head.S. > > This will work for ordered booting with SBI HSM extension. However, it may > fail for spinwait booting because cpuid_to_hartid_map might not have setup > depending on when secondary harts are jumping to linux. > > Ideally, the size of the __cpu_up_{stack,task}_pointer[] should be the maximum > hartid possible. How about adding a config for that ? (reading more RISC-V specs) Hart IDs can use up to XLEN (32, 64, or 128) bits. So creative sparse multi-level encodings like used in MPIDR on ARM[1] makes using a simple array infeasible. [1] arch/arm{,64}/include/asm/cputype.h Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Out-of-bounds access when hartid >= NR_CPUS 2021-10-26 9:03 ` Geert Uytterhoeven @ 2021-10-28 1:28 ` Atish Patra 0 siblings, 0 replies; 15+ messages in thread From: Atish Patra @ 2021-10-28 1:28 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, Linux Kernel Mailing List On Tue, Oct 26, 2021 at 2:03 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote: > > Hi Atish, > > On Tue, Oct 26, 2021 at 10:55 AM Atish Patra <atishp@atishpatra.org> wrote: > > On Mon, Oct 25, 2021 at 8:54 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote: > > > When booting a kernel with CONFIG_NR_CPUS=4 on Microchip PolarFire, > > > the 4th CPU either fails to come online, or the system crashes. > > > > > > This happens because PolarFire has 5 CPU cores: hart 0 is an e51, > > > and harts 1-4 are u54s, with the latter becoming CPUs 0-3 in Linux: > > > - unused core has hartid 0 (sifive,e51), > > > - processor 0 has hartid 1 (sifive,u74-mc), > > > - processor 1 has hartid 2 (sifive,u74-mc), > > > - processor 2 has hartid 3 (sifive,u74-mc), > > > - processor 3 has hartid 4 (sifive,u74-mc). > > > > > > I assume the same issue is present on the SiFive fu540 and fu740 > > > SoCs, but I don't have access to these. The issue is not present > > > on StarFive JH7100, as processor 0 has hartid 1, and processor 1 has > > > hartid 0. > > > > > > arch/riscv/kernel/cpu_ops.c has: > > > > > > void *__cpu_up_stack_pointer[NR_CPUS] __section(".data"); > > > void *__cpu_up_task_pointer[NR_CPUS] __section(".data"); > > > > > > void cpu_update_secondary_bootdata(unsigned int cpuid, > > > struct task_struct *tidle) > > > { > > > int hartid = cpuid_to_hartid_map(cpuid); > > > > > > /* Make sure tidle is updated */ > > > smp_mb(); > > > WRITE_ONCE(__cpu_up_stack_pointer[hartid], > > > task_stack_page(tidle) + THREAD_SIZE); > > > WRITE_ONCE(__cpu_up_task_pointer[hartid], tidle); > > > > > > The above two writes cause out-of-bound accesses beyond > > > __cpu_up_{stack,pointer}_pointer[] if hartid >= CONFIG_NR_CPUS. > > > > > > } > > > > > > > Thanks for reporting this. We need to fix this and definitely shouldn't hide it > > using configs. I guess I never tested with lower values (2 or 4) for > > CONFIG_NR_CPUS which explains how this bug was not noticed until now. > > > > How to fix this? > > > > > > We could skip hartids >= NR_CPUS, but that feels strange to me, as > > > you need NR_CPUS to be larger (much larger if the first usable hartid > > > is a large number) than the number of CPUs used. > > > > > > We could store the minimum hartid, and always subtract that when > > > accessing __cpu_up_{stack,pointer}_pointer[] (also in > > > arch/riscv/kernel/head.S), but that means unused cores cannot be in the > > > middle of the hartid range. > > > > Yeah. Both of the above proposed solutions are not ideal. > > > > > > > > Are hartids guaranteed to be continuous? If not, we have no choice but > > > to index __cpu_up_{stack,pointer}_pointer[] by cpuid instead, which > > > needs a more expensive conversion in arch/riscv/kernel/head.S. > > > > This will work for ordered booting with SBI HSM extension. However, it may > > fail for spinwait booting because cpuid_to_hartid_map might not have setup > > depending on when secondary harts are jumping to linux. > > > > Ideally, the size of the __cpu_up_{stack,task}_pointer[] should be the maximum > > hartid possible. How about adding a config for that ? > > (reading more RISC-V specs) > Hart IDs can use up to XLEN (32, 64, or 128) bits. So creative sparse > multi-level encodings like used in MPIDR on ARM[1] makes using a > simple array infeasible. > Hmm. Should we worry about similar creative sparse encodings when it appears ? Maybe we can dodge it all together. The other approach would be to go with your proposed solution to convert the hartid it to the cpuid in head.S However, this can only be fixed for ordered booting. Most of today's users have probably moved on to ordered booting. The only user who would be using spinwait would be 1. whoever still uses BBL 2. whoever still uses OpenSBI v0.6 or older Maybe we can document this bug in the Linux kernel for the spinwait method and move on. Hopefully, we can remove the spinwait method in a couple of years. Is that acceptable ? > [1] arch/arm{,64}/include/asm/cputype.h > > Gr{oetje,eeting}s, > > Geert > > -- > Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org > > In personal conversations with technical people, I call myself a hacker. But > when I'm talking to journalists I just say "programmer" or something like that. > -- Linus Torvalds -- Regards, Atish ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2021-10-28 23:41 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-25 15:54 Out-of-bounds access when hartid >= NR_CPUS Geert Uytterhoeven 2021-10-26 0:37 ` Ron Economos 2021-10-26 6:44 ` Geert Uytterhoeven 2021-10-26 8:53 ` Heiko Stübner 2021-10-26 8:57 ` Geert Uytterhoeven 2021-10-26 9:28 ` Heiko Stübner 2021-10-27 23:34 ` Atish Patra 2021-10-28 15:09 ` Palmer Dabbelt 2021-10-28 16:12 ` Heiko Stübner 2021-10-28 16:21 ` Anup Patel 2021-10-28 17:16 ` Palmer Dabbelt 2021-10-28 23:40 ` Atish Patra 2021-10-26 8:55 ` Atish Patra 2021-10-26 9:03 ` Geert Uytterhoeven 2021-10-28 1:28 ` Atish Patra
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).