| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-05-15 21:09:49 +08:00
										 |  |  |  * Copyright 2004-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +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
 | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  | #include <openssl/trace.h>
 | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | #include <openssl/x509.h>
 | 
					
						
							|  |  |  | #include <openssl/x509v3.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "pcy_local.h"
 | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 06:30:24 +08:00
										 |  |  | DEFINE_STACK_OF(ASN1_OBJECT) | 
					
						
							|  |  |  | DEFINE_STACK_OF(X509) | 
					
						
							|  |  |  | DEFINE_STACK_OF(X509_POLICY_NODE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  | static void expected_print(BIO *channel, | 
					
						
							|  |  |  |                            X509_POLICY_LEVEL *lev, X509_POLICY_NODE *node, | 
					
						
							|  |  |  |                            int indent) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if ((lev->flags & X509_V_FLAG_INHIBIT_MAP) | 
					
						
							|  |  |  |         || !(node->data->flags & POLICY_DATA_FLAG_MAP_MASK)) | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |         BIO_puts(channel, "  Not Mapped\n"); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else { | 
					
						
							|  |  |  |         int i; | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         STACK_OF(ASN1_OBJECT) *pset = node->data->expected_policy_set; | 
					
						
							|  |  |  |         ASN1_OBJECT *oid; | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |         BIO_puts(channel, "  Expected: "); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         for (i = 0; i < sk_ASN1_OBJECT_num(pset); i++) { | 
					
						
							|  |  |  |             oid = sk_ASN1_OBJECT_value(pset, i); | 
					
						
							|  |  |  |             if (i) | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |                 BIO_puts(channel, ", "); | 
					
						
							|  |  |  |             i2a_ASN1_OBJECT(channel, oid); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |         BIO_puts(channel, "\n"); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  | static void tree_print(BIO *channel, | 
					
						
							|  |  |  |                        char *str, X509_POLICY_TREE *tree, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                        X509_POLICY_LEVEL *curr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *plev; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!curr) | 
					
						
							|  |  |  |         curr = tree->levels + tree->nlevel; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         curr++; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |     BIO_printf(channel, "Level print after %s\n", str); | 
					
						
							| 
									
										
										
										
											2019-11-02 21:50:28 +08:00
										 |  |  |     BIO_printf(channel, "Printing Up to Level %ld\n", | 
					
						
							|  |  |  |                (long)(curr - tree->levels)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (plev = tree->levels; plev != curr; plev++) { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |         BIO_printf(channel, "Level %ld, flags = %x\n", | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |                    (long)(plev - tree->levels), plev->flags); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         for (i = 0; i < sk_X509_POLICY_NODE_num(plev->nodes); i++) { | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |             X509_POLICY_NODE *node = | 
					
						
							|  |  |  |                 sk_X509_POLICY_NODE_value(plev->nodes, i); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |             X509_POLICY_NODE_print(channel, node, 2); | 
					
						
							|  |  |  |             expected_print(channel, plev, node, 2); | 
					
						
							|  |  |  |             BIO_printf(channel, "  Flags: %x\n", node->data->flags); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (plev->anyPolicy) | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |             X509_POLICY_NODE_print(channel, plev->anyPolicy, 2); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define TREE_PRINT(str, tree, curr) \
 | 
					
						
							|  |  |  |     OSSL_TRACE_BEGIN(X509V3_POLICY) { \ | 
					
						
							|  |  |  |         tree_print(trc_out, "before tree_prune()", tree, curr); \ | 
					
						
							|  |  |  |     } OSSL_TRACE_END(X509V3_POLICY) | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 08:34:00 +08:00
										 |  |  | /*-
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |  * Return value: <= 0 on error, or positive bit mask: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * X509_PCY_TREE_VALID: valid tree | 
					
						
							|  |  |  |  * X509_PCY_TREE_EMPTY: empty tree (including bare TA case) | 
					
						
							|  |  |  |  * X509_PCY_TREE_EXPLICIT: explicit policy required | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      unsigned int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_TREE *tree; | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *level; | 
					
						
							|  |  |  |     const X509_POLICY_CACHE *cache; | 
					
						
							|  |  |  |     X509_POLICY_DATA *data = NULL; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     int ret = X509_PCY_TREE_VALID; | 
					
						
							|  |  |  |     int n = sk_X509_num(certs) - 1; /* RFC5280 paths omit the TA */ | 
					
						
							|  |  |  |     int explicit_policy = (flags & X509_V_FLAG_EXPLICIT_POLICY) ? 0 : n+1; | 
					
						
							|  |  |  |     int any_skip = (flags & X509_V_FLAG_INHIBIT_ANY) ? 0 : n+1; | 
					
						
							|  |  |  |     int map_skip = (flags & X509_V_FLAG_INHIBIT_MAP) ? 0 : n+1; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2015-02-03 00:08:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     *ptree = NULL; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     /* Can't do anything with just a trust anchor */ | 
					
						
							|  |  |  |     if (n == 0) | 
					
						
							|  |  |  |         return X509_PCY_TREE_EMPTY; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * First setup the policy cache in all n non-TA certificates, this will be | 
					
						
							|  |  |  |      * used in X509_verify_cert() which will invoke the verify callback for all | 
					
						
							|  |  |  |      * certificates with invalid policy extensions. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     for (i = n - 1; i >= 0; i--) { | 
					
						
							|  |  |  |         X509 *x = sk_X509_value(certs, i); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         /* Call for side-effect of computing hash and caching extensions */ | 
					
						
							|  |  |  |         X509_check_purpose(x, -1, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* If cache is NULL, likely ENOMEM: return immediately */ | 
					
						
							| 
									
										
										
										
											2016-06-14 23:54:08 +08:00
										 |  |  |         if (policy_cache_set(x) == NULL) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return X509_PCY_TREE_INTERNAL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |      * At this point check for invalid policies and required explicit policy. | 
					
						
							|  |  |  |      * Note that the explicit_policy counter is a count-down to zero, with the | 
					
						
							|  |  |  |      * requirement kicking in if and once it does that.  The counter is | 
					
						
							|  |  |  |      * decremented for every non-self-issued certificate in the path, but may | 
					
						
							|  |  |  |      * be further reduced by policy constraints in a non-leaf certificate. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-08-06 01:56:58 +08:00
										 |  |  |      * The ultimate policy set is the intersection of all the policies along | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |      * the path, if we hit a certificate with an empty policy set, and explicit | 
					
						
							|  |  |  |      * policy is required we're done. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     for (i = n - 1; | 
					
						
							|  |  |  |          i >= 0 && (explicit_policy > 0 || (ret & X509_PCY_TREE_EMPTY) == 0); | 
					
						
							|  |  |  |          i--) { | 
					
						
							|  |  |  |         X509 *x = sk_X509_value(certs, i); | 
					
						
							|  |  |  |         uint32_t ex_flags = X509_get_extension_flags(x); | 
					
						
							| 
									
										
										
										
											2016-01-30 05:38:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         /* All the policies are already cached, we can return early */ | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |         if (ex_flags & EXFLAG_INVALID_POLICY) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return X509_PCY_TREE_INVALID; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Access the cache which we now know exists */ | 
					
						
							|  |  |  |         cache = policy_cache_set(x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ((ret & X509_PCY_TREE_VALID) && cache->data == NULL) | 
					
						
							|  |  |  |             ret = X509_PCY_TREE_EMPTY; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (explicit_policy > 0) { | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |             if (!(ex_flags & EXFLAG_SI)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 explicit_policy--; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             if ((cache->explicit_skip >= 0) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 && (cache->explicit_skip < explicit_policy)) | 
					
						
							|  |  |  |                 explicit_policy = cache->explicit_skip; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (explicit_policy == 0) | 
					
						
							|  |  |  |         ret |= X509_PCY_TREE_EXPLICIT; | 
					
						
							|  |  |  |     if ((ret & X509_PCY_TREE_VALID) == 0) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If we get this far initialize the tree */ | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |     if ((tree = OPENSSL_zalloc(sizeof(*tree))) == NULL) { | 
					
						
							|  |  |  |         X509V3err(X509V3_F_TREE_INIT, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * http://tools.ietf.org/html/rfc5280#section-6.1.2, figure 3.
 | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The top level is implicitly for the trust anchor with valid expected | 
					
						
							|  |  |  |      * policies of anyPolicy.  (RFC 5280 has the TA at depth 0 and the leaf at | 
					
						
							|  |  |  |      * depth n, we have the leaf at depth 0 and the TA at depth n). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((tree->levels = OPENSSL_zalloc(sizeof(*tree->levels)*(n+1))) == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         OPENSSL_free(tree); | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |         X509V3err(X509V3_F_TREE_INIT, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     tree->nlevel = n+1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     level = tree->levels; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if ((data = policy_data_new(NULL, OBJ_nid2obj(NID_any_policy), 0)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto bad_tree; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (level_add_node(level, data, NULL, tree) == NULL) { | 
					
						
							|  |  |  |         policy_data_free(data); | 
					
						
							|  |  |  |         goto bad_tree; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * In this pass initialize all the tree levels and whether anyPolicy and | 
					
						
							|  |  |  |      * policy mapping are inhibited at each level. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     for (i = n - 1; i >= 0; i--) { | 
					
						
							|  |  |  |         X509 *x = sk_X509_value(certs, i); | 
					
						
							|  |  |  |         uint32_t ex_flags = X509_get_extension_flags(x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Access the cache which we now know exists */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         cache = policy_cache_set(x); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-01 03:29:57 +08:00
										 |  |  |         X509_up_ref(x); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         (++level)->cert = x; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!cache->anyPolicy) | 
					
						
							|  |  |  |             level->flags |= X509_V_FLAG_INHIBIT_ANY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Determine inhibit any and inhibit map flags */ | 
					
						
							|  |  |  |         if (any_skip == 0) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |              * Any matching allowed only if certificate is self issued and not | 
					
						
							|  |  |  |              * the last in the chain. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |              */ | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |             if (!(ex_flags & EXFLAG_SI) || (i == 0)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 level->flags |= X509_V_FLAG_INHIBIT_ANY; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |             if (!(ex_flags & EXFLAG_SI)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 any_skip--; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             if ((cache->any_skip >= 0) && (cache->any_skip < any_skip)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 any_skip = cache->any_skip; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (map_skip == 0) | 
					
						
							|  |  |  |             level->flags |= X509_V_FLAG_INHIBIT_MAP; | 
					
						
							|  |  |  |         else { | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |             if (!(ex_flags & EXFLAG_SI)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 map_skip--; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             if ((cache->map_skip >= 0) && (cache->map_skip < map_skip)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 map_skip = cache->map_skip; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *ptree = tree; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  bad_tree: | 
					
						
							|  |  |  |     X509_policy_tree_free(tree); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | static int tree_link_matching_nodes(X509_POLICY_LEVEL *curr, | 
					
						
							| 
									
										
										
										
											2015-12-23 08:47:28 +08:00
										 |  |  |                                     X509_POLICY_DATA *data) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *last = curr - 1; | 
					
						
							|  |  |  |     int i, matched = 0; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Iterate through all in nodes linking matches */ | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++) { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         X509_POLICY_NODE *node = sk_X509_POLICY_NODE_value(last->nodes, i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (policy_node_match(last, node, data->valid_policy)) { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             if (level_add_node(curr, data, node, NULL) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |             matched = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!matched && last->anyPolicy) { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         if (level_add_node(curr, data, last->anyPolicy, NULL) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This corresponds to RFC3280 6.1.3(d)(1): link any data from | 
					
						
							|  |  |  |  * CertificatePolicies onto matching parent or anyPolicy if no match. | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise. | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int tree_link_nodes(X509_POLICY_LEVEL *curr, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                            const X509_POLICY_CACHE *cache) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_POLICY_DATA_num(cache->data); i++) { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         X509_POLICY_DATA *data = sk_X509_POLICY_DATA_value(cache->data, i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         /* Look for matching nodes in previous level */ | 
					
						
							|  |  |  |         if (!tree_link_matching_nodes(curr, data)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This corresponds to RFC3280 6.1.3(d)(2): Create new data for any unmatched | 
					
						
							|  |  |  |  * policies in the parent and link to anyPolicy. | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise. | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | static int tree_add_unmatched(X509_POLICY_LEVEL *curr, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                               const X509_POLICY_CACHE *cache, | 
					
						
							|  |  |  |                               const ASN1_OBJECT *id, | 
					
						
							|  |  |  |                               X509_POLICY_NODE *node, X509_POLICY_TREE *tree) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_DATA *data; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (id == NULL) | 
					
						
							|  |  |  |         id = node->data->valid_policy; | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Create a new node with qualifiers from anyPolicy and id from unmatched | 
					
						
							|  |  |  |      * node. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if ((data = policy_data_new(NULL, id, node_critical(node))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Curr may not have anyPolicy */ | 
					
						
							|  |  |  |     data->qualifier_set = cache->anyPolicy->qualifier_set; | 
					
						
							|  |  |  |     data->flags |= POLICY_DATA_FLAG_SHARED_QUALIFIERS; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (level_add_node(curr, data, node, tree) == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         policy_data_free(data); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | static int tree_link_unmatched(X509_POLICY_LEVEL *curr, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                const X509_POLICY_CACHE *cache, | 
					
						
							|  |  |  |                                X509_POLICY_NODE *node, X509_POLICY_TREE *tree) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const X509_POLICY_LEVEL *last = curr - 1; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((last->flags & X509_V_FLAG_INHIBIT_MAP) | 
					
						
							|  |  |  |         || !(node->data->flags & POLICY_DATA_FLAG_MAPPED)) { | 
					
						
							|  |  |  |         /* If no policy mapping: matched if one child present */ | 
					
						
							|  |  |  |         if (node->nchild) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         if (!tree_add_unmatched(curr, cache, NULL, node, tree)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         /* Add it */ | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* If mapping: matched if one child per expected policy set */ | 
					
						
							|  |  |  |         STACK_OF(ASN1_OBJECT) *expset = node->data->expected_policy_set; | 
					
						
							|  |  |  |         if (node->nchild == sk_ASN1_OBJECT_num(expset)) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         /* Locate unmatched nodes */ | 
					
						
							|  |  |  |         for (i = 0; i < sk_ASN1_OBJECT_num(expset); i++) { | 
					
						
							|  |  |  |             ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(expset, i); | 
					
						
							|  |  |  |             if (level_find_node(curr, node, oid)) | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             if (!tree_add_unmatched(curr, cache, oid, node, tree)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | static int tree_link_any(X509_POLICY_LEVEL *curr, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          const X509_POLICY_CACHE *cache, | 
					
						
							|  |  |  |                          X509_POLICY_TREE *tree) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     X509_POLICY_NODE *node; | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *last = curr - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++) { | 
					
						
							|  |  |  |         node = sk_X509_POLICY_NODE_value(last->nodes, i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!tree_link_unmatched(curr, cache, node, tree)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Finally add link to anyPolicy */ | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (last->anyPolicy && | 
					
						
							|  |  |  |         level_add_node(curr, cache->anyPolicy, last->anyPolicy, NULL) == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Prune the tree: delete any child mapped child data on the current level then | 
					
						
							|  |  |  |  * proceed up the tree deleting any data with no children. If we ever have no | 
					
						
							|  |  |  |  * data on a level we can halt because the tree will be empty. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return value: <= 0 error, otherwise one of: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * X509_PCY_TREE_VALID: valid tree | 
					
						
							|  |  |  |  * X509_PCY_TREE_EMPTY: empty tree | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int tree_prune(X509_POLICY_TREE *tree, X509_POLICY_LEVEL *curr) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     STACK_OF(X509_POLICY_NODE) *nodes; | 
					
						
							|  |  |  |     X509_POLICY_NODE *node; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     nodes = curr->nodes; | 
					
						
							|  |  |  |     if (curr->flags & X509_V_FLAG_INHIBIT_MAP) { | 
					
						
							|  |  |  |         for (i = sk_X509_POLICY_NODE_num(nodes) - 1; i >= 0; i--) { | 
					
						
							|  |  |  |             node = sk_X509_POLICY_NODE_value(nodes, i); | 
					
						
							|  |  |  |             /* Delete any mapped data: see RFC3280 XXXX */ | 
					
						
							|  |  |  |             if (node->data->flags & POLICY_DATA_FLAG_MAP_MASK) { | 
					
						
							|  |  |  |                 node->parent->nchild--; | 
					
						
							|  |  |  |                 OPENSSL_free(node); | 
					
						
							|  |  |  |                 (void)sk_X509_POLICY_NODE_delete(nodes, i); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         --curr; | 
					
						
							|  |  |  |         nodes = curr->nodes; | 
					
						
							|  |  |  |         for (i = sk_X509_POLICY_NODE_num(nodes) - 1; i >= 0; i--) { | 
					
						
							|  |  |  |             node = sk_X509_POLICY_NODE_value(nodes, i); | 
					
						
							|  |  |  |             if (node->nchild == 0) { | 
					
						
							|  |  |  |                 node->parent->nchild--; | 
					
						
							|  |  |  |                 OPENSSL_free(node); | 
					
						
							|  |  |  |                 (void)sk_X509_POLICY_NODE_delete(nodes, i); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (curr->anyPolicy && !curr->anyPolicy->nchild) { | 
					
						
							|  |  |  |             if (curr->anyPolicy->parent) | 
					
						
							|  |  |  |                 curr->anyPolicy->parent->nchild--; | 
					
						
							|  |  |  |             OPENSSL_free(curr->anyPolicy); | 
					
						
							|  |  |  |             curr->anyPolicy = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (curr == tree->levels) { | 
					
						
							|  |  |  |             /* If we zapped anyPolicy at top then tree is empty */ | 
					
						
							|  |  |  |             if (!curr->anyPolicy) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |                 return X509_PCY_TREE_EMPTY; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return X509_PCY_TREE_VALID; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | static int tree_add_auth_node(STACK_OF(X509_POLICY_NODE) **pnodes, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                               X509_POLICY_NODE *pcy) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (*pnodes == NULL && | 
					
						
							|  |  |  |         (*pnodes = policy_node_cmp_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-08-05 22:50:41 +08:00
										 |  |  |     if (sk_X509_POLICY_NODE_find(*pnodes, pcy) >= 0) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  |     return sk_X509_POLICY_NODE_push(*pnodes, pcy) != 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | #define TREE_CALC_FAILURE 0
 | 
					
						
							|  |  |  | #define TREE_CALC_OK_NOFREE 1
 | 
					
						
							|  |  |  | #define TREE_CALC_OK_DOFREE 2
 | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Calculate the authority set based on policy tree. The 'pnodes' parameter is | 
					
						
							|  |  |  |  * used as a store for the set of policy nodes used to calculate the user set. | 
					
						
							|  |  |  |  * If the authority set is not anyPolicy then pnodes will just point to the | 
					
						
							|  |  |  |  * authority set. If however the authority set is anyPolicy then the set of | 
					
						
							|  |  |  |  * valid policies (other than anyPolicy) is store in pnodes. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return value: | 
					
						
							|  |  |  |  *  TREE_CALC_FAILURE on failure, | 
					
						
							|  |  |  |  *  TREE_CALC_OK_NOFREE on success and pnodes need not be freed, | 
					
						
							|  |  |  |  *  TREE_CALC_OK_DOFREE on success and pnodes needs to be freed | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | static int tree_calculate_authority_set(X509_POLICY_TREE *tree, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                         STACK_OF(X509_POLICY_NODE) **pnodes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *curr; | 
					
						
							|  |  |  |     X509_POLICY_NODE *node, *anyptr; | 
					
						
							|  |  |  |     STACK_OF(X509_POLICY_NODE) **addnodes; | 
					
						
							|  |  |  |     int i, j; | 
					
						
							|  |  |  |     curr = tree->levels + tree->nlevel - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If last level contains anyPolicy set is anyPolicy */ | 
					
						
							|  |  |  |     if (curr->anyPolicy) { | 
					
						
							|  |  |  |         if (!tree_add_auth_node(&tree->auth_policies, curr->anyPolicy)) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return TREE_CALC_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         addnodes = pnodes; | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         /* Add policies to authority set */ | 
					
						
							|  |  |  |         addnodes = &tree->auth_policies; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     curr = tree->levels; | 
					
						
							|  |  |  |     for (i = 1; i < tree->nlevel; i++) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If no anyPolicy node on this this level it can't appear on lower | 
					
						
							|  |  |  |          * levels so end search. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |         if ((anyptr = curr->anyPolicy) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         curr++; | 
					
						
							|  |  |  |         for (j = 0; j < sk_X509_POLICY_NODE_num(curr->nodes); j++) { | 
					
						
							|  |  |  |             node = sk_X509_POLICY_NODE_value(curr->nodes, j); | 
					
						
							|  |  |  |             if ((node->parent == anyptr) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |                 && !tree_add_auth_node(addnodes, node)) { | 
					
						
							|  |  |  |                 if (addnodes == pnodes) { | 
					
						
							|  |  |  |                     sk_X509_POLICY_NODE_free(*pnodes); | 
					
						
							|  |  |  |                     *pnodes = NULL; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 return TREE_CALC_FAILURE; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (addnodes == pnodes) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         return TREE_CALC_OK_DOFREE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *pnodes = tree->auth_policies; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return TREE_CALC_OK_NOFREE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return value: 1 on success, 0 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | static int tree_calculate_user_set(X509_POLICY_TREE *tree, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                    STACK_OF(ASN1_OBJECT) *policy_oids, | 
					
						
							|  |  |  |                                    STACK_OF(X509_POLICY_NODE) *auth_nodes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     X509_POLICY_NODE *node; | 
					
						
							|  |  |  |     ASN1_OBJECT *oid; | 
					
						
							|  |  |  |     X509_POLICY_NODE *anyPolicy; | 
					
						
							|  |  |  |     X509_POLICY_DATA *extra; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Check if anyPolicy present in authority constrained policy set: this | 
					
						
							|  |  |  |      * will happen if it is a leaf node. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (sk_ASN1_OBJECT_num(policy_oids) <= 0) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     anyPolicy = tree->levels[tree->nlevel - 1].anyPolicy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < sk_ASN1_OBJECT_num(policy_oids); i++) { | 
					
						
							|  |  |  |         oid = sk_ASN1_OBJECT_value(policy_oids, i); | 
					
						
							|  |  |  |         if (OBJ_obj2nid(oid) == NID_any_policy) { | 
					
						
							|  |  |  |             tree->flags |= POLICY_FLAG_ANY_POLICY; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < sk_ASN1_OBJECT_num(policy_oids); i++) { | 
					
						
							|  |  |  |         oid = sk_ASN1_OBJECT_value(policy_oids, i); | 
					
						
							|  |  |  |         node = tree_find_sk(auth_nodes, oid); | 
					
						
							|  |  |  |         if (!node) { | 
					
						
							|  |  |  |             if (!anyPolicy) | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * Create a new node with policy ID from user set and qualifiers | 
					
						
							|  |  |  |              * from anyPolicy. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             extra = policy_data_new(NULL, oid, node_critical(anyPolicy)); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |             if (extra == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |             extra->qualifier_set = anyPolicy->data->qualifier_set; | 
					
						
							|  |  |  |             extra->flags = POLICY_DATA_FLAG_SHARED_QUALIFIERS | 
					
						
							|  |  |  |                 | POLICY_DATA_FLAG_EXTRA_NODE; | 
					
						
							|  |  |  |             node = level_add_node(NULL, extra, anyPolicy->parent, tree); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!tree->user_policies) { | 
					
						
							|  |  |  |             tree->user_policies = sk_X509_POLICY_NODE_new_null(); | 
					
						
							|  |  |  |             if (!tree->user_policies) | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!sk_X509_POLICY_NODE_push(tree->user_policies, node)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Return value: <= 0 error, otherwise one of: | 
					
						
							|  |  |  |  *  X509_PCY_TREE_VALID: valid tree | 
					
						
							|  |  |  |  *  X509_PCY_TREE_EMPTY: empty tree | 
					
						
							|  |  |  |  * (see tree_prune()). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | static int tree_evaluate(X509_POLICY_TREE *tree) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret, i; | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *curr = tree->levels + 1; | 
					
						
							|  |  |  |     const X509_POLICY_CACHE *cache; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (i = 1; i < tree->nlevel; i++, curr++) { | 
					
						
							|  |  |  |         cache = policy_cache_set(curr->cert); | 
					
						
							|  |  |  |         if (!tree_link_nodes(curr, cache)) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!(curr->flags & X509_V_FLAG_INHIBIT_ANY) | 
					
						
							|  |  |  |             && !tree_link_any(curr, cache, tree)) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |         TREE_PRINT("before tree_prune()", tree, curr); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ret = tree_prune(tree, curr); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         if (ret != X509_PCY_TREE_VALID) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return X509_PCY_TREE_VALID; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void exnode_free(X509_POLICY_NODE *node) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (node->data && (node->data->flags & POLICY_DATA_FLAG_EXTRA_NODE)) | 
					
						
							|  |  |  |         OPENSSL_free(node); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void X509_policy_tree_free(X509_POLICY_TREE *tree) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     X509_POLICY_LEVEL *curr; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!tree) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     sk_X509_POLICY_NODE_free(tree->auth_policies); | 
					
						
							|  |  |  |     sk_X509_POLICY_NODE_pop_free(tree->user_policies, exnode_free); | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (i = 0, curr = tree->levels; i < tree->nlevel; i++, curr++) { | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |         X509_free(curr->cert); | 
					
						
							|  |  |  |         sk_X509_POLICY_NODE_pop_free(curr->nodes, policy_node_free); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |         policy_node_free(curr->anyPolicy); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     sk_X509_POLICY_DATA_pop_free(tree->extra_data, policy_data_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     OPENSSL_free(tree->levels); | 
					
						
							|  |  |  |     OPENSSL_free(tree); | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-28 10:48:40 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Application policy checking function. | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  * Return codes: | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |  *  X509_PCY_TREE_FAILURE:  Failure to satisfy explicit policy | 
					
						
							|  |  |  |  *  X509_PCY_TREE_INVALID:  Inconsistent or invalid extensions | 
					
						
							|  |  |  |  *  X509_PCY_TREE_INTERNAL: Internal error, most likely malloc | 
					
						
							|  |  |  |  *  X509_PCY_TREE_VALID:    Success (null tree if empty or bare TA) | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-04-02 06:23:46 +08:00
										 |  |  | int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       STACK_OF(X509) *certs, | 
					
						
							|  |  |  |                       STACK_OF(ASN1_OBJECT) *policy_oids, unsigned int flags) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     int init_ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2017-07-05 17:03:34 +08:00
										 |  |  |     int calc_ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509_POLICY_TREE *tree = NULL; | 
					
						
							|  |  |  |     STACK_OF(X509_POLICY_NODE) *nodes, *auth_nodes = NULL; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     *ptree = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     *pexplicit_policy = 0; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     init_ret = tree_init(&tree, certs, flags); | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (init_ret <= 0) | 
					
						
							|  |  |  |         return init_ret; | 
					
						
							| 
									
										
										
										
											2008-08-12 18:32:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if ((init_ret & X509_PCY_TREE_EXPLICIT) == 0) { | 
					
						
							|  |  |  |         if (init_ret & X509_PCY_TREE_EMPTY) { | 
					
						
							|  |  |  |             X509_policy_tree_free(tree); | 
					
						
							|  |  |  |             return X509_PCY_TREE_VALID; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         *pexplicit_policy = 1; | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         /* Tree empty and requireExplicit True: Error */ | 
					
						
							|  |  |  |         if (init_ret & X509_PCY_TREE_EMPTY) | 
					
						
							|  |  |  |             return X509_PCY_TREE_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ret = tree_evaluate(tree); | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |     TREE_PRINT("tree_evaluate()", tree, NULL); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ret <= 0) | 
					
						
							|  |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (ret == X509_PCY_TREE_EMPTY) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         X509_policy_tree_free(tree); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |         if (init_ret & X509_PCY_TREE_EXPLICIT) | 
					
						
							|  |  |  |             return X509_PCY_TREE_FAILURE; | 
					
						
							|  |  |  |         return X509_PCY_TREE_VALID; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Tree is not empty: continue */ | 
					
						
							| 
									
										
										
										
											2017-07-05 17:03:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((calc_ret = tree_calculate_authority_set(tree, &auth_nodes)) == 0) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2017-07-05 17:03:34 +08:00
										 |  |  |     ret = tree_calculate_user_set(tree, policy_oids, auth_nodes); | 
					
						
							|  |  |  |     if (calc_ret == TREE_CALC_OK_DOFREE) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         sk_X509_POLICY_NODE_free(auth_nodes); | 
					
						
							| 
									
										
										
										
											2017-07-05 17:03:34 +08:00
										 |  |  |     if (!ret) | 
					
						
							|  |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     *ptree = tree; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     if (init_ret & X509_PCY_TREE_EXPLICIT) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         nodes = X509_policy_tree_get0_user_policies(tree); | 
					
						
							|  |  |  |         if (sk_X509_POLICY_NODE_num(nodes) <= 0) | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |             return X509_PCY_TREE_FAILURE; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return X509_PCY_TREE_VALID; | 
					
						
							| 
									
										
										
										
											2004-03-23 22:14:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  error: | 
					
						
							|  |  |  |     X509_policy_tree_free(tree); | 
					
						
							| 
									
										
										
										
											2016-02-01 10:14:51 +08:00
										 |  |  |     return X509_PCY_TREE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } |