summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/rsa/rsa_gen.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2015-02-09 15:49:22 +0000
committerjsing <jsing@openbsd.org>2015-02-09 15:49:22 +0000
commitaa389b8c4810b45e7b9b876db8debfbd5206e29e (patch)
treeaceaf6b9cc0050d33c77e910c34260780c91f772 /lib/libssl/src/crypto/rsa/rsa_gen.c
parentExpand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible and (diff)
downloadwireguard-openbsd-aa389b8c4810b45e7b9b876db8debfbd5206e29e.tar.xz
wireguard-openbsd-aa389b8c4810b45e7b9b876db8debfbd5206e29e.zip
BN_CTX_get() can fail - consistently check its return value.
There are currently cases where the return from each call is checked, the return from only the last call is checked and cases where it is not checked at all (including code in bn, ec and engine). Checking the last return value is valid as once the function fails it will continue to return NULL. However, in order to be consistent check each call with the same idiom. This makes it easy to verify. Note there are still a handful of cases that do not follow the idiom - these will be handled separately. ok beck@ doug@
Diffstat (limited to 'lib/libssl/src/crypto/rsa/rsa_gen.c')
-rw-r--r--lib/libssl/src/crypto/rsa/rsa_gen.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/libssl/src/crypto/rsa/rsa_gen.c b/lib/libssl/src/crypto/rsa/rsa_gen.c
index a3b9da4856e..f6f051c4427 100644
--- a/lib/libssl/src/crypto/rsa/rsa_gen.c
+++ b/lib/libssl/src/crypto/rsa/rsa_gen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_gen.c,v 1.16 2014/07/11 08:44:49 jsing Exp $ */
+/* $OpenBSD: rsa_gen.c,v 1.17 2015/02/09 15:49:22 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -99,11 +99,13 @@ rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb)
if (ctx == NULL)
goto err;
BN_CTX_start(ctx);
- r0 = BN_CTX_get(ctx);
- r1 = BN_CTX_get(ctx);
- r2 = BN_CTX_get(ctx);
- r3 = BN_CTX_get(ctx);
- if (r3 == NULL)
+ if ((r0 = BN_CTX_get(ctx)) == NULL)
+ goto err;
+ if ((r1 = BN_CTX_get(ctx)) == NULL)
+ goto err;
+ if ((r2 = BN_CTX_get(ctx)) == NULL)
+ goto err;
+ if ((r3 = BN_CTX_get(ctx)) == NULL)
goto err;
bitsp = (bits + 1) / 2;