dc58e25752eab702c8e6640d0f159f34d6b87cd4
[openssl.git] / ssl / ssl_cert.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110 /* ====================================================================
111  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
112  * ECC cipher suite support in OpenSSL originally developed by
113  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
114  */
115
116 #include <stdio.h>
117
118 #include "e_os.h"
119 #ifndef NO_SYS_TYPES_H
120 # include <sys/types.h>
121 #endif
122
123 #include "internal/o_dir.h"
124 #include <openssl/lhash.h>
125 #include <openssl/bio.h>
126 #include <openssl/pem.h>
127 #include <openssl/x509v3.h>
128 #ifndef OPENSSL_NO_DH
129 # include <openssl/dh.h>
130 #endif
131 #include <openssl/bn.h>
132 #include "ssl_locl.h"
133
134 static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op,
135                                          int bits, int nid, void *other,
136                                          void *ex);
137
138 int SSL_get_ex_data_X509_STORE_CTX_idx(void)
139 {
140     static volatile int ssl_x509_store_ctx_idx = -1;
141     int got_write_lock = 0;
142
143     CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
144
145     if (ssl_x509_store_ctx_idx < 0) {
146         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
147         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
148         got_write_lock = 1;
149
150         if (ssl_x509_store_ctx_idx < 0) {
151             ssl_x509_store_ctx_idx =
152                 X509_STORE_CTX_get_ex_new_index(0, "SSL for verify callback",
153                                                 NULL, NULL, NULL);
154         }
155     }
156
157     if (got_write_lock)
158         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
159     else
160         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
161
162     return ssl_x509_store_ctx_idx;
163 }
164
165 CERT *ssl_cert_new(void)
166 {
167     CERT *ret = OPENSSL_zalloc(sizeof(*ret));
168
169     if (ret == NULL) {
170         SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE);
171         return (NULL);
172     }
173
174     ret->key = &(ret->pkeys[SSL_PKEY_RSA_ENC]);
175     ret->references = 1;
176     ret->sec_cb = ssl_security_default_callback;
177     ret->sec_level = OPENSSL_TLS_SECURITY_LEVEL;
178     ret->sec_ex = NULL;
179     return (ret);
180 }
181
182 CERT *ssl_cert_dup(CERT *cert)
183 {
184     CERT *ret = OPENSSL_zalloc(sizeof(*ret));
185     int i;
186
187     if (ret == NULL) {
188         SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
189         return (NULL);
190     }
191
192     ret->references = 1;
193     ret->key = &ret->pkeys[cert->key - cert->pkeys];
194
195 #ifndef OPENSSL_NO_DH
196     if (cert->dh_tmp != NULL) {
197         ret->dh_tmp = cert->dh_tmp;
198         EVP_PKEY_up_ref(ret->dh_tmp);
199     }
200     ret->dh_tmp_cb = cert->dh_tmp_cb;
201     ret->dh_tmp_auto = cert->dh_tmp_auto;
202 #endif
203
204     for (i = 0; i < SSL_PKEY_NUM; i++) {
205         CERT_PKEY *cpk = cert->pkeys + i;
206         CERT_PKEY *rpk = ret->pkeys + i;
207         if (cpk->x509 != NULL) {
208             rpk->x509 = cpk->x509;
209             X509_up_ref(rpk->x509);
210         }
211
212         if (cpk->privatekey != NULL) {
213             rpk->privatekey = cpk->privatekey;
214             EVP_PKEY_up_ref(cpk->privatekey);
215         }
216
217         if (cpk->chain) {
218             rpk->chain = X509_chain_up_ref(cpk->chain);
219             if (!rpk->chain) {
220                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
221                 goto err;
222             }
223         }
224         if (cert->pkeys[i].serverinfo != NULL) {
225             /* Just copy everything. */
226             ret->pkeys[i].serverinfo =
227                 OPENSSL_malloc(cert->pkeys[i].serverinfo_length);
228             if (ret->pkeys[i].serverinfo == NULL) {
229                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
230                 goto err;
231             }
232             ret->pkeys[i].serverinfo_length =
233                 cert->pkeys[i].serverinfo_length;
234             memcpy(ret->pkeys[i].serverinfo,
235                    cert->pkeys[i].serverinfo,
236                    cert->pkeys[i].serverinfo_length);
237         }
238     }
239
240     /* Configured sigalgs copied across */
241     if (cert->conf_sigalgs) {
242         ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen);
243         if (ret->conf_sigalgs == NULL)
244             goto err;
245         memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen);
246         ret->conf_sigalgslen = cert->conf_sigalgslen;
247     } else
248         ret->conf_sigalgs = NULL;
249
250     if (cert->client_sigalgs) {
251         ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen);
252         if (ret->client_sigalgs == NULL)
253             goto err;
254         memcpy(ret->client_sigalgs, cert->client_sigalgs,
255                cert->client_sigalgslen);
256         ret->client_sigalgslen = cert->client_sigalgslen;
257     } else
258         ret->client_sigalgs = NULL;
259     /* Shared sigalgs also NULL */
260     ret->shared_sigalgs = NULL;
261     /* Copy any custom client certificate types */
262     if (cert->ctypes) {
263         ret->ctypes = OPENSSL_malloc(cert->ctype_num);
264         if (ret->ctypes == NULL)
265             goto err;
266         memcpy(ret->ctypes, cert->ctypes, cert->ctype_num);
267         ret->ctype_num = cert->ctype_num;
268     }
269
270     ret->cert_flags = cert->cert_flags;
271
272     ret->cert_cb = cert->cert_cb;
273     ret->cert_cb_arg = cert->cert_cb_arg;
274
275     if (cert->verify_store) {
276         CRYPTO_add(&cert->verify_store->references, 1,
277                    CRYPTO_LOCK_X509_STORE);
278         ret->verify_store = cert->verify_store;
279     }
280
281     if (cert->chain_store) {
282         CRYPTO_add(&cert->chain_store->references, 1, CRYPTO_LOCK_X509_STORE);
283         ret->chain_store = cert->chain_store;
284     }
285
286     ret->sec_cb = cert->sec_cb;
287     ret->sec_level = cert->sec_level;
288     ret->sec_ex = cert->sec_ex;
289
290     if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext))
291         goto err;
292     if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext))
293         goto err;
294 #ifndef OPENSSL_NO_PSK
295     if (cert->psk_identity_hint) {
296         ret->psk_identity_hint = OPENSSL_strdup(cert->psk_identity_hint);
297         if (ret->psk_identity_hint == NULL)
298             goto err;
299     }
300 #endif
301     return (ret);
302
303  err:
304     ssl_cert_free(ret);
305
306     return NULL;
307 }
308
309 /* Free up and clear all certificates and chains */
310
311 void ssl_cert_clear_certs(CERT *c)
312 {
313     int i;
314     if (c == NULL)
315         return;
316     for (i = 0; i < SSL_PKEY_NUM; i++) {
317         CERT_PKEY *cpk = c->pkeys + i;
318         X509_free(cpk->x509);
319         cpk->x509 = NULL;
320         EVP_PKEY_free(cpk->privatekey);
321         cpk->privatekey = NULL;
322         sk_X509_pop_free(cpk->chain, X509_free);
323         cpk->chain = NULL;
324         OPENSSL_free(cpk->serverinfo);
325         cpk->serverinfo = NULL;
326         cpk->serverinfo_length = 0;
327     }
328 }
329
330 void ssl_cert_free(CERT *c)
331 {
332     int i;
333
334     if (c == NULL)
335         return;
336
337     i = CRYPTO_add(&c->references, -1, CRYPTO_LOCK_SSL_CERT);
338 #ifdef REF_PRINT
339     REF_PRINT("CERT", c);
340 #endif
341     if (i > 0)
342         return;
343 #ifdef REF_CHECK
344     if (i < 0) {
345         fprintf(stderr, "ssl_cert_free, bad reference count\n");
346         abort();                /* ok */
347     }
348 #endif
349
350 #ifndef OPENSSL_NO_DH
351     EVP_PKEY_free(c->dh_tmp);
352 #endif
353
354     ssl_cert_clear_certs(c);
355     OPENSSL_free(c->conf_sigalgs);
356     OPENSSL_free(c->client_sigalgs);
357     OPENSSL_free(c->shared_sigalgs);
358     OPENSSL_free(c->ctypes);
359     X509_STORE_free(c->verify_store);
360     X509_STORE_free(c->chain_store);
361     custom_exts_free(&c->cli_ext);
362     custom_exts_free(&c->srv_ext);
363 #ifndef OPENSSL_NO_PSK
364     OPENSSL_free(c->psk_identity_hint);
365 #endif
366     OPENSSL_free(c);
367 }
368
369 int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
370 {
371     int i, r;
372     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
373     if (!cpk)
374         return 0;
375     sk_X509_pop_free(cpk->chain, X509_free);
376     for (i = 0; i < sk_X509_num(chain); i++) {
377         r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0);
378         if (r != 1) {
379             SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r);
380             return 0;
381         }
382     }
383     cpk->chain = chain;
384     return 1;
385 }
386
387 int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain)
388 {
389     STACK_OF(X509) *dchain;
390     if (!chain)
391         return ssl_cert_set0_chain(s, ctx, NULL);
392     dchain = X509_chain_up_ref(chain);
393     if (!dchain)
394         return 0;
395     if (!ssl_cert_set0_chain(s, ctx, dchain)) {
396         sk_X509_pop_free(dchain, X509_free);
397         return 0;
398     }
399     return 1;
400 }
401
402 int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
403 {
404     int r;
405     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key;
406     if (!cpk)
407         return 0;
408     r = ssl_security_cert(s, ctx, x, 0, 0);
409     if (r != 1) {
410         SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r);
411         return 0;
412     }
413     if (!cpk->chain)
414         cpk->chain = sk_X509_new_null();
415     if (!cpk->chain || !sk_X509_push(cpk->chain, x))
416         return 0;
417     return 1;
418 }
419
420 int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x)
421 {
422     if (!ssl_cert_add0_chain_cert(s, ctx, x))
423         return 0;
424     X509_up_ref(x);
425     return 1;
426 }
427
428 int ssl_cert_select_current(CERT *c, X509 *x)
429 {
430     int i;
431     if (x == NULL)
432         return 0;
433     for (i = 0; i < SSL_PKEY_NUM; i++) {
434         CERT_PKEY *cpk = c->pkeys + i;
435         if (cpk->x509 == x && cpk->privatekey) {
436             c->key = cpk;
437             return 1;
438         }
439     }
440
441     for (i = 0; i < SSL_PKEY_NUM; i++) {
442         CERT_PKEY *cpk = c->pkeys + i;
443         if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) {
444             c->key = cpk;
445             return 1;
446         }
447     }
448     return 0;
449 }
450
451 int ssl_cert_set_current(CERT *c, long op)
452 {
453     int i, idx;
454     if (!c)
455         return 0;
456     if (op == SSL_CERT_SET_FIRST)
457         idx = 0;
458     else if (op == SSL_CERT_SET_NEXT) {
459         idx = (int)(c->key - c->pkeys + 1);
460         if (idx >= SSL_PKEY_NUM)
461             return 0;
462     } else
463         return 0;
464     for (i = idx; i < SSL_PKEY_NUM; i++) {
465         CERT_PKEY *cpk = c->pkeys + i;
466         if (cpk->x509 && cpk->privatekey) {
467             c->key = cpk;
468             return 1;
469         }
470     }
471     return 0;
472 }
473
474 void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg)
475 {
476     c->cert_cb = cb;
477     c->cert_cb_arg = arg;
478 }
479
480 int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk)
481 {
482     X509 *x;
483     int i;
484     X509_STORE *verify_store;
485     X509_STORE_CTX ctx;
486     X509_VERIFY_PARAM *param;
487
488     if (s->cert->verify_store)
489         verify_store = s->cert->verify_store;
490     else
491         verify_store = s->ctx->cert_store;
492
493     if ((sk == NULL) || (sk_X509_num(sk) == 0))
494         return (0);
495
496     x = sk_X509_value(sk, 0);
497     if (!X509_STORE_CTX_init(&ctx, verify_store, x, sk)) {
498         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB);
499         return (0);
500     }
501     param = X509_STORE_CTX_get0_param(&ctx);
502
503     /* Set suite B flags if needed */
504     X509_STORE_CTX_set_flags(&ctx, tls1_suiteb(s));
505     X509_STORE_CTX_set_ex_data(&ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s);
506
507     /* Verify via DANE if enabled */
508     if (DANETLS_ENABLED(&s->dane))
509         X509_STORE_CTX_set0_dane(&ctx, &s->dane);
510
511     /*
512      * We need to inherit the verify parameters. These can be determined by
513      * the context: if its a server it will verify SSL client certificates or
514      * vice versa.
515      */
516
517     X509_STORE_CTX_set_default(&ctx, s->server ? "ssl_client" : "ssl_server");
518     /*
519      * Anything non-default in "s->param" should overwrite anything in the ctx.
520      */
521     X509_VERIFY_PARAM_set1(param, s->param);
522
523     if (s->verify_callback)
524         X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback);
525
526     if (s->ctx->app_verify_callback != NULL)
527         i = s->ctx->app_verify_callback(&ctx, s->ctx->app_verify_arg);
528     else {
529         i = X509_verify_cert(&ctx);
530 # if 0
531         /* Dummy error calls so mkerr generates them */
532         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL);
533         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL);
534         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK);
535 # endif
536         if (i > 0)
537             i = ssl_security_cert_chain(s, ctx.chain, NULL, 1);
538     }
539
540     s->verify_result = ctx.error;
541     sk_X509_pop_free(s->verified_chain, X509_free);
542     s->verified_chain = NULL;
543     if (X509_STORE_CTX_get_chain(&ctx) != NULL) {
544         s->verified_chain = X509_STORE_CTX_get1_chain(&ctx);
545         if (s->verified_chain == NULL) {
546             SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_MALLOC_FAILURE);
547             i = 0;
548         }
549     }
550
551     /* Move peername from the store context params to the SSL handle's */
552     X509_VERIFY_PARAM_move_peername(s->param, param);
553
554     X509_STORE_CTX_cleanup(&ctx);
555
556     return (i);
557 }
558
559 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,
560                                STACK_OF(X509_NAME) *name_list)
561 {
562     sk_X509_NAME_pop_free(*ca_list, X509_NAME_free);
563     *ca_list = name_list;
564 }
565
566 STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk)
567 {
568     int i;
569     STACK_OF(X509_NAME) *ret;
570     X509_NAME *name;
571
572     ret = sk_X509_NAME_new_null();
573     for (i = 0; i < sk_X509_NAME_num(sk); i++) {
574         name = X509_NAME_dup(sk_X509_NAME_value(sk, i));
575         if ((name == NULL) || !sk_X509_NAME_push(ret, name)) {
576             sk_X509_NAME_pop_free(ret, X509_NAME_free);
577             return (NULL);
578         }
579     }
580     return (ret);
581 }
582
583 void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list)
584 {
585     set_client_CA_list(&(s->client_CA), name_list);
586 }
587
588 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list)
589 {
590     set_client_CA_list(&(ctx->client_CA), name_list);
591 }
592
593 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx)
594 {
595     return (ctx->client_CA);
596 }
597
598 STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s)
599 {
600     if (!s->server) { /* we are in the client */
601         if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL))
602             return (s->s3->tmp.ca_names);
603         else
604             return (NULL);
605     } else {
606         if (s->client_CA != NULL)
607             return (s->client_CA);
608         else
609             return (s->ctx->client_CA);
610     }
611 }
612
613 static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x)
614 {
615     X509_NAME *name;
616
617     if (x == NULL)
618         return (0);
619     if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL))
620         return (0);
621
622     if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL)
623         return (0);
624
625     if (!sk_X509_NAME_push(*sk, name)) {
626         X509_NAME_free(name);
627         return (0);
628     }
629     return (1);
630 }
631
632 int SSL_add_client_CA(SSL *ssl, X509 *x)
633 {
634     return (add_client_CA(&(ssl->client_CA), x));
635 }
636
637 int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x)
638 {
639     return (add_client_CA(&(ctx->client_CA), x));
640 }
641
642 static int xname_sk_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
643 {
644     return (X509_NAME_cmp(*a, *b));
645 }
646
647 static int xname_cmp(const X509_NAME *a, const X509_NAME *b)
648 {
649     return X509_NAME_cmp(a, b);
650 }
651
652 static unsigned long xname_hash(const X509_NAME *a)
653 {
654     return X509_NAME_hash((X509_NAME *)a);
655 }
656
657 DEFINE_LHASH_OF(X509_NAME);
658
659 /**
660  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
661  * it doesn't really have anything to do with clients (except that a common use
662  * for a stack of CAs is to send it to the client). Actually, it doesn't have
663  * much to do with CAs, either, since it will load any old cert.
664  * \param file the file containing one or more certs.
665  * \return a ::STACK containing the certs.
666  */
667 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file)
668 {
669     BIO *in = BIO_new(BIO_s_file());
670     X509 *x = NULL;
671     X509_NAME *xn = NULL;
672     STACK_OF(X509_NAME) *ret = NULL;
673     LHASH_OF(X509_NAME) *name_hash =
674         lh_X509_NAME_new(xname_hash, xname_cmp);
675
676     if ((name_hash == NULL) || (in == NULL)) {
677         SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
678         goto err;
679     }
680
681     if (!BIO_read_filename(in, file))
682         goto err;
683
684     for (;;) {
685         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
686             break;
687         if (ret == NULL) {
688             ret = sk_X509_NAME_new_null();
689             if (ret == NULL) {
690                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE);
691                 goto err;
692             }
693         }
694         if ((xn = X509_get_subject_name(x)) == NULL)
695             goto err;
696         /* check for duplicates */
697         xn = X509_NAME_dup(xn);
698         if (xn == NULL)
699             goto err;
700         if (lh_X509_NAME_retrieve(name_hash, xn) != NULL) {
701             /* Duplicate. */
702             X509_NAME_free(xn);
703         } else {
704             lh_X509_NAME_insert(name_hash, xn);
705             sk_X509_NAME_push(ret, xn);
706         }
707     }
708     goto done;
709
710  err:
711     sk_X509_NAME_pop_free(ret, X509_NAME_free);
712     ret = NULL;
713  done:
714     BIO_free(in);
715     X509_free(x);
716     lh_X509_NAME_free(name_hash);
717     if (ret != NULL)
718         ERR_clear_error();
719     return (ret);
720 }
721
722 /**
723  * Add a file of certs to a stack.
724  * \param stack the stack to add to.
725  * \param file the file to add from. All certs in this file that are not
726  * already in the stack will be added.
727  * \return 1 for success, 0 for failure. Note that in the case of failure some
728  * certs may have been added to \c stack.
729  */
730
731 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
732                                         const char *file)
733 {
734     BIO *in;
735     X509 *x = NULL;
736     X509_NAME *xn = NULL;
737     int ret = 1;
738     int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b);
739
740     oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_sk_cmp);
741
742     in = BIO_new(BIO_s_file());
743
744     if (in == NULL) {
745         SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK,
746                ERR_R_MALLOC_FAILURE);
747         goto err;
748     }
749
750     if (!BIO_read_filename(in, file))
751         goto err;
752
753     for (;;) {
754         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
755             break;
756         if ((xn = X509_get_subject_name(x)) == NULL)
757             goto err;
758         xn = X509_NAME_dup(xn);
759         if (xn == NULL)
760             goto err;
761         if (sk_X509_NAME_find(stack, xn) >= 0)
762             X509_NAME_free(xn);
763         else
764             sk_X509_NAME_push(stack, xn);
765     }
766
767     ERR_clear_error();
768     goto done;
769
770  err:
771         ret = 0;
772  done:
773     BIO_free(in);
774     X509_free(x);
775     (void)sk_X509_NAME_set_cmp_func(stack, oldcmp);
776     return ret;
777 }
778
779 /**
780  * Add a directory of certs to a stack.
781  * \param stack the stack to append to.
782  * \param dir the directory to append from. All files in this directory will be
783  * examined as potential certs. Any that are acceptable to
784  * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
785  * included.
786  * \return 1 for success, 0 for failure. Note that in the case of failure some
787  * certs may have been added to \c stack.
788  */
789
790 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
791                                        const char *dir)
792 {
793     OPENSSL_DIR_CTX *d = NULL;
794     const char *filename;
795     int ret = 0;
796
797     CRYPTO_w_lock(CRYPTO_LOCK_READDIR);
798
799     /* Note that a side effect is that the CAs will be sorted by name */
800
801     while ((filename = OPENSSL_DIR_read(&d, dir))) {
802         char buf[1024];
803         int r;
804
805         if (strlen(dir) + strlen(filename) + 2 > sizeof buf) {
806             SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,
807                    SSL_R_PATH_TOO_LONG);
808             goto err;
809         }
810 #ifdef OPENSSL_SYS_VMS
811         r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename);
812 #else
813         r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename);
814 #endif
815         if (r <= 0 || r >= (int)sizeof(buf))
816             goto err;
817         if (!SSL_add_file_cert_subjects_to_stack(stack, buf))
818             goto err;
819     }
820
821     if (errno) {
822         SYSerr(SYS_F_OPENDIR, get_last_sys_error());
823         ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')");
824         SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB);
825         goto err;
826     }
827
828     ret = 1;
829
830  err:
831     if (d)
832         OPENSSL_DIR_end(&d);
833     CRYPTO_w_unlock(CRYPTO_LOCK_READDIR);
834     return ret;
835 }
836
837 /* Add a certificate to a BUF_MEM structure */
838
839 static int ssl_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x)
840 {
841     int n;
842     unsigned char *p;
843
844     n = i2d_X509(x, NULL);
845     if (!BUF_MEM_grow_clean(buf, (int)(n + (*l) + 3))) {
846         SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB);
847         return 0;
848     }
849     p = (unsigned char *)&(buf->data[*l]);
850     l2n3(n, p);
851     i2d_X509(x, &p);
852     *l += n + 3;
853
854     return 1;
855 }
856
857 /* Add certificate chain to internal SSL BUF_MEM strcuture */
858 int ssl_add_cert_chain(SSL *s, CERT_PKEY *cpk, unsigned long *l)
859 {
860     BUF_MEM *buf = s->init_buf;
861     int i;
862
863     X509 *x;
864     STACK_OF(X509) *extra_certs;
865     X509_STORE *chain_store;
866
867     /* TLSv1 sends a chain with nothing in it, instead of an alert */
868     if (!BUF_MEM_grow_clean(buf, 10)) {
869         SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_BUF_LIB);
870         return 0;
871     }
872
873     if (!cpk || !cpk->x509)
874         return 1;
875
876     x = cpk->x509;
877
878     /*
879      * If we have a certificate specific chain use it, else use parent ctx.
880      */
881     if (cpk->chain)
882         extra_certs = cpk->chain;
883     else
884         extra_certs = s->ctx->extra_certs;
885
886     if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs)
887         chain_store = NULL;
888     else if (s->cert->chain_store)
889         chain_store = s->cert->chain_store;
890     else
891         chain_store = s->ctx->cert_store;
892
893     if (chain_store) {
894         X509_STORE_CTX xs_ctx;
895
896         if (!X509_STORE_CTX_init(&xs_ctx, chain_store, x, NULL)) {
897             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB);
898             return (0);
899         }
900         /*
901          * It is valid for the chain not to be complete (because normally we
902          * don't include the root cert in the chain). Therefore we deliberately
903          * ignore the error return from this call. We're not actually verifying
904          * the cert - we're just building as much of the chain as we can
905          */
906         X509_verify_cert(&xs_ctx);
907         /* Don't leave errors in the queue */
908         ERR_clear_error();
909         i = ssl_security_cert_chain(s, xs_ctx.chain, NULL, 0);
910         if (i != 1) {
911             X509_STORE_CTX_cleanup(&xs_ctx);
912             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
913             return 0;
914         }
915         for (i = 0; i < sk_X509_num(xs_ctx.chain); i++) {
916             x = sk_X509_value(xs_ctx.chain, i);
917
918             if (!ssl_add_cert_to_buf(buf, l, x)) {
919                 X509_STORE_CTX_cleanup(&xs_ctx);
920                 return 0;
921             }
922         }
923         X509_STORE_CTX_cleanup(&xs_ctx);
924     } else {
925         i = ssl_security_cert_chain(s, extra_certs, x, 0);
926         if (i != 1) {
927             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
928             return 0;
929         }
930         if (!ssl_add_cert_to_buf(buf, l, x))
931             return 0;
932         for (i = 0; i < sk_X509_num(extra_certs); i++) {
933             x = sk_X509_value(extra_certs, i);
934             if (!ssl_add_cert_to_buf(buf, l, x))
935                 return 0;
936         }
937     }
938     return 1;
939 }
940
941 /* Build a certificate chain for current certificate */
942 int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags)
943 {
944     CERT *c = s ? s->cert : ctx->cert;
945     CERT_PKEY *cpk = c->key;
946     X509_STORE *chain_store = NULL;
947     X509_STORE_CTX xs_ctx;
948     STACK_OF(X509) *chain = NULL, *untrusted = NULL;
949     X509 *x;
950     int i, rv = 0;
951     unsigned long error;
952
953     if (!cpk->x509) {
954         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET);
955         goto err;
956     }
957     /* Rearranging and check the chain: add everything to a store */
958     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) {
959         chain_store = X509_STORE_new();
960         if (chain_store == NULL)
961             goto err;
962         for (i = 0; i < sk_X509_num(cpk->chain); i++) {
963             x = sk_X509_value(cpk->chain, i);
964             if (!X509_STORE_add_cert(chain_store, x)) {
965                 error = ERR_peek_last_error();
966                 if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
967                     ERR_GET_REASON(error) !=
968                     X509_R_CERT_ALREADY_IN_HASH_TABLE)
969                     goto err;
970                 ERR_clear_error();
971             }
972         }
973         /* Add EE cert too: it might be self signed */
974         if (!X509_STORE_add_cert(chain_store, cpk->x509)) {
975             error = ERR_peek_last_error();
976             if (ERR_GET_LIB(error) != ERR_LIB_X509 ||
977                 ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE)
978                 goto err;
979             ERR_clear_error();
980         }
981     } else {
982         if (c->chain_store)
983             chain_store = c->chain_store;
984         else if (s)
985             chain_store = s->ctx->cert_store;
986         else
987             chain_store = ctx->cert_store;
988
989         if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED)
990             untrusted = cpk->chain;
991     }
992
993     if (!X509_STORE_CTX_init(&xs_ctx, chain_store, cpk->x509, untrusted)) {
994         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB);
995         goto err;
996     }
997     /* Set suite B flags if needed */
998     X509_STORE_CTX_set_flags(&xs_ctx,
999                              c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS);
1000
1001     i = X509_verify_cert(&xs_ctx);
1002     if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) {
1003         if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR)
1004             ERR_clear_error();
1005         i = 1;
1006         rv = 2;
1007     }
1008     if (i > 0)
1009         chain = X509_STORE_CTX_get1_chain(&xs_ctx);
1010     if (i <= 0) {
1011         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED);
1012         i = X509_STORE_CTX_get_error(&xs_ctx);
1013         ERR_add_error_data(2, "Verify error:",
1014                            X509_verify_cert_error_string(i));
1015
1016         X509_STORE_CTX_cleanup(&xs_ctx);
1017         goto err;
1018     }
1019     X509_STORE_CTX_cleanup(&xs_ctx);
1020     /* Remove EE certificate from chain */
1021     x = sk_X509_shift(chain);
1022     X509_free(x);
1023     if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) {
1024         if (sk_X509_num(chain) > 0) {
1025             /* See if last cert is self signed */
1026             x = sk_X509_value(chain, sk_X509_num(chain) - 1);
1027             if (X509_get_extension_flags(x) & EXFLAG_SS) {
1028                 x = sk_X509_pop(chain);
1029                 X509_free(x);
1030             }
1031         }
1032     }
1033     /*
1034      * Check security level of all CA certificates: EE will have been checked
1035      * already.
1036      */
1037     for (i = 0; i < sk_X509_num(chain); i++) {
1038         x = sk_X509_value(chain, i);
1039         rv = ssl_security_cert(s, ctx, x, 0, 0);
1040         if (rv != 1) {
1041             SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv);
1042             sk_X509_pop_free(chain, X509_free);
1043             rv = 0;
1044             goto err;
1045         }
1046     }
1047     sk_X509_pop_free(cpk->chain, X509_free);
1048     cpk->chain = chain;
1049     if (rv == 0)
1050         rv = 1;
1051  err:
1052     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK)
1053         X509_STORE_free(chain_store);
1054
1055     return rv;
1056 }
1057
1058 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref)
1059 {
1060     X509_STORE **pstore;
1061     if (chain)
1062         pstore = &c->chain_store;
1063     else
1064         pstore = &c->verify_store;
1065     X509_STORE_free(*pstore);
1066     *pstore = store;
1067     if (ref && store)
1068         CRYPTO_add(&store->references, 1, CRYPTO_LOCK_X509_STORE);
1069     return 1;
1070 }
1071
1072 static int ssl_security_default_callback(SSL *s, SSL_CTX *ctx, int op,
1073                                          int bits, int nid, void *other,
1074                                          void *ex)
1075 {
1076     int level, minbits;
1077     static const int minbits_table[5] = { 80, 112, 128, 192, 256 };
1078     if (ctx)
1079         level = SSL_CTX_get_security_level(ctx);
1080     else
1081         level = SSL_get_security_level(s);
1082
1083     if (level <= 0) {
1084         /*
1085          * No EDH keys weaker than 1024-bits even at level 0, otherwise,
1086          * anything goes.
1087          */
1088         if (op == SSL_SECOP_TMP_DH && bits < 80)
1089             return 0;
1090         return 1;
1091     }
1092     if (level > 5)
1093         level = 5;
1094     minbits = minbits_table[level - 1];
1095     switch (op) {
1096     case SSL_SECOP_CIPHER_SUPPORTED:
1097     case SSL_SECOP_CIPHER_SHARED:
1098     case SSL_SECOP_CIPHER_CHECK:
1099         {
1100             const SSL_CIPHER *c = other;
1101             /* No ciphers below security level */
1102             if (bits < minbits)
1103                 return 0;
1104             /* No unauthenticated ciphersuites */
1105             if (c->algorithm_auth & SSL_aNULL)
1106                 return 0;
1107             /* No MD5 mac ciphersuites */
1108             if (c->algorithm_mac & SSL_MD5)
1109                 return 0;
1110             /* SHA1 HMAC is 160 bits of security */
1111             if (minbits > 160 && c->algorithm_mac & SSL_SHA1)
1112                 return 0;
1113             /* Level 2: no RC4 */
1114             if (level >= 2 && c->algorithm_enc == SSL_RC4)
1115                 return 0;
1116             /* Level 3: forward secure ciphersuites only */
1117             if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)))
1118                 return 0;
1119             break;
1120         }
1121     case SSL_SECOP_VERSION:
1122         if (!SSL_IS_DTLS(s)) {
1123             /* SSLv3 not allowed at level 2 */
1124             if (nid <= SSL3_VERSION && level >= 2)
1125                 return 0;
1126             /* TLS v1.1 and above only for level 3 */
1127             if (nid <= TLS1_VERSION && level >= 3)
1128                 return 0;
1129             /* TLS v1.2 only for level 4 and above */
1130             if (nid <= TLS1_1_VERSION && level >= 4)
1131                 return 0;
1132         } else {
1133             /* DTLS v1.2 only for level 4 and above */
1134             if (DTLS_VERSION_LT(nid, DTLS1_2_VERSION) && level >= 4)
1135                 return 0;
1136         }
1137         break;
1138
1139     case SSL_SECOP_COMPRESSION:
1140         if (level >= 2)
1141             return 0;
1142         break;
1143     case SSL_SECOP_TICKET:
1144         if (level >= 3)
1145             return 0;
1146         break;
1147     default:
1148         if (bits < minbits)
1149             return 0;
1150     }
1151     return 1;
1152 }
1153
1154 int ssl_security(SSL *s, int op, int bits, int nid, void *other)
1155 {
1156     return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex);
1157 }
1158
1159 int ssl_ctx_security(SSL_CTX *ctx, int op, int bits, int nid, void *other)
1160 {
1161     return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other,
1162                              ctx->cert->sec_ex);
1163 }