]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
TLS: Fix bounds checking in certificate policy parser
authorJouni Malinen <j@w1.fi>
Tue, 28 Jan 2020 12:17:52 +0000 (14:17 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 28 Jan 2020 12:21:03 +0000 (14:21 +0200)
The recent addition of the X.509v3 certificatePolicies parser had a
copy-paste issue on the inner SEQUENCE parser that ended up using
incorrect length for the remaining buffer. Fix that to calculate the
remaining length properly to avoid reading beyond the end of the buffer
in case of corrupted input data.

Credit to OSS-Fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=20363
Fixes: d165b32f3887 ("TLS: TOD-STRICT and TOD-TOFU certificate policies")
Signed-off-by: Jouni Malinen <j@w1.fi>
src/tls/x509v3.c

index 2b07431166a6122e3aff4ca0fbed1a11b055767f..5c8ac567619682062de39ed8df0e93ec86bfd31a 100644 (file)
@@ -1205,14 +1205,14 @@ static int x509_parse_ext_certificate_policies(struct x509_certificate *cert,
                struct asn1_oid oid;
                char buf[80];
 
-               if (asn1_get_next(pos, len, &hdr) < 0 ||
+               if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
                    hdr.class != ASN1_CLASS_UNIVERSAL ||
                    hdr.tag != ASN1_TAG_SEQUENCE) {
                        wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE (PolicyInformation) - found class %d tag 0x%x",
                                   hdr.class, hdr.tag);
                        return -1;
                }
-               if (hdr.length > pos + len - hdr.payload)
+               if (hdr.length > end - hdr.payload)
                        return -1;
                pos = hdr.payload;
                pol_end = pos + hdr.length;