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>] [day] [month] [year] [list]
Date:	Sun, 07 Nov 2010 11:33:05 -0500
From:	Dan Rosenberg <drosenberg@...curity.com>
To:	chas@....nrl.navy.mil, davem@...emloft.net, kuznet@....inr.ac.ru,
	pekkas@...core.fi, jmorris@...ei.org, yoshfuji@...ux-ipv6.org,
	kaber@...sh.net, remi.denis-courmont@...ia.com
Cc:	netdev@...r.kernel.org, security@...nel.org, stable@...nel.org
Subject: [PATCH 8/9] Fix leaking of kernel heap addresses in net/

Signed-off-by: Dan Rosenberg <drosenberg@...curity.com>

diff -urp linux-2.6.37-rc1.orig/net/rxrpc/af_rxrpc.c linux-2.6.37-rc1/net/rxrpc/af_rxrpc.c
--- linux-2.6.37-rc1.orig/net/rxrpc/af_rxrpc.c	2010-11-01 07:54:12.000000000 -0400
+++ linux-2.6.37-rc1/net/rxrpc/af_rxrpc.c	2010-11-07 10:47:34.000000000 -0500
@@ -670,7 +670,8 @@ static void rxrpc_sock_destructor(struct
 	WARN_ON(sk->sk_socket);
 
 	if (!sock_flag(sk, SOCK_DEAD)) {
-		printk("Attempt to release alive rxrpc socket: %p\n", sk);
+		printk(KERN_ERR "Attempt to release alive rxrpc socket: %lu\n",
+			sock_i_ino(sk));
 		return;
 	}
 }



--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ