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