Skip to content

Commit

Permalink
crypto: af_alg - Allow af_af_alg_release_parent to be called on nokey…
Browse files Browse the repository at this point in the history
… path

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

Cc: [email protected]
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
herbertx committed Jan 18, 2016
1 parent 70401f4 commit 6a93517
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion crypto/af_alg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions include/crypto/if_alg.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6a93517

Please sign in to comment.