All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
To: netfilter-devel@vger.kernel.org
Cc: pablo@netfilter.org
Subject: [libnftnl PATCH 2/2] src: improve printing of XML/JSON event wrapper header/footer
Date: Mon, 25 Aug 2014 15:02:27 +0200	[thread overview]
Message-ID: <20140825130227.23329.41536.stgit@nfdev.cica.es> (raw)
In-Reply-To: <20140825130221.23329.86583.stgit@nfdev.cica.es>

Use the nft_fprintf() helper. The helper handles \0 properly.

Before this patch, we get trash in the output due to the buffer being printed
without any \0.

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
 src/common.c |   34 ++++++++++++++++++----------------
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/src/common.c b/src/common.c
index 3ceb811..a6f2508 100644
--- a/src/common.c
+++ b/src/common.c
@@ -114,14 +114,15 @@ int nft_event_header_snprintf(char *buf, size_t size, uint32_t type,
 	return ret;
 }
 
-int nft_event_header_fprintf(FILE *fp, uint32_t type, uint32_t flags)
+static int nft_event_header_fprintf_cb(char *buf, size_t size, void *unused,
+				       uint32_t type, uint32_t flags)
 {
-	char buf[64]; /* enough for the maximum string length above */
-
-	nft_event_header_snprintf(buf, sizeof(buf), type, flags);
-	buf[sizeof(buf) - 1] = '\0';
+	return nft_event_header_snprintf(buf, size, type, flags);
+}
 
-	return fprintf(fp, "%s", buf);
+int nft_event_header_fprintf(FILE *fp, uint32_t type, uint32_t flags)
+{
+	return nft_fprintf(fp, NULL, type, flags, nft_event_header_fprintf_cb);
 }
 
 int nft_event_footer_snprintf(char *buf, size_t size, uint32_t type,
@@ -140,6 +141,17 @@ int nft_event_footer_snprintf(char *buf, size_t size, uint32_t type,
 	}
 }
 
+static int nft_event_footer_fprintf_cb(char *buf, size_t size, void *unused,
+				       uint32_t type, uint32_t flags)
+{
+	return nft_event_footer_snprintf(buf, size, type, flags);
+}
+
+int nft_event_footer_fprintf(FILE *fp, uint32_t type, uint32_t flags)
+{
+	return nft_fprintf(fp, NULL, type, flags, nft_event_footer_fprintf_cb);
+}
+
 static void nft_batch_build_hdr(char *buf, uint16_t type, uint32_t seq)
 {
 	struct nlmsghdr *nlh;
@@ -168,16 +180,6 @@ void nft_batch_end(char *buf, uint32_t seq)
 }
 EXPORT_SYMBOL(nft_batch_end);
 
-int nft_event_footer_fprintf(FILE *fp, uint32_t type, uint32_t flags)
-{
-	char buf[32]; /* enough for the maximum string length above */
-
-	nft_event_footer_snprintf(buf, sizeof(buf), type, flags);
-	buf[sizeof(buf) - 1] = '\0';
-
-	return fprintf(fp, "%s", buf);
-}
-
 int nft_batch_is_supported(void)
 {
 	struct mnl_socket *nl;


  reply	other threads:[~2014-08-25 13:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-25 13:02 [libnftnl PATCH 1/2] utils: ensure \0 is in place in nft_fprintf() Arturo Borrero Gonzalez
2014-08-25 13:02 ` Arturo Borrero Gonzalez [this message]
2014-08-25 14:12   ` [libnftnl PATCH 2/2] src: improve printing of XML/JSON event wrapper header/footer Pablo Neira Ayuso
2014-08-25 14:09 ` [libnftnl PATCH 1/2] utils: ensure \0 is in place in nft_fprintf() 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=20140825130227.23329.41536.stgit@nfdev.cica.es \
    --to=arturo.borrero.glez@gmail.com \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=pablo@netfilter.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.