Skip to content

Commit

Permalink
Check return value of some BN functions.
Browse files Browse the repository at this point in the history
Factorise multiple bn_get_top(group->field) calls
Add missing checks on some conditional BN_copy return value
Add missing checks on some BN_copy return value
Add missing checks on a few bn_wexpand return value

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from #1626)
(cherry picked from commit 78e09b5)
  • Loading branch information
Rich Salz committed Nov 16, 2016
1 parent 3201a1d commit 8ac70be
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 17 deletions.
5 changes: 3 additions & 2 deletions crypto/bn/bn_exp.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,9 @@ int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
goto err;
}
}
if (r != rr)
BN_copy(r, rr);
if (r != rr && BN_copy(r, rr) == NULL)
goto err;

ret = 1;
err:
BN_CTX_end(ctx);
Expand Down
5 changes: 3 additions & 2 deletions crypto/bn/bn_mul.c
Original file line number Diff line number Diff line change
Expand Up @@ -1083,8 +1083,9 @@ int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
end:
#endif
bn_correct_top(rr);
if (r != rr)
BN_copy(r, rr);
if (r != rr && BN_copy(r, rr) == NULL)
goto err;

ret = 1;
err:
bn_check_top(r);
Expand Down
3 changes: 2 additions & 1 deletion crypto/bn/bn_prime.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
BIGNUM *t;
if ((t = BN_CTX_get(ctx)) == NULL)
goto err;
BN_copy(t, a);
if (BN_copy(t, a) == NULL)
goto err;
t->neg = 0;
A = t;
} else
Expand Down
5 changes: 3 additions & 2 deletions crypto/bn/bn_sqr.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx)
rr->top = max - 1;
else
rr->top = max;
if (rr != r)
BN_copy(r, rr);
if (r != rr && BN_copy(r, rr) == NULL)
goto err;

ret = 1;
err:
bn_check_top(rr);
Expand Down
20 changes: 11 additions & 9 deletions crypto/ec/ec2_mult.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static int ec_GF2m_montgomery_point_multiply(const EC_GROUP *group,
BN_CTX *ctx)
{
BIGNUM *x1, *x2, *z1, *z2;
int ret = 0, i;
int ret = 0, i, group_top;
BN_ULONG mask, word;

if (r == point) {
Expand Down Expand Up @@ -297,10 +297,12 @@ static int ec_GF2m_montgomery_point_multiply(const EC_GROUP *group,
x2 = &r->X;
z2 = &r->Y;

bn_wexpand(x1, group->field.top);
bn_wexpand(z1, group->field.top);
bn_wexpand(x2, group->field.top);
bn_wexpand(z2, group->field.top);
group_top = group->field.top;
if (bn_wexpand(x1, group_top) == NULL
|| bn_wexpand(z1, group_top) == NULL
|| bn_wexpand(x2, group_top) == NULL
|| bn_wexpand(z2, group_top) == NULL)
goto err;

if (!BN_GF2m_mod_arr(x1, &point->X, group->poly))
goto err; /* x1 = x */
Expand Down Expand Up @@ -329,14 +331,14 @@ static int ec_GF2m_montgomery_point_multiply(const EC_GROUP *group,
for (; i >= 0; i--) {
word = scalar->d[i];
while (mask) {
BN_consttime_swap(word & mask, x1, x2, group->field.top);
BN_consttime_swap(word & mask, z1, z2, group->field.top);
BN_consttime_swap(word & mask, x1, x2, group_top);
BN_consttime_swap(word & mask, z1, z2, group_top);
if (!gf2m_Madd(group, &point->X, x2, z2, x1, z1, ctx))
goto err;
if (!gf2m_Mdouble(group, x1, z1, ctx))
goto err;
BN_consttime_swap(word & mask, x1, x2, group->field.top);
BN_consttime_swap(word & mask, z1, z2, group->field.top);
BN_consttime_swap(word & mask, x1, x2, group_top);
BN_consttime_swap(word & mask, z1, z2, group_top);
mask >>= 1;
}
mask = BN_TBIT;
Expand Down
3 changes: 2 additions & 1 deletion crypto/rsa/rsa_gen.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value,
if (!rsa->iqmp && ((rsa->iqmp = BN_new()) == NULL))
goto err;

BN_copy(rsa->e, e_value);
if (BN_copy(rsa->e, e_value) == NULL)
goto err;

/* generate p and q */
for (;;) {
Expand Down

0 comments on commit 8ac70be

Please sign in to comment.