diff options
author | David Howells <dhowells@redhat.com> | 2020-01-30 21:50:36 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-14 16:32:07 -0500 |
commit | 532e2558e5747fc7f868023fa19e327cbc4608f0 (patch) | |
tree | c548b6e3640e45e4e2f9300f7d3d9aab710d4ee6 /net/rxrpc | |
parent | e1b992f58e39cd6f2712608480fdb96ff23e40ad (diff) | |
download | linux-stable-532e2558e5747fc7f868023fa19e327cbc4608f0.tar.gz linux-stable-532e2558e5747fc7f868023fa19e327cbc4608f0.tar.bz2 linux-stable-532e2558e5747fc7f868023fa19e327cbc4608f0.zip |
rxrpc: Fix insufficient receive notification generation
[ Upstream commit f71dbf2fb28489a79bde0dca1c8adfb9cdb20a6b ]
In rxrpc_input_data(), rxrpc_notify_socket() is called if the base sequence
number of the packet is immediately following the hard-ack point at the end
of the function. However, this isn't sufficient, since the recvmsg side
may have been advancing the window and then overrun the position in which
we're adding - at which point rx_hard_ack >= seq0 and no notification is
generated.
Fix this by always generating a notification at the end of the input
function.
Without this, a long call may stall, possibly indefinitely.
Fixes: 248f219cb8bc ("rxrpc: Rewrite the data and ack handling code")
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/rxrpc/input.c b/net/rxrpc/input.c index ea506a77f3c8..18ce6f97462b 100644 --- a/net/rxrpc/input.c +++ b/net/rxrpc/input.c @@ -585,8 +585,7 @@ ack: immediate_ack, true, rxrpc_propose_ack_input_data); - if (sp->hdr.seq == READ_ONCE(call->rx_hard_ack) + 1) - rxrpc_notify_socket(call); + rxrpc_notify_socket(call); _leave(" [queued]"); } |