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