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