Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect return check of BN_bn2binpad #16942

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion crypto/ec/ec_deprecated.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ EC_POINT *EC_POINT_bn2point(const EC_GROUP *group,
return NULL;
}

if (!BN_bn2binpad(bn, buf, buf_len)) {
if (BN_bn2binpad(bn, buf, buf_len) < 0) {
OPENSSL_free(buf);
return NULL;
}
Expand Down
2 changes: 1 addition & 1 deletion test/acvp_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static int pkey_get_bn_bytes(EVP_PKEY *pkey, const char *name,
buf = OPENSSL_zalloc(sz);
if (buf == NULL)
goto err;
if (!BN_bn2binpad(bn, buf, sz))
if (BN_bn2binpad(bn, buf, sz) <= 0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same problem here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed to <= according to reutrn values check in /test/acvp_test.c:229, 231, 570, 572. There are a lot. Do we need to change them all?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And /crypto/ec/ec_curve.c: 3404

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same problem here

Hmm, @kroeckx but what the returned 0 indicates? A 0 byte sized number does not look like a number. Perhaps 0 cannot be returned at all? A zero BIGNUM should be encoded as a single zero byte, shouldn't it? So the return value should be 1.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's hard to see how a zero could be returned.

We should nonetheless try to be consistent in the return code handling.

Copy link
Contributor Author

@PeiweiHu PeiweiHu Nov 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In #16943, the code invoking BN_bn2nativepad has a consistent handling way. As for BN_bn2binpad, == -1, <0, and <=0 can be found in codebase. Maybe it's better to unify them.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, they should be unified. Not necessary for this PR IMO.

goto err;

*out_len = sz;
Expand Down
2 changes: 1 addition & 1 deletion test/ecdsatest.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static int fbytes(unsigned char *buf, size_t num, ossl_unused const char *name,
|| !TEST_true(BN_hex2bn(&tmp, numbers[fbytes_counter]))
/* tmp might need leading zeros so pad it out */
|| !TEST_int_le(BN_num_bytes(tmp), num)
|| !TEST_true(BN_bn2binpad(tmp, buf, num)))
|| !TEST_int_gt(BN_bn2binpad(tmp, buf, num), 0))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same problem here

goto err;

fbytes_counter = (fbytes_counter + 1) % OSSL_NELEM(numbers);
Expand Down