2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:51:26 +00:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-01-24 00:50:01 +00:00
|
|
|
*
|
2018-12-06 13:00:54 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:51:26 +00:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-01-24 00:50:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/asn1.h>
|
2000-12-08 19:09:35 +00:00
|
|
|
#include <openssl/asn1t.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/conf.h>
|
|
|
|
#include <openssl/x509v3.h>
|
2015-09-05 12:32:58 +00:00
|
|
|
#include "ext_dat.h"
|
1999-01-24 00:50:01 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
|
|
|
|
BASIC_CONSTRAINTS *bcons,
|
|
|
|
STACK_OF(CONF_VALUE)
|
|
|
|
*extlist);
|
|
|
|
static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
|
|
|
|
X509V3_CTX *ctx,
|
|
|
|
STACK_OF(CONF_VALUE) *values);
|
1999-01-24 00:50:01 +00:00
|
|
|
|
2007-01-21 13:07:17 +00:00
|
|
|
const X509V3_EXT_METHOD v3_bcons = {
|
2015-01-22 03:40:55 +00:00
|
|
|
NID_basic_constraints, 0,
|
|
|
|
ASN1_ITEM_ref(BASIC_CONSTRAINTS),
|
|
|
|
0, 0, 0, 0,
|
|
|
|
0, 0,
|
|
|
|
(X509V3_EXT_I2V) i2v_BASIC_CONSTRAINTS,
|
|
|
|
(X509V3_EXT_V2I)v2i_BASIC_CONSTRAINTS,
|
|
|
|
NULL, NULL,
|
|
|
|
NULL
|
1999-01-24 00:50:01 +00:00
|
|
|
};
|
|
|
|
|
2000-12-08 19:09:35 +00:00
|
|
|
ASN1_SEQUENCE(BASIC_CONSTRAINTS) = {
|
2015-01-22 03:40:55 +00:00
|
|
|
ASN1_OPT(BASIC_CONSTRAINTS, ca, ASN1_FBOOLEAN),
|
|
|
|
ASN1_OPT(BASIC_CONSTRAINTS, pathlen, ASN1_INTEGER)
|
2001-02-23 12:47:06 +00:00
|
|
|
} ASN1_SEQUENCE_END(BASIC_CONSTRAINTS)
|
1999-01-24 00:50:01 +00:00
|
|
|
|
2000-12-08 19:09:35 +00:00
|
|
|
IMPLEMENT_ASN1_FUNCTIONS(BASIC_CONSTRAINTS)
|
1999-01-24 00:50:01 +00:00
|
|
|
|
1999-06-20 22:18:16 +00:00
|
|
|
static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
|
2015-01-22 03:40:55 +00:00
|
|
|
BASIC_CONSTRAINTS *bcons,
|
|
|
|
STACK_OF(CONF_VALUE)
|
|
|
|
*extlist)
|
1999-01-24 00:50:01 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
X509V3_add_value_bool("CA", bcons->ca, &extlist);
|
|
|
|
X509V3_add_value_int("pathlen", bcons->pathlen, &extlist);
|
|
|
|
return extlist;
|
1999-01-24 00:50:01 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
|
2015-01-22 03:40:55 +00:00
|
|
|
X509V3_CTX *ctx,
|
|
|
|
STACK_OF(CONF_VALUE) *values)
|
1999-01-24 00:50:01 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
BASIC_CONSTRAINTS *bcons = NULL;
|
|
|
|
CONF_VALUE *val;
|
|
|
|
int i;
|
2015-05-06 17:43:59 +00:00
|
|
|
|
|
|
|
if ((bcons = BASIC_CONSTRAINTS_new()) == NULL) {
|
2015-01-22 03:40:55 +00:00
|
|
|
X509V3err(X509V3_F_V2I_BASIC_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < sk_CONF_VALUE_num(values); i++) {
|
|
|
|
val = sk_CONF_VALUE_value(values, i);
|
2015-05-06 18:56:14 +00:00
|
|
|
if (strcmp(val->name, "CA") == 0) {
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!X509V3_get_value_bool(val, &bcons->ca))
|
|
|
|
goto err;
|
2015-05-06 18:56:14 +00:00
|
|
|
} else if (strcmp(val->name, "pathlen") == 0) {
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!X509V3_get_value_int(val, &bcons->pathlen))
|
|
|
|
goto err;
|
|
|
|
} else {
|
|
|
|
X509V3err(X509V3_F_V2I_BASIC_CONSTRAINTS, X509V3_R_INVALID_NAME);
|
|
|
|
X509V3_conf_err(val);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bcons;
|
|
|
|
err:
|
|
|
|
BASIC_CONSTRAINTS_free(bcons);
|
|
|
|
return NULL;
|
1999-01-24 00:50:01 +00:00
|
|
|
}
|