blob: 04e3d59c60bf7b5b813055b8a7f057a2fb73c906 [file] [log] [blame]
Kinson Chika8fa74c2011-07-29 11:33:41 -07001/* pcy_tree.c */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2004.
4 */
5/* ====================================================================
6 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include "cryptlib.h"
60#include <openssl/x509.h>
61#include <openssl/x509v3.h>
62
63#include "pcy_int.h"
64
65/* Enable this to print out the complete policy tree at various point during
66 * evaluation.
67 */
68
69/*#define OPENSSL_POLICY_DEBUG*/
70
71#ifdef OPENSSL_POLICY_DEBUG
72
73static void expected_print(BIO *err, X509_POLICY_LEVEL *lev,
74 X509_POLICY_NODE *node, int indent)
75 {
76 if ( (lev->flags & X509_V_FLAG_INHIBIT_MAP)
77 || !(node->data->flags & POLICY_DATA_FLAG_MAP_MASK))
78 BIO_puts(err, " Not Mapped\n");
79 else
80 {
81 int i;
82 STACK_OF(ASN1_OBJECT) *pset = node->data->expected_policy_set;
83 ASN1_OBJECT *oid;
84 BIO_puts(err, " Expected: ");
85 for (i = 0; i < sk_ASN1_OBJECT_num(pset); i++)
86 {
87 oid = sk_ASN1_OBJECT_value(pset, i);
88 if (i)
89 BIO_puts(err, ", ");
90 i2a_ASN1_OBJECT(err, oid);
91 }
92 BIO_puts(err, "\n");
93 }
94 }
95
96static void tree_print(char *str, X509_POLICY_TREE *tree,
97 X509_POLICY_LEVEL *curr)
98 {
99 X509_POLICY_LEVEL *plev;
100 X509_POLICY_NODE *node;
101 int i;
102 BIO *err;
103 err = BIO_new_fp(stderr, BIO_NOCLOSE);
104 if (!curr)
105 curr = tree->levels + tree->nlevel;
106 else
107 curr++;
108 BIO_printf(err, "Level print after %s\n", str);
109 BIO_printf(err, "Printing Up to Level %ld\n", curr - tree->levels);
110 for (plev = tree->levels; plev != curr; plev++)
111 {
112 BIO_printf(err, "Level %ld, flags = %x\n",
113 plev - tree->levels, plev->flags);
114 for (i = 0; i < sk_X509_POLICY_NODE_num(plev->nodes); i++)
115 {
116 node = sk_X509_POLICY_NODE_value(plev->nodes, i);
117 X509_POLICY_NODE_print(err, node, 2);
118 expected_print(err, plev, node, 2);
119 BIO_printf(err, " Flags: %x\n", node->data->flags);
120 }
121 if (plev->anyPolicy)
122 X509_POLICY_NODE_print(err, plev->anyPolicy, 2);
123 }
124
125 BIO_free(err);
126
127 }
128#else
129
130#define tree_print(a,b,c) /* */
131
132#endif
133
134/* Initialize policy tree. Return values:
135 * 0 Some internal error occured.
136 * -1 Inconsistent or invalid extensions in certificates.
137 * 1 Tree initialized OK.
138 * 2 Policy tree is empty.
139 * 5 Tree OK and requireExplicitPolicy true.
140 * 6 Tree empty and requireExplicitPolicy true.
141 */
142
143static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs,
144 unsigned int flags)
145 {
146 X509_POLICY_TREE *tree;
147 X509_POLICY_LEVEL *level;
148 const X509_POLICY_CACHE *cache;
149 X509_POLICY_DATA *data = NULL;
150 X509 *x;
151 int ret = 1;
152 int i, n;
153 int explicit_policy;
154 int any_skip;
155 int map_skip;
156 *ptree = NULL;
157 n = sk_X509_num(certs);
158
159#if 0
160 /* Disable policy mapping for now... */
161 flags |= X509_V_FLAG_INHIBIT_MAP;
162#endif
163
164 if (flags & X509_V_FLAG_EXPLICIT_POLICY)
165 explicit_policy = 0;
166 else
167 explicit_policy = n + 1;
168
169 if (flags & X509_V_FLAG_INHIBIT_ANY)
170 any_skip = 0;
171 else
172 any_skip = n + 1;
173
174 if (flags & X509_V_FLAG_INHIBIT_MAP)
175 map_skip = 0;
176 else
177 map_skip = n + 1;
178
179 /* Can't do anything with just a trust anchor */
180 if (n == 1)
181 return 1;
182 /* First setup policy cache in all certificates apart from the
183 * trust anchor. Note any bad cache results on the way. Also can
184 * calculate explicit_policy value at this point.
185 */
186 for (i = n - 2; i >= 0; i--)
187 {
188 x = sk_X509_value(certs, i);
189 X509_check_purpose(x, -1, -1);
190 cache = policy_cache_set(x);
191 /* If cache NULL something bad happened: return immediately */
192 if (cache == NULL)
193 return 0;
194 /* If inconsistent extensions keep a note of it but continue */
195 if (x->ex_flags & EXFLAG_INVALID_POLICY)
196 ret = -1;
197 /* Otherwise if we have no data (hence no CertificatePolicies)
198 * and haven't already set an inconsistent code note it.
199 */
200 else if ((ret == 1) && !cache->data)
201 ret = 2;
202 if (explicit_policy > 0)
203 {
204 if (!(x->ex_flags & EXFLAG_SI))
205 explicit_policy--;
206 if ((cache->explicit_skip != -1)
207 && (cache->explicit_skip < explicit_policy))
208 explicit_policy = cache->explicit_skip;
209 }
210 }
211
212 if (ret != 1)
213 {
214 if (ret == 2 && !explicit_policy)
215 return 6;
216 return ret;
217 }
218
219
220 /* If we get this far initialize the tree */
221
222 tree = OPENSSL_malloc(sizeof(X509_POLICY_TREE));
223
224 if (!tree)
225 return 0;
226
227 tree->flags = 0;
228 tree->levels = OPENSSL_malloc(sizeof(X509_POLICY_LEVEL) * n);
229 tree->nlevel = 0;
230 tree->extra_data = NULL;
231 tree->auth_policies = NULL;
232 tree->user_policies = NULL;
233
234 if (!tree->levels)
235 {
236 OPENSSL_free(tree);
237 return 0;
238 }
239
240 memset(tree->levels, 0, n * sizeof(X509_POLICY_LEVEL));
241
242 tree->nlevel = n;
243
244 level = tree->levels;
245
246 /* Root data: initialize to anyPolicy */
247
248 data = policy_data_new(NULL, OBJ_nid2obj(NID_any_policy), 0);
249
250 if (!data || !level_add_node(level, data, NULL, tree))
251 goto bad_tree;
252
253 for (i = n - 2; i >= 0; i--)
254 {
255 level++;
256 x = sk_X509_value(certs, i);
257 cache = policy_cache_set(x);
258 CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
259 level->cert = x;
260
261 if (!cache->anyPolicy)
262 level->flags |= X509_V_FLAG_INHIBIT_ANY;
263
264 /* Determine inhibit any and inhibit map flags */
265 if (any_skip == 0)
266 {
267 /* Any matching allowed if certificate is self
268 * issued and not the last in the chain.
269 */
270 if (!(x->ex_flags & EXFLAG_SI) || (i == 0))
271 level->flags |= X509_V_FLAG_INHIBIT_ANY;
272 }
273 else
274 {
275 if (!(x->ex_flags & EXFLAG_SI))
276 any_skip--;
277 if ((cache->any_skip >= 0)
278 && (cache->any_skip < any_skip))
279 any_skip = cache->any_skip;
280 }
281
282 if (map_skip == 0)
283 level->flags |= X509_V_FLAG_INHIBIT_MAP;
284 else
285 {
286 if (!(x->ex_flags & EXFLAG_SI))
287 map_skip--;
288 if ((cache->map_skip >= 0)
289 && (cache->map_skip < map_skip))
290 map_skip = cache->map_skip;
291 }
292
293 }
294
295 *ptree = tree;
296
297 if (explicit_policy)
298 return 1;
299 else
300 return 5;
301
302 bad_tree:
303
304 X509_policy_tree_free(tree);
305
306 return 0;
307
308 }
309
310static int tree_link_matching_nodes(X509_POLICY_LEVEL *curr,
311 const X509_POLICY_DATA *data)
312 {
313 X509_POLICY_LEVEL *last = curr - 1;
314 X509_POLICY_NODE *node;
315 int i, matched = 0;
316 /* Iterate through all in nodes linking matches */
317 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
318 {
319 node = sk_X509_POLICY_NODE_value(last->nodes, i);
320 if (policy_node_match(last, node, data->valid_policy))
321 {
322 if (!level_add_node(curr, data, node, NULL))
323 return 0;
324 matched = 1;
325 }
326 }
327 if (!matched && last->anyPolicy)
328 {
329 if (!level_add_node(curr, data, last->anyPolicy, NULL))
330 return 0;
331 }
332 return 1;
333 }
334
335/* This corresponds to RFC3280 6.1.3(d)(1):
336 * link any data from CertificatePolicies onto matching parent
337 * or anyPolicy if no match.
338 */
339
340static int tree_link_nodes(X509_POLICY_LEVEL *curr,
341 const X509_POLICY_CACHE *cache)
342 {
343 int i;
Kinson Chika8fa74c2011-07-29 11:33:41 -0700344 X509_POLICY_DATA *data;
Kinson Chika8fa74c2011-07-29 11:33:41 -0700345 for (i = 0; i < sk_X509_POLICY_DATA_num(cache->data); i++)
346 {
347 data = sk_X509_POLICY_DATA_value(cache->data, i);
348 /* If a node is mapped any it doesn't have a corresponding
349 * CertificatePolicies entry.
350 * However such an identical node would be created
351 * if anyPolicy matching is enabled because there would be
352 * no match with the parent valid_policy_set. So we create
353 * link because then it will have the mapping flags
354 * right and we can prune it later.
355 */
356#if 0
357 if ((data->flags & POLICY_DATA_FLAG_MAPPED_ANY)
358 && !(curr->flags & X509_V_FLAG_INHIBIT_ANY))
359 continue;
360#endif
361 /* Look for matching nodes in previous level */
362 if (!tree_link_matching_nodes(curr, data))
363 return 0;
364 }
365 return 1;
366 }
367
368/* This corresponds to RFC3280 6.1.3(d)(2):
369 * Create new data for any unmatched policies in the parent and link
370 * to anyPolicy.
371 */
372
373static int tree_add_unmatched(X509_POLICY_LEVEL *curr,
374 const X509_POLICY_CACHE *cache,
375 const ASN1_OBJECT *id,
376 X509_POLICY_NODE *node,
377 X509_POLICY_TREE *tree)
378 {
379 X509_POLICY_DATA *data;
380 if (id == NULL)
381 id = node->data->valid_policy;
382 /* Create a new node with qualifiers from anyPolicy and
383 * id from unmatched node.
384 */
385 data = policy_data_new(NULL, id, node_critical(node));
386
387 if (data == NULL)
388 return 0;
389 /* Curr may not have anyPolicy */
390 data->qualifier_set = cache->anyPolicy->qualifier_set;
391 data->flags |= POLICY_DATA_FLAG_SHARED_QUALIFIERS;
392 if (!level_add_node(curr, data, node, tree))
393 {
394 policy_data_free(data);
395 return 0;
396 }
397
398 return 1;
399 }
400
401static int tree_link_unmatched(X509_POLICY_LEVEL *curr,
402 const X509_POLICY_CACHE *cache,
403 X509_POLICY_NODE *node,
404 X509_POLICY_TREE *tree)
405 {
406 const X509_POLICY_LEVEL *last = curr - 1;
407 int i;
408
409 if ( (last->flags & X509_V_FLAG_INHIBIT_MAP)
410 || !(node->data->flags & POLICY_DATA_FLAG_MAPPED))
411 {
412 /* If no policy mapping: matched if one child present */
413 if (node->nchild)
414 return 1;
415 if (!tree_add_unmatched(curr, cache, NULL, node, tree))
416 return 0;
417 /* Add it */
418 }
419 else
420 {
421 /* If mapping: matched if one child per expected policy set */
422 STACK_OF(ASN1_OBJECT) *expset = node->data->expected_policy_set;
423 if (node->nchild == sk_ASN1_OBJECT_num(expset))
424 return 1;
425 /* Locate unmatched nodes */
426 for (i = 0; i < sk_ASN1_OBJECT_num(expset); i++)
427 {
428 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(expset, i);
429 if (level_find_node(curr, node, oid))
430 continue;
431 if (!tree_add_unmatched(curr, cache, oid, node, tree))
432 return 0;
433 }
434
435 }
436
437 return 1;
438
439 }
440
441static int tree_link_any(X509_POLICY_LEVEL *curr,
442 const X509_POLICY_CACHE *cache,
443 X509_POLICY_TREE *tree)
444 {
445 int i;
446 /*X509_POLICY_DATA *data;*/
447 X509_POLICY_NODE *node;
448 X509_POLICY_LEVEL *last = curr - 1;
449
450 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
451 {
452 node = sk_X509_POLICY_NODE_value(last->nodes, i);
453
454 if (!tree_link_unmatched(curr, cache, node, tree))
455 return 0;
456
457#if 0
458
459 /* Skip any node with any children: we only want unmathced
460 * nodes.
461 *
462 * Note: need something better for policy mapping
463 * because each node may have multiple children
464 */
465 if (node->nchild)
466 continue;
467
468 /* Create a new node with qualifiers from anyPolicy and
469 * id from unmatched node.
470 */
471 data = policy_data_new(NULL, node->data->valid_policy,
472 node_critical(node));
473
474 if (data == NULL)
475 return 0;
476 /* Curr may not have anyPolicy */
477 data->qualifier_set = cache->anyPolicy->qualifier_set;
478 data->flags |= POLICY_DATA_FLAG_SHARED_QUALIFIERS;
479 if (!level_add_node(curr, data, node, tree))
480 {
481 policy_data_free(data);
482 return 0;
483 }
484
485#endif
486
487 }
488 /* Finally add link to anyPolicy */
489 if (last->anyPolicy)
490 {
491 if (!level_add_node(curr, cache->anyPolicy,
492 last->anyPolicy, NULL))
493 return 0;
494 }
495 return 1;
496 }
497
498/* Prune the tree: delete any child mapped child data on the current level
499 * then proceed up the tree deleting any data with no children. If we ever
500 * have no data on a level we can halt because the tree will be empty.
501 */
502
503static int tree_prune(X509_POLICY_TREE *tree, X509_POLICY_LEVEL *curr)
504 {
505 STACK_OF(X509_POLICY_NODE) *nodes;
506 X509_POLICY_NODE *node;
507 int i;
508 nodes = curr->nodes;
509 if (curr->flags & X509_V_FLAG_INHIBIT_MAP)
510 {
511 for (i = sk_X509_POLICY_NODE_num(nodes) - 1; i >= 0; i--)
512 {
513 node = sk_X509_POLICY_NODE_value(nodes, i);
514 /* Delete any mapped data: see RFC3280 XXXX */
515 if (node->data->flags & POLICY_DATA_FLAG_MAP_MASK)
516 {
517 node->parent->nchild--;
518 OPENSSL_free(node);
519 (void)sk_X509_POLICY_NODE_delete(nodes,i);
520 }
521 }
522 }
523
524 for(;;) {
525 --curr;
526 nodes = curr->nodes;
527 for (i = sk_X509_POLICY_NODE_num(nodes) - 1; i >= 0; i--)
528 {
529 node = sk_X509_POLICY_NODE_value(nodes, i);
530 if (node->nchild == 0)
531 {
532 node->parent->nchild--;
533 OPENSSL_free(node);
534 (void)sk_X509_POLICY_NODE_delete(nodes, i);
535 }
536 }
537 if (curr->anyPolicy && !curr->anyPolicy->nchild)
538 {
539 if (curr->anyPolicy->parent)
540 curr->anyPolicy->parent->nchild--;
541 OPENSSL_free(curr->anyPolicy);
542 curr->anyPolicy = NULL;
543 }
544 if (curr == tree->levels)
545 {
546 /* If we zapped anyPolicy at top then tree is empty */
547 if (!curr->anyPolicy)
548 return 2;
549 return 1;
550 }
551 }
552
553 return 1;
554
555 }
556
557static int tree_add_auth_node(STACK_OF(X509_POLICY_NODE) **pnodes,
558 X509_POLICY_NODE *pcy)
559 {
560 if (!*pnodes)
561 {
562 *pnodes = policy_node_cmp_new();
563 if (!*pnodes)
564 return 0;
565 }
566 else if (sk_X509_POLICY_NODE_find(*pnodes, pcy) != -1)
567 return 1;
568
569 if (!sk_X509_POLICY_NODE_push(*pnodes, pcy))
570 return 0;
571
572 return 1;
573
574 }
575
576/* Calculate the authority set based on policy tree.
577 * The 'pnodes' parameter is used as a store for the set of policy nodes
578 * used to calculate the user set. If the authority set is not anyPolicy
579 * then pnodes will just point to the authority set. If however the authority
580 * set is anyPolicy then the set of valid policies (other than anyPolicy)
581 * is store in pnodes. The return value of '2' is used in this case to indicate
582 * that pnodes should be freed.
583 */
584
585static int tree_calculate_authority_set(X509_POLICY_TREE *tree,
586 STACK_OF(X509_POLICY_NODE) **pnodes)
587 {
588 X509_POLICY_LEVEL *curr;
589 X509_POLICY_NODE *node, *anyptr;
590 STACK_OF(X509_POLICY_NODE) **addnodes;
591 int i, j;
592 curr = tree->levels + tree->nlevel - 1;
593
594 /* If last level contains anyPolicy set is anyPolicy */
595 if (curr->anyPolicy)
596 {
597 if (!tree_add_auth_node(&tree->auth_policies, curr->anyPolicy))
598 return 0;
599 addnodes = pnodes;
600 }
601 else
602 /* Add policies to authority set */
603 addnodes = &tree->auth_policies;
604
605 curr = tree->levels;
606 for (i = 1; i < tree->nlevel; i++)
607 {
608 /* If no anyPolicy node on this this level it can't
609 * appear on lower levels so end search.
610 */
611 if (!(anyptr = curr->anyPolicy))
612 break;
613 curr++;
614 for (j = 0; j < sk_X509_POLICY_NODE_num(curr->nodes); j++)
615 {
616 node = sk_X509_POLICY_NODE_value(curr->nodes, j);
617 if ((node->parent == anyptr)
618 && !tree_add_auth_node(addnodes, node))
619 return 0;
620 }
621 }
622
623 if (addnodes == pnodes)
624 return 2;
625
626 *pnodes = tree->auth_policies;
627
628 return 1;
629 }
630
631static int tree_calculate_user_set(X509_POLICY_TREE *tree,
632 STACK_OF(ASN1_OBJECT) *policy_oids,
633 STACK_OF(X509_POLICY_NODE) *auth_nodes)
634 {
635 int i;
636 X509_POLICY_NODE *node;
637 ASN1_OBJECT *oid;
638
639 X509_POLICY_NODE *anyPolicy;
640 X509_POLICY_DATA *extra;
641
642 /* Check if anyPolicy present in authority constrained policy set:
643 * this will happen if it is a leaf node.
644 */
645
646 if (sk_ASN1_OBJECT_num(policy_oids) <= 0)
647 return 1;
648
649 anyPolicy = tree->levels[tree->nlevel - 1].anyPolicy;
650
651 for (i = 0; i < sk_ASN1_OBJECT_num(policy_oids); i++)
652 {
653 oid = sk_ASN1_OBJECT_value(policy_oids, i);
654 if (OBJ_obj2nid(oid) == NID_any_policy)
655 {
656 tree->flags |= POLICY_FLAG_ANY_POLICY;
657 return 1;
658 }
659 }
660
661 for (i = 0; i < sk_ASN1_OBJECT_num(policy_oids); i++)
662 {
663 oid = sk_ASN1_OBJECT_value(policy_oids, i);
664 node = tree_find_sk(auth_nodes, oid);
665 if (!node)
666 {
667 if (!anyPolicy)
668 continue;
669 /* Create a new node with policy ID from user set
670 * and qualifiers from anyPolicy.
671 */
672 extra = policy_data_new(NULL, oid,
673 node_critical(anyPolicy));
674 if (!extra)
675 return 0;
676 extra->qualifier_set = anyPolicy->data->qualifier_set;
677 extra->flags = POLICY_DATA_FLAG_SHARED_QUALIFIERS
678 | POLICY_DATA_FLAG_EXTRA_NODE;
679 node = level_add_node(NULL, extra, anyPolicy->parent,
680 tree);
681 }
682 if (!tree->user_policies)
683 {
684 tree->user_policies = sk_X509_POLICY_NODE_new_null();
685 if (!tree->user_policies)
686 return 1;
687 }
688 if (!sk_X509_POLICY_NODE_push(tree->user_policies, node))
689 return 0;
690 }
691 return 1;
692
693 }
694
695static int tree_evaluate(X509_POLICY_TREE *tree)
696 {
697 int ret, i;
698 X509_POLICY_LEVEL *curr = tree->levels + 1;
699 const X509_POLICY_CACHE *cache;
700
701 for(i = 1; i < tree->nlevel; i++, curr++)
702 {
703 cache = policy_cache_set(curr->cert);
704 if (!tree_link_nodes(curr, cache))
705 return 0;
706
707 if (!(curr->flags & X509_V_FLAG_INHIBIT_ANY)
708 && !tree_link_any(curr, cache, tree))
709 return 0;
710 tree_print("before tree_prune()", tree, curr);
711 ret = tree_prune(tree, curr);
712 if (ret != 1)
713 return ret;
714 }
715
716 return 1;
717
718 }
719
720static void exnode_free(X509_POLICY_NODE *node)
721 {
722 if (node->data && (node->data->flags & POLICY_DATA_FLAG_EXTRA_NODE))
723 OPENSSL_free(node);
724 }
725
726
727void X509_policy_tree_free(X509_POLICY_TREE *tree)
728 {
729 X509_POLICY_LEVEL *curr;
730 int i;
731
732 if (!tree)
733 return;
734
735 sk_X509_POLICY_NODE_free(tree->auth_policies);
736 sk_X509_POLICY_NODE_pop_free(tree->user_policies, exnode_free);
737
738 for(i = 0, curr = tree->levels; i < tree->nlevel; i++, curr++)
739 {
740 if (curr->cert)
741 X509_free(curr->cert);
742 if (curr->nodes)
743 sk_X509_POLICY_NODE_pop_free(curr->nodes,
744 policy_node_free);
745 if (curr->anyPolicy)
746 policy_node_free(curr->anyPolicy);
747 }
748
749 if (tree->extra_data)
750 sk_X509_POLICY_DATA_pop_free(tree->extra_data,
751 policy_data_free);
752
753 OPENSSL_free(tree->levels);
754 OPENSSL_free(tree);
755
756 }
757
758/* Application policy checking function.
759 * Return codes:
760 * 0 Internal Error.
761 * 1 Successful.
762 * -1 One or more certificates contain invalid or inconsistent extensions
763 * -2 User constrained policy set empty and requireExplicit true.
764 */
765
766int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy,
767 STACK_OF(X509) *certs,
768 STACK_OF(ASN1_OBJECT) *policy_oids,
769 unsigned int flags)
770 {
771 int ret;
772 X509_POLICY_TREE *tree = NULL;
773 STACK_OF(X509_POLICY_NODE) *nodes, *auth_nodes = NULL;
774 *ptree = NULL;
775
776 *pexplicit_policy = 0;
777 ret = tree_init(&tree, certs, flags);
778
779 switch (ret)
780 {
781
782 /* Tree empty requireExplicit False: OK */
783 case 2:
784 return 1;
785
786 /* Some internal error */
787 case -1:
788 return -1;
789
790 /* Some internal error */
791 case 0:
792 return 0;
793
794 /* Tree empty requireExplicit True: Error */
795
796 case 6:
797 *pexplicit_policy = 1;
798 return -2;
799
800 /* Tree OK requireExplicit True: OK and continue */
801 case 5:
802 *pexplicit_policy = 1;
803 break;
804
805 /* Tree OK: continue */
806
807 case 1:
808 if (!tree)
809 /*
810 * tree_init() returns success and a null tree
811 * if it's just looking at a trust anchor.
812 * I'm not sure that returning success here is
813 * correct, but I'm sure that reporting this
814 * as an internal error which our caller
815 * interprets as a malloc failure is wrong.
816 */
817 return 1;
818 break;
819 }
820
821 if (!tree) goto error;
822 ret = tree_evaluate(tree);
823
824 tree_print("tree_evaluate()", tree, NULL);
825
826 if (ret <= 0)
827 goto error;
828
829 /* Return value 2 means tree empty */
830 if (ret == 2)
831 {
832 X509_policy_tree_free(tree);
833 if (*pexplicit_policy)
834 return -2;
835 else
836 return 1;
837 }
838
839 /* Tree is not empty: continue */
840
841 ret = tree_calculate_authority_set(tree, &auth_nodes);
842
843 if (!ret)
844 goto error;
845
846 if (!tree_calculate_user_set(tree, policy_oids, auth_nodes))
847 goto error;
848
849 if (ret == 2)
850 sk_X509_POLICY_NODE_free(auth_nodes);
851
852 if (tree)
853 *ptree = tree;
854
855 if (*pexplicit_policy)
856 {
857 nodes = X509_policy_tree_get0_user_policies(tree);
858 if (sk_X509_POLICY_NODE_num(nodes) <= 0)
859 return -2;
860 }
861
862 return 1;
863
864 error:
865
866 X509_policy_tree_free(tree);
867
868 return 0;
869
870 }
871