Revert BN_copy() flag copy semantics change
authorMatt Caswell <matt@openssl.org>
Mon, 15 Jan 2018 11:23:07 +0000 (11:23 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 16 Jan 2018 15:25:27 +0000 (15:25 +0000)
commitd320e803d97fe9cef872a3eafa3359886b42a7da
tree7b89f7d639c6fedb466080abc388c8362592e045
parent9556a442188421b109d8c4ff51d34f3981aa25f0
Revert BN_copy() flag copy semantics change

Commit 9f9442918a changed the semantics of BN_copy() to additionally
copy the BN_FLG_CONSTTIME flag if it is set. This turns out to be
ill advised as it has unintended consequences. For example calling
BN_mod_inverse_no_branch() can sometimes return a result with the flag
set and sometimes not as a result. This can lead to later failures if we
go down code branches that do not support constant time, but check for
the presence of the flag.

The original commit was made due to an issue in BN_MOD_CTX_set(). The
original PR fixed the problem in that function, but it was changed in
review to fix it in BN_copy() instead. The solution seems to be to revert
the BN_copy() change and go back to the originally proposed way.

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/5080)

(cherry picked from commit 7d461736f7bd3af3c2f266f8541034ecf6f41ed9)
crypto/bn/bn_lib.c
crypto/bn/bn_mont.c