public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: Laurent Vivier <lvivier@redhat.com>
To: passt-dev@passt.top
Subject: Re: [PATCH] tap: fix seq->p.count limit
Date: Wed, 9 Aug 2023 17:44:23 +0200	[thread overview]
Message-ID: <4864b329-2f2b-33e1-0c6b-bbd2bce4f99a@redhat.com> (raw)
In-Reply-To: <20230809092342.2299907-1-lvivier@redhat.com>

On 8/9/23 11:23, Laurent Vivier wrote:
> The number of items in pool_l4_t is defined to UIO_MAXIOV,
> not TAP_SEQS. TAP_SEQS is the number of the messages.
> 
> Fix the value used to compare seq->p.count with.
> 
> Fix: bb708111833e ("treewide: Packet abstraction with mandatory boundary checks")

In fact, it actually fixes:

Fix: 37c228ada88b ("tap, tcp, udp, icmp: Cut down on some oversized buffers")

that replaces UIO_MAXIOV by TAP_SEQS in the array declaration and didn't correclty update 
the code.

Thanks,
Laurent

> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---
>   tap.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/tap.c b/tap.c
> index e034f9468267..69bd19a2a91a 100644
> --- a/tap.c
> +++ b/tap.c
> @@ -678,7 +678,7 @@ resume:
>   		seq->daddr.s_addr	= iph->daddr;			\
>   	} while (0)
>   
> -		if (seq && L4_MATCH(iph, uh, seq) && seq->p.count < TAP_SEQS)
> +		if (seq && L4_MATCH(iph, uh, seq) && seq->p.count < UIO_MAXIOV)
>   			goto append;
>   
>   		if (seq_count == TAP_SEQS)
> @@ -686,7 +686,7 @@ resume:
>   
>   		for (seq = tap4_l4 + seq_count - 1; seq >= tap4_l4; seq--) {
>   			if (L4_MATCH(iph, uh, seq)) {
> -				if (seq->p.count >= TAP_SEQS)
> +				if (seq->p.count >= UIO_MAXIOV)
>   					seq = NULL;
>   				break;
>   			}
> @@ -840,7 +840,7 @@ resume:
>   	} while (0)
>   
>   		if (seq && L4_MATCH(ip6h, proto, uh, seq) &&
> -		    seq->p.count < TAP_SEQS)
> +		    seq->p.count < UIO_MAXIOV)
>   			goto append;
>   
>   		if (seq_count == TAP_SEQS)
> @@ -848,7 +848,7 @@ resume:
>   
>   		for (seq = tap6_l4 + seq_count - 1; seq >= tap6_l4; seq--) {
>   			if (L4_MATCH(ip6h, proto, uh, seq)) {
> -				if (seq->p.count >= TAP_SEQS)
> +				if (seq->p.count >= UIO_MAXIOV)
>   					seq = NULL;
>   				break;
>   			}


  parent reply	other threads:[~2023-08-09 15:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-09  9:23 [PATCH] tap: fix seq->p.count limit Laurent Vivier
2023-08-09  9:54 ` David Gibson
2023-08-09 15:44 ` Laurent Vivier [this message]
2023-08-13 13:17 ` Stefano Brivio
2023-08-13 16:31   ` Stefano Brivio

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=4864b329-2f2b-33e1-0c6b-bbd2bce4f99a@redhat.com \
    --to=lvivier@redhat.com \
    --cc=passt-dev@passt.top \
    /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.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

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 IMAP folder(s).