summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h300
1 files changed, 198 insertions, 102 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index ed4ddbbae6..4c78393f3f 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -56,7 +56,7 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58/* ==================================================================== 58/* ====================================================================
59 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. 59 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
60 * 60 *
61 * Redistribution and use in source and binary forms, with or without 61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions 62 * modification, are permitted provided that the following conditions
@@ -113,6 +113,32 @@
113 * ECC cipher suite support in OpenSSL originally developed by 113 * ECC cipher suite support in OpenSSL originally developed by
114 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. 114 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
115 */ 115 */
116/* ====================================================================
117 * Copyright 2005 Nokia. All rights reserved.
118 *
119 * The portions of the attached software ("Contribution") is developed by
120 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
121 * license.
122 *
123 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
125 * support (see RFC 4279) to OpenSSL.
126 *
127 * No patent licenses or other rights except those expressly stated in
128 * the OpenSSL open source license shall be deemed granted or received
129 * expressly, by implication, estoppel, or otherwise.
130 *
131 * No assurances are provided by Nokia that the Contribution does not
132 * infringe the patent or other intellectual property rights of any third
133 * party or that the license provides you with all the necessary rights
134 * to make use of the Contribution.
135 *
136 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
137 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
138 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
139 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
140 * OTHERWISE.
141 */
116 142
117#ifndef HEADER_SSL_LOCL_H 143#ifndef HEADER_SSL_LOCL_H
118#define HEADER_SSL_LOCL_H 144#define HEADER_SSL_LOCL_H
@@ -251,58 +277,84 @@
251 * that the different entities within are mutually exclusive: 277 * that the different entities within are mutually exclusive:
252 * ONLY ONE BIT PER MASK CAN BE SET AT A TIME. 278 * ONLY ONE BIT PER MASK CAN BE SET AT A TIME.
253 */ 279 */
254#define SSL_MKEY_MASK 0x000000FFL 280
281/* Bits for algorithm_mkey (key exchange algorithm) */
255#define SSL_kRSA 0x00000001L /* RSA key exchange */ 282#define SSL_kRSA 0x00000001L /* RSA key exchange */
256#define SSL_kDHr 0x00000002L /* DH cert RSA CA cert */ 283#define SSL_kDHr 0x00000002L /* DH cert, RSA CA cert */ /* no such ciphersuites supported! */
257#define SSL_kDHd 0x00000004L /* DH cert DSA CA cert */ 284#define SSL_kDHd 0x00000004L /* DH cert, DSA CA cert */ /* no such ciphersuite supported! */
258#define SSL_kFZA 0x00000008L 285#define SSL_kEDH 0x00000008L /* tmp DH key no DH cert */
259#define SSL_kEDH 0x00000010L /* tmp DH key no DH cert */ 286#define SSL_kKRB5 0x00000010L /* Kerberos5 key exchange */
260#define SSL_kKRB5 0x00000020L /* Kerberos5 key exchange */ 287#define SSL_kECDHr 0x00000020L /* ECDH cert, RSA CA cert */
261#define SSL_kECDH 0x00000040L /* ECDH w/ long-term keys */ 288#define SSL_kECDHe 0x00000040L /* ECDH cert, ECDSA CA cert */
262#define SSL_kECDHE 0x00000080L /* ephemeral ECDH */ 289#define SSL_kEECDH 0x00000080L /* ephemeral ECDH */
263#define SSL_EDH (SSL_kEDH|(SSL_AUTH_MASK^SSL_aNULL)) 290#define SSL_kPSK 0x00000100L /* PSK */
264 291#define SSL_kGOST 0x00000200L /* GOST key exchange */
265#define SSL_AUTH_MASK 0x00007F00L 292
266#define SSL_aRSA 0x00000100L /* Authenticate with RSA */ 293/* Bits for algorithm_auth (server authentication) */
267#define SSL_aDSS 0x00000200L /* Authenticate with DSS */ 294#define SSL_aRSA 0x00000001L /* RSA auth */
268#define SSL_DSS SSL_aDSS 295#define SSL_aDSS 0x00000002L /* DSS auth */
269#define SSL_aFZA 0x00000400L 296#define SSL_aNULL 0x00000004L /* no auth (i.e. use ADH or AECDH) */
270#define SSL_aNULL 0x00000800L /* no Authenticate, ADH */ 297#define SSL_aDH 0x00000008L /* Fixed DH auth (kDHd or kDHr) */ /* no such ciphersuites supported! */
271#define SSL_aDH 0x00001000L /* no Authenticate, ADH */ 298#define SSL_aECDH 0x00000010L /* Fixed ECDH auth (kECDHe or kECDHr) */
272#define SSL_aKRB5 0x00002000L /* Authenticate with KRB5 */ 299#define SSL_aKRB5 0x00000020L /* KRB5 auth */
273#define SSL_aECDSA 0x00004000L /* Authenticate with ECDSA */ 300#define SSL_aECDSA 0x00000040L /* ECDSA auth*/
274 301#define SSL_aPSK 0x00000080L /* PSK auth */
275#define SSL_NULL (SSL_eNULL) 302#define SSL_aGOST94 0x00000100L /* GOST R 34.10-94 signature auth */
276#define SSL_ADH (SSL_kEDH|SSL_aNULL) 303#define SSL_aGOST01 0x00000200L /* GOST R 34.10-2001 signature auth */
277#define SSL_RSA (SSL_kRSA|SSL_aRSA) 304
278#define SSL_DH (SSL_kDHr|SSL_kDHd|SSL_kEDH) 305
279#define SSL_ECDH (SSL_kECDH|SSL_kECDHE) 306/* Bits for algorithm_enc (symmetric encryption) */
280#define SSL_FZA (SSL_aFZA|SSL_kFZA|SSL_eFZA) 307#define SSL_DES 0x00000001L
281#define SSL_KRB5 (SSL_kKRB5|SSL_aKRB5) 308#define SSL_3DES 0x00000002L
282 309#define SSL_RC4 0x00000004L
283#define SSL_ENC_MASK 0x1C3F8000L 310#define SSL_RC2 0x00000008L
284#define SSL_DES 0x00008000L 311#define SSL_IDEA 0x00000010L
285#define SSL_3DES 0x00010000L 312#define SSL_eNULL 0x00000020L
286#define SSL_RC4 0x00020000L 313#define SSL_AES128 0x00000040L
287#define SSL_RC2 0x00040000L 314#define SSL_AES256 0x00000080L
288#define SSL_IDEA 0x00080000L 315#define SSL_CAMELLIA128 0x00000100L
289#define SSL_eFZA 0x00100000L 316#define SSL_CAMELLIA256 0x00000200L
290#define SSL_eNULL 0x00200000L 317#define SSL_eGOST2814789CNT 0x00000400L
291#define SSL_AES 0x04000000L 318#define SSL_SEED 0x00000800L
292#define SSL_CAMELLIA 0x08000000L 319
293#define SSL_SEED 0x10000000L 320#define SSL_AES (SSL_AES128|SSL_AES256)
294 321#define SSL_CAMELLIA (SSL_CAMELLIA128|SSL_CAMELLIA256)
295#define SSL_MAC_MASK 0x00c00000L 322
296#define SSL_MD5 0x00400000L 323
297#define SSL_SHA1 0x00800000L 324/* Bits for algorithm_mac (symmetric authentication) */
298#define SSL_SHA (SSL_SHA1) 325#define SSL_MD5 0x00000001L
299 326#define SSL_SHA1 0x00000002L
300#define SSL_SSL_MASK 0x03000000L 327#define SSL_GOST94 0x00000004L
301#define SSL_SSLV2 0x01000000L 328#define SSL_GOST89MAC 0x00000008L
302#define SSL_SSLV3 0x02000000L 329
330/* Bits for algorithm_ssl (protocol version) */
331#define SSL_SSLV2 0x00000001L
332#define SSL_SSLV3 0x00000002L
303#define SSL_TLSV1 SSL_SSLV3 /* for now */ 333#define SSL_TLSV1 SSL_SSLV3 /* for now */
304 334
305/* we have used 1fffffff - 3 bits left to go. */ 335
336/* Bits for algorithm2 (handshake digests and other extra flags) */
337
338#define SSL_HANDSHAKE_MAC_MD5 0x10
339#define SSL_HANDSHAKE_MAC_SHA 0x20
340#define SSL_HANDSHAKE_MAC_GOST94 0x40
341#define SSL_HANDSHAKE_MAC_DEFAULT (SSL_HANDSHAKE_MAC_MD5 | SSL_HANDSHAKE_MAC_SHA)
342
343/* When adding new digest in the ssl_ciph.c and increment SSM_MD_NUM_IDX
344 * make sure to update this constant too */
345#define SSL_MAX_DIGEST 4
346
347#define TLS1_PRF_DGST_SHIFT 8
348#define TLS1_PRF_MD5 (SSL_HANDSHAKE_MAC_MD5 << TLS1_PRF_DGST_SHIFT)
349#define TLS1_PRF_SHA1 (SSL_HANDSHAKE_MAC_SHA << TLS1_PRF_DGST_SHIFT)
350#define TLS1_PRF_GOST94 (SSL_HANDSHAKE_MAC_GOST94 << TLS1_PRF_DGST_SHIFT)
351#define TLS1_PRF (TLS1_PRF_MD5 | TLS1_PRF_SHA1)
352
353/* Stream MAC for GOST ciphersuites from cryptopro draft
354 * (currently this also goes into algorithm2) */
355#define TLS1_STREAM_MAC 0x04
356
357
306 358
307/* 359/*
308 * Export and cipher strength information. For each cipher we have to decide 360 * Export and cipher strength information. For each cipher we have to decide
@@ -320,10 +372,11 @@
320 * be possible. 372 * be possible.
321 */ 373 */
322#define SSL_EXP_MASK 0x00000003L 374#define SSL_EXP_MASK 0x00000003L
375#define SSL_STRONG_MASK 0x000001fcL
376
323#define SSL_NOT_EXP 0x00000001L 377#define SSL_NOT_EXP 0x00000001L
324#define SSL_EXPORT 0x00000002L 378#define SSL_EXPORT 0x00000002L
325 379
326#define SSL_STRONG_MASK 0x000000fcL
327#define SSL_STRONG_NONE 0x00000004L 380#define SSL_STRONG_NONE 0x00000004L
328#define SSL_EXP40 0x00000008L 381#define SSL_EXP40 0x00000008L
329#define SSL_MICRO (SSL_EXP40) 382#define SSL_MICRO (SSL_EXP40)
@@ -357,17 +410,14 @@
357#define SSL_C_IS_EXPORT40(c) SSL_IS_EXPORT40((c)->algo_strength) 410#define SSL_C_IS_EXPORT40(c) SSL_IS_EXPORT40((c)->algo_strength)
358 411
359#define SSL_EXPORT_KEYLENGTH(a,s) (SSL_IS_EXPORT40(s) ? 5 : \ 412#define SSL_EXPORT_KEYLENGTH(a,s) (SSL_IS_EXPORT40(s) ? 5 : \
360 ((a)&SSL_ENC_MASK) == SSL_DES ? 8 : 7) 413 (a) == SSL_DES ? 8 : 7)
361#define SSL_EXPORT_PKEYLENGTH(a) (SSL_IS_EXPORT40(a) ? 512 : 1024) 414#define SSL_EXPORT_PKEYLENGTH(a) (SSL_IS_EXPORT40(a) ? 512 : 1024)
362#define SSL_C_EXPORT_KEYLENGTH(c) SSL_EXPORT_KEYLENGTH((c)->algorithms, \ 415#define SSL_C_EXPORT_KEYLENGTH(c) SSL_EXPORT_KEYLENGTH((c)->algorithm_enc, \
363 (c)->algo_strength) 416 (c)->algo_strength)
364#define SSL_C_EXPORT_PKEYLENGTH(c) SSL_EXPORT_PKEYLENGTH((c)->algo_strength) 417#define SSL_C_EXPORT_PKEYLENGTH(c) SSL_EXPORT_PKEYLENGTH((c)->algo_strength)
365 418
366 419
367#define SSL_ALL 0xffffffffL 420
368#define SSL_ALL_CIPHERS (SSL_MKEY_MASK|SSL_AUTH_MASK|SSL_ENC_MASK|\
369 SSL_MAC_MASK)
370#define SSL_ALL_STRENGTHS (SSL_EXP_MASK|SSL_STRONG_MASK)
371 421
372/* Mostly for SSLv3 */ 422/* Mostly for SSLv3 */
373#define SSL_PKEY_RSA_ENC 0 423#define SSL_PKEY_RSA_ENC 0
@@ -376,7 +426,9 @@
376#define SSL_PKEY_DH_RSA 3 426#define SSL_PKEY_DH_RSA 3
377#define SSL_PKEY_DH_DSA 4 427#define SSL_PKEY_DH_DSA 4
378#define SSL_PKEY_ECC 5 428#define SSL_PKEY_ECC 5
379#define SSL_PKEY_NUM 6 429#define SSL_PKEY_GOST94 6
430#define SSL_PKEY_GOST01 7
431#define SSL_PKEY_NUM 8
380 432
381/* SSL_kRSA <- RSA_ENC | (RSA_TMP & RSA_SIGN) | 433/* SSL_kRSA <- RSA_ENC | (RSA_TMP & RSA_SIGN) |
382 * <- (EXPORT & (RSA_ENC | RSA_TMP) & RSA_SIGN) 434 * <- (EXPORT & (RSA_ENC | RSA_TMP) & RSA_SIGN)
@@ -417,8 +469,10 @@ typedef struct cert_st
417 /* The following masks are for the key and auth 469 /* The following masks are for the key and auth
418 * algorithms that are supported by the certs below */ 470 * algorithms that are supported by the certs below */
419 int valid; 471 int valid;
420 unsigned long mask; 472 unsigned long mask_k;
421 unsigned long export_mask; 473 unsigned long mask_a;
474 unsigned long export_mask_k;
475 unsigned long export_mask_a;
422#ifndef OPENSSL_NO_RSA 476#ifndef OPENSSL_NO_RSA
423 RSA *rsa_tmp; 477 RSA *rsa_tmp;
424 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize); 478 RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
@@ -492,9 +546,9 @@ typedef struct ssl3_enc_method
492 int (*setup_key_block)(SSL *); 546 int (*setup_key_block)(SSL *);
493 int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int); 547 int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int);
494 int (*change_cipher_state)(SSL *, int); 548 int (*change_cipher_state)(SSL *, int);
495 int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *); 549 int (*final_finish_mac)(SSL *, const char *, int, unsigned char *);
496 int finish_mac_length; 550 int finish_mac_length;
497 int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *); 551 int (*cert_verify_mac)(SSL *, int, unsigned char *);
498 const char *client_finished_label; 552 const char *client_finished_label;
499 int client_finished_label_len; 553 int client_finished_label_len;
500 const char *server_finished_label; 554 const char *server_finished_label;
@@ -512,24 +566,35 @@ typedef struct ssl3_comp_st
512 } SSL3_COMP; 566 } SSL3_COMP;
513#endif 567#endif
514 568
569#ifndef OPENSSL_NO_BUF_FREELISTS
570typedef struct ssl3_buf_freelist_st
571 {
572 size_t chunklen;
573 unsigned int len;
574 struct ssl3_buf_freelist_entry_st *head;
575 } SSL3_BUF_FREELIST;
576
577typedef struct ssl3_buf_freelist_entry_st
578 {
579 struct ssl3_buf_freelist_entry_st *next;
580 } SSL3_BUF_FREELIST_ENTRY;
581#endif
582
515extern SSL3_ENC_METHOD ssl3_undef_enc_method; 583extern SSL3_ENC_METHOD ssl3_undef_enc_method;
516OPENSSL_EXTERN SSL_CIPHER ssl2_ciphers[]; 584OPENSSL_EXTERN const SSL_CIPHER ssl2_ciphers[];
517OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[]; 585OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];
518 586
519 587
520SSL_METHOD *ssl_bad_method(int ver); 588SSL_METHOD *ssl_bad_method(int ver);
521SSL_METHOD *sslv2_base_method(void);
522SSL_METHOD *sslv23_base_method(void);
523SSL_METHOD *sslv3_base_method(void);
524 589
525extern SSL3_ENC_METHOD TLSv1_enc_data; 590extern SSL3_ENC_METHOD TLSv1_enc_data;
526extern SSL3_ENC_METHOD SSLv3_enc_data; 591extern SSL3_ENC_METHOD SSLv3_enc_data;
527extern SSL3_ENC_METHOD DTLSv1_enc_data; 592extern SSL3_ENC_METHOD DTLSv1_enc_data;
528 593
529#define IMPLEMENT_tls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \ 594#define IMPLEMENT_tls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
530SSL_METHOD *func_name(void) \ 595const SSL_METHOD *func_name(void) \
531 { \ 596 { \
532 static SSL_METHOD func_name##_data= { \ 597 static const SSL_METHOD func_name##_data= { \
533 TLS1_VERSION, \ 598 TLS1_VERSION, \
534 tls1_new, \ 599 tls1_new, \
535 tls1_clear, \ 600 tls1_clear, \
@@ -564,9 +629,9 @@ SSL_METHOD *func_name(void) \
564 } 629 }
565 630
566#define IMPLEMENT_ssl3_meth_func(func_name, s_accept, s_connect, s_get_meth) \ 631#define IMPLEMENT_ssl3_meth_func(func_name, s_accept, s_connect, s_get_meth) \
567SSL_METHOD *func_name(void) \ 632const SSL_METHOD *func_name(void) \
568 { \ 633 { \
569 static SSL_METHOD func_name##_data= { \ 634 static const SSL_METHOD func_name##_data= { \
570 SSL3_VERSION, \ 635 SSL3_VERSION, \
571 ssl3_new, \ 636 ssl3_new, \
572 ssl3_clear, \ 637 ssl3_clear, \
@@ -601,9 +666,9 @@ SSL_METHOD *func_name(void) \
601 } 666 }
602 667
603#define IMPLEMENT_ssl23_meth_func(func_name, s_accept, s_connect, s_get_meth) \ 668#define IMPLEMENT_ssl23_meth_func(func_name, s_accept, s_connect, s_get_meth) \
604SSL_METHOD *func_name(void) \ 669const SSL_METHOD *func_name(void) \
605 { \ 670 { \
606 static SSL_METHOD func_name##_data= { \ 671 static const SSL_METHOD func_name##_data= { \
607 TLS1_VERSION, \ 672 TLS1_VERSION, \
608 tls1_new, \ 673 tls1_new, \
609 tls1_clear, \ 674 tls1_clear, \
@@ -638,9 +703,9 @@ SSL_METHOD *func_name(void) \
638 } 703 }
639 704
640#define IMPLEMENT_ssl2_meth_func(func_name, s_accept, s_connect, s_get_meth) \ 705#define IMPLEMENT_ssl2_meth_func(func_name, s_accept, s_connect, s_get_meth) \
641SSL_METHOD *func_name(void) \ 706const SSL_METHOD *func_name(void) \
642 { \ 707 { \
643 static SSL_METHOD func_name##_data= { \ 708 static const SSL_METHOD func_name##_data= { \
644 SSL2_VERSION, \ 709 SSL2_VERSION, \
645 ssl2_new, /* local */ \ 710 ssl2_new, /* local */ \
646 ssl2_clear, /* local */ \ 711 ssl2_clear, /* local */ \
@@ -675,9 +740,9 @@ SSL_METHOD *func_name(void) \
675 } 740 }
676 741
677#define IMPLEMENT_dtls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \ 742#define IMPLEMENT_dtls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
678SSL_METHOD *func_name(void) \ 743const SSL_METHOD *func_name(void) \
679 { \ 744 { \
680 static SSL_METHOD func_name##_data= { \ 745 static const SSL_METHOD func_name##_data= { \
681 DTLS1_VERSION, \ 746 DTLS1_VERSION, \
682 dtls1_new, \ 747 dtls1_new, \
683 dtls1_clear, \ 748 dtls1_clear, \
@@ -694,7 +759,7 @@ SSL_METHOD *func_name(void) \
694 dtls1_read_bytes, \ 759 dtls1_read_bytes, \
695 dtls1_write_app_data_bytes, \ 760 dtls1_write_app_data_bytes, \
696 dtls1_dispatch_alert, \ 761 dtls1_dispatch_alert, \
697 ssl3_ctrl, \ 762 dtls1_ctrl, \
698 ssl3_ctx_ctrl, \ 763 ssl3_ctx_ctrl, \
699 ssl3_get_cipher_by_char, \ 764 ssl3_get_cipher_by_char, \
700 ssl3_put_cipher_by_char, \ 765 ssl3_put_cipher_by_char, \
@@ -723,6 +788,8 @@ int ssl_set_peer_cert_type(SESS_CERT *c, int type);
723int ssl_get_new_session(SSL *s, int session); 788int ssl_get_new_session(SSL *s, int session);
724int ssl_get_prev_session(SSL *s, unsigned char *session,int len, const unsigned char *limit); 789int ssl_get_prev_session(SSL *s, unsigned char *session,int len, const unsigned char *limit);
725int ssl_cipher_id_cmp(const SSL_CIPHER *a,const SSL_CIPHER *b); 790int ssl_cipher_id_cmp(const SSL_CIPHER *a,const SSL_CIPHER *b);
791DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER,
792 ssl_cipher_id);
726int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, 793int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
727 const SSL_CIPHER * const *bp); 794 const SSL_CIPHER * const *bp);
728STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num, 795STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
@@ -735,15 +802,16 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *meth,
735 const char *rule_str); 802 const char *rule_str);
736void ssl_update_cache(SSL *s, int mode); 803void ssl_update_cache(SSL *s, int mode);
737int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc, 804int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
738 const EVP_MD **md,SSL_COMP **comp); 805 const EVP_MD **md,int *mac_pkey_type,int *mac_secret_size, SSL_COMP **comp);
806int ssl_get_handshake_digest(int i,long *mask,const EVP_MD **md);
739int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk); 807int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk);
740int ssl_undefined_function(SSL *s); 808int ssl_undefined_function(SSL *s);
741int ssl_undefined_void_function(void); 809int ssl_undefined_void_function(void);
742int ssl_undefined_const_function(const SSL *s); 810int ssl_undefined_const_function(const SSL *s);
743X509 *ssl_get_server_send_cert(SSL *); 811X509 *ssl_get_server_send_cert(SSL *);
744EVP_PKEY *ssl_get_sign_pkey(SSL *,SSL_CIPHER *); 812EVP_PKEY *ssl_get_sign_pkey(SSL *,const SSL_CIPHER *);
745int ssl_cert_type(X509 *x,EVP_PKEY *pkey); 813int ssl_cert_type(X509 *x,EVP_PKEY *pkey);
746void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher); 814void ssl_set_cert_masks(CERT *c, const SSL_CIPHER *cipher);
747STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s); 815STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s);
748int ssl_verify_alarm_type(long type); 816int ssl_verify_alarm_type(long type);
749void ssl_load_ciphers(void); 817void ssl_load_ciphers(void);
@@ -752,7 +820,7 @@ int ssl2_enc_init(SSL *s, int client);
752int ssl2_generate_key_material(SSL *s); 820int ssl2_generate_key_material(SSL *s);
753void ssl2_enc(SSL *s,int send_data); 821void ssl2_enc(SSL *s,int send_data);
754void ssl2_mac(SSL *s,unsigned char *mac,int send_data); 822void ssl2_mac(SSL *s,unsigned char *mac,int send_data);
755SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p); 823const SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p);
756int ssl2_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p); 824int ssl2_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p);
757int ssl2_part_read(SSL *s, unsigned long f, int i); 825int ssl2_part_read(SSL *s, unsigned long f, int i);
758int ssl2_do_write(SSL *s); 826int ssl2_do_write(SSL *s);
@@ -760,7 +828,7 @@ int ssl2_set_certificate(SSL *s, int type, int len, const unsigned char *data);
760void ssl2_return_error(SSL *s,int reason); 828void ssl2_return_error(SSL *s,int reason);
761void ssl2_write_error(SSL *s); 829void ssl2_write_error(SSL *s);
762int ssl2_num_ciphers(void); 830int ssl2_num_ciphers(void);
763SSL_CIPHER *ssl2_get_cipher(unsigned int u); 831const SSL_CIPHER *ssl2_get_cipher(unsigned int u);
764int ssl2_new(SSL *s); 832int ssl2_new(SSL *s);
765void ssl2_free(SSL *s); 833void ssl2_free(SSL *s);
766int ssl2_accept(SSL *s); 834int ssl2_accept(SSL *s);
@@ -777,7 +845,7 @@ long ssl2_ctx_callback_ctrl(SSL_CTX *s,int cmd, void (*fp)(void));
777int ssl2_pending(const SSL *s); 845int ssl2_pending(const SSL *s);
778long ssl2_default_timeout(void ); 846long ssl2_default_timeout(void );
779 847
780SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p); 848const SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p);
781int ssl3_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p); 849int ssl3_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p);
782void ssl3_init_finished_mac(SSL *s); 850void ssl3_init_finished_mac(SSL *s);
783int ssl3_send_server_certificate(SSL *s); 851int ssl3_send_server_certificate(SSL *s);
@@ -789,29 +857,34 @@ int ssl3_send_change_cipher_spec(SSL *s,int state_a,int state_b);
789int ssl3_change_cipher_state(SSL *s,int which); 857int ssl3_change_cipher_state(SSL *s,int which);
790void ssl3_cleanup_key_block(SSL *s); 858void ssl3_cleanup_key_block(SSL *s);
791int ssl3_do_write(SSL *s,int type); 859int ssl3_do_write(SSL *s,int type);
792void ssl3_send_alert(SSL *s,int level, int desc); 860int ssl3_send_alert(SSL *s,int level, int desc);
793int ssl3_generate_master_secret(SSL *s, unsigned char *out, 861int ssl3_generate_master_secret(SSL *s, unsigned char *out,
794 unsigned char *p, int len); 862 unsigned char *p, int len);
795int ssl3_get_req_cert_type(SSL *s,unsigned char *p); 863int ssl3_get_req_cert_type(SSL *s,unsigned char *p);
796long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok); 864long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
797int ssl3_send_finished(SSL *s, int a, int b, const char *sender,int slen); 865int ssl3_send_finished(SSL *s, int a, int b, const char *sender,int slen);
798int ssl3_num_ciphers(void); 866int ssl3_num_ciphers(void);
799SSL_CIPHER *ssl3_get_cipher(unsigned int u); 867const SSL_CIPHER *ssl3_get_cipher(unsigned int u);
800int ssl3_renegotiate(SSL *ssl); 868int ssl3_renegotiate(SSL *ssl);
801int ssl3_renegotiate_check(SSL *ssl); 869int ssl3_renegotiate_check(SSL *ssl);
802int ssl3_dispatch_alert(SSL *s); 870int ssl3_dispatch_alert(SSL *s);
803int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek); 871int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek);
804int ssl3_write_bytes(SSL *s, int type, const void *buf, int len); 872int ssl3_write_bytes(SSL *s, int type, const void *buf, int len);
805int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2, 873int ssl3_final_finish_mac(SSL *s, const char *sender, int slen,unsigned char *p);
806 const char *sender, int slen,unsigned char *p); 874int ssl3_cert_verify_mac(SSL *s, int md_nid, unsigned char *p);
807int ssl3_cert_verify_mac(SSL *s, EVP_MD_CTX *in, unsigned char *p);
808void ssl3_finish_mac(SSL *s, const unsigned char *buf, int len); 875void ssl3_finish_mac(SSL *s, const unsigned char *buf, int len);
809int ssl3_enc(SSL *s, int send_data); 876int ssl3_enc(SSL *s, int send_data);
810int ssl3_mac(SSL *ssl, unsigned char *md, int send_data); 877int n_ssl3_mac(SSL *ssl, unsigned char *md, int send_data);
878void ssl3_free_digest_list(SSL *s);
811unsigned long ssl3_output_cert_chain(SSL *s, X509 *x); 879unsigned long ssl3_output_cert_chain(SSL *s, X509 *x);
812SSL_CIPHER *ssl3_choose_cipher(SSL *ssl,STACK_OF(SSL_CIPHER) *clnt, 880SSL_CIPHER *ssl3_choose_cipher(SSL *ssl,STACK_OF(SSL_CIPHER) *clnt,
813 STACK_OF(SSL_CIPHER) *srvr); 881 STACK_OF(SSL_CIPHER) *srvr);
814int ssl3_setup_buffers(SSL *s); 882int ssl3_setup_buffers(SSL *s);
883int ssl3_setup_read_buffer(SSL *s);
884int ssl3_setup_write_buffer(SSL *s);
885int ssl3_release_read_buffer(SSL *s);
886int ssl3_release_write_buffer(SSL *s);
887int ssl3_digest_cached_records(SSL *s);
815int ssl3_new(SSL *s); 888int ssl3_new(SSL *s);
816void ssl3_free(SSL *s); 889void ssl3_free(SSL *s);
817int ssl3_accept(SSL *s); 890int ssl3_accept(SSL *s);
@@ -832,12 +905,12 @@ int ssl3_do_change_cipher_spec(SSL *ssl);
832long ssl3_default_timeout(void ); 905long ssl3_default_timeout(void );
833 906
834int ssl23_num_ciphers(void ); 907int ssl23_num_ciphers(void );
835SSL_CIPHER *ssl23_get_cipher(unsigned int u); 908const SSL_CIPHER *ssl23_get_cipher(unsigned int u);
836int ssl23_read(SSL *s, void *buf, int len); 909int ssl23_read(SSL *s, void *buf, int len);
837int ssl23_peek(SSL *s, void *buf, int len); 910int ssl23_peek(SSL *s, void *buf, int len);
838int ssl23_write(SSL *s, const void *buf, int len); 911int ssl23_write(SSL *s, const void *buf, int len);
839int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p); 912int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p);
840SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p); 913const SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p);
841long ssl23_default_timeout(void ); 914long ssl23_default_timeout(void );
842 915
843long tls1_default_timeout(void); 916long tls1_default_timeout(void);
@@ -862,14 +935,21 @@ int dtls1_read_failed(SSL *s, int code);
862int dtls1_buffer_message(SSL *s, int ccs); 935int dtls1_buffer_message(SSL *s, int ccs);
863int dtls1_retransmit_message(SSL *s, unsigned short seq, 936int dtls1_retransmit_message(SSL *s, unsigned short seq,
864 unsigned long frag_off, int *found); 937 unsigned long frag_off, int *found);
938int dtls1_get_queue_priority(unsigned short seq, int is_ccs);
939int dtls1_retransmit_buffered_messages(SSL *s);
865void dtls1_clear_record_buffer(SSL *s); 940void dtls1_clear_record_buffer(SSL *s);
866void dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr); 941void dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr);
867void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr); 942void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr);
868void dtls1_reset_seq_numbers(SSL *s, int rw); 943void dtls1_reset_seq_numbers(SSL *s, int rw);
869long dtls1_default_timeout(void); 944long dtls1_default_timeout(void);
870SSL_CIPHER *dtls1_get_cipher(unsigned int u); 945struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft);
871 946int dtls1_handle_timeout(SSL *s);
872 947const SSL_CIPHER *dtls1_get_cipher(unsigned int u);
948void dtls1_start_timer(SSL *s);
949void dtls1_stop_timer(SSL *s);
950int dtls1_is_timer_expired(SSL *s);
951void dtls1_double_timeout(SSL *s);
952int dtls1_send_newsession_ticket(SSL *s);
873 953
874/* some client-only functions */ 954/* some client-only functions */
875int ssl3_client_hello(SSL *s); 955int ssl3_client_hello(SSL *s);
@@ -879,12 +959,15 @@ int ssl3_get_new_session_ticket(SSL *s);
879int ssl3_get_cert_status(SSL *s); 959int ssl3_get_cert_status(SSL *s);
880int ssl3_get_server_done(SSL *s); 960int ssl3_get_server_done(SSL *s);
881int ssl3_send_client_verify(SSL *s); 961int ssl3_send_client_verify(SSL *s);
882int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey);
883int ssl3_send_client_certificate(SSL *s); 962int ssl3_send_client_certificate(SSL *s);
963int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey);
884int ssl3_send_client_key_exchange(SSL *s); 964int ssl3_send_client_key_exchange(SSL *s);
885int ssl3_get_key_exchange(SSL *s); 965int ssl3_get_key_exchange(SSL *s);
886int ssl3_get_server_certificate(SSL *s); 966int ssl3_get_server_certificate(SSL *s);
887int ssl3_check_cert_and_algorithm(SSL *s); 967int ssl3_check_cert_and_algorithm(SSL *s);
968#ifndef OPENSSL_NO_TLSEXT
969int ssl3_check_finished(SSL *s);
970#endif
888 971
889int dtls1_client_hello(SSL *s); 972int dtls1_client_hello(SSL *s);
890int dtls1_send_client_certificate(SSL *s); 973int dtls1_send_client_certificate(SSL *s);
@@ -922,7 +1005,6 @@ void tls1_free(SSL *s);
922void tls1_clear(SSL *s); 1005void tls1_clear(SSL *s);
923long tls1_ctrl(SSL *s,int cmd, long larg, void *parg); 1006long tls1_ctrl(SSL *s,int cmd, long larg, void *parg);
924long tls1_callback_ctrl(SSL *s,int cmd, void (*fp)(void)); 1007long tls1_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
925SSL_METHOD *tlsv1_base_method(void );
926 1008
927int dtls1_new(SSL *s); 1009int dtls1_new(SSL *s);
928int dtls1_accept(SSL *s); 1010int dtls1_accept(SSL *s);
@@ -930,7 +1012,6 @@ int dtls1_connect(SSL *s);
930void dtls1_free(SSL *s); 1012void dtls1_free(SSL *s);
931void dtls1_clear(SSL *s); 1013void dtls1_clear(SSL *s);
932long dtls1_ctrl(SSL *s,int cmd, long larg, void *parg); 1014long dtls1_ctrl(SSL *s,int cmd, long larg, void *parg);
933SSL_METHOD *dtlsv1_base_method(void );
934 1015
935long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok); 1016long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
936int dtls1_get_record(SSL *s); 1017int dtls1_get_record(SSL *s);
@@ -945,9 +1026,9 @@ void ssl_free_wbio_buffer(SSL *s);
945int tls1_change_cipher_state(SSL *s, int which); 1026int tls1_change_cipher_state(SSL *s, int which);
946int tls1_setup_key_block(SSL *s); 1027int tls1_setup_key_block(SSL *s);
947int tls1_enc(SSL *s, int snd); 1028int tls1_enc(SSL *s, int snd);
948int tls1_final_finish_mac(SSL *s, EVP_MD_CTX *in1_ctx, EVP_MD_CTX *in2_ctx, 1029int tls1_final_finish_mac(SSL *s,
949 const char *str, int slen, unsigned char *p); 1030 const char *str, int slen, unsigned char *p);
950int tls1_cert_verify_mac(SSL *s, EVP_MD_CTX *in, unsigned char *p); 1031int tls1_cert_verify_mac(SSL *s, int md_nid, unsigned char *p);
951int tls1_mac(SSL *ssl, unsigned char *md, int snd); 1032int tls1_mac(SSL *ssl, unsigned char *md, int snd);
952int tls1_generate_master_secret(SSL *s, unsigned char *out, 1033int tls1_generate_master_secret(SSL *s, unsigned char *out,
953 unsigned char *p, int len); 1034 unsigned char *p, int len);
@@ -955,10 +1036,17 @@ int tls1_alert_code(int code);
955int ssl3_alert_code(int code); 1036int ssl3_alert_code(int code);
956int ssl_ok(SSL *s); 1037int ssl_ok(SSL *s);
957 1038
958int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs); 1039#ifndef OPENSSL_NO_ECDH
1040int ssl_check_srvr_ecc_cert_and_alg(X509 *x, const SSL_CIPHER *cs);
1041#endif
959 1042
960SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n); 1043SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n);
961 1044
1045#ifndef OPENSSL_NO_EC
1046int tls1_ec_curve_id2nid(int curve_id);
1047int tls1_ec_nid2curve_id(int nid);
1048#endif /* OPENSSL_NO_EC */
1049
962#ifndef OPENSSL_NO_TLSEXT 1050#ifndef OPENSSL_NO_TLSEXT
963unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, unsigned char *limit); 1051unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, unsigned char *limit);
964unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, unsigned char *limit); 1052unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, unsigned char *limit);
@@ -968,6 +1056,7 @@ int ssl_prepare_clienthello_tlsext(SSL *s);
968int ssl_prepare_serverhello_tlsext(SSL *s); 1056int ssl_prepare_serverhello_tlsext(SSL *s);
969int ssl_check_clienthello_tlsext(SSL *s); 1057int ssl_check_clienthello_tlsext(SSL *s);
970int ssl_check_serverhello_tlsext(SSL *s); 1058int ssl_check_serverhello_tlsext(SSL *s);
1059
971#ifdef OPENSSL_NO_SHA256 1060#ifdef OPENSSL_NO_SHA256
972#define tlsext_tick_md EVP_sha1 1061#define tlsext_tick_md EVP_sha1
973#else 1062#else
@@ -975,8 +1064,15 @@ int ssl_check_serverhello_tlsext(SSL *s);
975#endif 1064#endif
976int tls1_process_ticket(SSL *s, unsigned char *session_id, int len, 1065int tls1_process_ticket(SSL *s, unsigned char *session_id, int len,
977 const unsigned char *limit, SSL_SESSION **ret); 1066 const unsigned char *limit, SSL_SESSION **ret);
1067#endif
978EVP_MD_CTX* ssl_replace_hash(EVP_MD_CTX **hash,const EVP_MD *md) ; 1068EVP_MD_CTX* ssl_replace_hash(EVP_MD_CTX **hash,const EVP_MD *md) ;
979void ssl_clear_hash_ctx(EVP_MD_CTX **hash); 1069void ssl_clear_hash_ctx(EVP_MD_CTX **hash);
980#endif 1070int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, int *len,
981 1071 int maxlen);
1072int ssl_parse_serverhello_renegotiate_ext(SSL *s, unsigned char *d, int len,
1073 int *al);
1074int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, int *len,
1075 int maxlen);
1076int ssl_parse_clienthello_renegotiate_ext(SSL *s, unsigned char *d, int len,
1077 int *al);
982#endif 1078#endif