qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: P J P <ppandit@redhat.com>, Dmitry Fleytman <dmitry.fleytman@gmail.com>
Cc: Cheol-woo Myung <330cjfdn@gmail.com>,
	QEMU Developers <qemu-devel@nongnu.org>,
	Prasad J Pandit <pjp@fedoraproject.org>
Subject: Re: [PATCH] hw/net/e1000e: advance desc_offset in case of null descriptor
Date: Thu, 12 Nov 2020 13:51:32 +0800	[thread overview]
Message-ID: <a3e03133-1266-095e-5980-f4879cacb6a2@redhat.com> (raw)
In-Reply-To: <20201111130636.2208620-1-ppandit@redhat.com>


On 2020/11/11 下午9:06, P J P wrote:
> From: Prasad J Pandit <pjp@fedoraproject.org>
>
> While receiving packets via e1000e_write_packet_to_guest() routine,
> 'desc_offset' is advanced only when RX descriptor is processed. And
> RX descriptor is not processed if it has NULL buffer address.
> This may lead to an infinite loop condition. Increament 'desc_offset'
> to process next descriptor in the ring to avoid infinite loop.
>
> Reported-by: Cheol-woo Myung <330cjfdn@gmail.com>
> Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
> ---
>   hw/net/e1000e_core.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/net/e1000e_core.c b/hw/net/e1000e_core.c
> index bcfd46696f..3b096db3a4 100644
> --- a/hw/net/e1000e_core.c
> +++ b/hw/net/e1000e_core.c
> @@ -1596,13 +1596,13 @@ e1000e_write_packet_to_guest(E1000ECore *core, struct NetRxPkt *pkt,
>                             (const char *) &fcs_pad, e1000x_fcs_len(core->mac));
>                   }
>               }
> -            desc_offset += desc_size;
> -            if (desc_offset >= total_size) {
> -                is_last = true;
> -            }
>           } else { /* as per intel docs; skip descriptors with null buf addr */
>               trace_e1000e_rx_null_descriptor();
>           }
> +        desc_offset += desc_size;
> +        if (desc_offset >= total_size) {
> +            is_last = true;
> +        }
>   
>           e1000e_write_rx_descr(core, desc, is_last ? core->rx_pkt : NULL,
>                              rss_info, do_ps ? ps_hdr_len : 0, &bastate.written);


Applied.

Thanks




      reply	other threads:[~2020-11-12  5:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-11 13:06 [PATCH] hw/net/e1000e: advance desc_offset in case of null descriptor P J P
2020-11-12  5:51 ` Jason Wang [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=a3e03133-1266-095e-5980-f4879cacb6a2@redhat.com \
    --to=jasowang@redhat.com \
    --cc=330cjfdn@gmail.com \
    --cc=dmitry.fleytman@gmail.com \
    --cc=pjp@fedoraproject.org \
    --cc=ppandit@redhat.com \
    --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).