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