/src/openssl30/crypto/x509/v3_crld.c
| Line | Count | Source (jump to first uncovered line) | 
| 1 |  | /* | 
| 2 |  |  * Copyright 1999-2022 The OpenSSL Project Authors. All Rights Reserved. | 
| 3 |  |  * | 
| 4 |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
| 5 |  |  * this file except in compliance with the License.  You can obtain a copy | 
| 6 |  |  * in the file LICENSE in the source distribution or at | 
| 7 |  |  * https://www.openssl.org/source/license.html | 
| 8 |  |  */ | 
| 9 |  |  | 
| 10 |  | #include <stdio.h> | 
| 11 |  | #include "internal/cryptlib.h" | 
| 12 |  | #include <openssl/conf.h> | 
| 13 |  | #include <openssl/asn1.h> | 
| 14 |  | #include <openssl/asn1t.h> | 
| 15 |  | #include <openssl/x509v3.h> | 
| 16 |  |  | 
| 17 |  | #include "crypto/x509.h" | 
| 18 |  | #include "ext_dat.h" | 
| 19 |  | #include "x509_local.h" | 
| 20 |  |  | 
| 21 |  | static void *v2i_crld(const X509V3_EXT_METHOD *method, | 
| 22 |  |                       X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | 
| 23 |  | static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, | 
| 24 |  |                      int indent); | 
| 25 |  |  | 
| 26 |  | const X509V3_EXT_METHOD ossl_v3_crld = { | 
| 27 |  |     NID_crl_distribution_points, 0, ASN1_ITEM_ref(CRL_DIST_POINTS), | 
| 28 |  |     0, 0, 0, 0, | 
| 29 |  |     0, 0, | 
| 30 |  |     0, | 
| 31 |  |     v2i_crld, | 
| 32 |  |     i2r_crldp, 0, | 
| 33 |  |     NULL | 
| 34 |  | }; | 
| 35 |  |  | 
| 36 |  | const X509V3_EXT_METHOD ossl_v3_freshest_crl = { | 
| 37 |  |     NID_freshest_crl, 0, ASN1_ITEM_ref(CRL_DIST_POINTS), | 
| 38 |  |     0, 0, 0, 0, | 
| 39 |  |     0, 0, | 
| 40 |  |     0, | 
| 41 |  |     v2i_crld, | 
| 42 |  |     i2r_crldp, 0, | 
| 43 |  |     NULL | 
| 44 |  | }; | 
| 45 |  |  | 
| 46 |  | static STACK_OF(GENERAL_NAME) *gnames_from_sectname(X509V3_CTX *ctx, | 
| 47 |  |                                                     char *sect) | 
| 48 | 0 | { | 
| 49 | 0 |     STACK_OF(CONF_VALUE) *gnsect; | 
| 50 | 0 |     STACK_OF(GENERAL_NAME) *gens; | 
| 51 | 0 |     if (*sect == '@') | 
| 52 | 0 |         gnsect = X509V3_get_section(ctx, sect + 1); | 
| 53 | 0 |     else | 
| 54 | 0 |         gnsect = X509V3_parse_list(sect); | 
| 55 | 0 |     if (!gnsect) { | 
| 56 | 0 |         ERR_raise(ERR_LIB_X509V3, X509V3_R_SECTION_NOT_FOUND); | 
| 57 | 0 |         return NULL; | 
| 58 | 0 |     } | 
| 59 | 0 |     gens = v2i_GENERAL_NAMES(NULL, ctx, gnsect); | 
| 60 | 0 |     if (*sect == '@') | 
| 61 | 0 |         X509V3_section_free(ctx, gnsect); | 
| 62 | 0 |     else | 
| 63 | 0 |         sk_CONF_VALUE_pop_free(gnsect, X509V3_conf_free); | 
| 64 | 0 |     return gens; | 
| 65 | 0 | } | 
| 66 |  |  | 
| 67 |  | static int set_dist_point_name(DIST_POINT_NAME **pdp, X509V3_CTX *ctx, | 
| 68 |  |                                CONF_VALUE *cnf) | 
| 69 | 0 | { | 
| 70 | 0 |     STACK_OF(GENERAL_NAME) *fnm = NULL; | 
| 71 | 0 |     STACK_OF(X509_NAME_ENTRY) *rnm = NULL; | 
| 72 |  | 
 | 
| 73 | 0 |     if (strncmp(cnf->name, "fullname", 9) == 0) { | 
| 74 | 0 |         fnm = gnames_from_sectname(ctx, cnf->value); | 
| 75 | 0 |         if (!fnm) | 
| 76 | 0 |             goto err; | 
| 77 | 0 |     } else if (strcmp(cnf->name, "relativename") == 0) { | 
| 78 | 0 |         int ret; | 
| 79 | 0 |         STACK_OF(CONF_VALUE) *dnsect; | 
| 80 | 0 |         X509_NAME *nm; | 
| 81 | 0 |         nm = X509_NAME_new(); | 
| 82 | 0 |         if (nm == NULL) | 
| 83 | 0 |             return -1; | 
| 84 | 0 |         dnsect = X509V3_get_section(ctx, cnf->value); | 
| 85 | 0 |         if (!dnsect) { | 
| 86 | 0 |             X509_NAME_free(nm); | 
| 87 | 0 |             ERR_raise(ERR_LIB_X509V3, X509V3_R_SECTION_NOT_FOUND); | 
| 88 | 0 |             return -1; | 
| 89 | 0 |         } | 
| 90 | 0 |         ret = X509V3_NAME_from_section(nm, dnsect, MBSTRING_ASC); | 
| 91 | 0 |         X509V3_section_free(ctx, dnsect); | 
| 92 | 0 |         rnm = nm->entries; | 
| 93 | 0 |         nm->entries = NULL; | 
| 94 | 0 |         X509_NAME_free(nm); | 
| 95 | 0 |         if (!ret || sk_X509_NAME_ENTRY_num(rnm) <= 0) | 
| 96 | 0 |             goto err; | 
| 97 |  |         /* | 
| 98 |  |          * Since its a name fragment can't have more than one RDNSequence | 
| 99 |  |          */ | 
| 100 | 0 |         if (sk_X509_NAME_ENTRY_value(rnm, | 
| 101 | 0 |                                      sk_X509_NAME_ENTRY_num(rnm) - 1)->set) { | 
| 102 | 0 |             ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_MULTIPLE_RDNS); | 
| 103 | 0 |             goto err; | 
| 104 | 0 |         } | 
| 105 | 0 |     } else | 
| 106 | 0 |         return 0; | 
| 107 |  |  | 
| 108 | 0 |     if (*pdp) { | 
| 109 | 0 |         ERR_raise(ERR_LIB_X509V3, X509V3_R_DISTPOINT_ALREADY_SET); | 
| 110 | 0 |         goto err; | 
| 111 | 0 |     } | 
| 112 |  |  | 
| 113 | 0 |     *pdp = DIST_POINT_NAME_new(); | 
| 114 | 0 |     if (*pdp == NULL) | 
| 115 | 0 |         goto err; | 
| 116 | 0 |     if (fnm) { | 
| 117 | 0 |         (*pdp)->type = 0; | 
| 118 | 0 |         (*pdp)->name.fullname = fnm; | 
| 119 | 0 |     } else { | 
| 120 | 0 |         (*pdp)->type = 1; | 
| 121 | 0 |         (*pdp)->name.relativename = rnm; | 
| 122 | 0 |     } | 
| 123 |  | 
 | 
| 124 | 0 |     return 1; | 
| 125 |  |  | 
| 126 | 0 |  err: | 
| 127 | 0 |     sk_GENERAL_NAME_pop_free(fnm, GENERAL_NAME_free); | 
| 128 | 0 |     sk_X509_NAME_ENTRY_pop_free(rnm, X509_NAME_ENTRY_free); | 
| 129 | 0 |     return -1; | 
| 130 | 0 | } | 
| 131 |  |  | 
| 132 |  | static const BIT_STRING_BITNAME reason_flags[] = { | 
| 133 |  |     {0, "Unused", "unused"}, | 
| 134 |  |     {1, "Key Compromise", "keyCompromise"}, | 
| 135 |  |     {2, "CA Compromise", "CACompromise"}, | 
| 136 |  |     {3, "Affiliation Changed", "affiliationChanged"}, | 
| 137 |  |     {4, "Superseded", "superseded"}, | 
| 138 |  |     {5, "Cessation Of Operation", "cessationOfOperation"}, | 
| 139 |  |     {6, "Certificate Hold", "certificateHold"}, | 
| 140 |  |     {7, "Privilege Withdrawn", "privilegeWithdrawn"}, | 
| 141 |  |     {8, "AA Compromise", "AACompromise"}, | 
| 142 |  |     {-1, NULL, NULL} | 
| 143 |  | }; | 
| 144 |  |  | 
| 145 |  | static int set_reasons(ASN1_BIT_STRING **preas, char *value) | 
| 146 | 0 | { | 
| 147 | 0 |     STACK_OF(CONF_VALUE) *rsk = NULL; | 
| 148 | 0 |     const BIT_STRING_BITNAME *pbn; | 
| 149 | 0 |     const char *bnam; | 
| 150 | 0 |     int i, ret = 0; | 
| 151 | 0 |     rsk = X509V3_parse_list(value); | 
| 152 | 0 |     if (rsk == NULL) | 
| 153 | 0 |         return 0; | 
| 154 | 0 |     if (*preas != NULL) | 
| 155 | 0 |         goto err; | 
| 156 | 0 |     for (i = 0; i < sk_CONF_VALUE_num(rsk); i++) { | 
| 157 | 0 |         bnam = sk_CONF_VALUE_value(rsk, i)->name; | 
| 158 | 0 |         if (*preas == NULL) { | 
| 159 | 0 |             *preas = ASN1_BIT_STRING_new(); | 
| 160 | 0 |             if (*preas == NULL) | 
| 161 | 0 |                 goto err; | 
| 162 | 0 |         } | 
| 163 | 0 |         for (pbn = reason_flags; pbn->lname; pbn++) { | 
| 164 | 0 |             if (strcmp(pbn->sname, bnam) == 0) { | 
| 165 | 0 |                 if (!ASN1_BIT_STRING_set_bit(*preas, pbn->bitnum, 1)) | 
| 166 | 0 |                     goto err; | 
| 167 | 0 |                 break; | 
| 168 | 0 |             } | 
| 169 | 0 |         } | 
| 170 | 0 |         if (pbn->lname == NULL) | 
| 171 | 0 |             goto err; | 
| 172 | 0 |     } | 
| 173 | 0 |     ret = 1; | 
| 174 |  | 
 | 
| 175 | 0 |  err: | 
| 176 | 0 |     sk_CONF_VALUE_pop_free(rsk, X509V3_conf_free); | 
| 177 | 0 |     return ret; | 
| 178 | 0 | } | 
| 179 |  |  | 
| 180 |  | static int print_reasons(BIO *out, const char *rname, | 
| 181 |  |                          ASN1_BIT_STRING *rflags, int indent) | 
| 182 | 13.5k | { | 
| 183 | 13.5k |     int first = 1; | 
| 184 | 13.5k |     const BIT_STRING_BITNAME *pbn; | 
| 185 | 13.5k |     BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, ""); | 
| 186 | 135k |     for (pbn = reason_flags; pbn->lname; pbn++) { | 
| 187 | 121k |         if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum)) { | 
| 188 | 43.6k |             if (first) | 
| 189 | 10.1k |                 first = 0; | 
| 190 | 33.4k |             else | 
| 191 | 33.4k |                 BIO_puts(out, ", "); | 
| 192 | 43.6k |             BIO_puts(out, pbn->lname); | 
| 193 | 43.6k |         } | 
| 194 | 121k |     } | 
| 195 | 13.5k |     if (first) | 
| 196 | 3.32k |         BIO_puts(out, "<EMPTY>\n"); | 
| 197 | 10.1k |     else | 
| 198 | 10.1k |         BIO_puts(out, "\n"); | 
| 199 | 13.5k |     return 1; | 
| 200 | 13.5k | } | 
| 201 |  |  | 
| 202 |  | static DIST_POINT *crldp_from_section(X509V3_CTX *ctx, | 
| 203 |  |                                       STACK_OF(CONF_VALUE) *nval) | 
| 204 | 0 | { | 
| 205 | 0 |     int i; | 
| 206 | 0 |     CONF_VALUE *cnf; | 
| 207 | 0 |     DIST_POINT *point = DIST_POINT_new(); | 
| 208 |  | 
 | 
| 209 | 0 |     if (point == NULL) | 
| 210 | 0 |         goto err; | 
| 211 | 0 |     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 
| 212 | 0 |         int ret; | 
| 213 | 0 |         cnf = sk_CONF_VALUE_value(nval, i); | 
| 214 | 0 |         ret = set_dist_point_name(&point->distpoint, ctx, cnf); | 
| 215 | 0 |         if (ret > 0) | 
| 216 | 0 |             continue; | 
| 217 | 0 |         if (ret < 0) | 
| 218 | 0 |             goto err; | 
| 219 | 0 |         if (strcmp(cnf->name, "reasons") == 0) { | 
| 220 | 0 |             if (!set_reasons(&point->reasons, cnf->value)) | 
| 221 | 0 |                 goto err; | 
| 222 | 0 |         } else if (strcmp(cnf->name, "CRLissuer") == 0) { | 
| 223 | 0 |             point->CRLissuer = gnames_from_sectname(ctx, cnf->value); | 
| 224 | 0 |             if (point->CRLissuer == NULL) | 
| 225 | 0 |                 goto err; | 
| 226 | 0 |         } | 
| 227 | 0 |     } | 
| 228 |  |  | 
| 229 | 0 |     return point; | 
| 230 |  |  | 
| 231 | 0 |  err: | 
| 232 | 0 |     DIST_POINT_free(point); | 
| 233 | 0 |     return NULL; | 
| 234 | 0 | } | 
| 235 |  |  | 
| 236 |  | static void *v2i_crld(const X509V3_EXT_METHOD *method, | 
| 237 |  |                       X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | 
| 238 | 0 | { | 
| 239 | 0 |     STACK_OF(DIST_POINT) *crld; | 
| 240 | 0 |     GENERAL_NAMES *gens = NULL; | 
| 241 | 0 |     GENERAL_NAME *gen = NULL; | 
| 242 | 0 |     CONF_VALUE *cnf; | 
| 243 | 0 |     const int num = sk_CONF_VALUE_num(nval); | 
| 244 | 0 |     int i; | 
| 245 |  | 
 | 
| 246 | 0 |     crld = sk_DIST_POINT_new_reserve(NULL, num); | 
| 247 | 0 |     if (crld == NULL) | 
| 248 | 0 |         goto merr; | 
| 249 | 0 |     for (i = 0; i < num; i++) { | 
| 250 | 0 |         DIST_POINT *point; | 
| 251 |  | 
 | 
| 252 | 0 |         cnf = sk_CONF_VALUE_value(nval, i); | 
| 253 | 0 |         if (cnf->value == NULL) { | 
| 254 | 0 |             STACK_OF(CONF_VALUE) *dpsect; | 
| 255 | 0 |             dpsect = X509V3_get_section(ctx, cnf->name); | 
| 256 | 0 |             if (!dpsect) | 
| 257 | 0 |                 goto err; | 
| 258 | 0 |             point = crldp_from_section(ctx, dpsect); | 
| 259 | 0 |             X509V3_section_free(ctx, dpsect); | 
| 260 | 0 |             if (point == NULL) | 
| 261 | 0 |                 goto err; | 
| 262 | 0 |             sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ | 
| 263 | 0 |         } else { | 
| 264 | 0 |             if ((gen = v2i_GENERAL_NAME(method, ctx, cnf)) == NULL) | 
| 265 | 0 |                 goto err; | 
| 266 | 0 |             if ((gens = GENERAL_NAMES_new()) == NULL) | 
| 267 | 0 |                 goto merr; | 
| 268 | 0 |             if (!sk_GENERAL_NAME_push(gens, gen)) | 
| 269 | 0 |                 goto merr; | 
| 270 | 0 |             gen = NULL; | 
| 271 | 0 |             if ((point = DIST_POINT_new()) == NULL) | 
| 272 | 0 |                 goto merr; | 
| 273 | 0 |             sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ | 
| 274 | 0 |             if ((point->distpoint = DIST_POINT_NAME_new()) == NULL) | 
| 275 | 0 |                 goto merr; | 
| 276 | 0 |             point->distpoint->name.fullname = gens; | 
| 277 | 0 |             point->distpoint->type = 0; | 
| 278 | 0 |             gens = NULL; | 
| 279 | 0 |         } | 
| 280 | 0 |     } | 
| 281 | 0 |     return crld; | 
| 282 |  |  | 
| 283 | 0 |  merr: | 
| 284 | 0 |     ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE); | 
| 285 | 0 |  err: | 
| 286 | 0 |     GENERAL_NAME_free(gen); | 
| 287 | 0 |     GENERAL_NAMES_free(gens); | 
| 288 | 0 |     sk_DIST_POINT_pop_free(crld, DIST_POINT_free); | 
| 289 | 0 |     return NULL; | 
| 290 | 0 | } | 
| 291 |  |  | 
| 292 |  | static int dpn_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, | 
| 293 |  |                   void *exarg) | 
| 294 | 916k | { | 
| 295 | 916k |     DIST_POINT_NAME *dpn = (DIST_POINT_NAME *)*pval; | 
| 296 |  |  | 
| 297 | 916k |     switch (operation) { | 
| 298 | 167k |     case ASN1_OP_NEW_POST: | 
| 299 | 167k |         dpn->dpname = NULL; | 
| 300 | 167k |         break; | 
| 301 |  |  | 
| 302 | 167k |     case ASN1_OP_FREE_POST: | 
| 303 | 167k |         X509_NAME_free(dpn->dpname); | 
| 304 | 167k |         break; | 
| 305 | 916k |     } | 
| 306 | 916k |     return 1; | 
| 307 | 916k | } | 
| 308 |  |  | 
| 309 |  |  | 
| 310 |  | ASN1_CHOICE_cb(DIST_POINT_NAME, dpn_cb) = { | 
| 311 |  |         ASN1_IMP_SEQUENCE_OF(DIST_POINT_NAME, name.fullname, GENERAL_NAME, 0), | 
| 312 |  |         ASN1_IMP_SET_OF(DIST_POINT_NAME, name.relativename, X509_NAME_ENTRY, 1) | 
| 313 |  | } ASN1_CHOICE_END_cb(DIST_POINT_NAME, DIST_POINT_NAME, type) | 
| 314 |  |  | 
| 315 |  |  | 
| 316 |  | IMPLEMENT_ASN1_FUNCTIONS(DIST_POINT_NAME) | 
| 317 |  |  | 
| 318 |  | ASN1_SEQUENCE(DIST_POINT) = { | 
| 319 |  |         ASN1_EXP_OPT(DIST_POINT, distpoint, DIST_POINT_NAME, 0), | 
| 320 |  |         ASN1_IMP_OPT(DIST_POINT, reasons, ASN1_BIT_STRING, 1), | 
| 321 |  |         ASN1_IMP_SEQUENCE_OF_OPT(DIST_POINT, CRLissuer, GENERAL_NAME, 2) | 
| 322 |  | } ASN1_SEQUENCE_END(DIST_POINT) | 
| 323 |  |  | 
| 324 |  | IMPLEMENT_ASN1_FUNCTIONS(DIST_POINT) | 
| 325 |  |  | 
| 326 |  | ASN1_ITEM_TEMPLATE(CRL_DIST_POINTS) = | 
| 327 |  |         ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, CRLDistributionPoints, DIST_POINT) | 
| 328 |  | ASN1_ITEM_TEMPLATE_END(CRL_DIST_POINTS) | 
| 329 |  |  | 
| 330 |  | IMPLEMENT_ASN1_FUNCTIONS(CRL_DIST_POINTS) | 
| 331 |  |  | 
| 332 |  | ASN1_SEQUENCE(ISSUING_DIST_POINT) = { | 
| 333 |  |         ASN1_EXP_OPT(ISSUING_DIST_POINT, distpoint, DIST_POINT_NAME, 0), | 
| 334 |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyuser, ASN1_FBOOLEAN, 1), | 
| 335 |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyCA, ASN1_FBOOLEAN, 2), | 
| 336 |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlysomereasons, ASN1_BIT_STRING, 3), | 
| 337 |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, indirectCRL, ASN1_FBOOLEAN, 4), | 
| 338 |  |         ASN1_IMP_OPT(ISSUING_DIST_POINT, onlyattr, ASN1_FBOOLEAN, 5) | 
| 339 |  | } ASN1_SEQUENCE_END(ISSUING_DIST_POINT) | 
| 340 |  |  | 
| 341 |  | IMPLEMENT_ASN1_FUNCTIONS(ISSUING_DIST_POINT) | 
| 342 |  |  | 
| 343 |  | static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out, | 
| 344 |  |                    int indent); | 
| 345 |  | static void *v2i_idp(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | 
| 346 |  |                      STACK_OF(CONF_VALUE) *nval); | 
| 347 |  |  | 
| 348 |  | const X509V3_EXT_METHOD ossl_v3_idp = { | 
| 349 |  |     NID_issuing_distribution_point, X509V3_EXT_MULTILINE, | 
| 350 |  |     ASN1_ITEM_ref(ISSUING_DIST_POINT), | 
| 351 |  |     0, 0, 0, 0, | 
| 352 |  |     0, 0, | 
| 353 |  |     0, | 
| 354 |  |     v2i_idp, | 
| 355 |  |     i2r_idp, 0, | 
| 356 |  |     NULL | 
| 357 |  | }; | 
| 358 |  |  | 
| 359 |  | static void *v2i_idp(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | 
| 360 |  |                      STACK_OF(CONF_VALUE) *nval) | 
| 361 | 0 | { | 
| 362 | 0 |     ISSUING_DIST_POINT *idp = NULL; | 
| 363 | 0 |     CONF_VALUE *cnf; | 
| 364 | 0 |     char *name, *val; | 
| 365 | 0 |     int i, ret; | 
| 366 | 0 |     idp = ISSUING_DIST_POINT_new(); | 
| 367 | 0 |     if (idp == NULL) | 
| 368 | 0 |         goto merr; | 
| 369 | 0 |     for (i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 
| 370 | 0 |         cnf = sk_CONF_VALUE_value(nval, i); | 
| 371 | 0 |         name = cnf->name; | 
| 372 | 0 |         val = cnf->value; | 
| 373 | 0 |         ret = set_dist_point_name(&idp->distpoint, ctx, cnf); | 
| 374 | 0 |         if (ret > 0) | 
| 375 | 0 |             continue; | 
| 376 | 0 |         if (ret < 0) | 
| 377 | 0 |             goto err; | 
| 378 | 0 |         if (strcmp(name, "onlyuser") == 0) { | 
| 379 | 0 |             if (!X509V3_get_value_bool(cnf, &idp->onlyuser)) | 
| 380 | 0 |                 goto err; | 
| 381 | 0 |         } else if (strcmp(name, "onlyCA") == 0) { | 
| 382 | 0 |             if (!X509V3_get_value_bool(cnf, &idp->onlyCA)) | 
| 383 | 0 |                 goto err; | 
| 384 | 0 |         } else if (strcmp(name, "onlyAA") == 0) { | 
| 385 | 0 |             if (!X509V3_get_value_bool(cnf, &idp->onlyattr)) | 
| 386 | 0 |                 goto err; | 
| 387 | 0 |         } else if (strcmp(name, "indirectCRL") == 0) { | 
| 388 | 0 |             if (!X509V3_get_value_bool(cnf, &idp->indirectCRL)) | 
| 389 | 0 |                 goto err; | 
| 390 | 0 |         } else if (strcmp(name, "onlysomereasons") == 0) { | 
| 391 | 0 |             if (!set_reasons(&idp->onlysomereasons, val)) | 
| 392 | 0 |                 goto err; | 
| 393 | 0 |         } else { | 
| 394 | 0 |             ERR_raise(ERR_LIB_X509V3, X509V3_R_INVALID_NAME); | 
| 395 | 0 |             X509V3_conf_add_error_name_value(cnf); | 
| 396 | 0 |             goto err; | 
| 397 | 0 |         } | 
| 398 | 0 |     } | 
| 399 | 0 |     return idp; | 
| 400 |  |  | 
| 401 | 0 |  merr: | 
| 402 | 0 |     ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE); | 
| 403 | 0 |  err: | 
| 404 | 0 |     ISSUING_DIST_POINT_free(idp); | 
| 405 | 0 |     return NULL; | 
| 406 | 0 | } | 
| 407 |  |  | 
| 408 |  | static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent) | 
| 409 | 9.42k | { | 
| 410 | 9.42k |     int i; | 
| 411 | 20.6k |     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) { | 
| 412 | 11.2k |         if (i > 0) | 
| 413 | 3.96k |             BIO_puts(out, "\n"); | 
| 414 | 11.2k |         BIO_printf(out, "%*s", indent + 2, ""); | 
| 415 | 11.2k |         GENERAL_NAME_print(out, sk_GENERAL_NAME_value(gens, i)); | 
| 416 | 11.2k |     } | 
| 417 | 9.42k |     return 1; | 
| 418 | 9.42k | } | 
| 419 |  |  | 
| 420 |  | static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent) | 
| 421 | 31.3k | { | 
| 422 | 31.3k |     if (dpn->type == 0) { | 
| 423 | 11.2k |         BIO_printf(out, "%*sFull Name:\n", indent, ""); | 
| 424 | 11.2k |         print_gens(out, dpn->name.fullname, indent); | 
| 425 | 20.1k |     } else { | 
| 426 | 20.1k |         X509_NAME ntmp; | 
| 427 | 20.1k |         ntmp.entries = dpn->name.relativename; | 
| 428 | 20.1k |         BIO_printf(out, "%*sRelative Name:\n%*s", indent, "", indent + 2, ""); | 
| 429 | 20.1k |         X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE); | 
| 430 | 20.1k |         BIO_puts(out, "\n"); | 
| 431 | 20.1k |     } | 
| 432 | 31.3k |     return 1; | 
| 433 | 31.3k | } | 
| 434 |  |  | 
| 435 |  | static int i2r_idp(const X509V3_EXT_METHOD *method, void *pidp, BIO *out, | 
| 436 |  |                    int indent) | 
| 437 | 52.9k | { | 
| 438 | 52.9k |     ISSUING_DIST_POINT *idp = pidp; | 
| 439 | 52.9k |     if (idp->distpoint) | 
| 440 | 28.4k |         print_distpoint(out, idp->distpoint, indent); | 
| 441 | 52.9k |     if (idp->onlyuser > 0) | 
| 442 | 2.23k |         BIO_printf(out, "%*sOnly User Certificates\n", indent, ""); | 
| 443 | 52.9k |     if (idp->onlyCA > 0) | 
| 444 | 1.04k |         BIO_printf(out, "%*sOnly CA Certificates\n", indent, ""); | 
| 445 | 52.9k |     if (idp->indirectCRL > 0) | 
| 446 | 2.25k |         BIO_printf(out, "%*sIndirect CRL\n", indent, ""); | 
| 447 | 52.9k |     if (idp->onlysomereasons) | 
| 448 | 7.18k |         print_reasons(out, "Only Some Reasons", idp->onlysomereasons, indent); | 
| 449 | 52.9k |     if (idp->onlyattr > 0) | 
| 450 | 1.02k |         BIO_printf(out, "%*sOnly Attribute Certificates\n", indent, ""); | 
| 451 | 52.9k |     if (!idp->distpoint && (idp->onlyuser <= 0) && (idp->onlyCA <= 0) | 
| 452 | 52.9k |         && (idp->indirectCRL <= 0) && !idp->onlysomereasons | 
| 453 | 52.9k |         && (idp->onlyattr <= 0)) | 
| 454 | 10.8k |         BIO_printf(out, "%*s<EMPTY>\n", indent, ""); | 
| 455 |  |  | 
| 456 | 52.9k |     return 1; | 
| 457 | 52.9k | } | 
| 458 |  |  | 
| 459 |  | static int i2r_crldp(const X509V3_EXT_METHOD *method, void *pcrldp, BIO *out, | 
| 460 |  |                      int indent) | 
| 461 | 10.7k | { | 
| 462 | 10.7k |     STACK_OF(DIST_POINT) *crld = pcrldp; | 
| 463 | 10.7k |     DIST_POINT *point; | 
| 464 | 10.7k |     int i; | 
| 465 | 25.9k |     for (i = 0; i < sk_DIST_POINT_num(crld); i++) { | 
| 466 | 15.2k |         if (i > 0) | 
| 467 | 5.96k |             BIO_puts(out, "\n"); | 
| 468 | 15.2k |         point = sk_DIST_POINT_value(crld, i); | 
| 469 | 15.2k |         if (point->distpoint) | 
| 470 | 2.10k |             print_distpoint(out, point->distpoint, indent); | 
| 471 | 15.2k |         if (point->reasons) | 
| 472 | 6.06k |             print_reasons(out, "Reasons", point->reasons, indent); | 
| 473 | 15.2k |         if (point->CRLissuer) { | 
| 474 | 1.39k |             BIO_printf(out, "%*sCRL Issuer:\n", indent, ""); | 
| 475 | 1.39k |             print_gens(out, point->CRLissuer, indent); | 
| 476 | 1.39k |         } | 
| 477 | 15.2k |     } | 
| 478 | 10.7k |     return 1; | 
| 479 | 10.7k | } | 
| 480 |  |  | 
| 481 |  | /* Append any nameRelativeToCRLIssuer in dpn to iname, set in dpn->dpname */ | 
| 482 |  | int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, const X509_NAME *iname) | 
| 483 | 14.9k | { | 
| 484 | 14.9k |     int i; | 
| 485 | 14.9k |     STACK_OF(X509_NAME_ENTRY) *frag; | 
| 486 | 14.9k |     X509_NAME_ENTRY *ne; | 
| 487 |  |  | 
| 488 | 14.9k |     if (dpn == NULL || dpn->type != 1) | 
| 489 | 5.67k |         return 1; | 
| 490 | 9.32k |     frag = dpn->name.relativename; | 
| 491 | 9.32k |     X509_NAME_free(dpn->dpname); /* just in case it was already set */ | 
| 492 | 9.32k |     dpn->dpname = X509_NAME_dup(iname); | 
| 493 | 9.32k |     if (dpn->dpname == NULL) | 
| 494 | 2.20k |         return 0; | 
| 495 | 21.8k |     for (i = 0; i < sk_X509_NAME_ENTRY_num(frag); i++) { | 
| 496 | 14.8k |         ne = sk_X509_NAME_ENTRY_value(frag, i); | 
| 497 | 14.8k |         if (!X509_NAME_add_entry(dpn->dpname, ne, -1, i ? 0 : 1)) | 
| 498 | 88 |             goto err; | 
| 499 | 14.8k |     } | 
| 500 |  |     /* generate cached encoding of name */ | 
| 501 | 7.02k |     if (i2d_X509_NAME(dpn->dpname, NULL) >= 0) | 
| 502 | 4.33k |         return 1; | 
| 503 |  |  | 
| 504 | 2.77k |  err: | 
| 505 | 2.77k |     X509_NAME_free(dpn->dpname); | 
| 506 | 2.77k |     dpn->dpname = NULL; | 
| 507 | 2.77k |     return 0; | 
| 508 | 7.02k | } |