2010-09-24 14:11:14 +02:00
|
|
|
/* $OpenBSD: kex.h,v 1.52 2010/09/22 05:01:29 djm Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-04-04 06:38:59 +02:00
|
|
|
/*
|
2001-07-04 05:32:30 +02:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-04-04 06:38:59 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#ifndef KEX_H
|
|
|
|
#define KEX_H
|
|
|
|
|
2006-04-23 04:28:53 +02:00
|
|
|
#include <signal.h>
|
2001-02-15 04:01:59 +01:00
|
|
|
#include <openssl/evp.h>
|
2007-06-05 10:30:18 +02:00
|
|
|
#include <openssl/hmac.h>
|
2010-09-10 04:28:24 +02:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-08-31 14:41:14 +02:00
|
|
|
#include <openssl/ec.h>
|
2010-09-10 04:28:24 +02:00
|
|
|
#endif
|
2006-07-24 06:14:19 +02:00
|
|
|
|
2009-06-21 10:15:25 +02:00
|
|
|
#define KEX_COOKIE_LEN 16
|
|
|
|
|
2005-11-05 05:19:35 +01:00
|
|
|
#define KEX_DH1 "diffie-hellman-group1-sha1"
|
|
|
|
#define KEX_DH14 "diffie-hellman-group14-sha1"
|
|
|
|
#define KEX_DHGEX_SHA1 "diffie-hellman-group-exchange-sha1"
|
2006-03-15 02:08:28 +01:00
|
|
|
#define KEX_DHGEX_SHA256 "diffie-hellman-group-exchange-sha256"
|
2010-01-08 06:50:41 +01:00
|
|
|
#define KEX_RESUME "resume@appgate.com"
|
2010-08-31 14:41:14 +02:00
|
|
|
/* The following represents the family of ECDH methods */
|
2010-09-10 03:23:34 +02:00
|
|
|
#define KEX_ECDH_SHA2_STEM "ecdh-sha2-"
|
2000-04-04 06:38:59 +02:00
|
|
|
|
2005-07-26 13:54:56 +02:00
|
|
|
#define COMP_NONE 0
|
|
|
|
#define COMP_ZLIB 1
|
|
|
|
#define COMP_DELAYED 2
|
|
|
|
|
2000-04-04 06:38:59 +02:00
|
|
|
enum kex_init_proposals {
|
|
|
|
PROPOSAL_KEX_ALGS,
|
|
|
|
PROPOSAL_SERVER_HOST_KEY_ALGS,
|
|
|
|
PROPOSAL_ENC_ALGS_CTOS,
|
|
|
|
PROPOSAL_ENC_ALGS_STOC,
|
|
|
|
PROPOSAL_MAC_ALGS_CTOS,
|
|
|
|
PROPOSAL_MAC_ALGS_STOC,
|
|
|
|
PROPOSAL_COMP_ALGS_CTOS,
|
|
|
|
PROPOSAL_COMP_ALGS_STOC,
|
|
|
|
PROPOSAL_LANG_CTOS,
|
|
|
|
PROPOSAL_LANG_STOC,
|
|
|
|
PROPOSAL_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum kex_modes {
|
|
|
|
MODE_IN,
|
|
|
|
MODE_OUT,
|
|
|
|
MODE_MAX
|
|
|
|
};
|
|
|
|
|
2000-10-14 07:23:11 +02:00
|
|
|
enum kex_exchange {
|
2003-02-24 02:03:03 +01:00
|
|
|
KEX_DH_GRP1_SHA1,
|
2004-06-15 02:30:09 +02:00
|
|
|
KEX_DH_GRP14_SHA1,
|
2003-02-24 02:03:03 +01:00
|
|
|
KEX_DH_GEX_SHA1,
|
2006-03-15 02:08:28 +01:00
|
|
|
KEX_DH_GEX_SHA256,
|
2010-08-31 14:41:14 +02:00
|
|
|
KEX_ECDH_SHA2,
|
2003-02-24 02:03:03 +01:00
|
|
|
KEX_MAX
|
2000-10-14 07:23:11 +02:00
|
|
|
};
|
2001-02-05 13:42:17 +01:00
|
|
|
|
2001-04-04 04:00:54 +02:00
|
|
|
#define KEX_INIT_SENT 0x0001
|
|
|
|
|
2000-04-04 06:38:59 +02:00
|
|
|
typedef struct Kex Kex;
|
|
|
|
typedef struct Mac Mac;
|
|
|
|
typedef struct Comp Comp;
|
|
|
|
typedef struct Enc Enc;
|
2001-04-04 04:00:54 +02:00
|
|
|
typedef struct Newkeys Newkeys;
|
2000-04-04 06:38:59 +02:00
|
|
|
|
|
|
|
struct Enc {
|
2001-04-04 04:00:54 +02:00
|
|
|
char *name;
|
|
|
|
Cipher *cipher;
|
|
|
|
int enabled;
|
2002-02-19 05:21:23 +01:00
|
|
|
u_int key_len;
|
|
|
|
u_int block_size;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_char *key;
|
|
|
|
u_char *iv;
|
2000-04-04 06:38:59 +02:00
|
|
|
};
|
|
|
|
struct Mac {
|
2001-04-04 04:00:54 +02:00
|
|
|
char *name;
|
|
|
|
int enabled;
|
2005-06-17 04:59:34 +02:00
|
|
|
u_int mac_len;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_char *key;
|
2005-06-17 04:59:34 +02:00
|
|
|
u_int key_len;
|
2007-06-11 06:01:42 +02:00
|
|
|
int type;
|
|
|
|
const EVP_MD *evp_md;
|
|
|
|
HMAC_CTX evp_ctx;
|
|
|
|
struct umac_ctx *umac_ctx;
|
2000-04-04 06:38:59 +02:00
|
|
|
};
|
|
|
|
struct Comp {
|
2001-04-04 04:00:54 +02:00
|
|
|
int type;
|
|
|
|
int enabled;
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
struct Newkeys {
|
|
|
|
Enc enc;
|
|
|
|
Mac mac;
|
|
|
|
Comp comp;
|
2000-04-04 06:38:59 +02:00
|
|
|
};
|
|
|
|
struct Kex {
|
2001-04-04 04:00:54 +02:00
|
|
|
u_char *session_id;
|
2002-09-12 01:49:15 +02:00
|
|
|
u_int session_id_len;
|
2001-04-05 01:46:07 +02:00
|
|
|
Newkeys *newkeys[MODE_MAX];
|
2005-06-17 04:59:34 +02:00
|
|
|
u_int we_need;
|
2001-04-04 04:00:54 +02:00
|
|
|
int server;
|
|
|
|
char *name;
|
|
|
|
int hostkey_type;
|
|
|
|
int kex_type;
|
2010-01-08 06:50:41 +01:00
|
|
|
int roaming;
|
2001-04-04 04:00:54 +02:00
|
|
|
Buffer my;
|
|
|
|
Buffer peer;
|
2006-04-23 04:08:37 +02:00
|
|
|
sig_atomic_t done;
|
2001-04-04 04:00:54 +02:00
|
|
|
int flags;
|
2005-11-05 05:19:35 +01:00
|
|
|
const EVP_MD *evp_md;
|
2001-04-04 04:00:54 +02:00
|
|
|
char *client_version_string;
|
|
|
|
char *server_version_string;
|
2001-07-04 06:02:36 +02:00
|
|
|
int (*verify_host_key)(Key *);
|
2010-02-26 21:55:05 +01:00
|
|
|
Key *(*load_host_public_key)(int);
|
|
|
|
Key *(*load_host_private_key)(int);
|
2002-03-22 03:30:41 +01:00
|
|
|
int (*host_key_index)(Key *);
|
2003-02-24 02:03:03 +01:00
|
|
|
void (*kex[KEX_MAX])(Kex *);
|
2000-04-04 06:38:59 +02:00
|
|
|
};
|
|
|
|
|
2010-09-24 14:11:14 +02:00
|
|
|
int kex_names_valid(const char *);
|
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
Kex *kex_setup(char *[PROPOSAL_MAX]);
|
2001-07-04 06:46:56 +02:00
|
|
|
void kex_finish(Kex *);
|
2001-04-04 19:52:53 +02:00
|
|
|
|
2001-07-04 06:46:56 +02:00
|
|
|
void kex_send_kexinit(Kex *);
|
2002-01-22 13:17:30 +01:00
|
|
|
void kex_input_kexinit(int, u_int32_t, void *);
|
2005-11-05 05:19:35 +01:00
|
|
|
void kex_derive_keys(Kex *, u_char *, u_int, BIGNUM *);
|
2000-04-04 06:38:59 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
Newkeys *kex_get_newkeys(int);
|
2001-04-04 04:00:54 +02:00
|
|
|
|
2003-02-24 02:03:03 +01:00
|
|
|
void kexdh_client(Kex *);
|
|
|
|
void kexdh_server(Kex *);
|
|
|
|
void kexgex_client(Kex *);
|
|
|
|
void kexgex_server(Kex *);
|
2010-08-31 14:41:14 +02:00
|
|
|
void kexecdh_client(Kex *);
|
|
|
|
void kexecdh_server(Kex *);
|
2003-02-24 02:03:03 +01:00
|
|
|
|
2005-11-05 05:19:35 +01:00
|
|
|
void
|
2003-02-24 02:03:03 +01:00
|
|
|
kex_dh_hash(char *, char *, char *, int, char *, int, u_char *, int,
|
2005-11-05 05:19:35 +01:00
|
|
|
BIGNUM *, BIGNUM *, BIGNUM *, u_char **, u_int *);
|
|
|
|
void
|
|
|
|
kexgex_hash(const EVP_MD *, char *, char *, char *, int, char *,
|
2006-03-25 14:04:32 +01:00
|
|
|
int, u_char *, int, int, int, int, BIGNUM *, BIGNUM *, BIGNUM *,
|
2005-11-05 05:19:35 +01:00
|
|
|
BIGNUM *, BIGNUM *, u_char **, u_int *);
|
2010-09-10 03:39:26 +02:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-08-31 14:41:14 +02:00
|
|
|
void
|
|
|
|
kex_ecdh_hash(const EVP_MD *, const EC_GROUP *, char *, char *, char *, int,
|
|
|
|
char *, int, u_char *, int, const EC_POINT *, const EC_POINT *,
|
|
|
|
const BIGNUM *, u_char **, u_int *);
|
|
|
|
int kex_ecdh_name_to_nid(const char *);
|
2010-09-10 03:23:34 +02:00
|
|
|
const EVP_MD *kex_ecdh_name_to_evpmd(const char *);
|
2010-09-10 03:39:26 +02:00
|
|
|
#else
|
2010-09-24 14:11:14 +02:00
|
|
|
# define kex_ecdh_name_to_nid(x) (-1)
|
|
|
|
# define kex_ecdh_name_to_evpmd(x) (NULL)
|
2010-09-10 03:39:26 +02:00
|
|
|
#endif
|
2003-02-24 02:03:03 +01:00
|
|
|
|
2004-05-24 02:14:24 +02:00
|
|
|
void
|
|
|
|
derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);
|
|
|
|
|
2010-08-31 14:41:14 +02:00
|
|
|
#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH) || defined(DEBUG_KEXECDH)
|
2001-07-04 06:02:36 +02:00
|
|
|
void dump_digest(char *, u_char *, int);
|
2001-04-04 03:56:17 +02:00
|
|
|
#endif
|
2000-04-04 06:38:59 +02:00
|
|
|
|
|
|
|
#endif
|