fd7a9a60c1cea8f4c9036acc49b3b23de7bc4b53
[openssl.git] / ssl / ssl_cert.c
1 /*
2  * ! \file ssl/ssl_cert.c
3  */
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5  * All rights reserved.
6  *
7  * This package is an SSL implementation written
8  * by Eric Young (eay@cryptsoft.com).
9  * The implementation was written so as to conform with Netscapes SSL.
10  *
11  * This library is free for commercial and non-commercial use as long as
12  * the following conditions are aheared to.  The following conditions
13  * apply to all code found in this distribution, be it the RC4, RSA,
14  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
15  * included with this distribution is covered by the same copyright terms
16  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
17  *
18  * Copyright remains Eric Young's, and as such any Copyright notices in
19  * the code are not to be removed.
20  * If this package is used in a product, Eric Young should be given attribution
21  * as the author of the parts of the library used.
22  * This can be in the form of a textual message at program startup or
23  * in documentation (online or textual) provided with the package.
24  *
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. All advertising materials mentioning features or use of this software
34  *    must display the following acknowledgement:
35  *    "This product includes cryptographic software written by
36  *     Eric Young (eay@cryptsoft.com)"
37  *    The word 'cryptographic' can be left out if the rouines from the library
38  *    being used are not cryptographic related :-).
39  * 4. If you include any Windows specific code (or a derivative thereof) from
40  *    the apps directory (application code) you must include an acknowledgement:
41  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
42  *
43  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  *
55  * The licence and distribution terms for any publically available version or
56  * derivative of this code cannot be changed.  i.e. this code cannot simply be
57  * copied and put under another distribution licence
58  * [including the GNU Public Licence.]
59  */
60 /* ====================================================================
61  * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  *
67  * 1. Redistributions of source code must retain the above copyright
68  *    notice, this list of conditions and the following disclaimer.
69  *
70  * 2. Redistributions in binary form must reproduce the above copyright
71  *    notice, this list of conditions and the following disclaimer in
72  *    the documentation and/or other materials provided with the
73  *    distribution.
74  *
75  * 3. All advertising materials mentioning features or use of this
76  *    software must display the following acknowledgment:
77  *    "This product includes software developed by the OpenSSL Project
78  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
79  *
80  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81  *    endorse or promote products derived from this software without
82  *    prior written permission. For written permission, please contact
83  *    openssl-core@openssl.org.
84  *
85  * 5. Products derived from this software may not be called "OpenSSL"
86  *    nor may "OpenSSL" appear in their names without prior written
87  *    permission of the OpenSSL Project.
88  *
89  * 6. Redistributions of any form whatsoever must retain the following
90  *    acknowledgment:
91  *    "This product includes software developed by the OpenSSL Project
92  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
93  *
94  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
98  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105  * OF THE POSSIBILITY OF SUCH DAMAGE.
106  * ====================================================================
107  *
108  * This product includes cryptographic software written by Eric Young
109  * (eay@cryptsoft.com).  This product includes software written by Tim
110  * Hudson (tjh@cryptsoft.com).
111  *
112  */
113 /* ====================================================================
114  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115  * ECC cipher suite support in OpenSSL originally developed by
116  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
117  */
118
119 #include <stdio.h>
120
121 #include "e_os.h"
122 #ifndef NO_SYS_TYPES_H
123 # include <sys/types.h>
124 #endif
125
126 #include "internal/o_dir.h"
127 #include <openssl/objects.h>
128 #include <openssl/bio.h>
129 #include <openssl/pem.h>
130 #include <openssl/x509v3.h>
131 #ifndef OPENSSL_NO_DH
132 # include <openssl/dh.h>
133 #endif
134 #include <openssl/bn.h>
135 #include "ssl_locl.h"
136
137 static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op,
138                                          int bits, int nid, void *other,
139                                          void *ex);
140
141 int SSL_get_ex_data_X509_STORE_CTX_idx(void)
142 {
143     static volatile int ssl_x509_store_ctx_idx = -1;
144     int got_write_lock = 0;
145
146     CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
147
148     if (ssl_x509_store_ctx_idx < 0) {
149         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
150         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
151         got_write_lock = 1;
152
153         if (ssl_x509_store_ctx_idx < 0) {
154             ssl_x509_store_ctx_idx =
155                 X509_STORE_CTX_get_ex_new_index(0, "SSL for verify callback",
156                                                 NULL, NULL, NULL);
157         }
158     }
159
160     if (got_write_lock)
161         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
162     else
163         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
164
165     return ssl_x509_store_ctx_idx;
166 }
167
168 void ssl_cert_set_default_md(CERT *cert)
169 {
170     /* Set digest values to defaults */
171 #ifndef OPENSSL_NO_DSA
172     cert->pkeys[SSL_PKEY_DSA_SIGN].digest = EVP_sha1();
173 #endif
174 #ifndef OPENSSL_NO_RSA
175     cert->pkeys[SSL_PKEY_RSA_SIGN].digest = EVP_sha1();
176     cert->pkeys[SSL_PKEY_RSA_ENC].digest = EVP_sha1();
177 #endif
178 #ifndef OPENSSL_NO_EC
179     cert->pkeys[SSL_PKEY_ECC].digest = EVP_sha1();
180 #endif
181 }
182
183 CERT *ssl_cert_new(void)
184 {
185     CERT *ret = OPENSSL_malloc(sizeof(*ret));
186
187     if (ret == NULL) {
188         SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE);
189         return (NULL);
190     }
191     memset(ret, 0, sizeof(*ret));
192
193     ret->key = &(ret->pkeys[SSL_PKEY_RSA_ENC]);
194     ret->references = 1;
195     ssl_cert_set_default_md(ret);
196     ret->sec_cb = ssl_security_default_callback;
197     ret->sec_level = OPENSSL_TLS_SECURITY_LEVEL;
198     ret->sec_ex = NULL;
199     return (ret);
200 }
201
202 CERT *ssl_cert_dup(CERT *cert)
203 {
204     CERT *ret = OPENSSL_malloc(sizeof(*ret));
205     int i;
206
207     if (ret == NULL) {
208         SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
209         return (NULL);
210     }
211
212     memset(ret, 0, sizeof(*ret));
213
214     ret->key = &ret->pkeys[cert->key - cert->pkeys];
215     ret->valid = cert->valid;
216     ret->mask_k = cert->mask_k;
217     ret->mask_a = cert->mask_a;
218     ret->export_mask_k = cert->export_mask_k;
219     ret->export_mask_a = cert->export_mask_a;
220
221 #ifndef OPENSSL_NO_RSA
222     if (cert->rsa_tmp != NULL) {
223         RSA_up_ref(cert->rsa_tmp);
224         ret->rsa_tmp = cert->rsa_tmp;
225     }
226     ret->rsa_tmp_cb = cert->rsa_tmp_cb;
227 #endif
228
229 #ifndef OPENSSL_NO_DH
230     if (cert->dh_tmp != NULL) {
231         ret->dh_tmp = DHparams_dup(cert->dh_tmp);
232         if (ret->dh_tmp == NULL) {
233             SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_DH_LIB);
234             goto err;
235         }
236         if (cert->dh_tmp->priv_key) {
237             BIGNUM *b = BN_dup(cert->dh_tmp->priv_key);
238             if (!b) {
239                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB);
240                 goto err;
241             }
242             ret->dh_tmp->priv_key = b;
243         }
244         if (cert->dh_tmp->pub_key) {
245             BIGNUM *b = BN_dup(cert->dh_tmp->pub_key);
246             if (!b) {
247                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB);
248                 goto err;
249             }
250             ret->dh_tmp->pub_key = b;
251         }
252     }
253     ret->dh_tmp_cb = cert->dh_tmp_cb;
254     ret->dh_tmp_auto = cert->dh_tmp_auto;
255 #endif
256
257 #ifndef OPENSSL_NO_EC
258     if (cert->ecdh_tmp) {
259         ret->ecdh_tmp = EC_KEY_dup(cert->ecdh_tmp);
260         if (ret->ecdh_tmp == NULL) {
261             SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_EC_LIB);
262             goto err;
263         }
264     }
265     ret->ecdh_tmp_cb = cert->ecdh_tmp_cb;
266     ret->ecdh_tmp_auto = cert->ecdh_tmp_auto;
267 #endif
268
269     for (i = 0; i < SSL_PKEY_NUM; i++) {
270         CERT_PKEY *cpk = cert->pkeys + i;
271         CERT_PKEY *rpk = ret->pkeys + i;
272         if (cpk->x509 != NULL) {
273             rpk->x509 = cpk->x509;
274             CRYPTO_add(&rpk->x509->references, 1, CRYPTO_LOCK_X509);
275         }
276
277         if (cpk->privatekey != NULL) {
278             rpk->privatekey = cpk->privatekey;
279             CRYPTO_add(&cpk->privatekey->references, 1, CRYPTO_LOCK_EVP_PKEY);
280         }
281
282         if (cpk->chain) {
283             rpk->chain = X509_chain_up_ref(cpk->chain);
284             if (!rpk->chain) {
285                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
286                 goto err;
287             }
288         }
289         rpk->valid_flags = 0;
290 #ifndef OPENSSL_NO_TLSEXT
291         if (cert->pkeys[i].serverinfo != NULL) {
292             /* Just copy everything. */
293             ret->pkeys[i].serverinfo =
294                 OPENSSL_malloc(cert->pkeys[i].serverinfo_length);
295             if (ret->pkeys[i].serverinfo == NULL) {
296                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
297                 goto err;
298             }
299             ret->pkeys[i].serverinfo_length =
300                 cert->pkeys[i].serverinfo_length;
301             memcpy(ret->pkeys[i].serverinfo,
302                    cert->pkeys[i].serverinfo,
303                    cert->pkeys[i].serverinfo_length);
304         }
305 #endif
306     }
307
308     ret->references = 1;
309     /*
310      * Set digests to defaults. NB: we don't copy existing values as they
311      * will be set during handshake.
312      */
313     ssl_cert_set_default_md(ret);
314     /* Configured sigalgs copied across */
315     if (cert->conf_sigalgs) {
316         ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen);
317         if (!ret->conf_sigalgs)
318             goto err;
319         memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen);
320         ret->conf_sigalgslen = cert->conf_sigalgslen;
321     } else
322         ret->conf_sigalgs = NULL;
323
324     if (cert->client_sigalgs) {
325         ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen);
326         if (!ret->client_sigalgs)
327             goto err;
328         memcpy(ret->client_sigalgs, cert->client_sigalgs,
329                cert->client_sigalgslen);
330         ret->client_sigalgslen = cert->client_sigalgslen;
331     } else
332         ret->client_sigalgs = NULL;
333     /* Shared sigalgs also NULL */
334     ret->shared_sigalgs = NULL;
335     /* Copy any custom client certificate types */
336     if (cert->ctypes) {
337         ret->ctypes = OPENSSL_malloc(cert->ctype_num);
338         if (!ret->ctypes)
339             goto err;
340         memcpy(ret->ctypes, cert->ctypes, cert->ctype_num);
341         ret->ctype_num = cert->ctype_num;
342     }
343
344     ret->cert_flags = cert->cert_flags;
345
346     ret->cert_cb = cert->cert_cb;
347     ret->cert_cb_arg = cert->cert_cb_arg;
348
349     if (cert->verify_store) {
350         CRYPTO_add(&cert->verify_store->references, 1,
351                    CRYPTO_LOCK_X509_STORE);
352         ret->verify_store = cert->verify_store;
353     }
354
355     if (cert->chain_store) {
356         CRYPTO_add(&cert->chain_store->references, 1, CRYPTO_LOCK_X509_STORE);
357         ret->chain_store = cert->chain_store;
358     }
359
360     ret->sec_cb = cert->sec_cb;
361     ret->sec_level = cert->sec_level;
362     ret->sec_ex = cert->sec_ex;
363
364 #ifndef OPENSSL_NO_TLSEXT
365     if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext))
366         goto err;
367     if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext))
368         goto err;
369 #endif
370
371     return (ret);
372
373  err:
374     ssl_cert_free(ret);
375
376     return NULL;
377 }
378
379 /* Free up and clear all certificates and chains */
380
381 void ssl_cert_clear_certs(CERT *c)
382 {
383     int i;
384     if (c == NULL)
385         return;
386     for (i = 0; i < SSL_PKEY_NUM; i++) {
387         CERT_PKEY *cpk = c->pkeys + i;
388         X509_free(cpk->x509);
389         cpk->x509 = NULL;
390         EVP_PKEY_free(cpk->privatekey);
391         cpk->privatekey = NULL;
392         sk_X509_pop_free(cpk->chain, X509_free);
393         cpk->chain = NULL;
394 #ifndef OPENSSL_NO_TLSEXT
395         OPENSSL_free(cpk->serverinfo);
396         cpk->serverinfo = NULL;
397         cpk->serverinfo_length = 0;
398 #endif
399         /* Clear all flags apart from explicit sign */
400         cpk->valid_flags &= CERT_PKEY_EXPLICIT_SIGN;
401     }
402 }
403
404 void ssl_cert_free(CERT *c)
405 {
406     int i;
407
408     if (c == NULL)
409         return;
410
411     i = CRYPTO_add(&c->references, -1, CRYPTO_LOCK_SSL_CERT);
412 #ifdef REF_PRINT
413     REF_PRINT("CERT", c);
414 #endif
415     if (i > 0)
416         return;
417 #ifdef REF_CHECK
418     if (i < 0) {
419         fprintf(stderr, "ssl_cert_free, bad reference count\n");
420         abort();                /* ok */
421     }
422 #endif
423
424 #ifndef OPENSSL_NO_RSA
425     RSA_free(c->rsa_tmp);
426 #endif
427 #ifndef OPENSSL_NO_DH
428     DH_free(c->dh_tmp);
429 #endif
430 #ifndef OPENSSL_NO_EC
431     EC_KEY_free(c->ecdh_tmp);
432 #endif
433
434     ssl_cert_clear_certs(c);
435     OPENSSL_free(c->conf_sigalgs);
436     OPENSSL_free(c->client_sigalgs);
437     OPENSSL_free(c->shared_sigalgs);
438     OPENSSL_free(c->ctypes);
439     X509_STORE_free(c->verify_store);
440     X509_STORE_free(c->chain_store);
441 #ifndef OPENSSL_NO_TLSEXT
442     custom_exts_free(&c->cli_ext);
443     custom_exts_free(&c->srv_ext);
444 #endif
445     OPENSSL_free(c);
446 }
447
448 int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
449 {
450     int i, r;
451     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
452     if (!cpk)
453         return 0;
454     sk_X509_pop_free(cpk->chain, X509_free);
455     for (i = 0; i < sk_X509_num(chain); i++) {
456         r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0);
457         if (r != 1) {
458             SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r);
459             return 0;
460         }
461     }
462     cpk->chain = chain;
463     return 1;
464 }
465
466 int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
467 {
468     STACK_OF(X509) *dchain;
469     if (!chain)
470         return ssl_cert_set0_chain(s, ctx, NULL);
471     dchain = X509_chain_up_ref(chain);
472     if (!dchain)
473         return 0;
474     if (!ssl_cert_set0_chain(s, ctx, dchain)) {
475         sk_X509_pop_free(dchain, X509_free);
476         return 0;
477     }
478     return 1;
479 }
480
481 int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
482 {
483     int r;
484     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
485     if (!cpk)
486         return 0;
487     r = ssl_security_cert(s, ctx, x, 0, 0);
488     if (r != 1) {
489         SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r);
490         return 0;
491     }
492     if (!cpk->chain)
493         cpk->chain = sk_X509_new_null();
494     if (!cpk->chain || !sk_X509_push(cpk->chain, x))
495         return 0;
496     return 1;
497 }
498
499 int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
500 {
501     if (!ssl_cert_add0_chain_cert(s, ctx, x))
502         return 0;
503     CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
504     return 1;
505 }
506
507 int ssl_cert_select_current(CERT *c, X509 *x)
508 {
509     int i;
510     if (x == NULL)
511         return 0;
512     for (i = 0; i < SSL_PKEY_NUM; i++) {
513         CERT_PKEY *cpk = c->pkeys + i;
514         if (cpk->x509 == x && cpk->privatekey) {
515             c->key = cpk;
516             return 1;
517         }
518     }
519
520     for (i = 0; i < SSL_PKEY_NUM; i++) {
521         CERT_PKEY *cpk = c->pkeys + i;
522         if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) {
523             c->key = cpk;
524             return 1;
525         }
526     }
527     return 0;
528 }
529
530 int ssl_cert_set_current(CERT *c, long op)
531 {
532     int i, idx;
533     if (!c)
534         return 0;
535     if (op == SSL_CERT_SET_FIRST)
536         idx = 0;
537     else if (op == SSL_CERT_SET_NEXT) {
538         idx = (int)(c->key - c->pkeys + 1);
539         if (idx >= SSL_PKEY_NUM)
540             return 0;
541     } else
542         return 0;
543     for (i = idx; i < SSL_PKEY_NUM; i++) {
544         CERT_PKEY *cpk = c->pkeys + i;
545         if (cpk->x509 && cpk->privatekey) {
546             c->key = cpk;
547             return 1;
548         }
549     }
550     return 0;
551 }
552
553 void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg)
554 {
555     c->cert_cb = cb;
556     c->cert_cb_arg = arg;
557 }
558
559 SESS_CERT *ssl_sess_cert_new(void)
560 {
561     SESS_CERT *ret;
562
563     ret = OPENSSL_malloc(sizeof(*ret));
564     if (ret == NULL) {
565         SSLerr(SSL_F_SSL_SESS_CERT_NEW, ERR_R_MALLOC_FAILURE);
566         return NULL;
567     }
568
569     memset(ret, 0, sizeof(*ret));
570     ret->peer_key = &(ret->peer_pkeys[SSL_PKEY_RSA_ENC]);
571     ret->references = 1;
572
573     return ret;
574 }
575
576 void ssl_sess_cert_free(SESS_CERT *sc)
577 {
578     int i;
579
580     if (sc == NULL)
581         return;
582
583     i = CRYPTO_add(&sc->references, -1, CRYPTO_LOCK_SSL_SESS_CERT);
584 #ifdef REF_PRINT
585     REF_PRINT("SESS_CERT", sc);
586 #endif
587     if (i > 0)
588         return;
589 #ifdef REF_CHECK
590     if (i < 0) {
591         fprintf(stderr, "ssl_sess_cert_free, bad reference count\n");
592         abort();                /* ok */
593     }
594 #endif
595
596     /* i == 0 */
597     sk_X509_pop_free(sc->cert_chain, X509_free);
598     for (i = 0; i < SSL_PKEY_NUM; i++) {
599         X509_free(sc->peer_pkeys[i].x509);
600 #if 0
601         /*
602          * We don't have the peer's private key. This line is just
603          * here as a reminder that we're still using a not-quite-appropriate
604          *  data structure.
605          */
606         EVP_PKEY_free(sc->peer_pkeys[i].privatekey);
607 #endif
608     }
609
610 #ifndef OPENSSL_NO_RSA
611     RSA_free(sc->peer_rsa_tmp);
612 #endif
613 #ifndef OPENSSL_NO_DH
614     DH_free(sc->peer_dh_tmp);
615 #endif
616 #ifndef OPENSSL_NO_EC
617     EC_KEY_free(sc->peer_ecdh_tmp);
618 #endif
619
620     OPENSSL_free(sc);
621 }
622
623 int ssl_set_peer_cert_type(SESS_CERT *sc, int type)
624 {
625     sc->peer_cert_type = type;
626     return (1);
627 }
628
629 int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk)
630 {
631     X509 *x;
632     int i;
633     X509_STORE *verify_store;
634     X509_STORE_CTX ctx;
635
636     if (s->cert->verify_store)
637         verify_store = s->cert->verify_store;
638     else
639         verify_store = s->ctx->cert_store;
640
641     if ((sk == NULL) || (sk_X509_num(sk) == 0))
642         return (0);
643
644     x = sk_X509_value(sk, 0);
645     if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) {
646         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB);
647         return (0);
648     }
649     /* Set suite B flags if needed */
650     X509_STORE_CTX_set_flags(&ctx, tls1_suiteb(s));
651     X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s);
652
653     /*
654      * We need to inherit the verify parameters. These can be determined by
655      * the context: if its a server it will verify SSL client certificates or
656      * vice versa.
657      */
658
659     X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server");
660     /*
661      * Anything non-default in "param" should overwrite anything in the ctx.
662      */
663     X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), s->param);
664
665     if (s->verify_callback)
666         X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback);
667
668     if (s->ctx->app_verify_callback != NULL)
669         i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg);
670     else {
671         i = X509_verify_cert(&ctx);
672 # if 0
673         /* Dummy error calls so mkerr generates them */
674         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL);
675         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL);
676         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK);
677 # endif
678         if (i > 0)
679             i = ssl_security_cert_chain(s, ctx.chain, NULL, 1);
680     }
681
682     s->verify_result = ctx.error;
683     X509_STORE_CTX_cleanup(&ctx);
684
685     return (i);
686 }
687
688 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,
689                                STACK_OF(X509_NAME) *name_list)
690 {
691     sk_X509_NAME_pop_free(*ca_list, X509_NAME_free);
692     *ca_list = name_list;
693 }
694
695 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
696 {
697     int i;
698     STACK_OF(X509_NAME) *ret;
699     X509_NAME *name;
700
701     ret = sk_X509_NAME_new_null();
702     for (i = 0; i < sk_X509_NAME_num(sk); i++) {
703         name = X509_NAME_dup(sk_X509_NAME_value(sk, i));
704         if ((name == NULL) || !sk_X509_NAME_push(ret, name)) {
705             sk_X509_NAME_pop_free(ret, X509_NAME_free);
706             return (NULL);
707         }
708     }
709     return (ret);
710 }
711
712 void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list)
713 {
714     set_client_CA_list(&(s->client_CA), name_list);
715 }
716
717 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list)
718 {
719     set_client_CA_list(&(ctx->client_CA), name_list);
720 }
721
722 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
723 {
724     return (ctx->client_CA);
725 }
726
727 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s)
728 {
729     if (s->type == SSL_ST_CONNECT) { /* we are in the client */
730         if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL))
731             return (s->s3->tmp.ca_names);
732         else
733             return (NULL);
734     } else {
735         if (s->client_CA != NULL)
736             return (s->client_CA);
737         else
738             return (s->ctx->client_CA);
739     }
740 }
741
742 static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x)
743 {
744     X509_NAME *name;
745
746     if (x == NULL)
747         return (0);
748     if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL))
749         return (0);
750
751     if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL)
752         return (0);
753
754     if (!sk_X509_NAME_push(*sk, name)) {
755         X509_NAME_free(name);
756         return (0);
757     }
758     return (1);
759 }
760
761 int SSL_add_client_CA(SSL *ssl, X509 *x)
762 {
763     return (add_client_CA(&(ssl->client_CA), x));
764 }
765
766 int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x)
767 {
768     return (add_client_CA(&(ctx->client_CA), x));
769 }
770
771 static int xname_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
772 {
773     return (X509_NAME_cmp(*a, *b));
774 }
775
776 #ifndef OPENSSL_NO_STDIO
777 /**
778  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
779  * it doesn't really have anything to do with clients (except that a common use
780  * for a stack of CAs is to send it to the client). Actually, it doesn't have
781  * much to do with CAs, either, since it will load any old cert.
782  * \param file the file containing one or more certs.
783  * \return a ::STACK containing the certs.
784  */
785 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file)
786 {
787     BIO *in;
788     X509 *x = NULL;
789     X509_NAME *xn = NULL;
790     STACK_OF(X509_NAME) *ret = NULL, *sk;
791
792     sk = sk_X509_NAME_new(xname_cmp);
793
794     in = BIO_new(BIO_s_file_internal());
795
796     if ((sk == NULL) || (in == NULL)) {
797         SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
798         goto err;
799     }
800
801     if (!BIO_read_filename(in, file))
802         goto err;
803
804     for (;;) {
805         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
806             break;
807         if (ret == NULL) {
808             ret = sk_X509_NAME_new_null();
809             if (ret == NULL) {
810                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
811                 goto err;
812             }
813         }
814         if ((xn = X509_get_subject_name(x)) == NULL)
815             goto err;
816         /* check for duplicates */
817         xn = X509_NAME_dup(xn);
818         if (xn == NULL)
819             goto err;
820         if (sk_X509_NAME_find(sk, xn) >= 0)
821             X509_NAME_free(xn);
822         else {
823             sk_X509_NAME_push(sk, xn);
824             sk_X509_NAME_push(ret, xn);
825         }
826     }
827     goto done;
828
829  err:
830     sk_X509_NAME_pop_free(ret, X509_NAME_free);
831     ret = NULL;
832  done:
833     sk_X509_NAME_free(sk);
834     BIO_free(in);
835     X509_free(x);
836     if (ret != NULL)
837         ERR_clear_error();
838     return (ret);
839 }
840 #endif
841
842 /**
843  * Add a file of certs to a stack.
844  * \param stack the stack to add to.
845  * \param file the file to add from. All certs in this file that are not
846  * already in the stack will be added.
847  * \return 1 for success, 0 for failure. Note that in the case of failure some
848  * certs may have been added to \c stack.
849  */
850
851 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
852                                         const char *file)
853 {
854     BIO *in;
855     X509 *x = NULL;
856     X509_NAME *xn = NULL;
857     int ret = 1;
858     int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b);
859
860     oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_cmp);
861
862     in = BIO_new(BIO_s_file_internal());
863
864     if (in == NULL) {
865         SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK,
866                ERR_R_MALLOC_FAILURE);
867         goto err;
868     }
869
870     if (!BIO_read_filename(in, file))
871         goto err;
872
873     for (;;) {
874         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
875             break;
876         if ((xn = X509_get_subject_name(x)) == NULL)
877             goto err;
878         xn = X509_NAME_dup(xn);
879         if (xn == NULL)
880             goto err;
881         if (sk_X509_NAME_find(stack, xn) >= 0)
882             X509_NAME_free(xn);
883         else
884             sk_X509_NAME_push(stack, xn);
885     }
886
887     ERR_clear_error();
888     goto done;
889
890  err:
891         ret = 0;
892  done:
893     BIO_free(in);
894     X509_free(x);
895     (void)sk_X509_NAME_set_cmp_func(stack, oldcmp);
896     return ret;
897 }
898
899 /**
900  * Add a directory of certs to a stack.
901  * \param stack the stack to append to.
902  * \param dir the directory to append from. All files in this directory will be
903  * examined as potential certs. Any that are acceptable to
904  * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
905  * included.
906  * \return 1 for success, 0 for failure. Note that in the case of failure some
907  * certs may have been added to \c stack.
908  */
909
910 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
911                                        const char *dir)
912 {
913     OPENSSL_DIR_CTX *d = NULL;
914     const char *filename;
915     int ret = 0;
916
917     CRYPTO_w_lock(CRYPTO_LOCK_READDIR);
918
919     /* Note that a side effect is that the CAs will be sorted by name */
920
921     while ((filename = OPENSSL_DIR_read(&d, dir))) {
922         char buf[1024];
923         int r;
924
925         if (strlen(dir) + strlen(filename) + 2 > sizeof buf) {
926             SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,
927                    SSL_R_PATH_TOO_LONG);
928             goto err;
929         }
930 #ifdef OPENSSL_SYS_VMS
931         r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename);
932 #else
933         r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename);
934 #endif
935         if (r <= 0 || r >= (int)sizeof(buf))
936             goto err;
937         if (!SSL_add_file_cert_subjects_to_stack(stack, buf))
938             goto err;
939     }
940
941     if (errno) {
942         SYSerr(SYS_F_OPENDIR, get_last_sys_error());
943         ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')");
944         SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB);
945         goto err;
946     }
947
948     ret = 1;
949
950  err:
951     if (d)
952         OPENSSL_DIR_end(&d);
953     CRYPTO_w_unlock(CRYPTO_LOCK_READDIR);
954     return ret;
955 }
956
957 /* Add a certificate to a BUF_MEM structure */
958
959 static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
960 {
961     int n;
962     unsigned char *p;
963
964     n = i2d_X509(x, NULL);
965     if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) {
966         SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB);
967         return 0;
968     }
969     p = (unsigned char *)&(buf->data[*l]);
970     l2n3(n, p);
971     i2d_X509(x, &p);
972     *l += n + 3;
973
974     return 1;
975 }
976
977 /* Add certificate chain to internal SSL BUF_MEM strcuture */
978 int ssl_add_cert_chain(SSL *s, CERT_PKEY *cpk, unsigned long *l)
979 {
980     BUF_MEM *buf = s->init_buf;
981     int i;
982
983     X509 *x;
984     STACK_OF(X509) *extra_certs;
985     X509_STORE *chain_store;
986
987     /* TLSv1 sends a chain with nothing in it, instead of an alert */
988     if (!BUF_MEM_grow_clean(buf, 10)) {
989         SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_BUF_LIB);
990         return 0;
991     }
992
993     if (!cpk || !cpk->x509)
994         return 1;
995
996     x = cpk->x509;
997
998     /*
999      * If we have a certificate specific chain use it, else use parent ctx.
1000      */
1001     if (cpk->chain)
1002         extra_certs = cpk->chain;
1003     else
1004         extra_certs = s->ctx->extra_certs;
1005
1006     if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs)
1007         chain_store = NULL;
1008     else if (s->cert->chain_store)
1009         chain_store = s->cert->chain_store;
1010     else
1011         chain_store = s->ctx->cert_store;
1012
1013     if (chain_store) {
1014         X509_STORE_CTX xs_ctx;
1015
1016         if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) {
1017             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB);
1018             return (0);
1019         }
1020         X509_verify_cert(&xs_ctx);
1021         /* Don't leave errors in the queue */
1022         ERR_clear_error();
1023         i = ssl_security_cert_chain(s, xs_ctx.chain, NULL, 0);
1024         if (i != 1) {
1025             X509_STORE_CTX_cleanup(&xs_ctx);
1026             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
1027             return 0;
1028         }
1029         for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) {
1030             x = sk_X509_value(xs_ctx.chain, i);
1031
1032             if (!ssl_add_cert_to_buf(buf, l, x)) {
1033                 X509_STORE_CTX_cleanup(&xs_ctx);
1034                 return 0;
1035             }
1036         }
1037         X509_STORE_CTX_cleanup(&xs_ctx);
1038     } else {
1039         i = ssl_security_cert_chain(s, extra_certs, x, 0);
1040         if (i != 1) {
1041             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
1042             return 0;
1043         }
1044         if (!ssl_add_cert_to_buf(buf, l, x))
1045             return 0;
1046         for (i = 0; i < sk_X509_num(extra_certs); i++) {
1047             x = sk_X509_value(extra_certs, i);
1048             if (!ssl_add_cert_to_buf(buf, l, x))
1049                 return 0;
1050         }
1051     }
1052     return 1;
1053 }
1054
1055 /* Build a certificate chain for current certificate */
1056 int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags)
1057 {
1058     CERT *c = s ? s->cert : ctx->cert;
1059     CERT_PKEY *cpk = c->key;
1060     X509_STORE *chain_store = NULL;
1061     X509_STORE_CTX xs_ctx;
1062     STACK_OF(X509) *chain = NULL, *untrusted = NULL;
1063     X509 *x;
1064     int i, rv = 0;
1065     unsigned long error;
1066
1067     if (!cpk->x509) {
1068         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET);
1069         goto err;
1070     }
1071     /* Rearranging and check the chain: add everything to a store */
1072     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) {
1073         chain_store = X509_STORE_new();
1074         if (!chain_store)
1075             goto err;
1076         for (i = 0; i < sk_X509_num(cpk->chain); i++) {
1077             x = sk_X509_value(cpk->chain, i);
1078             if (!X509_STORE_add_cert(chain_store, x)) {
1079                 error = ERR_peek_last_error();
1080                 if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
1081                     ERR_GET_REASON(error) !=
1082                     X509_R_CERT_ALREADY_IN_HASH_TABLE)
1083                     goto err;
1084                 ERR_clear_error();
1085             }
1086         }
1087         /* Add EE cert too: it might be self signed */
1088         if (!X509_STORE_add_cert(chain_store, cpk->x509)) {
1089             error = ERR_peek_last_error();
1090             if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
1091                 ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE)
1092                 goto err;
1093             ERR_clear_error();
1094         }
1095     } else {
1096         if (c->chain_store)
1097             chain_store = c->chain_store;
1098         else if (s)
1099             chain_store = s->ctx->cert_store;
1100         else
1101             chain_store = ctx->cert_store;
1102
1103         if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED)
1104             untrusted = cpk->chain;
1105     }
1106
1107     if (!X509_STORE_CTX_init(&xs_ctx, chain_store, cpk->x509, untrusted)) {
1108         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB);
1109         goto err;
1110     }
1111     /* Set suite B flags if needed */
1112     X509_STORE_CTX_set_flags(&xs_ctx,
1113                              c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS);
1114
1115     i = X509_verify_cert(&xs_ctx);
1116     if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) {
1117         if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR)
1118             ERR_clear_error();
1119         i = 1;
1120         rv = 2;
1121     }
1122     if (i > 0)
1123         chain = X509_STORE_CTX_get1_chain(&xs_ctx);
1124     if (i <= 0) {
1125         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED);
1126         i = X509_STORE_CTX_get_error(&xs_ctx);
1127         ERR_add_error_data(2, "Verify error:",
1128                            X509_verify_cert_error_string(i));
1129
1130         X509_STORE_CTX_cleanup(&xs_ctx);
1131         goto err;
1132     }
1133     X509_STORE_CTX_cleanup(&xs_ctx);
1134     /* Remove EE certificate from chain */
1135     x = sk_X509_shift(chain);
1136     X509_free(x);
1137     if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) {
1138         if (sk_X509_num(chain) > 0) {
1139             /* See if last cert is self signed */
1140             x = sk_X509_value(chain, sk_X509_num(chain) - 1);
1141             X509_check_purpose(x, -1, 0);
1142             if (x->ex_flags & EXFLAG_SS) {
1143                 x = sk_X509_pop(chain);
1144                 X509_free(x);
1145             }
1146         }
1147     }
1148     /*
1149      * Check security level of all CA certificates: EE will have been checked
1150      * already.
1151      */
1152     for (i = 0; i < sk_X509_num(chain); i++) {
1153         x = sk_X509_value(chain, i);
1154         rv = ssl_security_cert(s, ctx, x, 0, 0);
1155         if (rv != 1) {
1156             SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv);
1157             sk_X509_pop_free(chain, X509_free);
1158             rv = 0;
1159             goto err;
1160         }
1161     }
1162     sk_X509_pop_free(cpk->chain, X509_free);
1163     cpk->chain = chain;
1164     if (rv == 0)
1165         rv = 1;
1166  err:
1167     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK)
1168         X509_STORE_free(chain_store);
1169
1170     return rv;
1171 }
1172
1173 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref)
1174 {
1175     X509_STORE **pstore;
1176     if (chain)
1177         pstore = &c->chain_store;
1178     else
1179         pstore = &c->verify_store;
1180     X509_STORE_free(*pstore);
1181     *pstore = store;
1182     if (ref && store)
1183         CRYPTO_add(&store->references, 1, CRYPTO_LOCK_X509_STORE);
1184     return 1;
1185 }
1186
1187 static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op,
1188                                          int bits, int nid, void *other,
1189                                          void *ex)
1190 {
1191     int level, minbits;
1192     static const int minbits_table[5] = { 80, 112, 128, 192, 256 };
1193     if (ctx)
1194         level = SSL_CTX_get_security_level(ctx);
1195     else
1196         level = SSL_get_security_level(s);
1197     /* Level 0: anything goes */
1198     if (level <= 0)
1199         return 1;
1200     if (level > 5)
1201         level = 5;
1202     minbits = minbits_table[level - 1];
1203     switch (op) {
1204     case SSL_SECOP_CIPHER_SUPPORTED:
1205     case SSL_SECOP_CIPHER_SHARED:
1206     case SSL_SECOP_CIPHER_CHECK:
1207         {
1208             const SSL_CIPHER *c = other;
1209             /* No ciphers below security level */
1210             if (bits < minbits)
1211                 return 0;
1212             /* No unauthenticated ciphersuites */
1213             if (c->algorithm_auth & SSL_aNULL)
1214                 return 0;
1215             /* No MD5 mac ciphersuites */
1216             if (c->algorithm_mac & SSL_MD5)
1217                 return 0;
1218             /* SHA1 HMAC is 160 bits of security */
1219             if (minbits > 160 && c->algorithm_mac & SSL_SHA1)
1220                 return 0;
1221             /* Level 2: no RC4 */
1222             if (level >= 2 && c->algorithm_enc == SSL_RC4)
1223                 return 0;
1224             /* Level 3: forward secure ciphersuites only */
1225             if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)))
1226                 return 0;
1227             break;
1228         }
1229     case SSL_SECOP_VERSION:
1230         /* SSLv3 not allowed on level 2 */
1231         if (nid <= SSL3_VERSION && level >= 2)
1232             return 0;
1233         /* TLS v1.1 and above only for level 3 */
1234         if (nid <= TLS1_VERSION && level >= 3)
1235             return 0;
1236         /* TLS v1.2 only for level 4 and above */
1237         if (nid <= TLS1_1_VERSION && level >= 4)
1238             return 0;
1239         break;
1240
1241     case SSL_SECOP_COMPRESSION:
1242         if (level >= 2)
1243             return 0;
1244         break;
1245     case SSL_SECOP_TICKET:
1246         if (level >= 3)
1247             return 0;
1248         break;
1249     default:
1250         if (bits < minbits)
1251             return 0;
1252     }
1253     return 1;
1254 }
1255
1256 int ssl_security(SSL *s, int op, int bits, int nid, void *other)
1257 {
1258     return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex);
1259 }
1260
1261 int ssl_ctx_security(SSL_CTX *ctx, int op, int bits, int nid, void *other)
1262 {
1263     return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other,
1264                              ctx->cert->sec_ex);
1265 }