]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - crypto/openssh/kex.h
MFC r241827:
[FreeBSD/stable/8.git] / crypto / openssh / kex.h
1 /* $OpenBSD: kex.h,v 1.49 2010/02/26 20:29:54 djm Exp $ */
2 /* $FreeBSD$ */
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
34 #define KEX_COOKIE_LEN  16
35
36 #define KEX_DH1                 "diffie-hellman-group1-sha1"
37 #define KEX_DH14                "diffie-hellman-group14-sha1"
38 #define KEX_DHGEX_SHA1          "diffie-hellman-group-exchange-sha1"
39 #define KEX_DHGEX_SHA256        "diffie-hellman-group-exchange-sha256"
40 #define KEX_RESUME              "resume@appgate.com"
41
42 #define COMP_NONE       0
43 #define COMP_ZLIB       1
44 #define COMP_DELAYED    2
45
46 enum kex_init_proposals {
47         PROPOSAL_KEX_ALGS,
48         PROPOSAL_SERVER_HOST_KEY_ALGS,
49         PROPOSAL_ENC_ALGS_CTOS,
50         PROPOSAL_ENC_ALGS_STOC,
51         PROPOSAL_MAC_ALGS_CTOS,
52         PROPOSAL_MAC_ALGS_STOC,
53         PROPOSAL_COMP_ALGS_CTOS,
54         PROPOSAL_COMP_ALGS_STOC,
55         PROPOSAL_LANG_CTOS,
56         PROPOSAL_LANG_STOC,
57         PROPOSAL_MAX
58 };
59
60 enum kex_modes {
61         MODE_IN,
62         MODE_OUT,
63         MODE_MAX
64 };
65
66 enum kex_exchange {
67         KEX_DH_GRP1_SHA1,
68         KEX_DH_GRP14_SHA1,
69         KEX_DH_GEX_SHA1,
70         KEX_DH_GEX_SHA256,
71         KEX_MAX
72 };
73
74 #define KEX_INIT_SENT   0x0001
75
76 typedef struct Kex Kex;
77 typedef struct Mac Mac;
78 typedef struct Comp Comp;
79 typedef struct Enc Enc;
80 typedef struct Newkeys Newkeys;
81
82 struct Enc {
83         char    *name;
84         Cipher  *cipher;
85         int     enabled;
86         u_int   key_len;
87         u_int   block_size;
88         u_char  *key;
89         u_char  *iv;
90 };
91 struct Mac {
92         char    *name;
93         int     enabled;
94         u_int   mac_len;
95         u_char  *key;
96         u_int   key_len;
97         int     type;
98         const EVP_MD    *evp_md;
99         HMAC_CTX        evp_ctx;
100         struct umac_ctx *umac_ctx;
101 };
102 struct Comp {
103         int     type;
104         int     enabled;
105         char    *name;
106 };
107 struct Newkeys {
108         Enc     enc;
109         Mac     mac;
110         Comp    comp;
111 };
112 struct Kex {
113         u_char  *session_id;
114         u_int   session_id_len;
115         Newkeys *newkeys[MODE_MAX];
116         u_int   we_need;
117         int     server;
118         char    *name;
119         int     hostkey_type;
120         int     kex_type;
121         int     roaming;
122         Buffer  my;
123         Buffer  peer;
124         sig_atomic_t done;
125         int     flags;
126         const EVP_MD *evp_md;
127         char    *client_version_string;
128         char    *server_version_string;
129         int     (*verify_host_key)(Key *);
130         Key     *(*load_host_public_key)(int);
131         Key     *(*load_host_private_key)(int);
132         int     (*host_key_index)(Key *);
133         void    (*kex[KEX_MAX])(Kex *);
134 };
135
136 #ifdef  NONE_CIPHER_ENABLED
137 void     kex_prop2buf(Buffer *, char *[PROPOSAL_MAX]);
138 #endif
139
140 Kex     *kex_setup(char *[PROPOSAL_MAX]);
141 void     kex_finish(Kex *);
142
143 void     kex_send_kexinit(Kex *);
144 void     kex_input_kexinit(int, u_int32_t, void *);
145 void     kex_derive_keys(Kex *, u_char *, u_int, BIGNUM *);
146
147 Newkeys *kex_get_newkeys(int);
148
149 void     kexdh_client(Kex *);
150 void     kexdh_server(Kex *);
151 void     kexgex_client(Kex *);
152 void     kexgex_server(Kex *);
153
154 void
155 kex_dh_hash(char *, char *, char *, int, char *, int, u_char *, int,
156     BIGNUM *, BIGNUM *, BIGNUM *, u_char **, u_int *);
157 void
158 kexgex_hash(const EVP_MD *, char *, char *, char *, int, char *,
159     int, u_char *, int, int, int, int, BIGNUM *, BIGNUM *, BIGNUM *,
160     BIGNUM *, BIGNUM *, u_char **, u_int *);
161
162 void
163 derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);
164
165 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
166 void    dump_digest(char *, u_char *, int);
167 #endif
168
169 #endif