447 lines
16 KiB
Diff
447 lines
16 KiB
Diff
diff --git a/crypto/asn1/t_spki.c b/crypto/asn1/t_spki.c
|
|
index 3bf48db..d68f986 100644
|
|
--- a/crypto/asn1/t_spki.c
|
|
+++ b/crypto/asn1/t_spki.c
|
|
@@ -90,7 +90,7 @@ int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki)
|
|
}
|
|
chal = spki->spkac->challenge;
|
|
if (chal->length)
|
|
- BIO_printf(out, " Challenge String: %s\n", chal->data);
|
|
+ BIO_printf(out, " Challenge String: %.*s\n", chal->length, chal->data);
|
|
i = OBJ_obj2nid(spki->sig_algor->algorithm);
|
|
BIO_printf(out, " Signature Algorithm: %s",
|
|
(i == NID_undef) ? "UNKNOWN" : OBJ_nid2ln(i));
|
|
diff --git a/crypto/ec/ec_asn1.c b/crypto/ec/ec_asn1.c
|
|
index b0cd3e1..192f283 100644
|
|
--- a/crypto/ec/ec_asn1.c
|
|
+++ b/crypto/ec/ec_asn1.c
|
|
@@ -865,7 +865,10 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params)
|
|
ret->seed_len = params->curve->seed->length;
|
|
}
|
|
|
|
- if (!params->order || !params->base || !params->base->data) {
|
|
+ if (params->order == NULL
|
|
+ || params->base == NULL
|
|
+ || params->base->data == NULL
|
|
+ || params->base->length == 0) {
|
|
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, EC_R_ASN1_ERROR);
|
|
goto err;
|
|
}
|
|
diff --git a/crypto/x509v3/v3_akey.c b/crypto/x509v3/v3_akey.c
|
|
index e920270..2dd8f1a 100644
|
|
--- a/crypto/x509v3/v3_akey.c
|
|
+++ b/crypto/x509v3/v3_akey.c
|
|
@@ -88,20 +88,48 @@ static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
|
|
STACK_OF(CONF_VALUE)
|
|
*extlist)
|
|
{
|
|
- char *tmp;
|
|
+ char *tmp = NULL;
|
|
+ STACK_OF(CONF_VALUE) *origextlist = extlist, *tmpextlist;
|
|
+
|
|
if (akeyid->keyid) {
|
|
tmp = hex_to_string(akeyid->keyid->data, akeyid->keyid->length);
|
|
- X509V3_add_value("keyid", tmp, &extlist);
|
|
+ if (tmp == NULL) {
|
|
+ X509V3err(X509V3_F_V2I_AUTHORITY_KEYID, ERR_R_MALLOC_FAILURE);
|
|
+ return NULL;
|
|
+ }
|
|
+ if (!X509V3_add_value("keyid", tmp, &extlist)) {
|
|
+ OPENSSL_free(tmp);
|
|
+ X509V3err(X509V3_F_V2I_AUTHORITY_KEYID, ERR_R_X509_LIB);
|
|
+ goto err;
|
|
+ }
|
|
OPENSSL_free(tmp);
|
|
}
|
|
- if (akeyid->issuer)
|
|
- extlist = i2v_GENERAL_NAMES(NULL, akeyid->issuer, extlist);
|
|
+ if (akeyid->issuer) {
|
|
+ tmpextlist = i2v_GENERAL_NAMES(NULL, akeyid->issuer, extlist);
|
|
+ if (tmpextlist == NULL) {
|
|
+ X509V3err(X509V3_F_V2I_AUTHORITY_KEYID, ERR_R_X509_LIB);
|
|
+ goto err;
|
|
+ }
|
|
+ extlist = tmpextlist;
|
|
+ }
|
|
if (akeyid->serial) {
|
|
tmp = hex_to_string(akeyid->serial->data, akeyid->serial->length);
|
|
- X509V3_add_value("serial", tmp, &extlist);
|
|
+ if (tmp == NULL) {
|
|
+ X509V3err(X509V3_F_V2I_AUTHORITY_KEYID, ERR_R_MALLOC_FAILURE);
|
|
+ goto err;
|
|
+ }
|
|
+ if (!X509V3_add_value("serial", tmp, &extlist)) {
|
|
+ OPENSSL_free(tmp);
|
|
+ X509V3err(X509V3_F_V2I_AUTHORITY_KEYID, ERR_R_X509_LIB);
|
|
+ goto err;
|
|
+ }
|
|
OPENSSL_free(tmp);
|
|
}
|
|
return extlist;
|
|
+ err:
|
|
+ if (origextlist == NULL)
|
|
+ sk_CONF_VALUE_pop_free(extlist, X509V3_conf_free);
|
|
+ return NULL;
|
|
}
|
|
|
|
/*-
|
|
diff --git a/crypto/x509v3/v3_alt.c b/crypto/x509v3/v3_alt.c
|
|
index d4d024c..67c0d28 100644
|
|
--- a/crypto/x509v3/v3_alt.c
|
|
+++ b/crypto/x509v3/v3_alt.c
|
|
@@ -59,6 +59,7 @@
|
|
|
|
#include <stdio.h>
|
|
#include "cryptlib.h"
|
|
+#include <openssl/x509.h>
|
|
#include <openssl/conf.h>
|
|
#include <openssl/x509v3.h>
|
|
|
|
@@ -134,17 +135,20 @@ STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method,
|
|
break;
|
|
|
|
case GEN_EMAIL:
|
|
- if (!X509V3_add_value_uchar("email", gen->d.ia5->data, &ret))
|
|
+ if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data,
|
|
+ gen->d.ia5->length, &ret))
|
|
return NULL;
|
|
break;
|
|
|
|
case GEN_DNS:
|
|
- if (!X509V3_add_value_uchar("DNS", gen->d.ia5->data, &ret))
|
|
+ if (!x509v3_add_len_value_uchar("DNS", gen->d.ia5->data,
|
|
+ gen->d.ia5->length, &ret))
|
|
return NULL;
|
|
break;
|
|
|
|
case GEN_URI:
|
|
- if (!X509V3_add_value_uchar("URI", gen->d.ia5->data, &ret))
|
|
+ if (!x509v3_add_len_value_uchar("URI", gen->d.ia5->data,
|
|
+ gen->d.ia5->length, &ret))
|
|
return NULL;
|
|
break;
|
|
|
|
diff --git a/crypto/x509v3/v3_cpols.c b/crypto/x509v3/v3_cpols.c
|
|
index b99269e..7be027e 100644
|
|
--- a/crypto/x509v3/v3_cpols.c
|
|
+++ b/crypto/x509v3/v3_cpols.c
|
|
@@ -423,7 +423,8 @@ static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals,
|
|
qualinfo = sk_POLICYQUALINFO_value(quals, i);
|
|
switch (OBJ_obj2nid(qualinfo->pqualid)) {
|
|
case NID_id_qt_cps:
|
|
- BIO_printf(out, "%*sCPS: %s\n", indent, "",
|
|
+ BIO_printf(out, "%*sCPS: %.*s\n", indent, "",
|
|
+ qualinfo->d.cpsuri->length,
|
|
qualinfo->d.cpsuri->data);
|
|
break;
|
|
|
|
@@ -448,7 +449,8 @@ static void print_notice(BIO *out, USERNOTICE *notice, int indent)
|
|
if (notice->noticeref) {
|
|
NOTICEREF *ref;
|
|
ref = notice->noticeref;
|
|
- BIO_printf(out, "%*sOrganization: %s\n", indent, "",
|
|
+ BIO_printf(out, "%*sOrganization: %.*s\n", indent, "",
|
|
+ ref->organization->length,
|
|
ref->organization->data);
|
|
BIO_printf(out, "%*sNumber%s: ", indent, "",
|
|
sk_ASN1_INTEGER_num(ref->noticenos) > 1 ? "s" : "");
|
|
@@ -471,7 +473,8 @@ static void print_notice(BIO *out, USERNOTICE *notice, int indent)
|
|
BIO_puts(out, "\n");
|
|
}
|
|
if (notice->exptext)
|
|
- BIO_printf(out, "%*sExplicit Text: %s\n", indent, "",
|
|
+ BIO_printf(out, "%*sExplicit Text: %.*s\n", indent, "",
|
|
+ notice->exptext->length,
|
|
notice->exptext->data);
|
|
}
|
|
|
|
diff --git a/crypto/x509v3/v3_ncons.c b/crypto/x509v3/v3_ncons.c
|
|
index 1184091..6f58706 100644
|
|
--- a/crypto/x509v3/v3_ncons.c
|
|
+++ b/crypto/x509v3/v3_ncons.c
|
|
@@ -107,8 +107,31 @@ ASN1_SEQUENCE(NAME_CONSTRAINTS) = {
|
|
IMPLEMENT_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
|
|
IMPLEMENT_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
|
|
|
+#define IA5_OFFSET_LEN(ia5base, offset) \
|
|
+ ((ia5base)->length - ((unsigned char *)(offset) - (ia5base)->data))
|
|
+
|
|
+/* Like memchr but for ASN1_IA5STRING. Additionally you can specify the
|
|
+ * starting point to search from
|
|
+ */
|
|
+# define ia5memchr(str, start, c) memchr(start, c, IA5_OFFSET_LEN(str, start))
|
|
+
|
|
+/* Like memrrchr but for ASN1_IA5STRING */
|
|
+static char *ia5memrchr(ASN1_IA5STRING *str, int c)
|
|
+{
|
|
+ int i;
|
|
+
|
|
+ for (i = str->length; i > 0 && str->data[i - 1] != c; i--);
|
|
+
|
|
+ if (i == 0)
|
|
+ return NULL;
|
|
+
|
|
+ return (char *)&str->data[i - 1];
|
|
+}
|
|
+
|
|
+
|
|
/*
|
|
- * We cannot use strncasecmp here because that applies locale specific rules.
|
|
+ * We cannot use strncasecmp here because that applies locale specific rules. It
|
|
+ * also doesn't work with ASN1_STRINGs that may have embedded NUL characters
|
|
* For example in Turkish 'I' is not the uppercase character for 'i'. We need to
|
|
* do a simple ASCII case comparison ignoring the locale (that is why we use
|
|
* numeric constants below).
|
|
@@ -133,21 +156,12 @@ static int ia5ncasecmp(const char *s1, const char *s2, size_t n)
|
|
|
|
/* c1 > c2 */
|
|
return 1;
|
|
- } else if (*s1 == 0) {
|
|
- /* If we get here we know that *s2 == 0 too */
|
|
- return 0;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
-static int ia5casecmp(const char *s1, const char *s2)
|
|
-{
|
|
- /* No portable definition of SIZE_MAX, so we use (size_t)(-1) instead */
|
|
- return ia5ncasecmp(s1, s2, (size_t)(-1));
|
|
-}
|
|
-
|
|
static void *v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method,
|
|
X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
|
|
{
|
|
@@ -413,8 +427,12 @@ static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
|
|
char *baseptr = (char *)base->data;
|
|
char *dnsptr = (char *)dns->data;
|
|
/* Empty matches everything */
|
|
- if (!*baseptr)
|
|
+ if (base->length == 0)
|
|
return X509_V_OK;
|
|
+
|
|
+ if (dns->length < base->length)
|
|
+ return X509_V_ERR_PERMITTED_VIOLATION;
|
|
+
|
|
/*
|
|
* Otherwise can add zero or more components on the left so compare RHS
|
|
* and if dns is longer and expect '.' as preceding character.
|
|
@@ -425,7 +443,7 @@ static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
|
|
return X509_V_ERR_PERMITTED_VIOLATION;
|
|
}
|
|
|
|
- if (ia5casecmp(baseptr, dnsptr))
|
|
+ if (ia5ncasecmp(baseptr, dnsptr, base->length))
|
|
return X509_V_ERR_PERMITTED_VIOLATION;
|
|
|
|
return X509_V_OK;
|
|
@@ -437,15 +455,17 @@ static int nc_email(ASN1_IA5STRING *eml, ASN1_IA5STRING *base)
|
|
const char *baseptr = (char *)base->data;
|
|
const char *emlptr = (char *)eml->data;
|
|
|
|
- const char *baseat = strchr(baseptr, '@');
|
|
- const char *emlat = strchr(emlptr, '@');
|
|
+ const char *baseat = ia5memrchr(base, '@');
|
|
+ const char *emlat = ia5memrchr(eml, '@');
|
|
+ size_t basehostlen, emlhostlen;
|
|
+
|
|
if (!emlat)
|
|
return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
|
/* Special case: inital '.' is RHS match */
|
|
- if (!baseat && (*baseptr == '.')) {
|
|
+ if (!baseat && base->length > 0 && (*baseptr == '.')) {
|
|
if (eml->length > base->length) {
|
|
emlptr += eml->length - base->length;
|
|
- if (ia5casecmp(baseptr, emlptr) == 0)
|
|
+ if (ia5ncasecmp(baseptr, emlptr, base->length) == 0)
|
|
return X509_V_OK;
|
|
}
|
|
return X509_V_ERR_PERMITTED_VIOLATION;
|
|
@@ -465,8 +485,10 @@ static int nc_email(ASN1_IA5STRING *eml, ASN1_IA5STRING *base)
|
|
baseptr = baseat + 1;
|
|
}
|
|
emlptr = emlat + 1;
|
|
+ basehostlen = IA5_OFFSET_LEN(base, baseptr);
|
|
+ emlhostlen = IA5_OFFSET_LEN(eml, emlptr);
|
|
/* Just have hostname left to match: case insensitive */
|
|
- if (ia5casecmp(baseptr, emlptr))
|
|
+ if (basehostlen != emlhostlen || ia5ncasecmp(baseptr, emlptr, emlhostlen))
|
|
return X509_V_ERR_PERMITTED_VIOLATION;
|
|
|
|
return X509_V_OK;
|
|
@@ -477,10 +499,14 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
|
|
{
|
|
const char *baseptr = (char *)base->data;
|
|
const char *hostptr = (char *)uri->data;
|
|
- const char *p = strchr(hostptr, ':');
|
|
+ const char *p = ia5memchr(uri, (char *)uri->data, ':');
|
|
int hostlen;
|
|
+
|
|
/* Check for foo:// and skip past it */
|
|
- if (!p || (p[1] != '/') || (p[2] != '/'))
|
|
+ if (p == NULL
|
|
+ || IA5_OFFSET_LEN(uri, p) < 3
|
|
+ || p[1] != '/'
|
|
+ || p[2] != '/')
|
|
return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
|
hostptr = p + 3;
|
|
|
|
@@ -488,13 +514,13 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
|
|
|
|
/* Look for a port indicator as end of hostname first */
|
|
|
|
- p = strchr(hostptr, ':');
|
|
+ p = ia5memchr(uri, hostptr, ':');
|
|
/* Otherwise look for trailing slash */
|
|
- if (!p)
|
|
- p = strchr(hostptr, '/');
|
|
+ if (p == NULL)
|
|
+ p = ia5memchr(uri, hostptr, '/');
|
|
|
|
- if (!p)
|
|
- hostlen = strlen(hostptr);
|
|
+ if (p == NULL)
|
|
+ hostlen = IA5_OFFSET_LEN(uri, hostptr);
|
|
else
|
|
hostlen = p - hostptr;
|
|
|
|
@@ -502,7 +528,7 @@ static int nc_uri(ASN1_IA5STRING *uri, ASN1_IA5STRING *base)
|
|
return X509_V_ERR_UNSUPPORTED_NAME_SYNTAX;
|
|
|
|
/* Special case: inital '.' is RHS match */
|
|
- if (*baseptr == '.') {
|
|
+ if (base->length > 0 && *baseptr == '.') {
|
|
if (hostlen > base->length) {
|
|
p = hostptr + hostlen - base->length;
|
|
if (ia5ncasecmp(p, baseptr, base->length) == 0)
|
|
diff --git a/crypto/x509v3/v3_pci.c b/crypto/x509v3/v3_pci.c
|
|
index 34cad53..10e8c85 100644
|
|
--- a/crypto/x509v3/v3_pci.c
|
|
+++ b/crypto/x509v3/v3_pci.c
|
|
@@ -68,7 +68,8 @@ static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci,
|
|
i2a_ASN1_OBJECT(out, pci->proxyPolicy->policyLanguage);
|
|
BIO_puts(out, "\n");
|
|
if (pci->proxyPolicy->policy && pci->proxyPolicy->policy->data)
|
|
- BIO_printf(out, "%*sPolicy Text: %s\n", indent, "",
|
|
+ BIO_printf(out, "%*sPolicy Text: %.*s\n", indent, "",
|
|
+ pci->proxyPolicy->policy->length,
|
|
pci->proxyPolicy->policy->data);
|
|
return 1;
|
|
}
|
|
diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c
|
|
index 43b9cb9..3a1ee2b 100644
|
|
--- a/crypto/x509v3/v3_utl.c
|
|
+++ b/crypto/x509v3/v3_utl.c
|
|
@@ -63,6 +63,7 @@
|
|
#include "cryptlib.h"
|
|
#include <openssl/conf.h>
|
|
#include <openssl/x509v3.h>
|
|
+#include <string.h>
|
|
#include <openssl/bn.h>
|
|
|
|
static char *strip_spaces(char *name);
|
|
@@ -79,15 +80,24 @@ static int ipv6_hex(unsigned char *out, const char *in, int inlen);
|
|
|
|
/* Add a CONF_VALUE name value pair to stack */
|
|
|
|
-int X509V3_add_value(const char *name, const char *value,
|
|
- STACK_OF(CONF_VALUE) **extlist)
|
|
+static int x509v3_add_len_value(const char *name, const char *value,
|
|
+ size_t vallen, STACK_OF(CONF_VALUE) **extlist)
|
|
{
|
|
CONF_VALUE *vtmp = NULL;
|
|
char *tname = NULL, *tvalue = NULL;
|
|
- if (name && !(tname = BUF_strdup(name)))
|
|
- goto err;
|
|
- if (value && !(tvalue = BUF_strdup(value)))
|
|
+ if (name != NULL && (tname = BUF_strdup(name)) == NULL)
|
|
goto err;
|
|
+ if (value != NULL && vallen > 0) {
|
|
+ /*
|
|
+ * We tolerate a single trailing NUL character, but otherwise no
|
|
+ * embedded NULs
|
|
+ */
|
|
+ if (memchr(value, 0, vallen - 1) != NULL)
|
|
+ goto err;
|
|
+ tvalue = BUF_strndup(value, vallen);
|
|
+ if (tvalue == NULL)
|
|
+ goto err;
|
|
+ }
|
|
if (!(vtmp = (CONF_VALUE *)OPENSSL_malloc(sizeof(CONF_VALUE))))
|
|
goto err;
|
|
if (!*extlist && !(*extlist = sk_CONF_VALUE_new_null()))
|
|
@@ -109,10 +119,26 @@ int X509V3_add_value(const char *name, const char *value,
|
|
return 0;
|
|
}
|
|
|
|
+int X509V3_add_value(const char *name, const char *value,
|
|
+ STACK_OF(CONF_VALUE) **extlist)
|
|
+{
|
|
+ return x509v3_add_len_value(name, value,
|
|
+ value != NULL ? strlen((const char *)value) : 0,
|
|
+ extlist);
|
|
+}
|
|
+
|
|
int X509V3_add_value_uchar(const char *name, const unsigned char *value,
|
|
STACK_OF(CONF_VALUE) **extlist)
|
|
{
|
|
- return X509V3_add_value(name, (const char *)value, extlist);
|
|
+ return x509v3_add_len_value(name, (const char *)value,
|
|
+ value != NULL ? strlen((const char *)value) : 0,
|
|
+ extlist);
|
|
+}
|
|
+
|
|
+int x509v3_add_len_value_uchar(const char *name, const unsigned char *value,
|
|
+ size_t vallen, STACK_OF(CONF_VALUE) **extlist)
|
|
+{
|
|
+ return x509v3_add_len_value(name, (const char *)value, vallen, extlist);
|
|
}
|
|
|
|
/* Free function for STACK_OF(CONF_VALUE) */
|
|
@@ -609,17 +635,25 @@ static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
|
|
/* First some sanity checks */
|
|
if (email->type != V_ASN1_IA5STRING)
|
|
return 1;
|
|
- if (!email->data || !email->length)
|
|
+ if (email->data == NULL || email->length == 0)
|
|
+ return 1;
|
|
+ if (memchr(email->data, 0, email->length) != NULL)
|
|
return 1;
|
|
if (!*sk)
|
|
*sk = sk_OPENSSL_STRING_new(sk_strcmp);
|
|
if (!*sk)
|
|
return 0;
|
|
+
|
|
+ emtmp = BUF_strndup((char *)email->data, email->length);
|
|
+ if (emtmp == NULL)
|
|
+ return 0;
|
|
+
|
|
/* Don't add duplicates */
|
|
- if (sk_OPENSSL_STRING_find(*sk, (char *)email->data) != -1)
|
|
+ if (sk_OPENSSL_STRING_find(*sk, emtmp) != -1) {
|
|
+ OPENSSL_free(emtmp);
|
|
return 1;
|
|
- emtmp = BUF_strdup((char *)email->data);
|
|
- if (!emtmp || !sk_OPENSSL_STRING_push(*sk, emtmp)) {
|
|
+ }
|
|
+ if (!sk_OPENSSL_STRING_push(*sk, emtmp)) {
|
|
X509_email_free(*sk);
|
|
*sk = NULL;
|
|
return 0;
|
|
diff --git a/crypto/x509v3/x509v3.h b/crypto/x509v3/x509v3.h
|
|
index f5c6156..1841f68 100644
|
|
--- a/crypto/x509v3/x509v3.h
|
|
+++ b/crypto/x509v3/x509v3.h
|
|
@@ -752,6 +752,9 @@ int a2i_ipadd(unsigned char *ipout, const char *ipasc);
|
|
int X509V3_NAME_from_section(X509_NAME *nm, STACK_OF(CONF_VALUE) *dn_sk,
|
|
unsigned long chtype);
|
|
|
|
+int x509v3_add_len_value_uchar(const char *name, const unsigned char *value,
|
|
+ size_t vallen, STACK_OF(CONF_VALUE) **extlist);
|
|
+
|
|
void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
|
|
DECLARE_STACK_OF(X509_POLICY_NODE)
|
|
|