summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2015-09-27 19:41:38 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2015-09-27 19:41:38 +0000
commitf38491d18468a7cb9197274b3920aaf4d9a9886c (patch)
treeffeca95f7381617592ababd4e0585a93a89337b2 /lib/libssl
parentfa6404c7e0b83cdb394d2fb8af05dca8154e878c (diff)
Redo 1.25, without the NULL deref.
ok sthen@ bcook@
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/src/crypto/bn/bn_print.c53
1 files changed, 31 insertions, 22 deletions
diff --git a/lib/libssl/src/crypto/bn/bn_print.c b/lib/libssl/src/crypto/bn/bn_print.c
index 021ed23d96c..f97f310eda9 100644
--- a/lib/libssl/src/crypto/bn/bn_print.c
+++ b/lib/libssl/src/crypto/bn/bn_print.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_print.c,v 1.26 2015/09/18 09:00:04 sthen Exp $ */
+/* $OpenBSD: bn_print.c,v 1.27 2015/09/27 19:41:37 miod Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -114,6 +114,20 @@ BN_bn2dec(const BIGNUM *a)
BIGNUM *t = NULL;
BN_ULONG *bn_data = NULL, *lp;
+ if (BN_is_zero(a)) {
+ buf = malloc(BN_is_negative(a) + 2);
+ if (buf == NULL) {
+ BNerr(BN_F_BN_BN2DEC, ERR_R_MALLOC_FAILURE);
+ goto err;
+ }
+ p = buf;
+ if (BN_is_negative(a))
+ *(p++) = '-';
+ *(p++) = '0';
+ *(p++) = '\0';
+ return (buf);
+ }
+
/* get an upper bound for the length of the decimal integer
* num <= (BN_num_bits(a) + 1) * log(2)
* <= 3 * BN_num_bits(a) * 0.1001 + log(2) + 1 (rounding error)
@@ -133,31 +147,26 @@ BN_bn2dec(const BIGNUM *a)
#define BUF_REMAIN (num+3 - (size_t)(p - buf))
p = buf;
lp = bn_data;
- if (BN_is_zero(t)) {
- *(p++) = '0';
- *(p++) = '\0';
- } else {
- if (BN_is_negative(t))
- *p++ = '-';
+ if (BN_is_negative(t))
+ *p++ = '-';
- i = 0;
- while (!BN_is_zero(t)) {
- *lp = BN_div_word(t, BN_DEC_CONV);
- lp++;
- }
+ i = 0;
+ while (!BN_is_zero(t)) {
+ *lp = BN_div_word(t, BN_DEC_CONV);
+ lp++;
+ }
+ lp--;
+ /* We now have a series of blocks, BN_DEC_NUM chars
+ * in length, where the last one needs truncation.
+ * The blocks need to be reversed in order. */
+ snprintf(p, BUF_REMAIN, BN_DEC_FMT1, *lp);
+ while (*p)
+ p++;
+ while (lp != bn_data) {
lp--;
- /* We now have a series of blocks, BN_DEC_NUM chars
- * in length, where the last one needs truncation.
- * The blocks need to be reversed in order. */
- snprintf(p, BUF_REMAIN, BN_DEC_FMT1, *lp);
+ snprintf(p, BUF_REMAIN, BN_DEC_FMT2, *lp);
while (*p)
p++;
- while (lp != bn_data) {
- lp--;
- snprintf(p, BUF_REMAIN, BN_DEC_FMT2, *lp);
- while (*p)
- p++;
- }
}
ok = 1;