kex.h revision 264377
1/* $OpenBSD: kex.h,v 1.62 2014/01/27 18:58:14 markus Exp $ */
2/* $FreeBSD: stable/10/crypto/openssh/kex.h 264377 2014-04-12 20:22:59Z des $ */
3
4/*
5 * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27#ifndef KEX_H
28#define KEX_H
29
30#include <signal.h>
31#include <openssl/evp.h>
32#include <openssl/hmac.h>
33#ifdef OPENSSL_HAS_ECC
34#include <openssl/ec.h>
35#endif
36
37#define KEX_COOKIE_LEN	16
38
39#define	KEX_DH1			"diffie-hellman-group1-sha1"
40#define	KEX_DH14		"diffie-hellman-group14-sha1"
41#define	KEX_DHGEX_SHA1		"diffie-hellman-group-exchange-sha1"
42#define	KEX_DHGEX_SHA256	"diffie-hellman-group-exchange-sha256"
43#define	KEX_RESUME		"resume@appgate.com"
44#define	KEX_ECDH_SHA2_NISTP256	"ecdh-sha2-nistp256"
45#define	KEX_ECDH_SHA2_NISTP384	"ecdh-sha2-nistp384"
46#define	KEX_ECDH_SHA2_NISTP521	"ecdh-sha2-nistp521"
47#define	KEX_CURVE25519_SHA256	"curve25519-sha256@libssh.org"
48
49#define COMP_NONE	0
50#define COMP_ZLIB	1
51#define COMP_DELAYED	2
52
53enum kex_init_proposals {
54	PROPOSAL_KEX_ALGS,
55	PROPOSAL_SERVER_HOST_KEY_ALGS,
56	PROPOSAL_ENC_ALGS_CTOS,
57	PROPOSAL_ENC_ALGS_STOC,
58	PROPOSAL_MAC_ALGS_CTOS,
59	PROPOSAL_MAC_ALGS_STOC,
60	PROPOSAL_COMP_ALGS_CTOS,
61	PROPOSAL_COMP_ALGS_STOC,
62	PROPOSAL_LANG_CTOS,
63	PROPOSAL_LANG_STOC,
64	PROPOSAL_MAX
65};
66
67enum kex_modes {
68	MODE_IN,
69	MODE_OUT,
70	MODE_MAX
71};
72
73enum kex_exchange {
74	KEX_DH_GRP1_SHA1,
75	KEX_DH_GRP14_SHA1,
76	KEX_DH_GEX_SHA1,
77	KEX_DH_GEX_SHA256,
78	KEX_ECDH_SHA2,
79	KEX_C25519_SHA256,
80	KEX_MAX
81};
82
83#define KEX_INIT_SENT	0x0001
84
85typedef struct Kex Kex;
86typedef struct Mac Mac;
87typedef struct Comp Comp;
88typedef struct Enc Enc;
89typedef struct Newkeys Newkeys;
90
91struct Enc {
92	char	*name;
93	const Cipher *cipher;
94	int	enabled;
95	u_int	key_len;
96	u_int	iv_len;
97	u_int	block_size;
98	u_char	*key;
99	u_char	*iv;
100};
101struct Mac {
102	char	*name;
103	int	enabled;
104	u_int	mac_len;
105	u_char	*key;
106	u_int	key_len;
107	int	type;
108	int	etm;		/* Encrypt-then-MAC */
109	struct ssh_hmac_ctx	*hmac_ctx;
110	struct umac_ctx		*umac_ctx;
111};
112struct Comp {
113	int	type;
114	int	enabled;
115	char	*name;
116};
117struct Newkeys {
118	Enc	enc;
119	Mac	mac;
120	Comp	comp;
121};
122struct Kex {
123	u_char	*session_id;
124	u_int	session_id_len;
125	Newkeys	*newkeys[MODE_MAX];
126	u_int	we_need;
127	u_int	dh_need;
128	int	server;
129	char	*name;
130	int	hostkey_type;
131	int	kex_type;
132	int	roaming;
133	Buffer	my;
134	Buffer	peer;
135	sig_atomic_t done;
136	int	flags;
137	int	hash_alg;
138	int	ec_nid;
139	char	*client_version_string;
140	char	*server_version_string;
141	int	(*verify_host_key)(Key *);
142	Key	*(*load_host_public_key)(int);
143	Key	*(*load_host_private_key)(int);
144	int	(*host_key_index)(Key *);
145	void    (*sign)(Key *, Key *, u_char **, u_int *, u_char *, u_int);
146	void	(*kex[KEX_MAX])(Kex *);
147};
148
149int	 kex_names_valid(const char *);
150char	*kex_alg_list(char);
151
152#ifdef	NONE_CIPHER_ENABLED
153void	 kex_prop2buf(Buffer *, char *[PROPOSAL_MAX]);
154#endif
155
156Kex	*kex_setup(char *[PROPOSAL_MAX]);
157void	 kex_finish(Kex *);
158
159void	 kex_send_kexinit(Kex *);
160void	 kex_input_kexinit(int, u_int32_t, void *);
161void	 kex_derive_keys(Kex *, u_char *, u_int, const u_char *, u_int);
162void	 kex_derive_keys_bn(Kex *, u_char *, u_int, const BIGNUM *);
163
164Newkeys *kex_get_newkeys(int);
165
166void	 kexdh_client(Kex *);
167void	 kexdh_server(Kex *);
168void	 kexgex_client(Kex *);
169void	 kexgex_server(Kex *);
170void	 kexecdh_client(Kex *);
171void	 kexecdh_server(Kex *);
172void	 kexc25519_client(Kex *);
173void	 kexc25519_server(Kex *);
174
175void
176kex_dh_hash(char *, char *, char *, int, char *, int, u_char *, int,
177    BIGNUM *, BIGNUM *, BIGNUM *, u_char **, u_int *);
178void
179kexgex_hash(int, char *, char *, char *, int, char *,
180    int, u_char *, int, int, int, int, BIGNUM *, BIGNUM *, BIGNUM *,
181    BIGNUM *, BIGNUM *, u_char **, u_int *);
182#ifdef OPENSSL_HAS_ECC
183void
184kex_ecdh_hash(int, const EC_GROUP *, char *, char *, char *, int,
185    char *, int, u_char *, int, const EC_POINT *, const EC_POINT *,
186    const BIGNUM *, u_char **, u_int *);
187#endif
188void
189kex_c25519_hash(int, char *, char *, char *, int,
190    char *, int, u_char *, int, const u_char *, const u_char *,
191    const u_char *, u_int, u_char **, u_int *);
192
193#define CURVE25519_SIZE 32
194void	kexc25519_keygen(u_char[CURVE25519_SIZE], u_char[CURVE25519_SIZE])
195	__attribute__((__bounded__(__minbytes__, 1, CURVE25519_SIZE)))
196	__attribute__((__bounded__(__minbytes__, 2, CURVE25519_SIZE)));
197void kexc25519_shared_key(const u_char key[CURVE25519_SIZE],
198    const u_char pub[CURVE25519_SIZE], Buffer *out)
199	__attribute__((__bounded__(__minbytes__, 1, CURVE25519_SIZE)))
200	__attribute__((__bounded__(__minbytes__, 2, CURVE25519_SIZE)));
201
202void
203derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);
204
205#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH) || defined(DEBUG_KEXECDH)
206void	dump_digest(char *, u_char *, int);
207#endif
208
209#endif
210