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