lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LNX.2.00.1106292304380.3747@swampdragon.chaosbits.net>
Date:	Wed, 29 Jun 2011 23:09:27 +0200 (CEST)
From:	Jesper Juhl <jj@...osbits.net>
To:	linux-kernel@...r.kernel.org
cc:	cluster-devel@...hat.com, David Teigland <teigland@...hat.com>,
	Christine Caulfield <ccaulfie@...hat.com>
Subject: [PATCH] fs, dlm: Don't leak, don't do pointless NULL checks and use
 kzalloc

In fs/dlm/lock.c in the dlm_scan_waiters() function there are 3 small
issues:

1) first time through the loop we allocate memory for 'warned', if we
then (in the loop) don't take the "if (!warned)" path and loop again,
the second time through the loop we'll allocate memory again and store
it to 'warned' without freeing the previous allocation - this leaks
memory.
Fix this by kfree'ing 'warned' just before the in-loop allocation. The
first time through the loop this will result in a pointless
kfree(NULL), but that's a small price to pay for avoiding a mem leak
IMHO.

2) There's no need to test the return value of the allocation and do a
memset if is succeedes. Just use kzalloc() to obtain zeroed memory.

3) Since kfree() handles NULL pointers gracefully, the test of
'warned' against NULL before the kfree() after the loop is completely
pointless. Remove it.

Signed-off-by: Jesper Juhl <jj@...osbits.net>
---
 fs/dlm/lock.c |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

  compile tested only.

diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c
index f71d0b5..a18ecff 100644
--- a/fs/dlm/lock.c
+++ b/fs/dlm/lock.c
@@ -849,9 +849,8 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 
 		if (!num_nodes) {
 			num_nodes = ls->ls_num_nodes;
-			warned = kmalloc(GFP_KERNEL, num_nodes * sizeof(int));
-			if (warned)
-				memset(warned, 0, num_nodes * sizeof(int));
+			kfree(warned);
+			warned = kzalloc(GFP_KERNEL, num_nodes * sizeof(int));
 		}
 		if (!warned)
 			continue;
@@ -863,9 +862,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 			  dlm_config.ci_waitwarn_us, lkb->lkb_wait_nodeid);
 	}
 	mutex_unlock(&ls->ls_waiters_mutex);
-
-	if (warned)
-		kfree(warned);
+	kfree(warned);
 
 	if (debug_expired)
 		log_debug(ls, "scan_waiters %u warn %u over %d us max %lld us",
-- 
1.7.6

-- 
Jesper Juhl <jj@...osbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ