Correct alignment calculation in ssl3_setup_write
authorMatt Caswell <matt@openssl.org>
Fri, 8 May 2020 10:12:10 +0000 (11:12 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 15 May 2020 10:36:35 +0000 (11:36 +0100)
commitdf943912046aee2e5e541949dbdbafa38819f195
tree48fd2c63f385b22f26e49a4d43961d72252e285d
parentfa41bbe00ef03cf7f8bb0c6f20fa59d451fc7bca
Correct alignment calculation in ssl3_setup_write

The alignment calculation in ssl3_setup_write incorrectly results in an
alignment allowance of
(-SSL3_RT_HEADER_LENGTH) & (SSL3_ALIGN_PAYLOAD - 1) bytes. This equals 3
in almost all cases. The maximum alignment actually used in do_ssl3_write
is (SSL3_ALIGN_PAYLOAD - 1). This equals 7 bytes in almost all cases. So
there is a potential to overrun the buffer by up to 4 bytes.

Fortunately, the encryption overhead allowed for is 80 bytes which
consists of 16 bytes for the cipher block size and 64 bytes for the MAC
output. However the biggest MAC that we ever produce is HMAC-384 which is
48 bytes - so we have a headroom of 16 bytes (i.e. more than the 4 bytes
of potential overrun).

Thanks to Nagesh Hegde for reporting this.

Fixes #11766

Reviewed-by: Ben Kaduk <kaduk@mit.edu>
(Merged from https://github.com/openssl/openssl/pull/11768)

(cherry picked from commit d30ef639647ad263d09740c931a5bfb5a8b6a5f6)
ssl/record/ssl3_buffer.c