]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
crypto: af_alg - Allow af_af_alg_release_parent to be called on nokey path
authorHerbert Xu <herbert@gondor.apana.org.au>
Wed, 13 Jan 2016 06:59:03 +0000 (14:59 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Feb 2016 20:31:03 +0000 (12:31 -0800)
commit 6a935170a980024dd29199e9dbb5c4da4767a1b9 upstream.

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

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
crypto/af_alg.c
include/crypto/if_alg.h

index 6566d2eb0142ef13dfcdb34772cdbb8f3d5c1647..e7cb8367771df9b47582d193b3bec366b6f0e8ea 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);
@@ -268,8 +274,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;
@@ -302,6 +308,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 df8284415c565da141d4b6a7476c92bc4f297b2b..a2bfd7843f18f6e79d8bc7e5743b031345153053 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;