From: "limingwang (A)" <limingwang@huawei.com>
To: Alistair Francis <alistair.francis@opensource.wdc.com>,
Jiangyifei <jiangyifei@huawei.com>,
"qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "thuth@redhat.com" <thuth@redhat.com>,
Bin Meng <bin.meng@windriver.com>,
"alistair23@gmail.com" <alistair23@gmail.com>,
Alistair Francis <Alistair.Francis@wdc.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
"bmeng.cn@gmail.com" <bmeng.cn@gmail.com>,
Alistair Francis <alistair.francis@wdc.com>
Subject: RE: [PATCH] hw/intc: sifive_plic: Avoid overflowing the addr_config buffer
Date: Wed, 1 Jun 2022 03:11:27 +0000 [thread overview]
Message-ID: <3c8293cc07e147dd9923ee5174cb55fa@huawei.com> (raw)
In-Reply-To: <20220601013631.196854-1-alistair.francis@opensource.wdc.com>
>
> From: Alistair Francis <alistair.francis@wdc.com>
>
> Since commit ad40be27 "target/riscv: Support start kernel directly by KVM" we
> have been overflowing the addr_config on "M,MS..."
> configurations, as reported https://gitlab.com/qemu-project/qemu/-/issues/1050.
>
> This commit changes the loop in sifive_plic_create() from iterating over the number
> of harts to just iterating over the addr_config. The addr_config is based on the
> hart_config, and will contain interrup details for all harts. This way we can't iterate
> past the end of addr_config.
>
> Fixes: ad40be27084536 ("target/riscv: Support start kernel directly by KVM")
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1050
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Mingwang Li <limingwang@huawei.com>
Mingwang
> ---
> hw/intc/sifive_plic.c | 19 +++++++++----------
> 1 file changed, 9 insertions(+), 10 deletions(-)
>
> diff --git a/hw/intc/sifive_plic.c b/hw/intc/sifive_plic.c index
> eebbcf33d4..56d60e9ac9 100644
> --- a/hw/intc/sifive_plic.c
> +++ b/hw/intc/sifive_plic.c
> @@ -431,7 +431,7 @@ DeviceState *sifive_plic_create(hwaddr addr, char
> *hart_config,
> uint32_t context_stride, uint32_t aperture_size) {
> DeviceState *dev = qdev_new(TYPE_SIFIVE_PLIC);
> - int i, j = 0;
> + int i;
> SiFivePLICState *plic;
>
> assert(enable_stride == (enable_stride & -enable_stride)); @@ -451,18
> +451,17 @@ DeviceState *sifive_plic_create(hwaddr addr, char *hart_config,
> sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
>
> plic = SIFIVE_PLIC(dev);
> - for (i = 0; i < num_harts; i++) {
> - CPUState *cpu = qemu_get_cpu(hartid_base + i);
>
> - if (plic->addr_config[j].mode == PLICMode_M) {
> - j++;
> - qdev_connect_gpio_out(dev, num_harts + i,
> + for (i = 0; i < plic->num_addrs; i++) {
> + int cpu_num = plic->addr_config[i].hartid;
> + CPUState *cpu = qemu_get_cpu(hartid_base + cpu_num);
> +
> + if (plic->addr_config[i].mode == PLICMode_M) {
> + qdev_connect_gpio_out(dev, num_harts + cpu_num,
> qdev_get_gpio_in(DEVICE(cpu),
> IRQ_M_EXT));
> }
> -
> - if (plic->addr_config[j].mode == PLICMode_S) {
> - j++;
> - qdev_connect_gpio_out(dev, i,
> + if (plic->addr_config[i].mode == PLICMode_S) {
> + qdev_connect_gpio_out(dev, cpu_num,
> qdev_get_gpio_in(DEVICE(cpu),
> IRQ_S_EXT));
> }
> }
> --
> 2.35.3
WARNING: multiple messages have this Message-ID (diff)
From: "limingwang (A)" via <qemu-devel@nongnu.org>
To: Alistair Francis <alistair.francis@opensource.wdc.com>,
Jiangyifei <jiangyifei@huawei.com>,
"qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "thuth@redhat.com" <thuth@redhat.com>,
Bin Meng <bin.meng@windriver.com>,
"alistair23@gmail.com" <alistair23@gmail.com>,
Alistair Francis <Alistair.Francis@wdc.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
"bmeng.cn@gmail.com" <bmeng.cn@gmail.com>,
Alistair Francis <alistair.francis@wdc.com>
Subject: RE: [PATCH] hw/intc: sifive_plic: Avoid overflowing the addr_config buffer
Date: Wed, 1 Jun 2022 03:11:27 +0000 [thread overview]
Message-ID: <3c8293cc07e147dd9923ee5174cb55fa@huawei.com> (raw)
In-Reply-To: <20220601013631.196854-1-alistair.francis@opensource.wdc.com>
>
> From: Alistair Francis <alistair.francis@wdc.com>
>
> Since commit ad40be27 "target/riscv: Support start kernel directly by KVM" we
> have been overflowing the addr_config on "M,MS..."
> configurations, as reported https://gitlab.com/qemu-project/qemu/-/issues/1050.
>
> This commit changes the loop in sifive_plic_create() from iterating over the number
> of harts to just iterating over the addr_config. The addr_config is based on the
> hart_config, and will contain interrup details for all harts. This way we can't iterate
> past the end of addr_config.
>
> Fixes: ad40be27084536 ("target/riscv: Support start kernel directly by KVM")
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1050
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Mingwang Li <limingwang@huawei.com>
Mingwang
> ---
> hw/intc/sifive_plic.c | 19 +++++++++----------
> 1 file changed, 9 insertions(+), 10 deletions(-)
>
> diff --git a/hw/intc/sifive_plic.c b/hw/intc/sifive_plic.c index
> eebbcf33d4..56d60e9ac9 100644
> --- a/hw/intc/sifive_plic.c
> +++ b/hw/intc/sifive_plic.c
> @@ -431,7 +431,7 @@ DeviceState *sifive_plic_create(hwaddr addr, char
> *hart_config,
> uint32_t context_stride, uint32_t aperture_size) {
> DeviceState *dev = qdev_new(TYPE_SIFIVE_PLIC);
> - int i, j = 0;
> + int i;
> SiFivePLICState *plic;
>
> assert(enable_stride == (enable_stride & -enable_stride)); @@ -451,18
> +451,17 @@ DeviceState *sifive_plic_create(hwaddr addr, char *hart_config,
> sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
>
> plic = SIFIVE_PLIC(dev);
> - for (i = 0; i < num_harts; i++) {
> - CPUState *cpu = qemu_get_cpu(hartid_base + i);
>
> - if (plic->addr_config[j].mode == PLICMode_M) {
> - j++;
> - qdev_connect_gpio_out(dev, num_harts + i,
> + for (i = 0; i < plic->num_addrs; i++) {
> + int cpu_num = plic->addr_config[i].hartid;
> + CPUState *cpu = qemu_get_cpu(hartid_base + cpu_num);
> +
> + if (plic->addr_config[i].mode == PLICMode_M) {
> + qdev_connect_gpio_out(dev, num_harts + cpu_num,
> qdev_get_gpio_in(DEVICE(cpu),
> IRQ_M_EXT));
> }
> -
> - if (plic->addr_config[j].mode == PLICMode_S) {
> - j++;
> - qdev_connect_gpio_out(dev, i,
> + if (plic->addr_config[i].mode == PLICMode_S) {
> + qdev_connect_gpio_out(dev, cpu_num,
> qdev_get_gpio_in(DEVICE(cpu),
> IRQ_S_EXT));
> }
> }
> --
> 2.35.3
next prev parent reply other threads:[~2022-06-01 3:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-01 1:36 [PATCH] hw/intc: sifive_plic: Avoid overflowing the addr_config buffer Alistair Francis
2022-06-01 3:11 ` limingwang (A) [this message]
2022-06-01 3:11 ` limingwang (A) via
2022-06-01 13:58 ` Philippe Mathieu-Daudé
2022-06-01 13:58 ` Philippe Mathieu-Daudé via
2022-06-02 1:05 ` Alistair Francis
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=3c8293cc07e147dd9923ee5174cb55fa@huawei.com \
--to=limingwang@huawei.com \
--cc=Alistair.Francis@wdc.com \
--cc=alistair.francis@opensource.wdc.com \
--cc=alistair23@gmail.com \
--cc=bin.meng@windriver.com \
--cc=bmeng.cn@gmail.com \
--cc=jiangyifei@huawei.com \
--cc=palmer@dabbelt.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=thuth@redhat.com \
/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.