linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] crypto: asymmetric_keys: set error code on failure
@ 2016-12-03 14:57 Pan Bian
  2016-12-12 16:10 ` David Howells
  0 siblings, 1 reply; 2+ messages in thread
From: Pan Bian @ 2016-12-03 14:57 UTC (permalink / raw)
  To: David Howells, Herbert Xu, David S. Miller, keyrings, linux-crypto
  Cc: linux-kernel, Pan Bian

From: Pan Bian <bianpan2016@163.com>

In function public_key_verify_signature(), returns variable ret on
error paths. When the call to kmalloc() fails, the value of ret is 0,
and it is not set to an errno before returning. This patch fixes the
bug.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188891

Signed-off-by: Pan Bian <bianpan2016@163.com>
---
 crypto/asymmetric_keys/public_key.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/crypto/asymmetric_keys/public_key.c b/crypto/asymmetric_keys/public_key.c
index fd76b5f..1dc65ba 100644
--- a/crypto/asymmetric_keys/public_key.c
+++ b/crypto/asymmetric_keys/public_key.c
@@ -123,8 +123,10 @@ int public_key_verify_signature(const struct public_key *pkey,
 
 	outlen = crypto_akcipher_maxsize(tfm);
 	output = kmalloc(outlen, GFP_KERNEL);
-	if (!output)
+	if (!output) {
+		ret = -ENOMEM;
 		goto error_free_req;
+	}
 
 	sg_init_one(&sig_sg, sig->s, sig->s_size);
 	sg_init_one(&digest_sg, output, outlen);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] crypto: asymmetric_keys: set error code on failure
  2016-12-03 14:57 [PATCH 1/1] crypto: asymmetric_keys: set error code on failure Pan Bian
@ 2016-12-12 16:10 ` David Howells
  0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2016-12-12 16:10 UTC (permalink / raw)
  To: Pan Bian
  Cc: dhowells, Herbert Xu, David S. Miller, keyrings, linux-crypto,
	linux-kernel, Pan Bian

Pan Bian <bianpan201602@163.com> wrote:

>  	outlen = crypto_akcipher_maxsize(tfm);
>  	output = kmalloc(outlen, GFP_KERNEL);
> -	if (!output)
> +	if (!output) {
> +		ret = -ENOMEM;
>  		goto error_free_req;
> +	}

This is preferred:

+	ret = -ENOMEM;
 	outlen = crypto_akcipher_maxsize(tfm);
 	output = kmalloc(outlen, GFP_KERNEL);
 	if (!output)
 		goto error_free_req;

I'll alter your patch.

David

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-12-12 16:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-03 14:57 [PATCH 1/1] crypto: asymmetric_keys: set error code on failure Pan Bian
2016-12-12 16:10 ` David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).