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