crypto: do not free algorithm before using
In multiple functions, the algorithm fields are read after its reference is dropped through crypto_mod_put. In this case, the algorithm memory may be freed, resulting in use-after-free bugs. This patch delays the put operation until the algorithm is never used. Fixes:79c65d179a
("crypto: cbc - Convert to skcipher") Fixes:a7d85e06ed
("crypto: cfb - add support for Cipher FeedBack mode") Fixes:043a44001b
("crypto: pcbc - Convert to skcipher") Cc: <stable@vger.kernel.org> Signed-off-by: Pan Bian <bianpan2016@163.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
9f4debe384
commit
e5bde04ccc
|
@ -140,9 +140,8 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
spawn = skcipher_instance_ctx(inst);
|
spawn = skcipher_instance_ctx(inst);
|
||||||
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
||||||
CRYPTO_ALG_TYPE_MASK);
|
CRYPTO_ALG_TYPE_MASK);
|
||||||
crypto_mod_put(alg);
|
|
||||||
if (err)
|
if (err)
|
||||||
goto err_free_inst;
|
goto err_put_alg;
|
||||||
|
|
||||||
err = crypto_inst_setname(skcipher_crypto_instance(inst), "cbc", alg);
|
err = crypto_inst_setname(skcipher_crypto_instance(inst), "cbc", alg);
|
||||||
if (err)
|
if (err)
|
||||||
|
@ -174,12 +173,15 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
err = skcipher_register_instance(tmpl, inst);
|
err = skcipher_register_instance(tmpl, inst);
|
||||||
if (err)
|
if (err)
|
||||||
goto err_drop_spawn;
|
goto err_drop_spawn;
|
||||||
|
crypto_mod_put(alg);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
err_drop_spawn:
|
err_drop_spawn:
|
||||||
crypto_drop_spawn(spawn);
|
crypto_drop_spawn(spawn);
|
||||||
|
err_put_alg:
|
||||||
|
crypto_mod_put(alg);
|
||||||
err_free_inst:
|
err_free_inst:
|
||||||
kfree(inst);
|
kfree(inst);
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
@ -286,9 +286,8 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
spawn = skcipher_instance_ctx(inst);
|
spawn = skcipher_instance_ctx(inst);
|
||||||
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
||||||
CRYPTO_ALG_TYPE_MASK);
|
CRYPTO_ALG_TYPE_MASK);
|
||||||
crypto_mod_put(alg);
|
|
||||||
if (err)
|
if (err)
|
||||||
goto err_free_inst;
|
goto err_put_alg;
|
||||||
|
|
||||||
err = crypto_inst_setname(skcipher_crypto_instance(inst), "cfb", alg);
|
err = crypto_inst_setname(skcipher_crypto_instance(inst), "cfb", alg);
|
||||||
if (err)
|
if (err)
|
||||||
|
@ -317,12 +316,15 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
err = skcipher_register_instance(tmpl, inst);
|
err = skcipher_register_instance(tmpl, inst);
|
||||||
if (err)
|
if (err)
|
||||||
goto err_drop_spawn;
|
goto err_drop_spawn;
|
||||||
|
crypto_mod_put(alg);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
err_drop_spawn:
|
err_drop_spawn:
|
||||||
crypto_drop_spawn(spawn);
|
crypto_drop_spawn(spawn);
|
||||||
|
err_put_alg:
|
||||||
|
crypto_mod_put(alg);
|
||||||
err_free_inst:
|
err_free_inst:
|
||||||
kfree(inst);
|
kfree(inst);
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
@ -244,9 +244,8 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
spawn = skcipher_instance_ctx(inst);
|
spawn = skcipher_instance_ctx(inst);
|
||||||
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
|
||||||
CRYPTO_ALG_TYPE_MASK);
|
CRYPTO_ALG_TYPE_MASK);
|
||||||
crypto_mod_put(alg);
|
|
||||||
if (err)
|
if (err)
|
||||||
goto err_free_inst;
|
goto err_put_alg;
|
||||||
|
|
||||||
err = crypto_inst_setname(skcipher_crypto_instance(inst), "pcbc", alg);
|
err = crypto_inst_setname(skcipher_crypto_instance(inst), "pcbc", alg);
|
||||||
if (err)
|
if (err)
|
||||||
|
@ -275,12 +274,15 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
err = skcipher_register_instance(tmpl, inst);
|
err = skcipher_register_instance(tmpl, inst);
|
||||||
if (err)
|
if (err)
|
||||||
goto err_drop_spawn;
|
goto err_drop_spawn;
|
||||||
|
crypto_mod_put(alg);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
err_drop_spawn:
|
err_drop_spawn:
|
||||||
crypto_drop_spawn(spawn);
|
crypto_drop_spawn(spawn);
|
||||||
|
err_put_alg:
|
||||||
|
crypto_mod_put(alg);
|
||||||
err_free_inst:
|
err_free_inst:
|
||||||
kfree(inst);
|
kfree(inst);
|
||||||
goto out;
|
goto out;
|
||||||
|
|
Loading…
Reference in New Issue