]> git.hungrycats.org Git - linux/commitdiff
ppp: fix pppoe_dev deletion condition in pppoe_release()
authorGuillaume Nault <g.nault@alphalink.fr>
Thu, 22 Oct 2015 14:57:10 +0000 (16:57 +0200)
committerJiri Slaby <jslaby@suse.cz>
Sat, 14 Nov 2015 15:48:25 +0000 (16:48 +0100)
[ Upstream commit 1acea4f6ce1b1c0941438aca75dd2e5c6b09db60 ]

We can't rely on PPPOX_ZOMBIE to decide whether to clear po->pppoe_dev.
PPPOX_ZOMBIE can be set by pppoe_disc_rcv() even when po->pppoe_dev is
NULL. So we have no guarantee that (sk->sk_state & PPPOX_ZOMBIE) implies
(po->pppoe_dev != NULL).
Since we're releasing a PPPoE socket, we want to release the pppoe_dev
if it exists and reset sk_state to PPPOX_DEAD, no matter the previous
value of sk_state. So we can just check for po->pppoe_dev and avoid any
assumption on sk->sk_state.

Fixes: 2b018d57ff18 ("pppoe: drop PPPOX_ZOMBIEs in pppoe_release")
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/net/ppp/pppoe.c

index d66cf214e95ec75de0b7c01f696fc6b34acf848d..1cfd4e841854e884b4fd364f178b3d371739862f 100644 (file)
@@ -569,7 +569,7 @@ static int pppoe_release(struct socket *sock)
 
        po = pppox_sk(sk);
 
-       if (sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND | PPPOX_ZOMBIE)) {
+       if (po->pppoe_dev) {
                dev_put(po->pppoe_dev);
                po->pppoe_dev = NULL;
        }