Thread (19 messages) 19 messages, 5 authors, 2012-06-28

Re: net: nfc: BUG and panic in accept() on 3.5-rc2

From: Sasha Levin <hidden>
Date: 2012-06-11 14:49:39
Also in: lkml, netdev

On Mon, 2012-06-11 at 16:41 +0200, Eric Dumazet wrote:
quoted hunk ↗ jump to hunk
On Mon, 2012-06-11 at 16:41 +0200, Samuel Ortiz wrote:
quoted
Hi Sasha,

On Mon, Jun 11, 2012 at 04:00:41PM +0200, Sasha Levin wrote:
quoted
Hi all,

I've stumbled on the following while fuzzing with trinity inside a KVM tools guest, running on 3.5-rc2:
Thanks for the report, it could be worth adding this one to
bugzilla.kernel.org.

What's trinity ?
Also, if this one is reproducible, would you mind sharing some details about
how we could reproduce it ?
Well, bugfix should be trivial enough ;)
diff --git a/net/nfc/rawsock.c b/net/nfc/rawsock.c
index ec1134c..208416e 100644
--- a/net/nfc/rawsock.c
+++ b/net/nfc/rawsock.c
@@ -54,11 +54,12 @@ static int rawsock_release(struct socket *sock)
 {
 	struct sock *sk = sock->sk;
 
-	pr_debug("sock=%p\n", sock);
-
-	sock_orphan(sk);
-	sock_put(sk);
+	pr_debug("sock=%p sk=%p\n", sock, sk);
 
+	if (sk) {
+		sock_orphan(sk);
+		sock_put(sk);
+	}
 	return 0;
 }
Eric, Is there something that documents at what state each of the
callbacks in the network subsystem can be called? Like a big flow chart
of some sorts?

I'm asking because I've looked at this as well before sending this mail,
and while the fix does look trivial, I wasn't sure whether it is really
the correct fix, or the problem is that this callback wasn't supposed be
called at all so something else is broken (we had such issue with
namespaces and unshare() not long ago).


Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help