public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, Laurent Vivier <lvivier@redhat.com>
Subject: Re: [PATCH] packet: Fix off-by-one in packet_get_do() sanity checks
Date: Mon, 10 Oct 2022 19:59:38 +1100	[thread overview]
Message-ID: <Y0Pe+qv3diJLTU5+@yekko> (raw)
In-Reply-To: <20221010075311.824692-1-sbrivio@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1335 bytes --]

On Mon, Oct 10, 2022 at 09:53:11AM +0200, Stefano Brivio wrote:
> An n-sized pool, or a pool with n entries, doesn't include index n,
> only up to n - 1.
> 
> I'm not entirely sure this sanity check actually covers any
> practical case, but I spotted this while debugging a hang in
> tap4_handler() (possibly due to malformed sequence entries from
> qemu).
> 
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>

Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

> ---
>  packet.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/packet.c b/packet.c
> index 3f82e84..d1ff998 100644
> --- a/packet.c
> +++ b/packet.c
> @@ -87,7 +87,7 @@ void packet_add_do(struct pool *p, size_t len, const char *start,
>  void *packet_get_do(const struct pool *p, size_t index, size_t offset,
>  		    size_t len, size_t *left, const char *func, int line)
>  {
> -	if (index > p->size || index > p->count) {
> +	if (index >= p->size || index >= p->count) {
>  		if (func) {
>  			trace("packet %lu from pool size: %lu, count: %lu, "
>  			      "%s:%i", index, p->size, p->count, func, line);

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2022-10-10 10:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-10  7:53 [PATCH] packet: Fix off-by-one in packet_get_do() sanity checks Stefano Brivio
2022-10-10  8:59 ` David Gibson [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=Y0Pe+qv3diJLTU5+@yekko \
    --to=david@gibson.dropbear.id.au \
    --cc=lvivier@redhat.com \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@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.
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).