Add some sanity checks around usage of t_fromb64()
authorMatt Caswell <matt@openssl.org>
Thu, 8 Sep 2016 13:32:27 +0000 (14:32 +0100)
committerMatt Caswell <matt@openssl.org>
Wed, 14 Sep 2016 09:09:41 +0000 (10:09 +0100)
commit9496cf577ec4543a6db67092e784c1096a6424fc
treefd7127e8cadbce2e058517568ce85354b8cc9f4b
parentf7358595369fe08c26c95d37394f16be503524cf
Add some sanity checks around usage of t_fromb64()

The internal SRP function t_fromb64() converts from base64 to binary. It
does not validate that the size of the destination is sufficiently large -
that is up to the callers. In some places there was such a check, but not
in others.

Add an argument to t_fromb64() to provide the size of the destination
buffer and validate that we don't write too much data. Also add some sanity
checks to the callers where appropriate.

With thanks to Shi Lei for reporting this issue.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(cherry picked from commit 73f0df8331910d6726d45ecaab12bd93cc48b4e2)
crypto/srp/srp_vfy.c