diff options
| author | Guillaume Nault <g.nault@alphalink.fr> | 2017-03-29 02:45:29 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-03 11:36:35 -0400 |
| commit | 3ae0fc950603dcc1716eba1f3a99d6119509c505 (patch) | |
| tree | 9ebd8ba997223d490ef06cfe5c7ab0dd35fe6452 /net | |
| parent | 59bc404b382967a41250cc01299b0419e61392c0 (diff) | |
l2tp: purge socket queues in the .destruct() callback
[ Upstream commit e91793bb615cf6cdd59c0b6749fe173687bb0947 ]
The Rx path may grab the socket right before pppol2tp_release(), but
nothing guarantees that it will enqueue packets before
skb_queue_purge(). Therefore, the socket can be destroyed without its
queues fully purged.
Fix this by purging queues in pppol2tp_session_destruct() where we're
guaranteed nothing is still referencing the socket.
Fixes: 9e9cb6221aa7 ("l2tp: fix userspace reception on plain L2TP sockets")
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
| -rw-r--r-- | net/l2tp/l2tp_ppp.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/l2tp/l2tp_ppp.c b/net/l2tp/l2tp_ppp.c index 41d47bfda15c..51c190dc2582 100644 --- a/net/l2tp/l2tp_ppp.c +++ b/net/l2tp/l2tp_ppp.c | |||
| @@ -450,6 +450,10 @@ static void pppol2tp_session_close(struct l2tp_session *session) | |||
| 450 | static void pppol2tp_session_destruct(struct sock *sk) | 450 | static void pppol2tp_session_destruct(struct sock *sk) |
| 451 | { | 451 | { |
| 452 | struct l2tp_session *session = sk->sk_user_data; | 452 | struct l2tp_session *session = sk->sk_user_data; |
| 453 | |||
| 454 | skb_queue_purge(&sk->sk_receive_queue); | ||
| 455 | skb_queue_purge(&sk->sk_write_queue); | ||
| 456 | |||
| 453 | if (session) { | 457 | if (session) { |
| 454 | sk->sk_user_data = NULL; | 458 | sk->sk_user_data = NULL; |
| 455 | BUG_ON(session->magic != L2TP_SESSION_MAGIC); | 459 | BUG_ON(session->magic != L2TP_SESSION_MAGIC); |
| @@ -488,9 +492,6 @@ static int pppol2tp_release(struct socket *sock) | |||
| 488 | l2tp_session_queue_purge(session); | 492 | l2tp_session_queue_purge(session); |
| 489 | sock_put(sk); | 493 | sock_put(sk); |
| 490 | } | 494 | } |
| 491 | skb_queue_purge(&sk->sk_receive_queue); | ||
| 492 | skb_queue_purge(&sk->sk_write_queue); | ||
| 493 | |||
| 494 | release_sock(sk); | 495 | release_sock(sk); |
| 495 | 496 | ||
| 496 | /* This will delete the session context via | 497 | /* This will delete the session context via |
