| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-08 20:04:41 +08:00
										 |  |  |  * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +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-04-22 01:44:45 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.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/asn1.h>
 | 
					
						
							| 
									
										
										
										
											2000-12-09 03:09:35 +08:00
										 |  |  | #include <openssl/asn1t.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/x509v3.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/x509.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-05 20:32:58 +08:00
										 |  |  | #include "ext_dat.h"
 | 
					
						
							| 
									
										
										
										
											2020-06-26 22:16:00 +08:00
										 |  |  | #include "x509_local.h"
 | 
					
						
							| 
									
										
										
										
											2015-03-17 01:43:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static void *v2i_crld(const X509V3_EXT_METHOD *method, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      int indent); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 08:52:15 +08:00
										 |  |  | const X509V3_EXT_METHOD ossl_v3_crld = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     NID_crl_distribution_points, 0, ASN1_ITEM_ref(CRL_DIST_POINTS), | 
					
						
							|  |  |  |     0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     v2i_crld, | 
					
						
							|  |  |  |     i2r_crldp, 0, | 
					
						
							|  |  |  |     NULL | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 08:52:15 +08:00
										 |  |  | const X509V3_EXT_METHOD ossl_v3_freshest_crl = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     NID_freshest_crl, 0, ASN1_ITEM_ref(CRL_DIST_POINTS), | 
					
						
							|  |  |  |     0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     v2i_crld, | 
					
						
							|  |  |  |     i2r_crldp, 0, | 
					
						
							|  |  |  |     NULL | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static STACK_OF(GENERAL_NAME) *gnames_from_sectname(X509V3_CTX *ctx, | 
					
						
							|  |  |  |                                                     char *sect) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(CONF_VALUE) *gnsect; | 
					
						
							|  |  |  |     STACK_OF(GENERAL_NAME) *gens; | 
					
						
							|  |  |  |     if (*sect == '@') | 
					
						
							|  |  |  |         gnsect = X509V3_get_section(ctx, sect + 1); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         gnsect = X509V3_parse_list(sect); | 
					
						
							|  |  |  |     if (!gnsect) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_SECTION_NOT_FOUND); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     gens = v2i_GENERAL_NAMES(NULL, ctx, gnsect); | 
					
						
							|  |  |  |     if (*sect == '@') | 
					
						
							|  |  |  |         X509V3_section_free(ctx, gnsect); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         sk_CONF_VALUE_pop_free(gnsect, X509V3_conf_free); | 
					
						
							|  |  |  |     return gens; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-26 06:35:36 +08:00
										 |  |  | static int set_dist_point_name(DIST_POINT_NAME **pdp, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                CONF_VALUE *cnf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(GENERAL_NAME) *fnm = NULL; | 
					
						
							|  |  |  |     STACK_OF(X509_NAME_ENTRY) *rnm = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (strncmp(cnf->name, "fullname", 9) == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         fnm = gnames_from_sectname(ctx, cnf->value); | 
					
						
							|  |  |  |         if (!fnm) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |     } else if (strcmp(cnf->name, "relativename") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         int ret; | 
					
						
							|  |  |  |         STACK_OF(CONF_VALUE) *dnsect; | 
					
						
							|  |  |  |         X509_NAME *nm; | 
					
						
							|  |  |  |         nm = X509_NAME_new(); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |         if (nm == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         dnsect = X509V3_get_section(ctx, cnf->value); | 
					
						
							|  |  |  |         if (!dnsect) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_X509V3, X509V3_R_SECTION_NOT_FOUND); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ret = X509V3_NAME_from_section(nm, dnsect, MBSTRING_ASC); | 
					
						
							|  |  |  |         X509V3_section_free(ctx, dnsect); | 
					
						
							|  |  |  |         rnm = nm->entries; | 
					
						
							|  |  |  |         nm->entries = NULL; | 
					
						
							|  |  |  |         X509_NAME_free(nm); | 
					
						
							|  |  |  |         if (!ret || sk_X509_NAME_ENTRY_num(rnm) <= 0) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Since its a name fragment can't have more than one RDNSequence | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (sk_X509_NAME_ENTRY_value(rnm, | 
					
						
							|  |  |  |                                      sk_X509_NAME_ENTRY_num(rnm) - 1)->set) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_MULTIPLE_RDNS); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*pdp) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_DISTPOINT_ALREADY_SET); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *pdp = DIST_POINT_NAME_new(); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |     if (*pdp == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     if (fnm) { | 
					
						
							|  |  |  |         (*pdp)->type = 0; | 
					
						
							|  |  |  |         (*pdp)->name.fullname = fnm; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         (*pdp)->type = 1; | 
					
						
							|  |  |  |         (*pdp)->name.relativename = rnm; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     sk_GENERAL_NAME_pop_free(fnm, GENERAL_NAME_free); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     sk_X509_NAME_ENTRY_pop_free(rnm, X509_NAME_ENTRY_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const BIT_STRING_BITNAME reason_flags[] = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     {0, "Unused", "unused"}, | 
					
						
							|  |  |  |     {1, "Key Compromise", "keyCompromise"}, | 
					
						
							|  |  |  |     {2, "CA Compromise", "CACompromise"}, | 
					
						
							|  |  |  |     {3, "Affiliation Changed", "affiliationChanged"}, | 
					
						
							|  |  |  |     {4, "Superseded", "superseded"}, | 
					
						
							|  |  |  |     {5, "Cessation Of Operation", "cessationOfOperation"}, | 
					
						
							|  |  |  |     {6, "Certificate Hold", "certificateHold"}, | 
					
						
							|  |  |  |     {7, "Privilege Withdrawn", "privilegeWithdrawn"}, | 
					
						
							|  |  |  |     {8, "AA Compromise", "AACompromise"}, | 
					
						
							|  |  |  |     {-1, NULL, NULL} | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | static int set_reasons(ASN1_BIT_STRING **preas, char *value) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     STACK_OF(CONF_VALUE) *rsk = NULL; | 
					
						
							|  |  |  |     const BIT_STRING_BITNAME *pbn; | 
					
						
							|  |  |  |     const char *bnam; | 
					
						
							|  |  |  |     int i, ret = 0; | 
					
						
							|  |  |  |     rsk = X509V3_parse_list(value); | 
					
						
							| 
									
										
										
										
											2016-04-28 21:00:10 +08:00
										 |  |  |     if (rsk == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-04-28 21:00:10 +08:00
										 |  |  |     if (*preas != NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (i = 0; i < sk_CONF_VALUE_num(rsk); i++) { | 
					
						
							|  |  |  |         bnam = sk_CONF_VALUE_value(rsk, i)->name; | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |         if (*preas == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             *preas = ASN1_BIT_STRING_new(); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |             if (*preas == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         for (pbn = reason_flags; pbn->lname; pbn++) { | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |             if (strcmp(pbn->sname, bnam) == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 if (!ASN1_BIT_STRING_set_bit(*preas, pbn->bitnum, 1)) | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |         if (pbn->lname == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     sk_CONF_VALUE_pop_free(rsk, X509V3_conf_free); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int print_reasons(BIO *out, const char *rname, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          ASN1_BIT_STRING *rflags, int indent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int first = 1; | 
					
						
							|  |  |  |     const BIT_STRING_BITNAME *pbn; | 
					
						
							|  |  |  |     BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, ""); | 
					
						
							|  |  |  |     for (pbn = reason_flags; pbn->lname; pbn++) { | 
					
						
							|  |  |  |         if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum)) { | 
					
						
							|  |  |  |             if (first) | 
					
						
							|  |  |  |                 first = 0; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 BIO_puts(out, ", "); | 
					
						
							|  |  |  |             BIO_puts(out, pbn->lname); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (first) | 
					
						
							|  |  |  |         BIO_puts(out, "<EMPTY>\n"); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         BIO_puts(out, "\n"); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static DIST_POINT *crldp_from_section(X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                       STACK_OF(CONF_VALUE) *nval) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     CONF_VALUE *cnf; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |     DIST_POINT *point = DIST_POINT_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |     if (point == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 
					
						
							|  |  |  |         int ret; | 
					
						
							|  |  |  |         cnf = sk_CONF_VALUE_value(nval, i); | 
					
						
							|  |  |  |         ret = set_dist_point_name(&point->distpoint, ctx, cnf); | 
					
						
							|  |  |  |         if (ret > 0) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         if (ret < 0) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         if (strcmp(cnf->name, "reasons") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!set_reasons(&point->reasons, cnf->value)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         } else if (strcmp(cnf->name, "CRLissuer") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             point->CRLissuer = gnames_from_sectname(ctx, cnf->value); | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |             if (point->CRLissuer == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return point; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     DIST_POINT_free(point); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 02:42:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static void *v2i_crld(const X509V3_EXT_METHOD *method, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |     STACK_OF(DIST_POINT) *crld; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     GENERAL_NAMES *gens = NULL; | 
					
						
							|  |  |  |     GENERAL_NAME *gen = NULL; | 
					
						
							|  |  |  |     CONF_VALUE *cnf; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |     const int num = sk_CONF_VALUE_num(nval); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-27 01:56:14 +08:00
										 |  |  |     crld = sk_DIST_POINT_new_reserve(NULL, num); | 
					
						
							|  |  |  |     if (crld == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto merr; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |     for (i = 0; i < num; i++) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         DIST_POINT *point; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         cnf = sk_CONF_VALUE_value(nval, i); | 
					
						
							| 
									
										
										
										
											2020-06-26 22:16:00 +08:00
										 |  |  |         if (cnf->value == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             STACK_OF(CONF_VALUE) *dpsect; | 
					
						
							|  |  |  |             dpsect = X509V3_get_section(ctx, cnf->name); | 
					
						
							|  |  |  |             if (!dpsect) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             point = crldp_from_section(ctx, dpsect); | 
					
						
							|  |  |  |             X509V3_section_free(ctx, dpsect); | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |             if (point == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |             sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |             if ((gen = v2i_GENERAL_NAME(method, ctx, cnf)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |             if ((gens = GENERAL_NAMES_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto merr; | 
					
						
							|  |  |  |             if (!sk_GENERAL_NAME_push(gens, gen)) | 
					
						
							|  |  |  |                 goto merr; | 
					
						
							|  |  |  |             gen = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |             if ((point = DIST_POINT_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto merr; | 
					
						
							| 
									
										
										
										
											2017-09-29 05:30:22 +08:00
										 |  |  |             sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |             if ((point->distpoint = DIST_POINT_NAME_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto merr; | 
					
						
							|  |  |  |             point->distpoint->name.fullname = gens; | 
					
						
							|  |  |  |             point->distpoint->type = 0; | 
					
						
							|  |  |  |             gens = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return crld; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  merr: | 
					
						
							| 
									
										
										
										
											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
										 |  |  |  err: | 
					
						
							|  |  |  |     GENERAL_NAME_free(gen); | 
					
						
							|  |  |  |     GENERAL_NAMES_free(gens); | 
					
						
							|  |  |  |     sk_DIST_POINT_pop_free(crld, DIST_POINT_free); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 23:34:27 +08:00
										 |  |  | static int dpn_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                   void *exarg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DIST_POINT_NAME *dpn = (DIST_POINT_NAME *)*pval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (operation) { | 
					
						
							|  |  |  |     case ASN1_OP_NEW_POST: | 
					
						
							|  |  |  |         dpn->dpname = NULL; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case ASN1_OP_FREE_POST: | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |         X509_NAME_free(dpn->dpname); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 23:34:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ASN1_CHOICE_cb(DIST_POINT_NAME, dpn_cb) = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ASN1_IMP_SEQUENCE_OF(DIST_POINT_NAME, name.fullname, GENERAL_NAME, 0), | 
					
						
							|  |  |  |         ASN1_IMP_SET_OF(DIST_POINT_NAME, name.relativename, X509_NAME_ENTRY, 1) | 
					
						
							| 
									
										
										
										
											2008-08-04 23:34:27 +08:00
										 |  |  | } ASN1_CHOICE_END_cb(DIST_POINT_NAME, DIST_POINT_NAME, type) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-09 03:09:35 +08:00
										 |  |  | IMPLEMENT_ASN1_FUNCTIONS(DIST_POINT_NAME) | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-09 03:09:35 +08:00
										 |  |  | ASN1_SEQUENCE(DIST_POINT) = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ASN1_EXP_OPT(DIST_POINT, distpoint, DIST_POINT_NAME, 0), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(DIST_POINT, reasons, ASN1_BIT_STRING, 1), | 
					
						
							|  |  |  |         ASN1_IMP_SEQUENCE_OF_OPT(DIST_POINT, CRLissuer, GENERAL_NAME, 2) | 
					
						
							| 
									
										
										
										
											2001-02-23 20:47:06 +08:00
										 |  |  | } ASN1_SEQUENCE_END(DIST_POINT) | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-09 03:09:35 +08:00
										 |  |  | IMPLEMENT_ASN1_FUNCTIONS(DIST_POINT) | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | ASN1_ITEM_TEMPLATE(CRL_DIST_POINTS) = | 
					
						
							|  |  |  |         ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, CRLDistributionPoints, DIST_POINT) | 
					
						
							| 
									
										
										
										
											2001-02-23 20:47:06 +08:00
										 |  |  | ASN1_ITEM_TEMPLATE_END(CRL_DIST_POINTS) | 
					
						
							| 
									
										
										
										
											1999-04-22 01:44:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-09 03:09:35 +08:00
										 |  |  | IMPLEMENT_ASN1_FUNCTIONS(CRL_DIST_POINTS) | 
					
						
							| 
									
										
										
										
											2005-07-24 07:33:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ASN1_SEQUENCE(ISSUING_DIST_POINT) = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ASN1_EXP_OPT(ISSUING_DIST_POINT, distpoint, DIST_POINT_NAME, 0), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyuser, ASN1_FBOOLEAN, 1), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyCA, ASN1_FBOOLEAN, 2), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlysomereasons, ASN1_BIT_STRING, 3), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, indirectCRL, ASN1_FBOOLEAN, 4), | 
					
						
							|  |  |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyattr, ASN1_FBOOLEAN, 5) | 
					
						
							| 
									
										
										
										
											2005-07-24 07:33:06 +08:00
										 |  |  | } ASN1_SEQUENCE_END(ISSUING_DIST_POINT) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-26 06:35:36 +08:00
										 |  |  | IMPLEMENT_ASN1_FUNCTIONS(ISSUING_DIST_POINT) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                    int indent); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static void *v2i_idp(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      STACK_OF(CONF_VALUE) *nval); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 08:52:15 +08:00
										 |  |  | const X509V3_EXT_METHOD ossl_v3_idp = { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     NID_issuing_distribution_point, X509V3_EXT_MULTILINE, | 
					
						
							|  |  |  |     ASN1_ITEM_ref(ISSUING_DIST_POINT), | 
					
						
							|  |  |  |     0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     v2i_idp, | 
					
						
							|  |  |  |     i2r_idp, 0, | 
					
						
							|  |  |  |     NULL | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-07-24 07:33:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static void *v2i_idp(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      STACK_OF(CONF_VALUE) *nval) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ISSUING_DIST_POINT *idp = NULL; | 
					
						
							|  |  |  |     CONF_VALUE *cnf; | 
					
						
							|  |  |  |     char *name, *val; | 
					
						
							|  |  |  |     int i, ret; | 
					
						
							|  |  |  |     idp = ISSUING_DIST_POINT_new(); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |     if (idp == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto merr; | 
					
						
							|  |  |  |     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 
					
						
							|  |  |  |         cnf = sk_CONF_VALUE_value(nval, i); | 
					
						
							|  |  |  |         name = cnf->name; | 
					
						
							|  |  |  |         val = cnf->value; | 
					
						
							|  |  |  |         ret = set_dist_point_name(&idp->distpoint, ctx, cnf); | 
					
						
							|  |  |  |         if (ret > 0) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         if (ret < 0) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         if (strcmp(name, "onlyuser") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!X509V3_get_value_bool(cnf, &idp->onlyuser)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         } else if (strcmp(name, "onlyCA") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!X509V3_get_value_bool(cnf, &idp->onlyCA)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         } else if (strcmp(name, "onlyAA") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!X509V3_get_value_bool(cnf, &idp->onlyattr)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         } else if (strcmp(name, "indirectCRL") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!X509V3_get_value_bool(cnf, &idp->indirectCRL)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-05-07 02:56:14 +08:00
										 |  |  |         } else if (strcmp(name, "onlysomereasons") == 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!set_reasons(&idp->onlysomereasons, val)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_NAME); | 
					
						
							| 
									
										
										
										
											2020-06-26 22:16:00 +08:00
										 |  |  |             X509V3_conf_add_error_name_value(cnf); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return idp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  merr: | 
					
						
							| 
									
										
										
										
											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
										 |  |  |  err: | 
					
						
							|  |  |  |     ISSUING_DIST_POINT_free(idp); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-26 06:35:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-24 08:23:57 +08:00
										 |  |  | static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:54:40 +08:00
										 |  |  |         if (i > 0) | 
					
						
							|  |  |  |             BIO_puts(out, "\n"); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         BIO_printf(out, "%*s", indent + 2, ""); | 
					
						
							|  |  |  |         GENERAL_NAME_print(out, sk_GENERAL_NAME_value(gens, i)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-24 08:23:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (dpn->type == 0) { | 
					
						
							|  |  |  |         BIO_printf(out, "%*sFull Name:\n", indent, ""); | 
					
						
							|  |  |  |         print_gens(out, dpn->name.fullname, indent); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         X509_NAME ntmp; | 
					
						
							|  |  |  |         ntmp.entries = dpn->name.relativename; | 
					
						
							|  |  |  |         BIO_printf(out, "%*sRelative Name:\n%*s", indent, "", indent + 2, ""); | 
					
						
							|  |  |  |         X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE); | 
					
						
							|  |  |  |         BIO_puts(out, "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-24 07:33:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                    int indent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ISSUING_DIST_POINT *idp = pidp; | 
					
						
							|  |  |  |     if (idp->distpoint) | 
					
						
							|  |  |  |         print_distpoint(out, idp->distpoint, indent); | 
					
						
							|  |  |  |     if (idp->onlyuser > 0) | 
					
						
							|  |  |  |         BIO_printf(out, "%*sOnly User Certificates\n", indent, ""); | 
					
						
							|  |  |  |     if (idp->onlyCA > 0) | 
					
						
							|  |  |  |         BIO_printf(out, "%*sOnly CA Certificates\n", indent, ""); | 
					
						
							|  |  |  |     if (idp->indirectCRL > 0) | 
					
						
							|  |  |  |         BIO_printf(out, "%*sIndirect CRL\n", indent, ""); | 
					
						
							|  |  |  |     if (idp->onlysomereasons) | 
					
						
							|  |  |  |         print_reasons(out, "Only Some Reasons", idp->onlysomereasons, indent); | 
					
						
							|  |  |  |     if (idp->onlyattr > 0) | 
					
						
							|  |  |  |         BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, ""); | 
					
						
							|  |  |  |     if (!idp->distpoint && (idp->onlyuser <= 0) && (idp->onlyCA <= 0) | 
					
						
							|  |  |  |         && (idp->indirectCRL <= 0) && !idp->onlysomereasons | 
					
						
							|  |  |  |         && (idp->onlyattr <= 0)) | 
					
						
							|  |  |  |         BIO_printf(out, "%*s<EMPTY>\n", indent, ""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-24 08:23:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      int indent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(DIST_POINT) *crld = pcrldp; | 
					
						
							|  |  |  |     DIST_POINT *point; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     for (i = 0; i < sk_DIST_POINT_num(crld); i++) { | 
					
						
							| 
									
										
										
										
											2018-01-29 23:54:40 +08:00
										 |  |  |         if (i > 0) | 
					
						
							|  |  |  |             BIO_puts(out, "\n"); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         point = sk_DIST_POINT_value(crld, i); | 
					
						
							|  |  |  |         if (point->distpoint) | 
					
						
							|  |  |  |             print_distpoint(out, point->distpoint, indent); | 
					
						
							|  |  |  |         if (point->reasons) | 
					
						
							|  |  |  |             print_reasons(out, "Reasons", point->reasons, indent); | 
					
						
							|  |  |  |         if (point->CRLissuer) { | 
					
						
							|  |  |  |             BIO_printf(out, "%*sCRL Issuer:\n", indent, ""); | 
					
						
							|  |  |  |             print_gens(out, point->CRLissuer, indent); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-04 23:34:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  | /* Append any nameRelativeToCRLIssuer in dpn to iname, set in dpn->dpname */ | 
					
						
							| 
									
										
										
										
											2020-03-23 15:30:37 +08:00
										 |  |  | int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, const X509_NAME *iname) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     STACK_OF(X509_NAME_ENTRY) *frag; | 
					
						
							|  |  |  |     X509_NAME_ENTRY *ne; | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (dpn == NULL || dpn->type != 1) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  |     frag = dpn->name.relativename; | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  |     X509_NAME_free(dpn->dpname); /* just in case it was already set */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     dpn->dpname = X509_NAME_dup(iname); | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  |     if (dpn->dpname == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_NAME_ENTRY_num(frag); i++) { | 
					
						
							|  |  |  |         ne = sk_X509_NAME_ENTRY_value(frag, i); | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  |         if (!X509_NAME_add_entry(dpn->dpname, ne, -1, i ? 0 : 1)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* generate cached encoding of name */ | 
					
						
							| 
									
										
										
										
											2020-06-27 22:16:12 +08:00
										 |  |  |     if (i2d_X509_NAME(dpn->dpname, NULL) >= 0) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     X509_NAME_free(dpn->dpname); | 
					
						
							|  |  |  |     dpn->dpname = NULL; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } |