[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH for-5.2 13/19] ftgmac100: Check for invalid len and address b
From: |
Joel Stanley |
Subject: |
Re: [PATCH for-5.2 13/19] ftgmac100: Check for invalid len and address before doing a DMA transfer |
Date: |
Thu, 6 Aug 2020 23:51:41 +0000 |
On Thu, 6 Aug 2020 at 13:21, Cédric Le Goater <clg@kaod.org> wrote:
>
> According to the Aspeed specs, no interrupts are raised in that case
> but a "Tx-packets lost" status seems like a good modeling choice for
> all implementations. It is covered by the Linux kernel.
>
> Cc: Frederic Konrad <konrad.frederic@yahoo.fr>
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Joel Stanley <joel@jms.id.au>
> ---
> hw/net/ftgmac100.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/hw/net/ftgmac100.c b/hw/net/ftgmac100.c
> index 014980d30aca..280aa3d3a1e2 100644
> --- a/hw/net/ftgmac100.c
> +++ b/hw/net/ftgmac100.c
> @@ -507,6 +507,15 @@ static void ftgmac100_do_tx(FTGMAC100State *s, uint32_t
> tx_ring,
> }
>
> len = FTGMAC100_TXDES0_TXBUF_SIZE(bd.des0);
> + if (!len) {
> + /*
> + * 0 is an invalid size, however the HW does not raise any
> + * interrupt. Flag an error because the guest is buggy.
> + */
> + qemu_log_mask(LOG_GUEST_ERROR, "%s: invalid segment size\n",
> + __func__);
> + }
> +
> if (frame_size + len > sizeof(s->frame)) {
> qemu_log_mask(LOG_GUEST_ERROR, "%s: frame too big : %d bytes\n",
> __func__, len);
> --
> 2.25.4
>
- [PATCH for-5.2 10/19] ftgmac100: Fix interrupt status "Packet transmitted on ethernet", (continued)
- [PATCH for-5.2 10/19] ftgmac100: Fix interrupt status "Packet transmitted on ethernet", Cédric Le Goater, 2020/08/06
- [PATCH for-5.2 09/19] ftgmac100: Fix registers that can be read, Cédric Le Goater, 2020/08/06
- [PATCH for-5.2 19/19] aspeed/smc: Open AHB window of the second chip of the AST2600 FMC controller, Cédric Le Goater, 2020/08/06
- [PATCH for-5.2 17/19] aspeed/sdmc: Allow writes to unprotected registers, Cédric Le Goater, 2020/08/06
- [PATCH for-5.2 13/19] ftgmac100: Check for invalid len and address before doing a DMA transfer, Cédric Le Goater, 2020/08/06
- Re: [PATCH for-5.2 13/19] ftgmac100: Check for invalid len and address before doing a DMA transfer,
Joel Stanley <=
- [PATCH for-5.2 14/19] ftgmac100: Fix integer overflow in ftgmac100_do_tx(), Cédric Le Goater, 2020/08/06
- Re: [PATCH for-5.2 14/19] ftgmac100: Fix integer overflow in ftgmac100_do_tx(), Peter Maydell, 2020/08/11
- [PATCH for-5.2 15/19] ftgmac100: Improve software reset, Cédric Le Goater, 2020/08/06