Make sure we check an incoming reneg ClientHello in DTLS
authorMatt Caswell <matt@openssl.org>
Mon, 29 Jan 2018 14:55:44 +0000 (14:55 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 30 Jan 2018 16:02:07 +0000 (16:02 +0000)
commit12492580ffd561764111b5efbafde17125b91e92
tree6114347f51692d9f4a7f74f5992c65231406595b
parentc6a351a54c8a9fbcdf07ae2171ab8f6dd4416a5d
Make sure we check an incoming reneg ClientHello in DTLS

In TLS we have a check to make sure an incoming reneg ClientHello is
acceptable. The equivalent check is missing in the DTLS code. This means
that if a client does not signal the ability to handle secure reneg in the
initial handshake, then a subsequent reneg handshake should be rejected by
the server. In the DTLS case the reneg was being allowed if the the 2nd
ClientHello had a renegotiation_info extension. This is incorrect.

While incorrect, this does not represent a security issue because if
the renegotiation_info extension is present in the second ClientHello it
also has to be *correct*. Therefore this will only work if both the client
and server believe they are renegotiating, and both know the previous
Finished result. This is not the case in an insecure rengotiation attack.

I have also tidied up the check in the TLS code and given a better check
for determining whether we are renegotiating or not.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5191)
ssl/record/rec_layer_d1.c
ssl/record/rec_layer_s3.c