From: Dr. Stephen Henson Date: Tue, 1 Jul 2014 23:57:57 +0000 (+0100) Subject: ASN1 sanity check. X-Git-Tag: OpenSSL_1_0_1i~62 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d87cd2f033533cd430f7e3c7dccbcb62741a559;p=oweals%2Fopenssl.git ASN1 sanity check. Primitive encodings shouldn't use indefinite length constructed form. PR#2438 (partial). (cherry picked from commit 398e99fe5e06edb11f55a39ce0883d9aa633ffa9) --- diff --git a/crypto/asn1/asn1_lib.c b/crypto/asn1/asn1_lib.c index 1bcb44aee2..fa04b08ed6 100644 --- a/crypto/asn1/asn1_lib.c +++ b/crypto/asn1/asn1_lib.c @@ -131,6 +131,9 @@ int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, *pclass=xclass; if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err; + if (inf && !(ret & V_ASN1_CONSTRUCTED)) + goto err; + #if 0 fprintf(stderr,"p=%d + *plength=%ld > omax=%ld + *pp=%d (%d > %d)\n", (int)p,*plength,omax,(int)*pp,(int)(p+ *plength),