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