]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
crypto: af_alg - Allow af_af_alg_release_parent to be called on nokey path
authorHerbert Xu <herbert@gondor.apana.org.au>
Thu, 27 Oct 2016 14:29:42 +0000 (17:29 +0300)
committerWilly Tarreau <w@1wt.eu>
Mon, 6 Feb 2017 08:04:07 +0000 (09:04 +0100)
commit 6a935170a980024dd29199e9dbb5c4da4767a1b9 upstream.

This patch allows af_alg_release_parent to be called even for
nokey sockets.

Cc: stable@vger.kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
crypto/af_alg.c
include/crypto/if_alg.h

index de130c24a64b47e95cb1af3d3637e3e38ac1fbe5..2f8fd8441f341f7663959da6e53a6a9c7f54f0ba 100644 (file)
@@ -133,6 +133,12 @@ void af_alg_release_parent(struct sock *sk)
        bool last;
 
        sk = ask->parent;
+
+       if (ask->nokey_refcnt && !ask->refcnt) {
+               sock_put(sk);
+               return;
+       }
+
        ask = alg_sk(sk);
 
        lock_sock(sk);
@@ -258,8 +264,8 @@ int af_alg_accept(struct sock *sk, struct socket *newsock)
        struct alg_sock *ask = alg_sk(sk);
        const struct af_alg_type *type;
        struct sock *sk2;
+       unsigned int nokey;
        int err;
-       bool nokey;
 
        lock_sock(sk);
        type = ask->type;
@@ -292,6 +298,7 @@ int af_alg_accept(struct sock *sk, struct socket *newsock)
                sock_hold(sk);
        alg_sk(sk2)->parent = sk;
        alg_sk(sk2)->type = type;
+       alg_sk(sk2)->nokey_refcnt = nokey;
 
        newsock->ops = type->ops;
        newsock->state = SS_CONNECTED;
index 9e6a2f38c52f6b3eb75db2bc15570b6c5b0aa2f5..bfefd8139e18fedb65b39d68305f1dd9c70f419a 100644 (file)
@@ -31,6 +31,7 @@ struct alg_sock {
        struct sock *parent;
 
        unsigned int refcnt;
+       unsigned int nokey_refcnt;
 
        const struct af_alg_type *type;
        void *private;