qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Jason Wang <jasowang@redhat.com>
Cc: "Mauro Matteo Cascella" <mcascell@redhat.com>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Finn Thain" <fthain@telegraphics.com.au>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Gaoning Pan" <pgn@zju.edu.cn>
Subject: Re: [PATCH] hw/net/dp8393x: fix integer underflow in dp8393x_do_transmit_packets()
Date: Tue, 1 Dec 2020 12:09:09 +0000	[thread overview]
Message-ID: <CAFEAcA-Vzc2Uop8bsp73xLfrBkfjJtko7dhKDqKK4+xJfxQ7ww@mail.gmail.com> (raw)
In-Reply-To: <cc15cf81-aaf9-0886-b988-61b6314648b9@redhat.com>

On Tue, 1 Dec 2020 at 05:46, Jason Wang <jasowang@redhat.com> wrote:
>
>
> On 2020/11/30 下午8:11, Mauro Matteo Cascella wrote:
> > On Mon, Nov 30, 2020 at 11:44 AM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> >> +Laurent/Finn
> >>
> >> On 11/24/20 10:24 AM, Mauro Matteo Cascella wrote:
> >>> An integer underflow could occur during packet transmission due to 'tx_len' not
> >>> being updated if SONIC_TFC register is set to zero. Check for negative 'tx_len'
> >>> when removing existing FCS.
> >>>
> >>> RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=1899722
> >>> Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
> >>> Reported-by: Gaoning Pan <pgn@zju.edu.cn>
> >>> ---
> >>>   hw/net/dp8393x.c | 4 ++++
> >>>   1 file changed, 4 insertions(+)
> >>>
> >>> diff --git a/hw/net/dp8393x.c b/hw/net/dp8393x.c
> >>> index 674b04b354..205c0decc5 100644
> >>> --- a/hw/net/dp8393x.c
> >>> +++ b/hw/net/dp8393x.c
> >>> @@ -495,6 +495,10 @@ static void dp8393x_do_transmit_packets(dp8393xState *s)
> >>>           } else {
> >>>               /* Remove existing FCS */
> >>>               tx_len -= 4;
> >>> +            if (tx_len < 0) {
> >>> +                SONIC_ERROR("tx_len is %d\n", tx_len);
> >>> +                break;
> >>> +            }
> >>>           }
> >>>
> >>>           if (s->regs[SONIC_RCR] & (SONIC_RCR_LB1 | SONIC_RCR_LB0)) {
> >>>
> >> Doesn't it make more sense to check 'tx_len >= 4'
> >> and skip tx/rx when 'tx_len == 0'?
> >>
> > Yes, it makes sense. I thought that skipping tx/rx in case of null
> > 'tx_len' could lead to potential inconsistencies when writing the
> > status or reading the footer of the packet. but I'm not really sure. I
> > can send a new version of the patch if needed, otherwise feel free to
> > apply your changes. Thank you.
>
>
> I think we can go with this patch first and tweak on top consider it's
> near the release. So:
>
> Acked-by: Jason Wang <jasowang@redhat.com>
>
> Peter, do you want to merge this patch?

rc4 is due for release today, and the dp8393x is a device not
used by any KVM platform, so this isn't a security fix. So
we don't *need* to take it for 5.2. On the other hand this is a
pretty small and constrained fix that won't affect anything
except the mips jazz and m68k q800 boards.

Applied to master for 5.2, thanks.

-- PMM


      reply	other threads:[~2020-12-01 12:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-24  9:24 [PATCH] hw/net/dp8393x: fix integer underflow in dp8393x_do_transmit_packets() Mauro Matteo Cascella
2020-11-30 10:44 ` Philippe Mathieu-Daudé
2020-11-30 12:11   ` Mauro Matteo Cascella
2020-12-01  5:46     ` Jason Wang
2020-12-01 12:09       ` Peter Maydell [this message]

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=CAFEAcA-Vzc2Uop8bsp73xLfrBkfjJtko7dhKDqKK4+xJfxQ7ww@mail.gmail.com \
    --to=peter.maydell@linaro.org \
    --cc=f4bug@amsat.org \
    --cc=fthain@telegraphics.com.au \
    --cc=jasowang@redhat.com \
    --cc=laurent@vivier.eu \
    --cc=mcascell@redhat.com \
    --cc=pgn@zju.edu.cn \
    --cc=qemu-devel@nongnu.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 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).