netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Clear ulog message to prevent leaking uninitializied memory to user
@ 2010-08-10 20:22 Mark Leander
  0 siblings, 0 replies; only message in thread
From: Mark Leander @ 2010-08-10 20:22 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: netfilter-devel, Mark Leander

ipt_ulog_packet() did not properly blank the char[] members
indev_name, outdev_name, prefix and mac of struct ulog_packet_msg.
This leaks uninitialized kernel memory to user space in the form
of netlink NFLOG broadcasts. This change clears the whole structure
initially to avoid this.

Signed-off-by: Mark Leander <mark.leander@topicbranch.net>
---
 net/ipv4/netfilter/ipt_ULOG.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/ipv4/netfilter/ipt_ULOG.c b/net/ipv4/netfilter/ipt_ULOG.c
index 446e0f4..07b36b0 100644
--- a/net/ipv4/netfilter/ipt_ULOG.c
+++ b/net/ipv4/netfilter/ipt_ULOG.c
@@ -204,6 +204,7 @@ static void ipt_ulog_packet(unsigned int hooknum,
 	ub->qlen++;
 
 	pm = NLMSG_DATA(nlh);
+	memset(pm, 0, sizeof(*pm));
 
 	/* We might not have a timestamp, get one */
 	if (skb->tstamp.tv64 == 0)
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-10 20:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-10 20:22 [PATCH] Clear ulog message to prevent leaking uninitializied memory to user Mark Leander

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).