Skip to content

Commit

Permalink
[CRYPTO] api: fix crypto_alloc_base() return value
Browse files Browse the repository at this point in the history
This patch makes crypto_alloc_base() return proper return value.

- If kzalloc() failure happens within __crypto_alloc_tfm(),
  crypto_alloc_base() returns NULL. But crypto_alloc_base()
  is supposed to return error code as pointer. So this patch
  makes it return -ENOMEM in that case.

- crypto_alloc_base() is suppose to return -EINTR, if it is
  interrupted by signal. But it may not return -EINTR.

Signed-off-by: Akinobu Mita <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
mita authored and herbertx committed Oct 11, 2006
1 parent 53a5fbd commit 9765d26
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions crypto/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 flags)
tfm_size = sizeof(*tfm) + crypto_ctxsize(alg, flags);
tfm = kzalloc(tfm_size, GFP_KERNEL);
if (tfm == NULL)
goto out;
goto out_err;

tfm->__crt_alg = alg;

Expand All @@ -355,6 +355,7 @@ struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 flags)
crypto_exit_ops(tfm);
out_free_tfm:
kfree(tfm);
out_err:
tfm = ERR_PTR(err);
out:
return tfm;
Expand Down Expand Up @@ -414,14 +415,14 @@ struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask)
struct crypto_alg *alg;

alg = crypto_alg_mod_lookup(alg_name, type, mask);
err = PTR_ERR(alg);
tfm = ERR_PTR(err);
if (IS_ERR(alg))
if (IS_ERR(alg)) {
err = PTR_ERR(alg);
goto err;
}

tfm = __crypto_alloc_tfm(alg, 0);
if (!IS_ERR(tfm))
break;
return tfm;

crypto_mod_put(alg);
err = PTR_ERR(tfm);
Expand All @@ -433,9 +434,9 @@ struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask)
err = -EINTR;
break;
}
};
}

return tfm;
return ERR_PTR(err);
}
EXPORT_SYMBOL_GPL(crypto_alloc_base);

Expand Down

0 comments on commit 9765d26

Please sign in to comment.