netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] SELinux: Fix double free in selinux_netlbl_sock_setsid()
@ 2008-01-29  2:20 Paul Moore
  2008-01-29  3:51 ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Moore @ 2008-01-29  2:20 UTC (permalink / raw)
  To: linux-kernel; +Cc: netdev, selinux, stable, bunk, jmorris

As pointed out by Adrian Bunk, commit 45c950e0f839fded922ebc0bfd59b1081cc71b70
caused a double-free when security_netlbl_sid_to_secattr() fails.  This patch
fixes this by removing the netlbl_secattr_destroy() call from that function
since we are already releasing the secattr memory in
selinux_netlbl_sock_setsid().

Signed-off-by: Paul Moore <paul.moore@hp.com>
---

 security/selinux/ss/services.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index 4bf715d..3a16aba 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -2629,7 +2629,6 @@ int security_netlbl_sid_to_secattr(u32 sid, struct netlbl_lsm_secattr *secattr)
 
 netlbl_sid_to_secattr_failure:
 	POLICY_RDUNLOCK;
-	netlbl_secattr_destroy(secattr);
 	return rc;
 }
 #endif /* CONFIG_NETLABEL */

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-01-29 17:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-29  2:20 [PATCH] SELinux: Fix double free in selinux_netlbl_sock_setsid() Paul Moore
2008-01-29  3:51 ` David Miller
2008-01-29 17:13   ` Paul Moore

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