rxrpc: Fix prealloc refcounting
authorDavid Howells <dhowells@redhat.com>
Tue, 13 Sep 2016 08:05:14 +0000 (09:05 +0100)
committerDavid Howells <dhowells@redhat.com>
Tue, 13 Sep 2016 21:38:37 +0000 (22:38 +0100)
commit3432a757b1f889f8c0d33cd9fcabdae172ed812b
treedd17c676654c1d8f37f39619bd2ab89acfae8643
parentcbd00891de9bb4756bac6f6edfa945d5a6468977
rxrpc: Fix prealloc refcounting

The preallocated call buffer holds a ref on the calls within that buffer.
The ref was being released in the wrong place - it worked okay for incoming
calls to the AFS cache manager service, but doesn't work right for incoming
calls to a userspace service.

Instead of releasing an extra ref service calls in rxrpc_release_call(),
the ref needs to be released during the acceptance/rejectance process.  To
this end:

 (1) The prealloc ref is now normally released during
     rxrpc_new_incoming_call().

 (2) For preallocated kernel API calls, the kernel API's ref needs to be
     released when the call is discarded on socket close.

 (3) We shouldn't take a second ref in rxrpc_accept_call().

 (4) rxrpc_recvmsg_new_call() needs to get a ref of its own when it adds
     the call to the to_be_accepted socket queue.

In doing (4) above, we would prefer not to put the call's refcount down to
0 as that entails doing cleanup in softirq context, but it's unlikely as
there are several refs held elsewhere, at least one of which must be put by
someone in process context calling rxrpc_release_call().  However, it's not
a problem if we do have to do that.

Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/call_accept.c
net/rxrpc/call_object.c
net/rxrpc/recvmsg.c