os/ossrv/ssl/libssl/inc/libssl_wsd.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     3 
     4 Redistribution and use in source and binary forms, with or without 
     5 modification, are permitted provided that the following conditions are met:
     6 
     7 * Redistributions of source code must retain the above copyright notice, this 
     8   list of conditions and the following disclaimer.
     9 * Redistributions in binary form must reproduce the above copyright notice, 
    10   this list of conditions and the following disclaimer in the documentation 
    11   and/or other materials provided with the distribution.
    12 * Neither the name of Nokia Corporation nor the names of its contributors 
    13   may be used to endorse or promote products derived from this software 
    14   without specific prior written permission.
    15 
    16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
    17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
    18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
    19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
    20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
    21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
    22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
    23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
    24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    26 
    27 Description:
    28 */
    29 
    30  
    31 #ifndef _LIBSSL_WSD_H_
    32 #define _LIBSSL_WSD_H_
    33 
    34 
    35 #include <openssl/bio.h>
    36 #include <openssl/ssl.h>
    37 #include "libssl_wsd_defs.h"
    38 
    39 #ifdef EMULATOR
    40 
    41 
    42 #define SSL_MD_NUM_IDX	2
    43 #define SSL_ENC_NUM_IDX	9
    44 
    45 #define SSL_STR_FUNCTS_NUM 172
    46 #define SSL_STR_REASONS_NUM 238
    47 
    48 #define SSL3_MAX_NUM_CIPHERS 87 /* Must be updated once new ciphers are added. */    
    49 #define SSL2_MAX_NUM_CIPHERS 10 /* Must be updated once new ciphers are added. */	
    50 
    51 #define SSL3_NUM_CIPHERS (sizeof(temp_ssl3_ciphers)/sizeof(SSL_CIPHER))
    52 #define SSL2_NUM_CIPHERS (sizeof(temp_ssl2_ciphers)/sizeof(SSL_CIPHER))
    53 
    54 /* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff
    55  * It is a bit of a mess of functions, but hell, think of it as
    56  * an opaque structure :-) */
    57 typedef struct ssl3_enc_method
    58 	{
    59 	int (*enc)(SSL *, int);
    60 	int (*mac)(SSL *, unsigned char *, int);
    61 	int (*setup_key_block)(SSL *);
    62 	int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int);
    63 	int (*change_cipher_state)(SSL *, int);
    64 	int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *);
    65 	int finish_mac_length;
    66 	int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *);
    67 	const char *client_finished_label;
    68 	int client_finished_label_len;
    69 	const char *server_finished_label;
    70 	int server_finished_label_len;
    71 	int (*alert_value)(int);
    72 	} SSL3_ENC_METHOD;
    73 
    74 typedef struct{
    75 
    76 			/* bio_ssl.c */
    77 			VARIABLE_DECL(methods_sslp,s,bio_ssl,BIO_METHOD) //static
    78 			
    79 			/* d1_meth.c */
    80 			VARIABLE_DECL(DTLSv1_method_data,s,d1_meth,SSL_METHOD) //static
    81 			
    82 			/* d1_clnt.c */
    83 			VARIABLE_DECL(DTLSv1_client_method_data,s,d1_clnt,SSL_METHOD) //static
    84 			
    85 			/* d1_lib.c */
    86 			VARIABLE_DECL(dtlsv1_base_method_data,s,d1_lib,SSL_METHOD) //static
    87 			
    88 			/* d1_srvr.c */
    89 			VARIABLE_DECL(DTLSv1_server_method_data,s,d1_srvr,SSL_METHOD) //static
    90 			
    91 			/* s23_clnt.c */
    92 			VARIABLE_DECL(SSLv23_client_method_data,s,s23_clnt,SSL_METHOD) //static
    93 			
    94 			/* s23_lib.c */
    95 			VARIABLE_DECL(sslv23_base_method_data,s,s23_lib,SSL_METHOD) //static
    96 			
    97 			/* s23_meth.c */
    98 			VARIABLE_DECL(SSLv23_method_data,s,s23_meth,SSL_METHOD) //static
    99 			
   100 			/* s23_srvr.c */
   101 			VARIABLE_DECL(SSLv23_server_method_data,s,s23_srvr,SSL_METHOD) //static
   102 			
   103 			/* s2_clnt.c */
   104 			VARIABLE_DECL(SSLv2_client_method_data,s,s2_clnt,SSL_METHOD) //static
   105 			
   106 			/* s2_lib.c */
   107 			VARIABLE_DECL(sslv2_base_method_data,s,s2_lib,SSL_METHOD) //static
   108 			
   109 			/* s2_meth.c */
   110 			VARIABLE_DECL(SSLv2_method_data,s,s2_meth,SSL_METHOD) //static
   111 			
   112 			/* s2_srvr.c */
   113 			VARIABLE_DECL(SSLv2_server_method_data,s,s2_srvr,SSL_METHOD) //static
   114 			
   115 			/* s3_clnt.c */
   116 			VARIABLE_DECL(SSLv3_client_method_data,s,s3_clnt,SSL_METHOD) //static
   117 			
   118 			/* s3_lib.c */
   119 			VARIABLE_DECL(sslv3_base_method_data,s,s3_lib,SSL_METHOD) //static
   120 			
   121 			/* s3_meth.c */
   122 			VARIABLE_DECL(SSLv3_method_data,s,s3_meth,SSL_METHOD) //static
   123 			
   124 			/* s3_srvr.c */
   125 			VARIABLE_DECL(SSLv3_server_method_data,s,s3_srvr,SSL_METHOD) //static
   126 			
   127 			/* t1_clnt.c */
   128 			VARIABLE_DECL(TLSv1_client_method_data,s,t1_clnt,SSL_METHOD) //static
   129 			
   130 			/* t1_lib.c */
   131 			VARIABLE_DECL(tlsv1_base_method_data,s,t1_lib,SSL_METHOD) //static
   132 			
   133 			/* t1_srvr.c */
   134 			VARIABLE_DECL(TLSv1_server_method_data,s,t1_srvr,SSL_METHOD) //static
   135 			
   136 			/* t1_meth.c */
   137 			VARIABLE_DECL(TLSv1_method_data,s,t1_meth,SSL_METHOD) //static
   138 			
   139 			/* ssl_cert.c */
   140 			VARIABLE_DECL(ssl_x509_store_ctx_idx,s,ssl_cert,volatile int) //static
   141 			
   142 			/* ssl_ciph.c */
   143 			VARIABLE_DECL(ssl_comp_methods,s,ssl_ciph,STACK_OF(SSL_COMP) *) //static
   144 			
   145 			/* ssl_ciph.c */
   146 			VARIABLE_DECL_ARRAY(ssl_cipher_methods,s,ssl_ciph,const EVP_CIPHER *,SSL_ENC_NUM_IDX) //static
   147 			
   148 			/* ssl_ciph.c */
   149 			VARIABLE_DECL_ARRAY(ssl_digest_methods,s,ssl_ciph,const EVP_MD *,SSL_MD_NUM_IDX) //static
   150 						
   151 			
   152 			/* ssl_err.c */
   153 			VARIABLE_DECL_ARRAY(SSL_str_functs,s,ssl_err,ERR_STRING_DATA,SSL_STR_FUNCTS_NUM) //static
   154 						
   155 			/* ssl_err.c */
   156 			VARIABLE_DECL_ARRAY(SSL_str_reasons,s,ssl_err,ERR_STRING_DATA,SSL_STR_REASONS_NUM) //static
   157 			
   158 			/* s3_lib.c */
   159 			VARIABLE_DECL_ARRAY(ssl3_ciphers,g,s3_lib,SSL_CIPHER,SSL3_MAX_NUM_CIPHERS) //global
   160 			
   161 			/* s3_lib.c */
   162 			VARIABLE_DECL_ARRAY(ssl2_ciphers,g,s2_lib,SSL_CIPHER,SSL2_MAX_NUM_CIPHERS) //global
   163 
   164 			/* ssl_lib.c */
   165 			VARIABLE_DECL(ssl3_undef_enc_method,g,ssl_lib,SSL3_ENC_METHOD) //static
   166 			
   167 			/* d1_lib.c */
   168 			VARIABLE_DECL(DTLSv1_enc_data,g,d1_lib,SSL3_ENC_METHOD) //static
   169 			
   170 			/* s3_lib.c */
   171 			VARIABLE_DECL(SSLv3_enc_data,g,s3_lib,SSL3_ENC_METHOD) //static
   172 
   173 			/* t1_lib.c */
   174 			VARIABLE_DECL(TLSv1_enc_data,g,t1_lib,SSL3_ENC_METHOD) //static
   175 			
   176 			
   177 }_libssl_wsd;
   178 
   179 
   180 
   181 #ifdef __cplusplus
   182 extern "C" {
   183 #endif
   184 
   185 
   186 void InitSSLWsdVar(struct _libssl_wsd *p);
   187 
   188 //void Init_methods_sslp(/*_libssl_wsd *ptr*/);
   189 
   190 _libssl_wsd* Libssl_ImpurePtr();
   191 
   192 #ifdef __cplusplus
   193 }
   194 #endif
   195 
   196 #endif /* EMULATOR */
   197 #endif /* _LIBSSL_WSD_H_ */