| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-05-15 21:09:49 +08:00
										 |  |  |  * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 21:00:54 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08: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 08:50:01 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | /* extension creation utilities */ | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-22 09:26:40 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/ctype.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/conf.h>
 | 
					
						
							|  |  |  | #include <openssl/x509.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/x509.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/x509v3.h>
 | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static int v3_check_critical(const char **value); | 
					
						
							|  |  |  | static int v3_check_generic(const char **value); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                                     int crit, const char *value); | 
					
						
							|  |  |  | static X509_EXTENSION *v3_generic_extension(const char *ext, const char *value, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                             int crit, int type, | 
					
						
							|  |  |  |                                             X509V3_CTX *ctx); | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static char *conf_lhash_get_string(void *db, const char *section, const char *value); | 
					
						
							|  |  |  | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, | 
					
						
							|  |  |  |                                   int ext_nid, int crit, void *ext_struc); | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static unsigned char *generic_asn1(const char *value, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                    long *ext_len); | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static X509_EXTENSION *X509V3_EXT_nconf_int(CONF *conf, X509V3_CTX *ctx, | 
					
						
							|  |  |  |                                             const char *section, | 
					
						
							|  |  |  |                                             const char *name, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int crit; | 
					
						
							|  |  |  |     int ext_type; | 
					
						
							|  |  |  |     X509_EXTENSION *ret; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     crit = v3_check_critical(&value); | 
					
						
							|  |  |  |     if ((ext_type = v3_check_generic(&value))) | 
					
						
							|  |  |  |         return v3_generic_extension(name, value, crit, ext_type, ctx); | 
					
						
							|  |  |  |     ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); | 
					
						
							|  |  |  |     if (!ret) { | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  |         if (section != NULL) | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |             ERR_raise_data(ERR_LIB_X509V3, X509V3_R_ERROR_IN_EXTENSION, | 
					
						
							|  |  |  |                            "section=%s, name=%s, value=%s", | 
					
						
							|  |  |  |                            section, name, value); | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |             ERR_raise_data(ERR_LIB_X509V3, X509V3_R_ERROR_IN_EXTENSION, | 
					
						
							|  |  |  |                            "name=%s, value=%s", name, value); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name, | 
					
						
							|  |  |  |                                  const char *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return X509V3_EXT_nconf_int(conf, ctx, NULL, name, value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                                      const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int crit; | 
					
						
							|  |  |  |     int ext_type; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     crit = v3_check_critical(&value); | 
					
						
							|  |  |  |     if ((ext_type = v3_check_generic(&value))) | 
					
						
							|  |  |  |         return v3_generic_extension(OBJ_nid2sn(ext_nid), | 
					
						
							|  |  |  |                                     value, crit, ext_type, ctx); | 
					
						
							|  |  |  |     return do_ext_nconf(conf, ctx, ext_nid, crit, value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | /* CONF *conf:  Config file    */ | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | /* char *value:  Value    */ | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                                     int crit, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const X509V3_EXT_METHOD *method; | 
					
						
							|  |  |  |     X509_EXTENSION *ext; | 
					
						
							|  |  |  |     STACK_OF(CONF_VALUE) *nval; | 
					
						
							|  |  |  |     void *ext_struc; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ext_nid == NID_undef) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_UNKNOWN_EXTENSION_NAME); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((method = X509V3_EXT_get_nid(ext_nid)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_UNKNOWN_EXTENSION); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Now get internal extension representation based on type */ | 
					
						
							|  |  |  |     if (method->v2i) { | 
					
						
							|  |  |  |         if (*value == '@') | 
					
						
							|  |  |  |             nval = NCONF_get_section(conf, value + 1); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             nval = X509V3_parse_list(value); | 
					
						
							| 
									
										
										
										
											2016-06-10 22:30:09 +08:00
										 |  |  |         if (nval == NULL || sk_CONF_VALUE_num(nval) <= 0) { | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |             ERR_raise_data(ERR_LIB_X509V3, X509V3_R_INVALID_EXTENSION_STRING, | 
					
						
							|  |  |  |                            "name=%s,section=%s", OBJ_nid2sn(ext_nid), value); | 
					
						
							| 
									
										
										
										
											2016-06-10 22:30:09 +08:00
										 |  |  |             if (*value != '@') | 
					
						
							| 
									
										
										
										
											2016-07-26 23:36:23 +08:00
										 |  |  |                 sk_CONF_VALUE_pop_free(nval, X509V3_conf_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ext_struc = method->v2i(method, ctx, nval); | 
					
						
							|  |  |  |         if (*value != '@') | 
					
						
							|  |  |  |             sk_CONF_VALUE_pop_free(nval, X509V3_conf_free); | 
					
						
							|  |  |  |         if (!ext_struc) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |     } else if (method->s2i) { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |         if ((ext_struc = method->s2i(method, ctx, value)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return NULL; | 
					
						
							|  |  |  |     } else if (method->r2i) { | 
					
						
							|  |  |  |         if (!ctx->db || !ctx->db_meth) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_X509V3, X509V3_R_NO_CONFIG_DATABASE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |         if ((ext_struc = method->r2i(method, ctx, value)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return NULL; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |         ERR_raise_data(ERR_LIB_X509V3, X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED, | 
					
						
							|  |  |  |                        "name=%s", OBJ_nid2sn(ext_nid)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ext = do_ext_i2d(method, ext_nid, crit, ext_struc); | 
					
						
							|  |  |  |     if (method->it) | 
					
						
							|  |  |  |         ASN1_item_free(ext_struc, ASN1_ITEM_ptr(method->it)); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         method->ext_free(ext_struc); | 
					
						
							|  |  |  |     return ext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, | 
					
						
							|  |  |  |                                   int ext_nid, int crit, void *ext_struc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned char *ext_der = NULL; | 
					
						
							|  |  |  |     int ext_len; | 
					
						
							|  |  |  |     ASN1_OCTET_STRING *ext_oct = NULL; | 
					
						
							|  |  |  |     X509_EXTENSION *ext; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Convert internal representation to DER */ | 
					
						
							|  |  |  |     if (method->it) { | 
					
						
							|  |  |  |         ext_der = NULL; | 
					
						
							|  |  |  |         ext_len = | 
					
						
							|  |  |  |             ASN1_item_i2d(ext_struc, &ext_der, ASN1_ITEM_ptr(method->it)); | 
					
						
							|  |  |  |         if (ext_len < 0) | 
					
						
							|  |  |  |             goto merr; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         unsigned char *p; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ext_len = method->i2d(ext_struc, NULL); | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |         if ((ext_der = OPENSSL_malloc(ext_len)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto merr; | 
					
						
							|  |  |  |         p = ext_der; | 
					
						
							|  |  |  |         method->i2d(ext_struc, &p); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((ext_oct = ASN1_OCTET_STRING_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto merr; | 
					
						
							|  |  |  |     ext_oct->data = ext_der; | 
					
						
							|  |  |  |     ext_der = NULL; | 
					
						
							|  |  |  |     ext_oct->length = ext_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct); | 
					
						
							|  |  |  |     if (!ext) | 
					
						
							|  |  |  |         goto merr; | 
					
						
							| 
									
										
										
										
											2015-03-14 12:16:42 +08:00
										 |  |  |     ASN1_OCTET_STRING_free(ext_oct); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  merr: | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |     ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |     OPENSSL_free(ext_der); | 
					
						
							| 
									
										
										
										
											2015-03-24 19:52:24 +08:00
										 |  |  |     ASN1_OCTET_STRING_free(ext_oct); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-05-10 00:39:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Given an internal structure, nid and critical flag create an extension */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const X509V3_EXT_METHOD *method; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((method = X509V3_EXT_get_nid(ext_nid)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_UNKNOWN_EXTENSION); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return do_ext_i2d(method, ext_nid, crit, ext_struc); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | /* Check the extension string for critical flag */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static int v3_check_critical(const char **value) | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |     const char *p = *value; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if ((strlen(p) < 9) || strncmp(p, "critical,", 9)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     p += 9; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |     while (ossl_isspace(*p)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         p++; | 
					
						
							|  |  |  |     *value = p; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Check extension string for generic extension and return the type */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static int v3_check_generic(const char **value) | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int gen_type = 0; | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |     const char *p = *value; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |     if ((strlen(p) >= 4) && strncmp(p, "DER:", 4) == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         p += 4; | 
					
						
							|  |  |  |         gen_type = 1; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |     } else if ((strlen(p) >= 5) && strncmp(p, "ASN1:", 5) == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         p += 5; | 
					
						
							|  |  |  |         gen_type = 2; | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |     while (ossl_isspace(*p)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         p++; | 
					
						
							|  |  |  |     *value = p; | 
					
						
							|  |  |  |     return gen_type; | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-26 00:59:26 +08:00
										 |  |  | /* Create a generic extension: for now just handle DER type */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static X509_EXTENSION *v3_generic_extension(const char *ext, const char *value, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                             int crit, int gen_type, | 
					
						
							|  |  |  |                                             X509V3_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned char *ext_der = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-06 17:16:55 +08:00
										 |  |  |     long ext_len = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ASN1_OBJECT *obj = NULL; | 
					
						
							|  |  |  |     ASN1_OCTET_STRING *oct = NULL; | 
					
						
							|  |  |  |     X509_EXTENSION *extension = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((obj = OBJ_txt2obj(ext, 0)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |         ERR_raise_data(ERR_LIB_X509V3, X509V3_R_EXTENSION_NAME_ERROR, | 
					
						
							|  |  |  |                        "name=%s", ext); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (gen_type == 1) | 
					
						
							| 
									
										
										
										
											2016-04-14 03:58:28 +08:00
										 |  |  |         ext_der = OPENSSL_hexstr2buf(value, &ext_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else if (gen_type == 2) | 
					
						
							|  |  |  |         ext_der = generic_asn1(value, ctx, &ext_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ext_der == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 23:14:00 +08:00
										 |  |  |         ERR_raise_data(ERR_LIB_X509V3, X509V3_R_EXTENSION_VALUE_ERROR, | 
					
						
							|  |  |  |                        "value=%s", value); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((oct = ASN1_OCTET_STRING_new()) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     oct->data = ext_der; | 
					
						
							|  |  |  |     oct->length = ext_len; | 
					
						
							|  |  |  |     ext_der = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     ASN1_OBJECT_free(obj); | 
					
						
							| 
									
										
										
										
											2015-03-14 12:16:42 +08:00
										 |  |  |     ASN1_OCTET_STRING_free(oct); | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |     OPENSSL_free(ext_der); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return extension; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static unsigned char *generic_asn1(const char *value, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                    long *ext_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ASN1_TYPE *typ; | 
					
						
							|  |  |  |     unsigned char *ext_der = NULL; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     typ = ASN1_generate_v3(value, ctx); | 
					
						
							|  |  |  |     if (typ == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     *ext_len = i2d_ASN1_TYPE(typ, &ext_der); | 
					
						
							|  |  |  |     ASN1_TYPE_free(typ); | 
					
						
							|  |  |  |     return ext_der; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-02-15 00:48:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 03:56:34 +08:00
										 |  |  | static void delete_ext(STACK_OF(X509_EXTENSION) *sk, X509_EXTENSION *dext) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int idx; | 
					
						
							|  |  |  |     ASN1_OBJECT *obj; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     obj = X509_EXTENSION_get_object(dext); | 
					
						
							|  |  |  |     while ((idx = X509v3_get_ext_by_OBJ(sk, obj, -1)) >= 0) { | 
					
						
							|  |  |  |         X509_EXTENSION *tmpext = X509v3_get_ext(sk, idx); | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         X509v3_delete_ext(sk, idx); | 
					
						
							|  |  |  |         X509_EXTENSION_free(tmpext); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This is the main function: add a bunch of extensions based on a config | 
					
						
							| 
									
										
										
										
											2020-12-07 20:28:39 +08:00
										 |  |  |  * file section to an extension STACK. Just check in case sk == NULL. | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |  * Note that on error new elements may have been added to *sk if sk != NULL. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                             STACK_OF(X509_EXTENSION) **sk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_EXTENSION *ext; | 
					
						
							|  |  |  |     STACK_OF(CONF_VALUE) *nval; | 
					
						
							|  |  |  |     CONF_VALUE *val; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((nval = NCONF_get_section(conf, section)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 
					
						
							|  |  |  |         val = sk_CONF_VALUE_value(nval, i); | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  |         if ((ext = X509V3_EXT_nconf_int(conf, ctx, val->section, | 
					
						
							|  |  |  |                                         val->name, val->value)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2017-11-07 20:28:18 +08:00
										 |  |  |         if (sk != NULL) { | 
					
						
							| 
									
										
										
										
											2020-12-07 20:28:39 +08:00
										 |  |  |             if (ctx->flags == X509V3_CTX_REPLACE) | 
					
						
							|  |  |  |                 delete_ext(*sk, ext); | 
					
						
							| 
									
										
										
										
											2017-11-07 20:28:18 +08:00
										 |  |  |             if (X509v3_add_ext(sk, ext, -1) == NULL) { | 
					
						
							|  |  |  |                 X509_EXTENSION_free(ext); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         X509_EXTENSION_free(ext); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |  * Add extensions to a certificate. Just check in case cert == NULL. | 
					
						
							|  |  |  |  * Note that on error new elements may remain added to cert if cert != NULL. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          X509 *cert) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(X509_EXTENSION) **sk = NULL; | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |     if (cert != NULL) | 
					
						
							| 
									
										
										
										
											2015-09-17 01:40:26 +08:00
										 |  |  |         sk = &cert->cert_info.extensions; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Add extensions to a CRL. Just check in case crl == NULL. | 
					
						
							|  |  |  |  * Note that on error new elements may remain added to crl if crl != NULL. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                              X509_CRL *crl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(X509_EXTENSION) **sk = NULL; | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |     if (crl != NULL) | 
					
						
							| 
									
										
										
										
											2015-09-16 07:24:43 +08:00
										 |  |  |         sk = &crl->crl.extensions; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-03-07 03:33:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Add extensions to certificate request. Just check in case req is NULL. | 
					
						
							|  |  |  |  * Note that on error new elements may remain added to req if req != NULL. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                              X509_REQ *req) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |     STACK_OF(X509_EXTENSION) *exts = NULL; | 
					
						
							|  |  |  |     int ret = X509V3_EXT_add_nconf_sk(conf, ctx, section, &exts); | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 02:30:40 +08:00
										 |  |  |     if (ret && req != NULL && exts != NULL) | 
					
						
							|  |  |  |         ret = X509_REQ_add_extensions(req, exts); | 
					
						
							|  |  |  |     sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1999-08-26 00:59:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | /* Config database functions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:20:40 +08:00
										 |  |  | char *X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_OPERATION_NOT_DEFINED); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ctx->db_meth->get_string) | 
					
						
							|  |  |  |         return ctx->db_meth->get_string(ctx->db, name, section); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:20:40 +08:00
										 |  |  | STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, const char *section) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_OPERATION_NOT_DEFINED); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ctx->db_meth->get_section) | 
					
						
							|  |  |  |         return ctx->db_meth->get_section(ctx->db, section); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void X509V3_string_free(X509V3_CTX *ctx, char *str) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!str) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     if (ctx->db_meth->free_string) | 
					
						
							|  |  |  |         ctx->db_meth->free_string(ctx->db, str); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-06-21 06:18:16 +08:00
										 |  |  | void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!section) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     if (ctx->db_meth->free_section) | 
					
						
							|  |  |  |         ctx->db_meth->free_section(ctx->db, section); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static char *nconf_get_string(void *db, const char *section, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return NCONF_get_string(db, section, value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, const char *section) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return NCONF_get_section(db, section); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static X509V3_CONF_METHOD nconf_method = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     nconf_get_string, | 
					
						
							|  |  |  |     nconf_get_section, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-24 18:25:47 +08:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ctx->db_meth = &nconf_method; | 
					
						
							|  |  |  |     ctx->db = conf; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     X509_CRL *crl, int flags) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-24 18:25:47 +08:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ctx->flags = flags; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ctx->issuer_cert = issuer; | 
					
						
							|  |  |  |     ctx->subject_cert = subj; | 
					
						
							|  |  |  |     ctx->subject_req = req; | 
					
						
							| 
									
										
										
										
											2020-12-24 18:25:47 +08:00
										 |  |  |     ctx->crl = crl; | 
					
						
							|  |  |  |     ctx->db_meth = NULL; | 
					
						
							|  |  |  |     ctx->db = NULL; | 
					
						
							|  |  |  |     ctx->issuer_pkey = NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* For API backward compatibility, this is separate from X509V3_set_ctx() */ | 
					
						
							|  |  |  | int X509V3_set_issuer_pkey(X509V3_CTX *ctx, EVP_PKEY *pkey) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ctx->subject_cert == NULL && pkey != NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_PASSED_INVALID_ARGUMENT); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ctx->issuer_pkey = pkey; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Old conf compatibility functions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                                 const char *name, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CONF ctmp; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     CONF_set_nconf(&ctmp, conf); | 
					
						
							|  |  |  |     return X509V3_EXT_nconf(&ctmp, ctx, name, value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                                     X509V3_CTX *ctx, int ext_nid, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CONF ctmp; | 
					
						
							|  |  |  |     CONF_set_nconf(&ctmp, conf); | 
					
						
							|  |  |  |     return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static char *conf_lhash_get_string(void *db, const char *section, const char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return CONF_get_string(db, section, value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return CONF_get_section(db, section); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static X509V3_CONF_METHOD conf_lhash_method = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     conf_lhash_get_string, | 
					
						
							|  |  |  |     conf_lhash_get_section, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-24 18:25:47 +08:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_PASSED_NULL_PARAMETER); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ctx->db_meth = &conf_lhash_method; | 
					
						
							|  |  |  |     ctx->db = lhash; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-17 07:57:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                         const char *section, X509 *cert) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CONF ctmp; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     CONF_set_nconf(&ctmp, conf); | 
					
						
							|  |  |  |     return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Same as above but for a CRL */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                             const char *section, X509_CRL *crl) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CONF ctmp; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     CONF_set_nconf(&ctmp, conf); | 
					
						
							|  |  |  |     return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-06-28 19:41:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Add extensions to certificate request */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2016-05-15 05:09:34 +08:00
										 |  |  |                             const char *section, X509_REQ *req) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CONF ctmp; | 
					
						
							| 
									
										
										
										
											2020-06-27 02:40:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     CONF_set_nconf(&ctmp, conf); | 
					
						
							|  |  |  |     return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req); | 
					
						
							|  |  |  | } |