From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [libnftnl PATCH] utils: fix buffer reallocation of nft_fprinft()
Date: Mon, 12 May 2014 17:54:57 +0200 [thread overview]
Message-ID: <20140512155457.GB12698@localhost> (raw)
In-Reply-To: <20140509164547.7057.94412.stgit@nfdev.cica.es>
Hi Arturo,
On Fri, May 09, 2014 at 06:45:47PM +0200, Arturo Borrero Gonzalez wrote:
> When _snprintf() reports it would print n characters, that n doesn't include
> the trailing \0 that snprintf adds.
>
> Thus, we need to [re]allocate n+1 characters.
>
> While at it, change the reallocation trigger. If the length of the buffer we
> used is equals to the expanded string length, the output has been truncated.
> In other words, if ret == bufsiz, then the trailing \0 is missing.
>
> Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
> ---
> src/utils.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/src/utils.c b/src/utils.c
> index 18917f5..b8094aa 100644
> --- a/src/utils.c
> +++ b/src/utils.c
> @@ -195,12 +195,13 @@ int nft_fprintf(FILE *fp, void *obj, uint32_t type, uint32_t flags,
> int ret;
>
> ret = snprintf_cb(buf, bufsiz, obj, type, flags);
I think we should also check here if snprintf returns -1 now that you
have fixed the SNPRINTF_ macro.
> - if (ret > NFT_SNPRINTF_BUFSIZ) {
> - buf = calloc(1, ret);
> + if (ret >= NFT_SNPRINTF_BUFSIZ) {
> + bufsiz = ret + 1;
> +
> + buf = calloc(1, bufsiz);
You can use malloc instead. Just make sure that the string is always
nul-terminated before printing, something like:
bufsiz = ret + 1;
buf = malloc(1, bufsiz);
if (buf == NULL)
return -1;
ret = snprintf(...
if (ret < 0)
...
}
buf[ret] = '\0';
... = fprintf(...
Thanks.
next prev parent reply other threads:[~2014-05-12 15:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-09 16:45 [libnftnl PATCH] utils: fix buffer reallocation of nft_fprinft() Arturo Borrero Gonzalez
2014-05-12 15:54 ` Pablo Neira Ayuso [this message]
2014-05-13 9:11 ` Arturo Borrero Gonzalez
2014-05-13 12:49 ` Pablo Neira Ayuso
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=20140512155457.GB12698@localhost \
--to=pablo@netfilter.org \
--cc=arturo.borrero.glez@gmail.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 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).