| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2006-06-14 16:55:23 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1999-05-10 04:12:44 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-18 02:18:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-09 16:56:08 +08:00
										 |  |  | /* ====================================================================
 | 
					
						
							|  |  |  |  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  * ECC cipher suite support in OpenSSL originally developed by | 
					
						
							| 
									
										
										
										
											2002-08-09 16:56:08 +08:00
										 |  |  |  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											1999-09-12 01:54:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-22 22:45:02 +08:00
										 |  |  | #include "e_os.h"
 | 
					
						
							| 
									
										
										
										
											1999-09-12 01:54:18 +08:00
										 |  |  | #ifndef NO_SYS_TYPES_H
 | 
					
						
							|  |  |  | # include <sys/types.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 20:54:49 +08:00
										 |  |  | #include "internal/o_dir.h"
 | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  | #include <openssl/lhash.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/bio.h>
 | 
					
						
							|  |  |  | #include <openssl/pem.h>
 | 
					
						
							| 
									
										
										
										
											1999-11-30 06:35:00 +08:00
										 |  |  | #include <openssl/x509v3.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-19 02:30:20 +08:00
										 |  |  | #include <openssl/dh.h>
 | 
					
						
							| 
									
										
										
										
											2004-05-18 02:53:47 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2016-05-16 01:02:17 +08:00
										 |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include "ssl_locl.h"
 | 
					
						
							| 
									
										
										
										
											2016-07-20 01:42:11 +08:00
										 |  |  | #include "internal/thread_once.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  | static int ssl_security_default_callback(const SSL *s, const SSL_CTX *ctx, | 
					
						
							|  |  |  |                                          int op, int bits, int nid, void *other, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                          void *ex); | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  | static CRYPTO_ONCE ssl_x509_store_ctx_once = CRYPTO_ONCE_STATIC_INIT; | 
					
						
							|  |  |  | static volatile int ssl_x509_store_ctx_idx = -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 01:42:11 +08:00
										 |  |  | DEFINE_RUN_ONCE_STATIC(ssl_x509_store_ctx_init) | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl_x509_store_ctx_idx = X509_STORE_CTX_get_ex_new_index(0, | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |                                                              "SSL for verify callback", | 
					
						
							|  |  |  |                                                              NULL, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2016-07-20 01:42:11 +08:00
										 |  |  |     return ssl_x509_store_ctx_idx >= 0; | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  | int SSL_get_ex_data_X509_STORE_CTX_idx(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-20 01:42:11 +08:00
										 |  |  |     if (!RUN_ONCE(&ssl_x509_store_ctx_once, ssl_x509_store_ctx_init)) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ssl_x509_store_ctx_idx; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | CERT *ssl_cert_new(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     CERT *ret = OPENSSL_zalloc(sizeof(*ret)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ret == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret->key = &(ret->pkeys[SSL_PKEY_RSA_ENC]); | 
					
						
							|  |  |  |     ret->references = 1; | 
					
						
							|  |  |  |     ret->sec_cb = ssl_security_default_callback; | 
					
						
							|  |  |  |     ret->sec_level = OPENSSL_TLS_SECURITY_LEVEL; | 
					
						
							|  |  |  |     ret->sec_ex = NULL; | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |     ret->lock = CRYPTO_THREAD_lock_new(); | 
					
						
							|  |  |  |     if (ret->lock == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         OPENSSL_free(ret); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-10 04:12:44 +08:00
										 |  |  | CERT *ssl_cert_dup(CERT *cert) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-08-26 01:25:58 +08:00
										 |  |  |     CERT *ret = OPENSSL_zalloc(sizeof(*ret)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 10:25:31 +08:00
										 |  |  |     ret->references = 1; | 
					
						
							| 
									
										
										
										
											2015-05-05 06:00:15 +08:00
										 |  |  |     ret->key = &ret->pkeys[cert->key - cert->pkeys]; | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |     ret->lock = CRYPTO_THREAD_lock_new(); | 
					
						
							| 
									
										
										
										
											2016-03-09 23:01:43 +08:00
										 |  |  |     if (ret->lock == NULL) { | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         OPENSSL_free(ret); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-02-20 16:13:47 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (cert->dh_tmp != NULL) { | 
					
						
							| 
									
										
										
										
											2015-12-17 08:05:26 +08:00
										 |  |  |         ret->dh_tmp = cert->dh_tmp; | 
					
						
							|  |  |  |         EVP_PKEY_up_ref(ret->dh_tmp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret->dh_tmp_cb = cert->dh_tmp_cb; | 
					
						
							|  |  |  |     ret->dh_tmp_auto = cert->dh_tmp_auto; | 
					
						
							| 
									
										
										
										
											1999-05-10 04:12:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (i = 0; i < SSL_PKEY_NUM; i++) { | 
					
						
							|  |  |  |         CERT_PKEY *cpk = cert->pkeys + i; | 
					
						
							|  |  |  |         CERT_PKEY *rpk = ret->pkeys + i; | 
					
						
							|  |  |  |         if (cpk->x509 != NULL) { | 
					
						
							|  |  |  |             rpk->x509 = cpk->x509; | 
					
						
							| 
									
										
										
										
											2015-09-01 03:29:57 +08:00
										 |  |  |             X509_up_ref(rpk->x509); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (cpk->privatekey != NULL) { | 
					
						
							|  |  |  |             rpk->privatekey = cpk->privatekey; | 
					
						
							| 
									
										
										
										
											2016-01-19 08:21:12 +08:00
										 |  |  |             EVP_PKEY_up_ref(cpk->privatekey); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (cpk->chain) { | 
					
						
							|  |  |  |             rpk->chain = X509_chain_up_ref(cpk->chain); | 
					
						
							|  |  |  |             if (!rpk->chain) { | 
					
						
							|  |  |  |                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (cert->pkeys[i].serverinfo != NULL) { | 
					
						
							|  |  |  |             /* Just copy everything. */ | 
					
						
							|  |  |  |             ret->pkeys[i].serverinfo = | 
					
						
							|  |  |  |                 OPENSSL_malloc(cert->pkeys[i].serverinfo_length); | 
					
						
							|  |  |  |             if (ret->pkeys[i].serverinfo == NULL) { | 
					
						
							|  |  |  |                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |             ret->pkeys[i].serverinfo_length = cert->pkeys[i].serverinfo_length; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             memcpy(ret->pkeys[i].serverinfo, | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |                    cert->pkeys[i].serverinfo, cert->pkeys[i].serverinfo_length); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 00:17:37 +08:00
										 |  |  |     /* Configured sigalgs copied across */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (cert->conf_sigalgs) { | 
					
						
							|  |  |  |         ret->conf_sigalgs = OPENSSL_malloc(cert->conf_sigalgslen); | 
					
						
							| 
									
										
										
										
											2015-10-30 18:05:53 +08:00
										 |  |  |         if (ret->conf_sigalgs == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         memcpy(ret->conf_sigalgs, cert->conf_sigalgs, cert->conf_sigalgslen); | 
					
						
							|  |  |  |         ret->conf_sigalgslen = cert->conf_sigalgslen; | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         ret->conf_sigalgs = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (cert->client_sigalgs) { | 
					
						
							|  |  |  |         ret->client_sigalgs = OPENSSL_malloc(cert->client_sigalgslen); | 
					
						
							| 
									
										
										
										
											2015-10-30 18:05:53 +08:00
										 |  |  |         if (ret->client_sigalgs == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         memcpy(ret->client_sigalgs, cert->client_sigalgs, | 
					
						
							|  |  |  |                cert->client_sigalgslen); | 
					
						
							|  |  |  |         ret->client_sigalgslen = cert->client_sigalgslen; | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         ret->client_sigalgs = NULL; | 
					
						
							|  |  |  |     /* Shared sigalgs also NULL */ | 
					
						
							|  |  |  |     ret->shared_sigalgs = NULL; | 
					
						
							|  |  |  |     /* Copy any custom client certificate types */ | 
					
						
							|  |  |  |     if (cert->ctypes) { | 
					
						
							|  |  |  |         ret->ctypes = OPENSSL_malloc(cert->ctype_num); | 
					
						
							| 
									
										
										
										
											2015-10-30 18:05:53 +08:00
										 |  |  |         if (ret->ctypes == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         memcpy(ret->ctypes, cert->ctypes, cert->ctype_num); | 
					
						
							|  |  |  |         ret->ctype_num = cert->ctype_num; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret->cert_flags = cert->cert_flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret->cert_cb = cert->cert_cb; | 
					
						
							|  |  |  |     ret->cert_cb_arg = cert->cert_cb_arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (cert->verify_store) { | 
					
						
							| 
									
										
										
										
											2016-03-02 02:06:15 +08:00
										 |  |  |         X509_STORE_up_ref(cert->verify_store); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ret->verify_store = cert->verify_store; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (cert->chain_store) { | 
					
						
							| 
									
										
										
										
											2016-03-02 02:06:15 +08:00
										 |  |  |         X509_STORE_up_ref(cert->chain_store); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ret->chain_store = cert->chain_store; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret->sec_cb = cert->sec_cb; | 
					
						
							|  |  |  |     ret->sec_level = cert->sec_level; | 
					
						
							|  |  |  |     ret->sec_ex = cert->sec_ex; | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!custom_exts_copy(&ret->cli_ext, &cert->cli_ext)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!custom_exts_copy(&ret->srv_ext, &cert->srv_ext)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-09-12 00:08:11 +08:00
										 |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							| 
									
										
										
										
											2015-09-15 00:58:04 +08:00
										 |  |  |     if (cert->psk_identity_hint) { | 
					
						
							| 
									
										
										
											
												Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
											
										 
											2015-12-17 05:12:24 +08:00
										 |  |  |         ret->psk_identity_hint = OPENSSL_strdup(cert->psk_identity_hint); | 
					
						
							| 
									
										
										
										
											2015-09-15 00:58:04 +08:00
										 |  |  |         if (ret->psk_identity_hint == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-09-12 00:08:11 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     ssl_cert_free(ret); | 
					
						
							| 
									
										
										
										
											2012-01-27 22:21:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-05-10 04:12:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-18 20:56:59 +08:00
										 |  |  | /* Free up and clear all certificates and chains */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ssl_cert_clear_certs(CERT *c) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     if (c == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     for (i = 0; i < SSL_PKEY_NUM; i++) { | 
					
						
							|  |  |  |         CERT_PKEY *cpk = c->pkeys + i; | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |         X509_free(cpk->x509); | 
					
						
							|  |  |  |         cpk->x509 = NULL; | 
					
						
							| 
									
										
										
										
											2015-03-28 22:54:15 +08:00
										 |  |  |         EVP_PKEY_free(cpk->privatekey); | 
					
						
							|  |  |  |         cpk->privatekey = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |         sk_X509_pop_free(cpk->chain, X509_free); | 
					
						
							|  |  |  |         cpk->chain = NULL; | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |         OPENSSL_free(cpk->serverinfo); | 
					
						
							|  |  |  |         cpk->serverinfo = NULL; | 
					
						
							|  |  |  |         cpk->serverinfo_length = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-05-10 04:12:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  | void ssl_cert_free(CERT *c) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (c == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											1999-01-08 03:15:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-27 22:01:08 +08:00
										 |  |  |     CRYPTO_DOWN_REF(&c->references, &i, c->lock); | 
					
						
							| 
									
										
										
										
											2016-01-31 01:04:25 +08:00
										 |  |  |     REF_PRINT_COUNT("CERT", c); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (i > 0) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2016-01-31 01:04:25 +08:00
										 |  |  |     REF_ASSERT_ISNT(i < 0); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 16:13:47 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2015-12-17 08:05:26 +08:00
										 |  |  |     EVP_PKEY_free(c->dh_tmp); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ssl_cert_clear_certs(c); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     OPENSSL_free(c->conf_sigalgs); | 
					
						
							|  |  |  |     OPENSSL_free(c->client_sigalgs); | 
					
						
							|  |  |  |     OPENSSL_free(c->shared_sigalgs); | 
					
						
							|  |  |  |     OPENSSL_free(c->ctypes); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_STORE_free(c->verify_store); | 
					
						
							|  |  |  |     X509_STORE_free(c->chain_store); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     custom_exts_free(&c->cli_ext); | 
					
						
							|  |  |  |     custom_exts_free(&c->srv_ext); | 
					
						
							| 
									
										
										
										
											2015-09-15 00:58:04 +08:00
										 |  |  | #ifndef OPENSSL_NO_PSK
 | 
					
						
							|  |  |  |     OPENSSL_free(c->psk_identity_hint); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  |     CRYPTO_THREAD_lock_free(c->lock); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     OPENSSL_free(c); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | int ssl_cert_set0_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, r; | 
					
						
							|  |  |  |     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; | 
					
						
							|  |  |  |     if (!cpk) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_num(chain); i++) { | 
					
						
							|  |  |  |         r = ssl_security_cert(s, ctx, sk_X509_value(chain, i), 0, 0); | 
					
						
							|  |  |  |         if (r != 1) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_CERT_SET0_CHAIN, r); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-05-26 08:56:48 +08:00
										 |  |  |     sk_X509_pop_free(cpk->chain, X509_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     cpk->chain = chain; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-31 22:00:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | int ssl_cert_set1_chain(SSL *s, SSL_CTX *ctx, STACK_OF(X509) *chain) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     STACK_OF(X509) *dchain; | 
					
						
							|  |  |  |     if (!chain) | 
					
						
							|  |  |  |         return ssl_cert_set0_chain(s, ctx, NULL); | 
					
						
							|  |  |  |     dchain = X509_chain_up_ref(chain); | 
					
						
							|  |  |  |     if (!dchain) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!ssl_cert_set0_chain(s, ctx, dchain)) { | 
					
						
							|  |  |  |         sk_X509_pop_free(dchain, X509_free); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-31 22:00:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | int ssl_cert_add0_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int r; | 
					
						
							|  |  |  |     CERT_PKEY *cpk = s ? s->cert->key : ctx->cert->key; | 
					
						
							|  |  |  |     if (!cpk) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     r = ssl_security_cert(s, ctx, x, 0, 0); | 
					
						
							|  |  |  |     if (r != 1) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_CERT_ADD0_CHAIN_CERT, r); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!cpk->chain) | 
					
						
							|  |  |  |         cpk->chain = sk_X509_new_null(); | 
					
						
							|  |  |  |     if (!cpk->chain || !sk_X509_push(cpk->chain, x)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-31 22:00:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | int ssl_cert_add1_chain_cert(SSL *s, SSL_CTX *ctx, X509 *x) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!ssl_cert_add0_chain_cert(s, ctx, x)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-09-01 03:29:57 +08:00
										 |  |  |     X509_up_ref(x); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-11-12 01:04:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ssl_cert_select_current(CERT *c, X509 *x) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     if (x == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     for (i = 0; i < SSL_PKEY_NUM; i++) { | 
					
						
							|  |  |  |         CERT_PKEY *cpk = c->pkeys + i; | 
					
						
							|  |  |  |         if (cpk->x509 == x && cpk->privatekey) { | 
					
						
							|  |  |  |             c->key = cpk; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < SSL_PKEY_NUM; i++) { | 
					
						
							|  |  |  |         CERT_PKEY *cpk = c->pkeys + i; | 
					
						
							|  |  |  |         if (cpk->privatekey && cpk->x509 && !X509_cmp(cpk->x509, x)) { | 
					
						
							|  |  |  |             c->key = cpk; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-02 10:51:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ssl_cert_set_current(CERT *c, long op) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, idx; | 
					
						
							|  |  |  |     if (!c) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (op == SSL_CERT_SET_FIRST) | 
					
						
							|  |  |  |         idx = 0; | 
					
						
							|  |  |  |     else if (op == SSL_CERT_SET_NEXT) { | 
					
						
							|  |  |  |         idx = (int)(c->key - c->pkeys + 1); | 
					
						
							|  |  |  |         if (idx >= SSL_PKEY_NUM) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     for (i = idx; i < SSL_PKEY_NUM; i++) { | 
					
						
							|  |  |  |         CERT_PKEY *cpk = c->pkeys + i; | 
					
						
							|  |  |  |         if (cpk->x509 && cpk->privatekey) { | 
					
						
							|  |  |  |             c->key = cpk; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ssl_cert_set_cert_cb(CERT *c, int (*cb) (SSL *ssl, void *arg), void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c->cert_cb = cb; | 
					
						
							|  |  |  |     c->cert_cb_arg = arg; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-29 22:24:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | int ssl_verify_cert_chain(SSL *s, STACK_OF(X509) *sk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509 *x; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     int i = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509_STORE *verify_store; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX *ctx = NULL; | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  |     X509_VERIFY_PARAM *param; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     if ((sk == NULL) || (sk_X509_num(sk) == 0)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (s->cert->verify_store) | 
					
						
							|  |  |  |         verify_store = s->cert->verify_store; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         verify_store = s->ctx->cert_store; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     ctx = X509_STORE_CTX_new(); | 
					
						
							|  |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     x = sk_X509_value(sk, 0); | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     if (!X509_STORE_CTX_init(ctx, verify_store, x, sk)) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_X509_LIB); | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     param = X509_STORE_CTX_get0_param(ctx); | 
					
						
							| 
									
										
										
										
											2016-03-19 10:09:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * XXX: Separate @AUTHSECLEVEL and @TLSSECLEVEL would be useful at some | 
					
						
							|  |  |  |      * point, for now a single @SECLEVEL sets the same policy for TLS crypto | 
					
						
							|  |  |  |      * and PKI authentication. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     X509_VERIFY_PARAM_set_auth_level(param, SSL_get_security_level(s)); | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Set suite B flags if needed */ | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX_set_flags(ctx, tls1_suiteb(s)); | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |     if (!X509_STORE_CTX_set_ex_data | 
					
						
							|  |  |  |         (ctx, SSL_get_ex_data_X509_STORE_CTX_idx(), s)) { | 
					
						
							| 
									
										
										
										
											2016-02-14 02:01:14 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  |     /* Verify via DANE if enabled */ | 
					
						
							|  |  |  |     if (DANETLS_ENABLED(&s->dane)) | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         X509_STORE_CTX_set0_dane(ctx, &s->dane); | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We need to inherit the verify parameters. These can be determined by | 
					
						
							|  |  |  |      * the context: if its a server it will verify SSL client certificates or | 
					
						
							|  |  |  |      * vice versa. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX_set_default(ctx, s->server ? "ssl_client" : "ssl_server"); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  |      * Anything non-default in "s->param" should overwrite anything in the ctx. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  |     X509_VERIFY_PARAM_set1(param, s->param); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (s->verify_callback) | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         X509_STORE_CTX_set_verify_cb(ctx, s->verify_callback); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (s->ctx->app_verify_callback != NULL) | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         i = s->ctx->app_verify_callback(ctx, s->ctx->app_verify_arg); | 
					
						
							| 
									
										
										
										
											2016-03-19 10:09:41 +08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         i = X509_verify_cert(ctx); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     s->verify_result = X509_STORE_CTX_get_error(ctx); | 
					
						
							| 
									
										
										
										
											2016-02-06 11:17:23 +08:00
										 |  |  |     sk_X509_pop_free(s->verified_chain, X509_free); | 
					
						
							|  |  |  |     s->verified_chain = NULL; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     if (X509_STORE_CTX_get0_chain(ctx) != NULL) { | 
					
						
							|  |  |  |         s->verified_chain = X509_STORE_CTX_get1_chain(ctx); | 
					
						
							| 
									
										
										
										
											2016-02-06 11:17:23 +08:00
										 |  |  |         if (s->verified_chain == NULL) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |             i = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-12-30 02:28:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Move peername from the store context params to the SSL handle's */ | 
					
						
							|  |  |  |     X509_VERIFY_PARAM_move_peername(s->param, param); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |  end: | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX_free(ctx); | 
					
						
							|  |  |  |     return i; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list, | 
					
						
							|  |  |  |                                STACK_OF(X509_NAME) *name_list) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     sk_X509_NAME_pop_free(*ca_list, X509_NAME_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     *ca_list = name_list; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-30 22:13:19 +08:00
										 |  |  | STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     STACK_OF(X509_NAME) *ret; | 
					
						
							|  |  |  |     X509_NAME *name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = sk_X509_NAME_new_null(); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |     if (ret == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_DUP_CA_LIST, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (i = 0; i < sk_X509_NAME_num(sk); i++) { | 
					
						
							|  |  |  |         name = X509_NAME_dup(sk_X509_NAME_value(sk, i)); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |         if (name == NULL || !sk_X509_NAME_push(ret, name)) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             sk_X509_NAME_pop_free(ret, X509_NAME_free); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |             X509_NAME_free(name); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     set_client_CA_list(&(s->client_CA), name_list); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     set_client_CA_list(&(ctx->client_CA), name_list); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-30 18:26:02 +08:00
										 |  |  | STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return (ctx->client_CA); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-30 18:26:02 +08:00
										 |  |  | STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |     if (!s->server) {           /* we are in the client */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (((s->version >> 8) == SSL3_VERSION_MAJOR) && (s->s3 != NULL)) | 
					
						
							|  |  |  |             return (s->s3->tmp.ca_names); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             return (NULL); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (s->client_CA != NULL) | 
					
						
							|  |  |  |             return (s->client_CA); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             return (s->ctx->client_CA); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int add_client_CA(STACK_OF(X509_NAME) **sk, X509 *x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_NAME *name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (x == NULL) | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  |     if ((*sk == NULL) && ((*sk = sk_X509_NAME_new_null()) == NULL)) | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((name = X509_NAME_dup(X509_get_subject_name(x))) == NULL) | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!sk_X509_NAME_push(*sk, name)) { | 
					
						
							|  |  |  |         X509_NAME_free(name); | 
					
						
							|  |  |  |         return (0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SSL_add_client_CA(SSL *ssl, X509 *x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (add_client_CA(&(ssl->client_CA), x)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (add_client_CA(&(ctx->client_CA), x)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  | static int xname_sk_cmp(const X509_NAME *const *a, const X509_NAME *const *b) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return (X509_NAME_cmp(*a, *b)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  | static int xname_cmp(const X509_NAME *a, const X509_NAME *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return X509_NAME_cmp(a, b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned long xname_hash(const X509_NAME *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return X509_NAME_hash((X509_NAME *)a); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  |  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed; | 
					
						
							|  |  |  |  * it doesn't really have anything to do with clients (except that a common use | 
					
						
							|  |  |  |  * for a stack of CAs is to send it to the client). Actually, it doesn't have | 
					
						
							|  |  |  |  * much to do with CAs, either, since it will load any old cert. | 
					
						
							|  |  |  |  * \param file the file containing one or more certs. | 
					
						
							|  |  |  |  * \return a ::STACK containing the certs. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1999-04-13 01:23:57 +08:00
										 |  |  | STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |     BIO *in = BIO_new(BIO_s_file()); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509 *x = NULL; | 
					
						
							|  |  |  |     X509_NAME *xn = NULL; | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |     STACK_OF(X509_NAME) *ret = NULL; | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |     LHASH_OF(X509_NAME) *name_hash = lh_X509_NAME_new(xname_hash, xname_cmp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |     if ((name_hash == NULL) || (in == NULL)) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!BIO_read_filename(in, file)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         if (ret == NULL) { | 
					
						
							|  |  |  |             ret = sk_X509_NAME_new_null(); | 
					
						
							|  |  |  |             if (ret == NULL) { | 
					
						
							|  |  |  |                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ((xn = X509_get_subject_name(x)) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         /* check for duplicates */ | 
					
						
							|  |  |  |         xn = X509_NAME_dup(xn); | 
					
						
							|  |  |  |         if (xn == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |         if (lh_X509_NAME_retrieve(name_hash, xn) != NULL) { | 
					
						
							|  |  |  |             /* Duplicate. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             X509_NAME_free(xn); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |             xn = NULL; | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2016-07-02 07:19:39 +08:00
										 |  |  |             lh_X509_NAME_insert(name_hash, xn); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |             if (!sk_X509_NAME_push(ret, xn)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-02 02:29:48 +08:00
										 |  |  |     goto done; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |     X509_NAME_free(xn); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:29:48 +08:00
										 |  |  |     sk_X509_NAME_pop_free(ret, X509_NAME_free); | 
					
						
							|  |  |  |     ret = NULL; | 
					
						
							|  |  |  |  done: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(in); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_free(x); | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |     lh_X509_NAME_free(name_hash); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ret != NULL) | 
					
						
							|  |  |  |         ERR_clear_error(); | 
					
						
							|  |  |  |     return (ret); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  |  * Add a file of certs to a stack. | 
					
						
							|  |  |  |  * \param stack the stack to add to. | 
					
						
							|  |  |  |  * \param file the file to add from. All certs in this file that are not | 
					
						
							|  |  |  |  * already in the stack will be added. | 
					
						
							|  |  |  |  * \return 1 for success, 0 for failure. Note that in the case of failure some | 
					
						
							|  |  |  |  * certs may have been added to \c stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-04 03:55:00 +08:00
										 |  |  | int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                         const char *file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BIO *in; | 
					
						
							|  |  |  |     X509 *x = NULL; | 
					
						
							|  |  |  |     X509_NAME *xn = NULL; | 
					
						
							|  |  |  |     int ret = 1; | 
					
						
							|  |  |  |     int (*oldcmp) (const X509_NAME *const *a, const X509_NAME *const *b); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 02:08:45 +08:00
										 |  |  |     oldcmp = sk_X509_NAME_set_cmp_func(stack, xname_sk_cmp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 02:32:49 +08:00
										 |  |  |     in = BIO_new(BIO_s_file()); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (in == NULL) { | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!BIO_read_filename(in, file)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         if ((xn = X509_get_subject_name(x)) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         xn = X509_NAME_dup(xn); | 
					
						
							|  |  |  |         if (xn == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |         if (sk_X509_NAME_find(stack, xn) >= 0) { | 
					
						
							|  |  |  |             /* Duplicate. */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             X509_NAME_free(xn); | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |         } else if (!sk_X509_NAME_push(stack, xn)) { | 
					
						
							|  |  |  |             X509_NAME_free(xn); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ERR_clear_error(); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:29:48 +08:00
										 |  |  |     goto done; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2016-06-04 06:15:19 +08:00
										 |  |  |     ret = 0; | 
					
						
							| 
									
										
										
										
											2015-05-02 02:29:48 +08:00
										 |  |  |  done: | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(in); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     X509_free(x); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     (void)sk_X509_NAME_set_cmp_func(stack, oldcmp); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  |  * Add a directory of certs to a stack. | 
					
						
							|  |  |  |  * \param stack the stack to append to. | 
					
						
							|  |  |  |  * \param dir the directory to append from. All files in this directory will be | 
					
						
							|  |  |  |  * examined as potential certs. Any that are acceptable to | 
					
						
							| 
									
										
										
										
											1999-03-22 23:50:34 +08:00
										 |  |  |  * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  |  * included. | 
					
						
							|  |  |  |  * \return 1 for success, 0 for failure. Note that in the case of failure some | 
					
						
							|  |  |  |  * certs may have been added to \c stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-04 03:55:00 +08:00
										 |  |  | int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                        const char *dir) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_DIR_CTX *d = NULL; | 
					
						
							|  |  |  |     const char *filename; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											1999-03-01 01:41:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Note that a side effect is that the CAs will be sorted by name */ | 
					
						
							| 
									
										
										
										
											2004-07-10 21:17:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     while ((filename = OPENSSL_DIR_read(&d, dir))) { | 
					
						
							|  |  |  |         char buf[1024]; | 
					
						
							|  |  |  |         int r; | 
					
						
							| 
									
										
										
										
											2004-07-10 21:17:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (strlen(dir) + strlen(filename) + 2 > sizeof buf) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, | 
					
						
							|  |  |  |                    SSL_R_PATH_TOO_LONG); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-07-10 21:17:16 +08:00
										 |  |  | #ifdef OPENSSL_SYS_VMS
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         r = BIO_snprintf(buf, sizeof buf, "%s%s", dir, filename); | 
					
						
							| 
									
										
										
										
											2004-07-10 21:17:16 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         r = BIO_snprintf(buf, sizeof buf, "%s/%s", dir, filename); | 
					
						
							| 
									
										
										
										
											2004-07-10 21:17:16 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (r <= 0 || r >= (int)sizeof(buf)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         if (!SSL_add_file_cert_subjects_to_stack(stack, buf)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (errno) { | 
					
						
							|  |  |  |         SYSerr(SYS_F_OPENDIR, get_last_sys_error()); | 
					
						
							|  |  |  |         ERR_add_error_data(3, "OPENSSL_DIR_read(&ctx, '", dir, "')"); | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK, ERR_R_SYS_LIB); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     if (d) | 
					
						
							|  |  |  |         OPENSSL_DIR_end(&d); | 
					
						
							| 
									
										
										
										
											2016-03-01 01:26:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-10-04 20:27:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  | /* Add a certificate to the WPACKET */ | 
					
						
							|  |  |  | static int ssl_add_cert_to_buf(WPACKET *pkt, X509 *x) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |     int len; | 
					
						
							|  |  |  |     unsigned char *outbytes; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |     len = i2d_X509(x, NULL); | 
					
						
							|  |  |  |     if (len < 0) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_BUF_LIB); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |     if (!WPACKET_sub_allocate_bytes_u24(pkt, len, &outbytes) | 
					
						
							|  |  |  |             || i2d_X509(x, &outbytes) != len) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_ADD_CERT_TO_BUF, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2016-04-25 23:05:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-26 23:47:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-11 04:34:48 +08:00
										 |  |  | /* Add certificate chain to internal SSL BUF_MEM structure */ | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  | int ssl_add_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     int i, chain_count; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509 *x; | 
					
						
							|  |  |  |     STACK_OF(X509) *extra_certs; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     STACK_OF(X509) *chain = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509_STORE *chain_store; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-20 17:16:15 +08:00
										 |  |  |     if (cpk == NULL || cpk->x509 == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     x = cpk->x509; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If we have a certificate specific chain use it, else use parent ctx. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (cpk->chain) | 
					
						
							|  |  |  |         extra_certs = cpk->chain; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         extra_certs = s->ctx->extra_certs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs) | 
					
						
							|  |  |  |         chain_store = NULL; | 
					
						
							|  |  |  |     else if (s->cert->chain_store) | 
					
						
							|  |  |  |         chain_store = s->cert->chain_store; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         chain_store = s->ctx->cert_store; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (chain_store) { | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |         X509_STORE_CTX *xs_ctx = X509_STORE_CTX_new(); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         if (xs_ctx == NULL) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |             return (0); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!X509_STORE_CTX_init(xs_ctx, chain_store, x, NULL)) { | 
					
						
							|  |  |  |             X509_STORE_CTX_free(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB); | 
					
						
							|  |  |  |             return (0); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-11-11 18:17:22 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * It is valid for the chain not to be complete (because normally we | 
					
						
							|  |  |  |          * don't include the root cert in the chain). Therefore we deliberately | 
					
						
							|  |  |  |          * ignore the error return from this call. We're not actually verifying | 
					
						
							|  |  |  |          * the cert - we're just building as much of the chain as we can | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |         (void)X509_verify_cert(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         /* Don't leave errors in the queue */ | 
					
						
							|  |  |  |         ERR_clear_error(); | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |         chain = X509_STORE_CTX_get0_chain(xs_ctx); | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         i = ssl_security_cert_chain(s, chain, NULL, 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (i != 1) { | 
					
						
							| 
									
										
										
										
											2016-03-19 10:09:41 +08:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  |             /* Dummy error calls so mkerr generates them */ | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL); | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL); | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |             X509_STORE_CTX_free(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         chain_count = sk_X509_num(chain); | 
					
						
							|  |  |  |         for (i = 0; i < chain_count; i++) { | 
					
						
							|  |  |  |             x = sk_X509_value(chain, i); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |             if (!ssl_add_cert_to_buf(pkt, x)) { | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |                 X509_STORE_CTX_free(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         X509_STORE_CTX_free(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         i = ssl_security_cert_chain(s, extra_certs, x, 0); | 
					
						
							|  |  |  |         if (i != 1) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |         if (!ssl_add_cert_to_buf(pkt, x)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         for (i = 0; i < sk_X509_num(extra_certs); i++) { | 
					
						
							|  |  |  |             x = sk_X509_value(extra_certs, i); | 
					
						
							| 
									
										
										
										
											2016-09-14 18:41:27 +08:00
										 |  |  |             if (!ssl_add_cert_to_buf(pkt, x)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-26 23:47:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 07:34:28 +08:00
										 |  |  | /* Build a certificate chain for current certificate */ | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | int ssl_build_cert_chain(SSL *s, SSL_CTX *ctx, int flags) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CERT *c = s ? s->cert : ctx->cert; | 
					
						
							|  |  |  |     CERT_PKEY *cpk = c->key; | 
					
						
							|  |  |  |     X509_STORE *chain_store = NULL; | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX *xs_ctx = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     STACK_OF(X509) *chain = NULL, *untrusted = NULL; | 
					
						
							|  |  |  |     X509 *x; | 
					
						
							|  |  |  |     int i, rv = 0; | 
					
						
							|  |  |  |     unsigned long error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!cpk->x509) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_NO_CERTIFICATE_SET); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Rearranging and check the chain: add everything to a store */ | 
					
						
							|  |  |  |     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) { | 
					
						
							|  |  |  |         chain_store = X509_STORE_new(); | 
					
						
							| 
									
										
										
										
											2015-10-30 18:05:53 +08:00
										 |  |  |         if (chain_store == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         for (i = 0; i < sk_X509_num(cpk->chain); i++) { | 
					
						
							|  |  |  |             x = sk_X509_value(cpk->chain, i); | 
					
						
							|  |  |  |             if (!X509_STORE_add_cert(chain_store, x)) { | 
					
						
							|  |  |  |                 error = ERR_peek_last_error(); | 
					
						
							|  |  |  |                 if (ERR_GET_LIB(error) != ERR_LIB_X509 || | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  |                     ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     goto err; | 
					
						
							|  |  |  |                 ERR_clear_error(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* Add EE cert too: it might be self signed */ | 
					
						
							|  |  |  |         if (!X509_STORE_add_cert(chain_store, cpk->x509)) { | 
					
						
							|  |  |  |             error = ERR_peek_last_error(); | 
					
						
							|  |  |  |             if (ERR_GET_LIB(error) != ERR_LIB_X509 || | 
					
						
							|  |  |  |                 ERR_GET_REASON(error) != X509_R_CERT_ALREADY_IN_HASH_TABLE) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             ERR_clear_error(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (c->chain_store) | 
					
						
							|  |  |  |             chain_store = c->chain_store; | 
					
						
							|  |  |  |         else if (s) | 
					
						
							|  |  |  |             chain_store = s->ctx->cert_store; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             chain_store = ctx->cert_store; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (flags & SSL_BUILD_CHAIN_FLAG_UNTRUSTED) | 
					
						
							|  |  |  |             untrusted = cpk->chain; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     xs_ctx = X509_STORE_CTX_new(); | 
					
						
							|  |  |  |     if (xs_ctx == NULL) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!X509_STORE_CTX_init(xs_ctx, chain_store, cpk->x509, untrusted)) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, ERR_R_X509_LIB); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Set suite B flags if needed */ | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX_set_flags(xs_ctx, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                              c->cert_flags & SSL_CERT_FLAG_SUITEB_128_LOS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     i = X509_verify_cert(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (i <= 0 && flags & SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR) { | 
					
						
							|  |  |  |         if (flags & SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR) | 
					
						
							|  |  |  |             ERR_clear_error(); | 
					
						
							|  |  |  |         i = 1; | 
					
						
							|  |  |  |         rv = 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (i > 0) | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         chain = X509_STORE_CTX_get1_chain(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (i <= 0) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, SSL_R_CERTIFICATE_VERIFY_FAILED); | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |         i = X509_STORE_CTX_get_error(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ERR_add_error_data(2, "Verify error:", | 
					
						
							|  |  |  |                            X509_verify_cert_error_string(i)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Remove EE certificate from chain */ | 
					
						
							|  |  |  |     x = sk_X509_shift(chain); | 
					
						
							|  |  |  |     X509_free(x); | 
					
						
							|  |  |  |     if (flags & SSL_BUILD_CHAIN_FLAG_NO_ROOT) { | 
					
						
							|  |  |  |         if (sk_X509_num(chain) > 0) { | 
					
						
							|  |  |  |             /* See if last cert is self signed */ | 
					
						
							|  |  |  |             x = sk_X509_value(chain, sk_X509_num(chain) - 1); | 
					
						
							| 
									
										
										
										
											2015-09-03 05:01:18 +08:00
										 |  |  |             if (X509_get_extension_flags(x) & EXFLAG_SS) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 x = sk_X509_pop(chain); | 
					
						
							|  |  |  |                 X509_free(x); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Check security level of all CA certificates: EE will have been checked | 
					
						
							|  |  |  |      * already. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     for (i = 0; i < sk_X509_num(chain); i++) { | 
					
						
							|  |  |  |         x = sk_X509_value(chain, i); | 
					
						
							|  |  |  |         rv = ssl_security_cert(s, ctx, x, 0, 0); | 
					
						
							|  |  |  |         if (rv != 1) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_SSL_BUILD_CERT_CHAIN, rv); | 
					
						
							|  |  |  |             sk_X509_pop_free(chain, X509_free); | 
					
						
							|  |  |  |             rv = 0; | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     sk_X509_pop_free(cpk->chain, X509_free); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     cpk->chain = chain; | 
					
						
							|  |  |  |     if (rv == 0) | 
					
						
							|  |  |  |         rv = 1; | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     if (flags & SSL_BUILD_CHAIN_FLAG_CHECK) | 
					
						
							|  |  |  |         X509_STORE_free(chain_store); | 
					
						
							| 
									
										
										
										
											2016-04-15 11:59:26 +08:00
										 |  |  |     X509_STORE_CTX_free(xs_ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return rv; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-07-24 07:34:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     X509_STORE **pstore; | 
					
						
							|  |  |  |     if (chain) | 
					
						
							|  |  |  |         pstore = &c->chain_store; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         pstore = &c->verify_store; | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_STORE_free(*pstore); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     *pstore = store; | 
					
						
							|  |  |  |     if (ref && store) | 
					
						
							| 
									
										
										
										
											2016-03-02 02:06:15 +08:00
										 |  |  |         X509_STORE_up_ref(store); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 01:03:17 +08:00
										 |  |  | static int ssl_security_default_callback(const SSL *s, const SSL_CTX *ctx, | 
					
						
							|  |  |  |                                          int op, int bits, int nid, void *other, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                          void *ex) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int level, minbits; | 
					
						
							|  |  |  |     static const int minbits_table[5] = { 80, 112, 128, 192, 256 }; | 
					
						
							|  |  |  |     if (ctx) | 
					
						
							|  |  |  |         level = SSL_CTX_get_security_level(ctx); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         level = SSL_get_security_level(s); | 
					
						
							| 
									
										
										
										
											2016-01-14 14:16:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (level <= 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * No EDH keys weaker than 1024-bits even at level 0, otherwise, | 
					
						
							|  |  |  |          * anything goes. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (op == SSL_SECOP_TMP_DH && bits < 80) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2016-01-14 14:16:16 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (level > 5) | 
					
						
							|  |  |  |         level = 5; | 
					
						
							|  |  |  |     minbits = minbits_table[level - 1]; | 
					
						
							|  |  |  |     switch (op) { | 
					
						
							|  |  |  |     case SSL_SECOP_CIPHER_SUPPORTED: | 
					
						
							|  |  |  |     case SSL_SECOP_CIPHER_SHARED: | 
					
						
							|  |  |  |     case SSL_SECOP_CIPHER_CHECK: | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             const SSL_CIPHER *c = other; | 
					
						
							|  |  |  |             /* No ciphers below security level */ | 
					
						
							|  |  |  |             if (bits < minbits) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* No unauthenticated ciphersuites */ | 
					
						
							|  |  |  |             if (c->algorithm_auth & SSL_aNULL) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* No MD5 mac ciphersuites */ | 
					
						
							|  |  |  |             if (c->algorithm_mac & SSL_MD5) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* SHA1 HMAC is 160 bits of security */ | 
					
						
							|  |  |  |             if (minbits > 160 && c->algorithm_mac & SSL_SHA1) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* Level 2: no RC4 */ | 
					
						
							|  |  |  |             if (level >= 2 && c->algorithm_enc == SSL_RC4) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* Level 3: forward secure ciphersuites only */ | 
					
						
							|  |  |  |             if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH))) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     case SSL_SECOP_VERSION: | 
					
						
							| 
									
										
										
										
											2015-12-29 16:24:17 +08:00
										 |  |  |         if (!SSL_IS_DTLS(s)) { | 
					
						
							|  |  |  |             /* SSLv3 not allowed at level 2 */ | 
					
						
							|  |  |  |             if (nid <= SSL3_VERSION && level >= 2) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* TLS v1.1 and above only for level 3 */ | 
					
						
							|  |  |  |             if (nid <= TLS1_VERSION && level >= 3) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             /* TLS v1.2 only for level 4 and above */ | 
					
						
							|  |  |  |             if (nid <= TLS1_1_VERSION && level >= 4) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             /* DTLS v1.2 only for level 4 and above */ | 
					
						
							|  |  |  |             if (DTLS_VERSION_LT(nid, DTLS1_2_VERSION) && level >= 4) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case SSL_SECOP_COMPRESSION: | 
					
						
							|  |  |  |         if (level >= 2) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case SSL_SECOP_TICKET: | 
					
						
							|  |  |  |         if (level >= 3) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         if (bits < minbits) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-08 03:44:27 +08:00
										 |  |  | int ssl_security(const SSL *s, int op, int bits, int nid, void *other) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return s->cert->sec_cb(s, NULL, op, bits, nid, other, s->cert->sec_ex); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-12-15 21:32:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-08 03:44:27 +08:00
										 |  |  | int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid, void *other) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ctx->cert->sec_cb(NULL, ctx, op, bits, nid, other, | 
					
						
							|  |  |  |                              ctx->cert->sec_ex); | 
					
						
							|  |  |  | } |