From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Maya Rashish <mrashish@redhat.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [libnftnl PATCH 2/2 v2] Avoid out of bounds read from data
Date: Fri, 19 Feb 2021 01:18:29 +0100 [thread overview]
Message-ID: <20210219001829.GA4379@salvia> (raw)
In-Reply-To: <1ec62c2c-869d-9acf-138d-99baeaca07b0@redhat.com>
Hi Maya,
On Thu, Feb 18, 2021 at 01:06:38PM +0200, Maya Rashish wrote:
> When data is smaller than the destination, &ctr->pkts.
>
> This might introduce some issues since we're now not
> filling the rest of the memory, but filling out with
> uninitialized garbage is probably as bad as leaving it
> as garbage.
Probably you could update src/expr/ to use nftnl_assert_validate() to
sanity check the input data length?
Please, have a look at nftnl_assert_attr_exists() and
nftnl_assert_validate().
> Signed-off-by: Maya Rashish <mrashish@redhat.com>
> ---
> include/utils.h | 2 ++
> src/expr/counter.c | 4 ++--
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/include/utils.h b/include/utils.h
> index 8af5a8e..6b22e46 100644
> --- a/include/utils.h
> +++ b/include/utils.h
> @@ -67,6 +67,8 @@ void __nftnl_assert_attr_exists(uint16_t attr, uint16_t attr_max,
>
> #define array_size(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
>
> +#define MIN(a,b) ((a) > (b) ? (b) : (a))
> +
> const char *nftnl_family2str(uint32_t family);
> int nftnl_str2family(const char *family);
>
> diff --git a/src/expr/counter.c b/src/expr/counter.c
> index 89a602e..fb036dd 100644
> --- a/src/expr/counter.c
> +++ b/src/expr/counter.c
> @@ -35,10 +35,10 @@ nftnl_expr_counter_set(struct nftnl_expr *e, uint16_t type,
>
> switch(type) {
> case NFTNL_EXPR_CTR_BYTES:
> - memcpy(&ctr->bytes, data, sizeof(ctr->bytes));
> + memcpy(&ctr->bytes, data, MIN(data_len, sizeof(ctr->bytes)));
> break;
> case NFTNL_EXPR_CTR_PACKETS:
> - memcpy(&ctr->pkts, data, sizeof(ctr->pkts));
> + memcpy(&ctr->pkts, data, MIN(data_len, sizeof(ctr->pkts)));
> break;
> default:
> return -1;
> --
> 2.29.2
>
prev parent reply other threads:[~2021-02-19 0:19 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-17 20:46 [libnftnl PATCH 2/2] Avoid out of bounds read from data Maya Rashish
2021-02-17 23:01 ` Pablo Neira Ayuso
2021-02-18 11:06 ` [libnftnl PATCH 2/2 v2] " Maya Rashish
2021-02-19 0:18 ` Pablo Neira Ayuso [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=20210219001829.GA4379@salvia \
--to=pablo@netfilter.org \
--cc=mrashish@redhat.com \
--cc=netfilter-devel@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.