mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 21:15:53 +02:00
nfc: Do not send datagram if socket state isn't LLCP_BOUND
[ Upstream commit 6ec0d7527c ]
As we know we cannot send the datagram (state can be set to LLCP_CLOSED
by nfc_llcp_socket_release()), there is no need to proceed further.
Thus, bail out early from llcp_sock_sendmsg().
Signed-off-by: Siddh Raman Pant <code@siddh.me>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Suman Ghosh <sumang@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
79aa992c80
commit
e79e7c3aa5
|
|
@ -796,6 +796,11 @@ static int llcp_sock_sendmsg(struct socket *sock, struct msghdr *msg,
|
|||
}
|
||||
|
||||
if (sk->sk_type == SOCK_DGRAM) {
|
||||
if (sk->sk_state != LLCP_BOUND) {
|
||||
release_sock(sk);
|
||||
return -ENOTCONN;
|
||||
}
|
||||
|
||||
DECLARE_SOCKADDR(struct sockaddr_nfc_llcp *, addr,
|
||||
msg->msg_name);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user