9f67ad2ae6f59f6f6b18a7c3a9ac3fb4bc76f8e5
[vpp.git] / vnet / vnet / ipsec / ikev2_priv.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_ikev2_priv_h__
16 #define __included_ikev2_priv_h__
17
18 #include <vnet/vnet.h>
19 #include <vnet/ip/ip.h>
20 #include <vnet/ethernet/ethernet.h>
21
22 #include <vnet/ipsec/ikev2.h>
23
24 #include <vppinfra/hash.h>
25 #include <vppinfra/elog.h>
26 #include <vppinfra/error.h>
27
28 #include <openssl/rand.h>
29 #include <openssl/dh.h>
30 #include <openssl/hmac.h>
31 #include <openssl/evp.h>
32
33 #define IKEV2_DEBUG_PAYLOAD 1
34
35 #if IKEV2_DEBUG_PAYLOAD == 1
36 #define DBG_PLD(my_args...) clib_warning(my_args)
37 #else
38 #define DBG_PLD(my_args...)
39 #endif
40
41 typedef enum
42 {
43   IKEV2_STATE_UNKNOWN,
44   IKEV2_STATE_SA_INIT,
45   IKEV2_STATE_DELETED,
46   IKEV2_STATE_AUTH_FAILED,
47   IKEV2_STATE_AUTHENTICATED,
48   IKEV2_STATE_NOTIFY_AND_DELETE,
49   IKEV2_STATE_TS_UNACCEPTABLE,
50   IKEV2_STATE_NO_PROPOSAL_CHOSEN,
51 } ikev2_state_t;
52
53 typedef struct
54 {
55   ikev2_auth_method_t method:8;
56   u8 *data;
57   u8 hex;                       /* hex encoding of the shared secret */
58   EVP_PKEY *key;
59 } ikev2_auth_t;
60
61 typedef enum
62 {
63   IKEV2_DH_GROUP_MODP = 0,
64   IKEV2_DH_GROUP_ECP = 1,
65 } ikev2_dh_group_t;
66
67 typedef struct
68 {
69   ikev2_transform_type_t type;
70   union
71   {
72     u16 transform_id;
73     ikev2_transform_encr_type_t encr_type:16;
74     ikev2_transform_prf_type_t prf_type:16;
75     ikev2_transform_integ_type_t integ_type:16;
76     ikev2_transform_dh_type_t dh_type:16;
77     ikev2_transform_esn_type_t esn_type:16;
78   };
79   u8 *attrs;
80   u16 key_len;
81   u16 key_trunc;
82   u16 block_size;
83   u8 dh_group;
84   int nid;
85   const char *dh_p;
86   const char *dh_g;
87   const void *md;
88   const void *cipher;
89 } ikev2_sa_transform_t;
90
91 typedef struct
92 {
93   u8 proposal_num;
94   ikev2_protocol_id_t protocol_id:8;
95   u32 spi;
96   ikev2_sa_transform_t *transforms;
97 } ikev2_sa_proposal_t;
98
99 typedef struct
100 {
101   u8 ts_type;
102   u8 protocol_id;
103   u16 selector_len;
104   u16 start_port;
105   u16 end_port;
106   ip4_address_t start_addr;
107   ip4_address_t end_addr;
108 } ikev2_ts_t;
109
110 typedef struct
111 {
112   ikev2_id_type_t type:8;
113   u8 *data;
114 } ikev2_id_t;
115
116 typedef struct
117 {
118   /* sa proposals vectors */
119   ikev2_sa_proposal_t *i_proposals;
120   ikev2_sa_proposal_t *r_proposals;
121
122   /* Traffic Selectors */
123   ikev2_ts_t *tsi;
124   ikev2_ts_t *tsr;
125
126   /* keys */
127   u8 *sk_ai;
128   u8 *sk_ar;
129   u8 *sk_ei;
130   u8 *sk_er;
131 } ikev2_child_sa_t;
132
133 typedef struct
134 {
135   u8 protocol_id;
136   u32 spi;                      /*for ESP and AH SPI size is 4, for IKE size is 0 */
137 } ikev2_delete_t;
138
139 typedef struct
140 {
141   u8 protocol_id;
142   u32 spi;
143   ikev2_sa_proposal_t *i_proposal;
144   ikev2_sa_proposal_t *r_proposal;
145   ikev2_ts_t *tsi;
146   ikev2_ts_t *tsr;
147 } ikev2_rekey_t;
148
149 typedef struct
150 {
151   u16 msg_type;
152   u8 protocol_id;
153   u32 spi;
154   u8 *data;
155 } ikev2_notify_t;
156
157
158 typedef struct
159 {
160   ikev2_state_t state;
161   u8 unsupported_cp;
162   u8 initial_contact;
163   ip4_address_t iaddr;
164   ip4_address_t raddr;
165   u64 ispi;
166   u64 rspi;
167   u8 *i_nonce;
168   u8 *r_nonce;
169
170   /* DH data */
171   u16 dh_group;
172   u8 *dh_shared_key;
173   u8 *i_dh_data;
174   u8 *r_dh_data;
175
176   /* sa proposals vectors */
177   ikev2_sa_proposal_t *i_proposals;
178   ikev2_sa_proposal_t *r_proposals;
179
180   /* keys */
181   u8 *sk_d;
182   u8 *sk_ai;
183   u8 *sk_ar;
184   u8 *sk_ei;
185   u8 *sk_er;
186   u8 *sk_pi;
187   u8 *sk_pr;
188
189   /* auth */
190   ikev2_auth_t i_auth;
191   ikev2_auth_t r_auth;
192
193   /* ID */
194   ikev2_id_t i_id;
195   ikev2_id_t r_id;
196
197   /* pending deletes */
198   ikev2_delete_t *del;
199
200   /* pending rekeyings */
201   ikev2_rekey_t *rekey;
202
203   /* packet data */
204   u8 *last_sa_init_req_packet_data;
205   u8 *last_sa_init_res_packet_data;
206
207   /* retransmit */
208   u32 last_msg_id;
209   u8 *last_res_packet_data;
210
211   ikev2_child_sa_t *childs;
212 } ikev2_sa_t;
213
214 typedef struct
215 {
216   u8 *name;
217   u8 is_enabled;
218
219   ikev2_auth_t auth;
220   ikev2_id_t loc_id;
221   ikev2_id_t rem_id;
222   ikev2_ts_t loc_ts;
223   ikev2_ts_t rem_ts;
224 } ikev2_profile_t;
225
226 typedef struct
227 {
228   /* pool of IKEv2 Security Associations */
229   ikev2_sa_t *sas;
230
231   /* hash */
232   uword *sa_by_rspi;
233 } ikev2_main_per_thread_data_t;
234
235 typedef struct
236 {
237   /* pool of IKEv2 profiles */
238   ikev2_profile_t *profiles;
239
240   /* vector of supported transform types */
241   ikev2_sa_transform_t *supported_transforms;
242
243   /* hash */
244   mhash_t profile_index_by_name;
245
246   /* local private key */
247   EVP_PKEY *pkey;
248
249   /* convenience */
250   vlib_main_t *vlib_main;
251   vnet_main_t *vnet_main;
252
253   ikev2_main_per_thread_data_t *per_thread_data;
254
255 } ikev2_main_t;
256
257 ikev2_main_t ikev2_main;
258
259 void ikev2_sa_free_proposal_vector (ikev2_sa_proposal_t ** v);
260 ikev2_sa_transform_t *ikev2_sa_get_td_for_type (ikev2_sa_proposal_t * p,
261                                                 ikev2_transform_type_t type);
262
263 /* ikev2_crypto.c */
264 v8 *ikev2_calc_prf (ikev2_sa_transform_t * tr, v8 * key, v8 * data);
265 u8 *ikev2_calc_prfplus (ikev2_sa_transform_t * tr, u8 * key, u8 * seed,
266                         int len);
267 v8 *ikev2_calc_integr (ikev2_sa_transform_t * tr, v8 * key, u8 * data,
268                        int len);
269 v8 *ikev2_decrypt_data (ikev2_sa_t * sa, u8 * data, int len);
270 int ikev2_encrypt_data (ikev2_sa_t * sa, v8 * src, u8 * dst);
271 void ikev2_generate_dh (ikev2_sa_t * sa, ikev2_sa_transform_t * t);
272 int ikev2_verify_sign (EVP_PKEY * pkey, u8 * sigbuf, u8 * data);
273 u8 *ikev2_calc_sign (EVP_PKEY * pkey, u8 * data);
274 EVP_PKEY *ikev2_load_cert_file (u8 * file);
275 EVP_PKEY *ikev2_load_key_file (u8 * file);
276 void ikev2_crypto_init (ikev2_main_t * km);
277
278 /* ikev2_payload.c */
279 typedef struct
280 {
281   u8 first_payload_type;
282   u16 last_hdr_off;
283   u8 *data;
284 } ikev2_payload_chain_t;
285
286 #define ikev2_payload_new_chain(V) vec_validate (V, 0)
287 #define ikev2_payload_destroy_chain(V) do { \
288   vec_free((V)->data);                 \
289   vec_free(V);                         \
290 } while (0)
291
292 void ikev2_payload_add_notify (ikev2_payload_chain_t * c, u16 msg_type,
293                                u8 * data);
294 void ikev2_payload_add_sa (ikev2_payload_chain_t * c,
295                            ikev2_sa_proposal_t * proposals);
296 void ikev2_payload_add_ke (ikev2_payload_chain_t * c, u16 dh_group,
297                            u8 * dh_data);
298 void ikev2_payload_add_nonce (ikev2_payload_chain_t * c, u8 * nonce);
299 void ikev2_payload_add_id (ikev2_payload_chain_t * c, ikev2_id_t * id,
300                            u8 type);
301 void ikev2_payload_add_auth (ikev2_payload_chain_t * c, ikev2_auth_t * auth);
302 void ikev2_payload_add_ts (ikev2_payload_chain_t * c, ikev2_ts_t * ts,
303                            u8 type);
304 void ikev2_payload_add_delete (ikev2_payload_chain_t * c, ikev2_delete_t * d);
305 void ikev2_payload_chain_add_padding (ikev2_payload_chain_t * c, int bs);
306 void ikev2_parse_vendor_payload (ike_payload_header_t * ikep);
307 ikev2_sa_proposal_t *ikev2_parse_sa_payload (ike_payload_header_t * ikep);
308 ikev2_ts_t *ikev2_parse_ts_payload (ike_payload_header_t * ikep);
309 ikev2_delete_t *ikev2_parse_delete_payload (ike_payload_header_t * ikep);
310 ikev2_notify_t *ikev2_parse_notify_payload (ike_payload_header_t * ikep);
311
312 #endif /* __included_ikev2_priv_h__ */
313
314
315 /*
316  * fd.io coding-style-patch-verification: ON
317  *
318  * Local Variables:
319  * eval: (c-set-style "gnu")
320  * End:
321  */