]> git.karo-electronics.de Git - linux-beck.git/commit
rxrpc: Don't access connection from call if pointer is NULL
authorDavid Howells <dhowells@redhat.com>
Mon, 8 Aug 2016 09:27:26 +0000 (10:27 +0100)
committerDavid Howells <dhowells@redhat.com>
Tue, 9 Aug 2016 16:12:23 +0000 (17:12 +0100)
commitf9dc575725baeaad8eb5262589f9aebeeaf13433
treed662e7459b2cf9459629644ea9b604f50b666b44
parent17b963e319449f709e78dc1ef445d797a13eecbc
rxrpc: Don't access connection from call if pointer is NULL

The call state machine processor sets up the message parameters for a UDP
message that it might need to transmit in advance on the basis that there's
a very good chance it's going to have to transmit either an ACK or an
ABORT.  This requires it to look in the connection struct to retrieve some
of the parameters.

However, if the call is complete, the call connection pointer may be NULL
to dissuade the processor from transmitting a message.  However, there are
some situations where the processor is still going to be called - and it's
still going to set up message parameters whether it needs them or not.

This results in a NULL pointer dereference at:

net/rxrpc/call_event.c:837

To fix this, skip the message pre-initialisation if there's no connection
attached.

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