Add more error state transitions (client)
[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 "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(CERT));
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(CERT));
213
214     ret->key = &ret->pkeys[cert->key - &cert->pkeys[0]];
215     /*
216      * or ret->key = ret->pkeys + (cert->key - cert->pkeys), if you find that
217      * more readable
218      */
219
220     ret->valid = cert->valid;
221     ret->mask_k = cert->mask_k;
222     ret->mask_a = cert->mask_a;
223     ret->export_mask_k = cert->export_mask_k;
224     ret->export_mask_a = cert->export_mask_a;
225
226 #ifndef OPENSSL_NO_RSA
227     if (cert->rsa_tmp != NULL) {
228         RSA_up_ref(cert->rsa_tmp);
229         ret->rsa_tmp = cert->rsa_tmp;
230     }
231     ret->rsa_tmp_cb = cert->rsa_tmp_cb;
232 #endif
233
234 #ifndef OPENSSL_NO_DH
235     if (cert->dh_tmp != NULL) {
236         ret->dh_tmp = DHparams_dup(cert->dh_tmp);
237         if (ret->dh_tmp == NULL) {
238             SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_DH_LIB);
239             goto err;
240         }
241         if (cert->dh_tmp->priv_key) {
242             BIGNUM *b = BN_dup(cert->dh_tmp->priv_key);
243             if (!b) {
244                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB);
245                 goto err;
246             }
247             ret->dh_tmp->priv_key = b;
248         }
249         if (cert->dh_tmp->pub_key) {
250             BIGNUM *b = BN_dup(cert->dh_tmp->pub_key);
251             if (!b) {
252                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_BN_LIB);
253                 goto err;
254             }
255             ret->dh_tmp->pub_key = b;
256         }
257     }
258     ret->dh_tmp_cb = cert->dh_tmp_cb;
259     ret->dh_tmp_auto = cert->dh_tmp_auto;
260 #endif
261
262 #ifndef OPENSSL_NO_EC
263     if (cert->ecdh_tmp) {
264         ret->ecdh_tmp = EC_KEY_dup(cert->ecdh_tmp);
265         if (ret->ecdh_tmp == NULL) {
266             SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_EC_LIB);
267             goto err;
268         }
269     }
270     ret->ecdh_tmp_cb = cert->ecdh_tmp_cb;
271     ret->ecdh_tmp_auto = cert->ecdh_tmp_auto;
272 #endif
273
274     for (i = 0; i < SSL_PKEY_NUM; i++) {
275         CERT_PKEY *cpk = cert->pkeys + i;
276         CERT_PKEY *rpk = ret->pkeys + i;
277         if (cpk->x509 != NULL) {
278             rpk->x509 = cpk->x509;
279             CRYPTO_add(&rpk->x509->references, 1, CRYPTO_LOCK_X509);
280         }
281
282         if (cpk->privatekey != NULL) {
283             rpk->privatekey = cpk->privatekey;
284             CRYPTO_add(&cpk->privatekey->references, 1, CRYPTO_LOCK_EVP_PKEY);
285         }
286
287         if (cpk->chain) {
288             rpk->chain = X509_chain_up_ref(cpk->chain);
289             if (!rpk->chain) {
290                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
291                 goto err;
292             }
293         }
294         rpk->valid_flags = 0;
295 #ifndef OPENSSL_NO_TLSEXT
296         if (cert->pkeys[i].serverinfo != NULL) {
297             /* Just copy everything. */
298             ret->pkeys[i].serverinfo =
299                 OPENSSL_malloc(cert->pkeys[i].serverinfo_length);
300             if (ret->pkeys[i].serverinfo == NULL) {
301                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
302                 goto err;
303             }
304             ret->pkeys[i].serverinfo_length =
305                 cert->pkeys[i].serverinfo_length;
306             memcpy(ret->pkeys[i].serverinfo,
307                    cert->pkeys[i].serverinfo,
308                    cert->pkeys[i].serverinfo_length);
309         }
310 #endif
311     }
312
313     ret->references = 1;
314     /*
315      * Set digests to defaults. NB: we don't copy existing values as they
316      * will be set during handshake.
317      */
318     ssl_cert_set_default_md(ret);
319     /* Peer sigalgs set to NULL as we get these from handshake too */
320     ret->peer_sigalgs = NULL;
321     ret->peer_sigalgslen = 0;
322     /* Configured sigalgs however we copy across */
323
324     if (cert->conf_sigalgs) {
325         ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen);
326         if (!ret->conf_sigalgs)
327             goto err;
328         memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen);
329         ret->conf_sigalgslen = cert->conf_sigalgslen;
330     } else
331         ret->conf_sigalgs = NULL;
332
333     if (cert->client_sigalgs) {
334         ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen);
335         if (!ret->client_sigalgs)
336             goto err;
337         memcpy(ret->client_sigalgs, cert->client_sigalgs,
338                cert->client_sigalgslen);
339         ret->client_sigalgslen = cert->client_sigalgslen;
340     } else
341         ret->client_sigalgs = NULL;
342     /* Shared sigalgs also NULL */
343     ret->shared_sigalgs = NULL;
344     /* Copy any custom client certificate types */
345     if (cert->ctypes) {
346         ret->ctypes = OPENSSL_malloc(cert->ctype_num);
347         if (!ret->ctypes)
348             goto err;
349         memcpy(ret->ctypes, cert->ctypes, cert->ctype_num);
350         ret->ctype_num = cert->ctype_num;
351     }
352
353     ret->cert_flags = cert->cert_flags;
354
355     ret->cert_cb = cert->cert_cb;
356     ret->cert_cb_arg = cert->cert_cb_arg;
357
358     if (cert->verify_store) {
359         CRYPTO_add(&cert->verify_store->references, 1,
360                    CRYPTO_LOCK_X509_STORE);
361         ret->verify_store = cert->verify_store;
362     }
363
364     if (cert->chain_store) {
365         CRYPTO_add(&cert->chain_store->references, 1, CRYPTO_LOCK_X509_STORE);
366         ret->chain_store = cert->chain_store;
367     }
368
369     ret->ciphers_raw = NULL;
370
371     ret->sec_cb = cert->sec_cb;
372     ret->sec_level = cert->sec_level;
373     ret->sec_ex = cert->sec_ex;
374
375 #ifndef OPENSSL_NO_TLSEXT
376     if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext))
377         goto err;
378     if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext))
379         goto err;
380 #endif
381
382     return (ret);
383
384  err:
385     ssl_cert_free(ret);
386
387     return NULL;
388 }
389
390 /* Free up and clear all certificates and chains */
391
392 void ssl_cert_clear_certs(CERT *c)
393 {
394     int i;
395     if (c == NULL)
396         return;
397     for (i = 0; i < SSL_PKEY_NUM; i++) {
398         CERT_PKEY *cpk = c->pkeys + i;
399         X509_free(cpk->x509);
400         cpk->x509 = NULL;
401         EVP_PKEY_free(cpk->privatekey);
402         cpk->privatekey = NULL;
403         sk_X509_pop_free(cpk->chain, X509_free);
404         cpk->chain = NULL;
405 #ifndef OPENSSL_NO_TLSEXT
406         OPENSSL_free(cpk->serverinfo);
407         cpk->serverinfo = NULL;
408         cpk->serverinfo_length = 0;
409 #endif
410         /* Clear all flags apart from explicit sign */
411         cpk->valid_flags &= CERT_PKEY_EXPLICIT_SIGN;
412     }
413 }
414
415 void ssl_cert_free(CERT *c)
416 {
417     int i;
418
419     if (c == NULL)
420         return;
421
422     i = CRYPTO_add(&c->references, -1, CRYPTO_LOCK_SSL_CERT);
423 #ifdef REF_PRINT
424     REF_PRINT("CERT", c);
425 #endif
426     if (i > 0)
427         return;
428 #ifdef REF_CHECK
429     if (i < 0) {
430         fprintf(stderr, "ssl_cert_free, bad reference count\n");
431         abort();                /* ok */
432     }
433 #endif
434
435 #ifndef OPENSSL_NO_RSA
436     RSA_free(c->rsa_tmp);
437 #endif
438 #ifndef OPENSSL_NO_DH
439     DH_free(c->dh_tmp);
440 #endif
441 #ifndef OPENSSL_NO_EC
442     EC_KEY_free(c->ecdh_tmp);
443 #endif
444
445     ssl_cert_clear_certs(c);
446     OPENSSL_free(c->peer_sigalgs);
447     OPENSSL_free(c->conf_sigalgs);
448     OPENSSL_free(c->client_sigalgs);
449     OPENSSL_free(c->shared_sigalgs);
450     OPENSSL_free(c->ctypes);
451     X509_STORE_free(c->verify_store);
452     X509_STORE_free(c->chain_store);
453     OPENSSL_free(c->ciphers_raw);
454 #ifndef OPENSSL_NO_TLSEXT
455     custom_exts_free(&c->cli_ext);
456     custom_exts_free(&c->srv_ext);
457 #endif
458     OPENSSL_clear_free(c->pms, c->pmslen);
459     c->pms = NULL;
460     OPENSSL_free(c);
461 }
462
463 int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
464 {
465     int i, r;
466     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
467     if (!cpk)
468         return 0;
469     sk_X509_pop_free(cpk->chain, X509_free);
470     for (i = 0; i < sk_X509_num(chain); i++) {
471         r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0);
472         if (r != 1) {
473             SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r);
474             return 0;
475         }
476     }
477     cpk->chain = chain;
478     return 1;
479 }
480
481 int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
482 {
483     STACK_OF(X509) *dchain;
484     if (!chain)
485         return ssl_cert_set0_chain(s, ctx, NULL);
486     dchain = X509_chain_up_ref(chain);
487     if (!dchain)
488         return 0;
489     if (!ssl_cert_set0_chain(s, ctx, dchain)) {
490         sk_X509_pop_free(dchain, X509_free);
491         return 0;
492     }
493     return 1;
494 }
495
496 int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
497 {
498     int r;
499     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
500     if (!cpk)
501         return 0;
502     r = ssl_security_cert(s, ctx, x, 0, 0);
503     if (r != 1) {
504         SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r);
505         return 0;
506     }
507     if (!cpk->chain)
508         cpk->chain = sk_X509_new_null();
509     if (!cpk->chain || !sk_X509_push(cpk->chain, x))
510         return 0;
511     return 1;
512 }
513
514 int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
515 {
516     if (!ssl_cert_add0_chain_cert(s, ctx, x))
517         return 0;
518     CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
519     return 1;
520 }
521
522 int ssl_cert_select_current(CERT *c, X509 *x)
523 {
524     int i;
525     if (x == NULL)
526         return 0;
527     for (i = 0; i < SSL_PKEY_NUM; i++) {
528         CERT_PKEY *cpk = c->pkeys + i;
529         if (cpk->x509 == x && cpk->privatekey) {
530             c->key = cpk;
531             return 1;
532         }
533     }
534
535     for (i = 0; i < SSL_PKEY_NUM; i++) {
536         CERT_PKEY *cpk = c->pkeys + i;
537         if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) {
538             c->key = cpk;
539             return 1;
540         }
541     }
542     return 0;
543 }
544
545 int ssl_cert_set_current(CERT *c, long op)
546 {
547     int i, idx;
548     if (!c)
549         return 0;
550     if (op == SSL_CERT_SET_FIRST)
551         idx = 0;
552     else if (op == SSL_CERT_SET_NEXT) {
553         idx = (int)(c->key - c->pkeys + 1);
554         if (idx >= SSL_PKEY_NUM)
555             return 0;
556     } else
557         return 0;
558     for (i = idx; i < SSL_PKEY_NUM; i++) {
559         CERT_PKEY *cpk = c->pkeys + i;
560         if (cpk->x509 && cpk->privatekey) {
561             c->key = cpk;
562             return 1;
563         }
564     }
565     return 0;
566 }
567
568 void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg)
569 {
570     c->cert_cb = cb;
571     c->cert_cb_arg = arg;
572 }
573
574 SESS_CERT *ssl_sess_cert_new(void)
575 {
576     SESS_CERT *ret;
577
578     ret = OPENSSL_malloc(sizeof(*ret));
579     if (ret == NULL) {
580         SSLerr(SSL_F_SSL_SESS_CERT_NEW, ERR_R_MALLOC_FAILURE);
581         return NULL;
582     }
583
584     memset(ret, 0, sizeof(*ret));
585     ret->peer_key = &(ret->peer_pkeys[SSL_PKEY_RSA_ENC]);
586     ret->references = 1;
587
588     return ret;
589 }
590
591 void ssl_sess_cert_free(SESS_CERT *sc)
592 {
593     int i;
594
595     if (sc == NULL)
596         return;
597
598     i = CRYPTO_add(&sc->references, -1, CRYPTO_LOCK_SSL_SESS_CERT);
599 #ifdef REF_PRINT
600     REF_PRINT("SESS_CERT", sc);
601 #endif
602     if (i > 0)
603         return;
604 #ifdef REF_CHECK
605     if (i < 0) {
606         fprintf(stderr, "ssl_sess_cert_free, bad reference count\n");
607         abort();                /* ok */
608     }
609 #endif
610
611     /* i == 0 */
612     sk_X509_pop_free(sc->cert_chain, X509_free);
613     for (i = 0; i < SSL_PKEY_NUM; i++) {
614         X509_free(sc->peer_pkeys[i].x509);
615 #if 0
616         /*
617          * We don't have the peer's private key. This line is just
618          * here as a reminder that we're still using a not-quite-appropriate
619          *  data structure.
620          */
621         EVP_PKEY_free(sc->peer_pkeys[i].privatekey);
622 #endif
623     }
624
625 #ifndef OPENSSL_NO_RSA
626     RSA_free(sc->peer_rsa_tmp);
627 #endif
628 #ifndef OPENSSL_NO_DH
629     DH_free(sc->peer_dh_tmp);
630 #endif
631 #ifndef OPENSSL_NO_EC
632     EC_KEY_free(sc->peer_ecdh_tmp);
633 #endif
634
635     OPENSSL_free(sc);
636 }
637
638 int ssl_set_peer_cert_type(SESS_CERT *sc, int type)
639 {
640     sc->peer_cert_type = type;
641     return (1);
642 }
643
644 int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk)
645 {
646     X509 *x;
647     int i;
648     X509_STORE *verify_store;
649     X509_STORE_CTX ctx;
650
651     if (s->cert->verify_store)
652         verify_store = s->cert->verify_store;
653     else
654         verify_store = s->ctx->cert_store;
655
656     if ((sk == NULL) || (sk_X509_num(sk) == 0))
657         return (0);
658
659     x = sk_X509_value(sk, 0);
660     if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) {
661         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB);
662         return (0);
663     }
664     /* Set suite B flags if needed */
665     X509_STORE_CTX_set_flags(&ctx, tls1_suiteb(s));
666     X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s);
667
668     /*
669      * We need to inherit the verify parameters. These can be determined by
670      * the context: if its a server it will verify SSL client certificates or
671      * vice versa.
672      */
673
674     X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server");
675     /*
676      * Anything non-default in "param" should overwrite anything in the ctx.
677      */
678     X509_VERIFY_PARAM_set1(X509_STORE_CTX_get0_param(&ctx), s->param);
679
680     if (s->verify_callback)
681         X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback);
682
683     if (s->ctx->app_verify_callback != NULL)
684         i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg);
685     else {
686         i = X509_verify_cert(&ctx);
687 # if 0
688         /* Dummy error calls so mkerr generates them */
689         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL);
690         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL);
691         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK);
692 # endif
693         if (i > 0)
694             i = ssl_security_cert_chain(s, ctx.chain, NULL, 1);
695     }
696
697     s->verify_result = ctx.error;
698     X509_STORE_CTX_cleanup(&ctx);
699
700     return (i);
701 }
702
703 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,
704                                STACK_OF(X509_NAME) *name_list)
705 {
706     sk_X509_NAME_pop_free(*ca_list, X509_NAME_free);
707     *ca_list = name_list;
708 }
709
710 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
711 {
712     int i;
713     STACK_OF(X509_NAME) *ret;
714     X509_NAME *name;
715
716     ret = sk_X509_NAME_new_null();
717     for (i = 0; i < sk_X509_NAME_num(sk); i++) {
718         name = X509_NAME_dup(sk_X509_NAME_value(sk, i));
719         if ((name == NULL) || !sk_X509_NAME_push(ret, name)) {
720             sk_X509_NAME_pop_free(ret, X509_NAME_free);
721             return (NULL);
722         }
723     }
724     return (ret);
725 }
726
727 void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list)
728 {
729     set_client_CA_list(&(s->client_CA), name_list);
730 }
731
732 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list)
733 {
734     set_client_CA_list(&(ctx->client_CA), name_list);
735 }
736
737 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
738 {
739     return (ctx->client_CA);
740 }
741
742 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s)
743 {
744     if (s->type == SSL_ST_CONNECT) { /* we are in the client */
745         if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL))
746             return (s->s3->tmp.ca_names);
747         else
748             return (NULL);
749     } else {
750         if (s->client_CA != NULL)
751             return (s->client_CA);
752         else
753             return (s->ctx->client_CA);
754     }
755 }
756
757 static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x)
758 {
759     X509_NAME *name;
760
761     if (x == NULL)
762         return (0);
763     if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL))
764         return (0);
765
766     if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL)
767         return (0);
768
769     if (!sk_X509_NAME_push(*sk, name)) {
770         X509_NAME_free(name);
771         return (0);
772     }
773     return (1);
774 }
775
776 int SSL_add_client_CA(SSL *ssl, X509 *x)
777 {
778     return (add_client_CA(&(ssl->client_CA), x));
779 }
780
781 int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x)
782 {
783     return (add_client_CA(&(ctx->client_CA), x));
784 }
785
786 static int xname_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
787 {
788     return (X509_NAME_cmp(*a, *b));
789 }
790
791 #ifndef OPENSSL_NO_STDIO
792 /**
793  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
794  * it doesn't really have anything to do with clients (except that a common use
795  * for a stack of CAs is to send it to the client). Actually, it doesn't have
796  * much to do with CAs, either, since it will load any old cert.
797  * \param file the file containing one or more certs.
798  * \return a ::STACK containing the certs.
799  */
800 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file)
801 {
802     BIO *in;
803     X509 *x = NULL;
804     X509_NAME *xn = NULL;
805     STACK_OF(X509_NAME) *ret = NULL, *sk;
806
807     sk = sk_X509_NAME_new(xname_cmp);
808
809     in = BIO_new(BIO_s_file_internal());
810
811     if ((sk == NULL) || (in == NULL)) {
812         SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
813         goto err;
814     }
815
816     if (!BIO_read_filename(in, file))
817         goto err;
818
819     for (;;) {
820         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
821             break;
822         if (ret == NULL) {
823             ret = sk_X509_NAME_new_null();
824             if (ret == NULL) {
825                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
826                 goto err;
827             }
828         }
829         if ((xn = X509_get_subject_name(x)) == NULL)
830             goto err;
831         /* check for duplicates */
832         xn = X509_NAME_dup(xn);
833         if (xn == NULL)
834             goto err;
835         if (sk_X509_NAME_find(sk, xn) >= 0)
836             X509_NAME_free(xn);
837         else {
838             sk_X509_NAME_push(sk, xn);
839             sk_X509_NAME_push(ret, xn);
840         }
841     }
842     goto done;
843
844  err:
845     sk_X509_NAME_pop_free(ret, X509_NAME_free);
846     ret = NULL;
847  done:
848     sk_X509_NAME_free(sk);
849     BIO_free(in);
850     X509_free(x);
851     if (ret != NULL)
852         ERR_clear_error();
853     return (ret);
854 }
855 #endif
856
857 /**
858  * Add a file of certs to a stack.
859  * \param stack the stack to add to.
860  * \param file the file to add from. All certs in this file that are not
861  * already in the stack will be added.
862  * \return 1 for success, 0 for failure. Note that in the case of failure some
863  * certs may have been added to \c stack.
864  */
865
866 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
867                                         const char *file)
868 {
869     BIO *in;
870     X509 *x = NULL;
871     X509_NAME *xn = NULL;
872     int ret = 1;
873     int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b);
874
875     oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_cmp);
876
877     in = BIO_new(BIO_s_file_internal());
878
879     if (in == NULL) {
880         SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK,
881                ERR_R_MALLOC_FAILURE);
882         goto err;
883     }
884
885     if (!BIO_read_filename(in, file))
886         goto err;
887
888     for (;;) {
889         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
890             break;
891         if ((xn = X509_get_subject_name(x)) == NULL)
892             goto err;
893         xn = X509_NAME_dup(xn);
894         if (xn == NULL)
895             goto err;
896         if (sk_X509_NAME_find(stack, xn) >= 0)
897             X509_NAME_free(xn);
898         else
899             sk_X509_NAME_push(stack, xn);
900     }
901
902     ERR_clear_error();
903     goto done;
904
905  err:
906         ret = 0;
907  done:
908     BIO_free(in);
909     X509_free(x);
910     (void)sk_X509_NAME_set_cmp_func(stack, oldcmp);
911     return ret;
912 }
913
914 /**
915  * Add a directory of certs to a stack.
916  * \param stack the stack to append to.
917  * \param dir the directory to append from. All files in this directory will be
918  * examined as potential certs. Any that are acceptable to
919  * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
920  * included.
921  * \return 1 for success, 0 for failure. Note that in the case of failure some
922  * certs may have been added to \c stack.
923  */
924
925 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
926                                        const char *dir)
927 {
928     OPENSSL_DIR_CTX *d = NULL;
929     const char *filename;
930     int ret = 0;
931
932     CRYPTO_w_lock(CRYPTO_LOCK_READDIR);
933
934     /* Note that a side effect is that the CAs will be sorted by name */
935
936     while ((filename = OPENSSL_DIR_read(&d, dir))) {
937         char buf[1024];
938         int r;
939
940         if (strlen(dir) + strlen(filename) + 2 > sizeof buf) {
941             SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,
942                    SSL_R_PATH_TOO_LONG);
943             goto err;
944         }
945 #ifdef OPENSSL_SYS_VMS
946         r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename);
947 #else
948         r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename);
949 #endif
950         if (r <= 0 || r >= (int)sizeof(buf))
951             goto err;
952         if (!SSL_add_file_cert_subjects_to_stack(stack, buf))
953             goto err;
954     }
955
956     if (errno) {
957         SYSerr(SYS_F_OPENDIR, get_last_sys_error());
958         ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')");
959         SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB);
960         goto err;
961     }
962
963     ret = 1;
964
965  err:
966     if (d)
967         OPENSSL_DIR_end(&d);
968     CRYPTO_w_unlock(CRYPTO_LOCK_READDIR);
969     return ret;
970 }
971
972 /* Add a certificate to a BUF_MEM structure */
973
974 static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
975 {
976     int n;
977     unsigned char *p;
978
979     n = i2d_X509(x, NULL);
980     if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) {
981         SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB);
982         return 0;
983     }
984     p = (unsigned char *)&(buf->data[*l]);
985     l2n3(n, p);
986     i2d_X509(x, &p);
987     *l += n + 3;
988
989     return 1;
990 }
991
992 /* Add certificate chain to internal SSL BUF_MEM strcuture */
993 int ssl_add_cert_chain(SSL *s, CERT_PKEY *cpk, unsigned long *l)
994 {
995     BUF_MEM *buf = s->init_buf;
996     int i;
997
998     X509 *x;
999     STACK_OF(X509) *extra_certs;
1000     X509_STORE *chain_store;
1001
1002     /* TLSv1 sends a chain with nothing in it, instead of an alert */
1003     if (!BUF_MEM_grow_clean(buf, 10)) {
1004         SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_BUF_LIB);
1005         return 0;
1006     }
1007
1008     if (!cpk || !cpk->x509)
1009         return 1;
1010
1011     x = cpk->x509;
1012
1013     /*
1014      * If we have a certificate specific chain use it, else use parent ctx.
1015      */
1016     if (cpk->chain)
1017         extra_certs = cpk->chain;
1018     else
1019         extra_certs = s->ctx->extra_certs;
1020
1021     if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs)
1022         chain_store = NULL;
1023     else if (s->cert->chain_store)
1024         chain_store = s->cert->chain_store;
1025     else
1026         chain_store = s->ctx->cert_store;
1027
1028     if (chain_store) {
1029         X509_STORE_CTX xs_ctx;
1030
1031         if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) {
1032             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB);
1033             return (0);
1034         }
1035         X509_verify_cert(&xs_ctx);
1036         /* Don't leave errors in the queue */
1037         ERR_clear_error();
1038         i = ssl_security_cert_chain(s, xs_ctx.chain, NULL, 0);
1039         if (i != 1) {
1040             X509_STORE_CTX_cleanup(&xs_ctx);
1041             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
1042             return 0;
1043         }
1044         for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) {
1045             x = sk_X509_value(xs_ctx.chain, i);
1046
1047             if (!ssl_add_cert_to_buf(buf, l, x)) {
1048                 X509_STORE_CTX_cleanup(&xs_ctx);
1049                 return 0;
1050             }
1051         }
1052         X509_STORE_CTX_cleanup(&xs_ctx);
1053     } else {
1054         i = ssl_security_cert_chain(s, extra_certs, x, 0);
1055         if (i != 1) {
1056             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
1057             return 0;
1058         }
1059         if (!ssl_add_cert_to_buf(buf, l, x))
1060             return 0;
1061         for (i = 0; i < sk_X509_num(extra_certs); i++) {
1062             x = sk_X509_value(extra_certs, i);
1063             if (!ssl_add_cert_to_buf(buf, l, x))
1064                 return 0;
1065         }
1066     }
1067     return 1;
1068 }
1069
1070 /* Build a certificate chain for current certificate */
1071 int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags)
1072 {
1073     CERT *c = s ? s->cert : ctx->cert;
1074     CERT_PKEY *cpk = c->key;
1075     X509_STORE *chain_store = NULL;
1076     X509_STORE_CTX xs_ctx;
1077     STACK_OF(X509) *chain = NULL, *untrusted = NULL;
1078     X509 *x;
1079     int i, rv = 0;
1080     unsigned long error;
1081
1082     if (!cpk->x509) {
1083         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET);
1084         goto err;
1085     }
1086     /* Rearranging and check the chain: add everything to a store */
1087     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) {
1088         chain_store = X509_STORE_new();
1089         if (!chain_store)
1090             goto err;
1091         for (i = 0; i < sk_X509_num(cpk->chain); i++) {
1092             x = sk_X509_value(cpk->chain, i);
1093             if (!X509_STORE_add_cert(chain_store, x)) {
1094                 error = ERR_peek_last_error();
1095                 if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
1096                     ERR_GET_REASON(error) !=
1097                     X509_R_CERT_ALREADY_IN_HASH_TABLE)
1098                     goto err;
1099                 ERR_clear_error();
1100             }
1101         }
1102         /* Add EE cert too: it might be self signed */
1103         if (!X509_STORE_add_cert(chain_store, cpk->x509)) {
1104             error = ERR_peek_last_error();
1105             if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
1106                 ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE)
1107                 goto err;
1108             ERR_clear_error();
1109         }
1110     } else {
1111         if (c->chain_store)
1112             chain_store = c->chain_store;
1113         else if (s)
1114             chain_store = s->ctx->cert_store;
1115         else
1116             chain_store = ctx->cert_store;
1117
1118         if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED)
1119             untrusted = cpk->chain;
1120     }
1121
1122     if (!X509_STORE_CTX_init(&xs_ctx, chain_store, cpk->x509, untrusted)) {
1123         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB);
1124         goto err;
1125     }
1126     /* Set suite B flags if needed */
1127     X509_STORE_CTX_set_flags(&xs_ctx,
1128                              c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS);
1129
1130     i = X509_verify_cert(&xs_ctx);
1131     if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) {
1132         if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR)
1133             ERR_clear_error();
1134         i = 1;
1135         rv = 2;
1136     }
1137     if (i > 0)
1138         chain = X509_STORE_CTX_get1_chain(&xs_ctx);
1139     if (i <= 0) {
1140         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED);
1141         i = X509_STORE_CTX_get_error(&xs_ctx);
1142         ERR_add_error_data(2, "Verify error:",
1143                            X509_verify_cert_error_string(i));
1144
1145         X509_STORE_CTX_cleanup(&xs_ctx);
1146         goto err;
1147     }
1148     X509_STORE_CTX_cleanup(&xs_ctx);
1149     /* Remove EE certificate from chain */
1150     x = sk_X509_shift(chain);
1151     X509_free(x);
1152     if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) {
1153         if (sk_X509_num(chain) > 0) {
1154             /* See if last cert is self signed */
1155             x = sk_X509_value(chain, sk_X509_num(chain) - 1);
1156             X509_check_purpose(x, -1, 0);
1157             if (x->ex_flags & EXFLAG_SS) {
1158                 x = sk_X509_pop(chain);
1159                 X509_free(x);
1160             }
1161         }
1162     }
1163     /*
1164      * Check security level of all CA certificates: EE will have been checked
1165      * already.
1166      */
1167     for (i = 0; i < sk_X509_num(chain); i++) {
1168         x = sk_X509_value(chain, i);
1169         rv = ssl_security_cert(s, ctx, x, 0, 0);
1170         if (rv != 1) {
1171             SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv);
1172             sk_X509_pop_free(chain, X509_free);
1173             rv = 0;
1174             goto err;
1175         }
1176     }
1177     sk_X509_pop_free(cpk->chain, X509_free);
1178     cpk->chain = chain;
1179     if (rv == 0)
1180         rv = 1;
1181  err:
1182     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK)
1183         X509_STORE_free(chain_store);
1184
1185     return rv;
1186 }
1187
1188 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref)
1189 {
1190     X509_STORE **pstore;
1191     if (chain)
1192         pstore = &c->chain_store;
1193     else
1194         pstore = &c->verify_store;
1195     X509_STORE_free(*pstore);
1196     *pstore = store;
1197     if (ref && store)
1198         CRYPTO_add(&store->references, 1, CRYPTO_LOCK_X509_STORE);
1199     return 1;
1200 }
1201
1202 static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op,
1203                                          int bits, int nid, void *other,
1204                                          void *ex)
1205 {
1206     int level, minbits;
1207     static const int minbits_table[5] = { 80, 112, 128, 192, 256 };
1208     if (ctx)
1209         level = SSL_CTX_get_security_level(ctx);
1210     else
1211         level = SSL_get_security_level(s);
1212     /* Level 0: anything goes */
1213     if (level <= 0)
1214         return 1;
1215     if (level > 5)
1216         level = 5;
1217     minbits = minbits_table[level - 1];
1218     switch (op) {
1219     case SSL_SECOP_CIPHER_SUPPORTED:
1220     case SSL_SECOP_CIPHER_SHARED:
1221     case SSL_SECOP_CIPHER_CHECK:
1222         {
1223             const SSL_CIPHER *c = other;
1224             /* No ciphers below security level */
1225             if (bits < minbits)
1226                 return 0;
1227             /* No unauthenticated ciphersuites */
1228             if (c->algorithm_auth & SSL_aNULL)
1229                 return 0;
1230             /* No MD5 mac ciphersuites */
1231             if (c->algorithm_mac & SSL_MD5)
1232                 return 0;
1233             /* SHA1 HMAC is 160 bits of security */
1234             if (minbits > 160 && c->algorithm_mac & SSL_SHA1)
1235                 return 0;
1236             /* Level 2: no RC4 */
1237             if (level >= 2 && c->algorithm_enc == SSL_RC4)
1238                 return 0;
1239             /* Level 3: forward secure ciphersuites only */
1240             if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)))
1241                 return 0;
1242             break;
1243         }
1244     case SSL_SECOP_VERSION:
1245         /* SSLv3 not allowed on level 2 */
1246         if (nid <= SSL3_VERSION && level >= 2)
1247             return 0;
1248         /* TLS v1.1 and above only for level 3 */
1249         if (nid <= TLS1_VERSION && level >= 3)
1250             return 0;
1251         /* TLS v1.2 only for level 4 and above */
1252         if (nid <= TLS1_1_VERSION && level >= 4)
1253             return 0;
1254         break;
1255
1256     case SSL_SECOP_COMPRESSION:
1257         if (level >= 2)
1258             return 0;
1259         break;
1260     case SSL_SECOP_TICKET:
1261         if (level >= 3)
1262             return 0;
1263         break;
1264     default:
1265         if (bits < minbits)
1266             return 0;
1267     }
1268     return 1;
1269 }
1270
1271 int ssl_security(SSL *s, int op, int bits, int nid, void *other)
1272 {
1273     return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex);
1274 }
1275
1276 int ssl_ctx_security(SSL_CTX *ctx, int op, int bits, int nid, void *other)
1277 {
1278     return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other,
1279                              ctx->cert->sec_ex);
1280 }