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:06:41 +0000 (10:06 +0100)
commit73f0df8331910d6726d45ecaab12bd93cc48b4e2
treeef798ed6816a369774d7e2bebc5810acb459f664
parent869d0a37cfa7cfdbd42026d2b75d14cdc64e81e0
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>
crypto/srp/srp_vfy.c