From: Marc Dionne Date: Fri, 12 Apr 2019 15:33:40 +0000 (+0100) Subject: rxrpc: Clear socket error X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=56d282d9db19f85f759b7a81f0829b58c00571b0;p=linux.git rxrpc: Clear socket error When an ICMP or ICMPV6 error is received, the error will be attached to the socket (sk_err) and the report function will get called. Clear any pending error here by calling sock_error(). This would cause the following attempt to use the socket to fail with the error code stored by the ICMP error, resulting in unexpected errors with various side effects depending on the context. Signed-off-by: Marc Dionne Signed-off-by: David Howells Tested-by: Jonathan Billings Signed-off-by: David S. Miller --- diff --git a/net/rxrpc/peer_event.c b/net/rxrpc/peer_event.c index bc05af89fc381..6e84d878053c7 100644 --- a/net/rxrpc/peer_event.c +++ b/net/rxrpc/peer_event.c @@ -157,6 +157,11 @@ void rxrpc_error_report(struct sock *sk) _enter("%p{%d}", sk, local->debug_id); + /* Clear the outstanding error value on the socket so that it doesn't + * cause kernel_sendmsg() to return it later. + */ + sock_error(sk); + skb = sock_dequeue_err_skb(sk); if (!skb) { _leave("UDP socket errqueue empty");