blob: 14f3baec1508a1fd4a7c7797cba2ed4a4287592a [file] [log] [blame]
Florin Corase127a7e2016-02-18 22:20:01 +01001/*
2 * Copyright (c) 2016 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
16#ifndef VNET_CONTROL_H_
17#define VNET_CONTROL_H_
18
19#include <vnet/vnet.h>
20#include <vnet/lisp-cp/gid_dictionary.h>
21#include <vnet/lisp-cp/lisp_types.h>
22
Filip Tehlara5abdeb2016-07-18 17:35:40 +020023#define NUMBER_OF_RETRIES 1
Florin Corasa2157cf2016-08-16 21:09:14 +020024#define PENDING_MREQ_EXPIRATION_TIME 3.0 /* seconds */
Florin Corasf4691cd2016-08-15 19:16:32 +020025#define PENDING_MREQ_QUEUE_LEN 5
Filip Tehlara5abdeb2016-07-18 17:35:40 +020026
Filip Tehlar397fd7d2016-10-26 14:31:24 +020027#define PENDING_MREG_EXPIRATION_TIME 3.0 /* seconds */
28#define RLOC_PROBING_INTERVAL 60.0
29
30/* when map-registration is enabled "quick registration" takes place first.
31 In this mode ETR sends map-register messages at an increased frequency
32 until specified message count is reached */
33#define QUICK_MAP_REGISTER_MSG_COUNT 3
34#define QUICK_MAP_REGISTER_INTERVAL 3.0
35
36/* normal map-register period */
37#define MAP_REGISTER_INTERVAL 60.0
38
Filip Tehlarfb9931f2016-12-09 13:52:38 +010039/* 15 minutes */
40#define MAP_REGISTER_DEFAULT_TTL 900
Filip Tehlar397fd7d2016-10-26 14:31:24 +020041
Florin Corase127a7e2016-02-18 22:20:01 +010042typedef struct
43{
44 gid_address_t src;
45 gid_address_t dst;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020046 u32 retries_num;
47 f64 time_to_expire;
48 u8 is_smr_invoked;
Florin Corasa2157cf2016-08-16 21:09:14 +020049 u64 *nonces;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020050 u8 to_be_removed;
Florin Corase127a7e2016-02-18 22:20:01 +010051} pending_map_request_t;
52
53typedef struct
54{
Filip Tehlar2fdaece2016-09-28 14:27:59 +020055 gid_address_t leid;
56 gid_address_t reid;
Filip Tehlar69a9b762016-09-23 10:00:52 +020057 u8 is_src_dst;
Florin Corasa2157cf2016-08-16 21:09:14 +020058 locator_pair_t *locator_pairs;
Florin Corase127a7e2016-02-18 22:20:01 +010059} fwd_entry_t;
60
Filip Tehlar69a9b762016-09-23 10:00:52 +020061typedef struct
62{
63 gid_address_t leid;
64 gid_address_t reid;
65} lisp_adjacency_t;
66
Florin Corase127a7e2016-02-18 22:20:01 +010067typedef enum
68{
69 IP4_MISS_PACKET,
70 IP6_MISS_PACKET
71} miss_packet_type_t;
72
Filip Tehlar397fd7d2016-10-26 14:31:24 +020073/* map-server/map-resolver structure */
Florin Corase127a7e2016-02-18 22:20:01 +010074typedef struct
75{
Filip Tehlara5abdeb2016-07-18 17:35:40 +020076 u8 is_down;
77 f64 last_update;
78 ip_address_t address;
Filip Tehlar397fd7d2016-10-26 14:31:24 +020079 char *key;
80} lisp_msmr_t;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020081
82typedef struct
83{
Florin Corase127a7e2016-02-18 22:20:01 +010084 /* headers */
85 u8 data[100];
86 u32 length;
87 miss_packet_type_t type;
88} miss_packet_t;
89
Florin Corasdca88042016-09-14 16:01:38 +020090typedef enum
91{
92 MR_MODE_DST_ONLY = 0,
93 MR_MODE_SRC_DST,
94 _MR_MODE_MAX
95} map_request_mode_t;
96
Florin Corasba888e42017-01-24 11:38:18 -080097#define foreach_lisp_flag_bit \
98 _(USE_PETR, "Use Proxy-ETR")
99
100typedef enum lisp_flag_bits
101{
102#define _(sym, str) LISP_FLAG_BIT_##sym,
103 foreach_lisp_flag_bit
104#undef _
105} lisp_flag_bits_e;
106
107typedef enum lisp_flags
108{
109#define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym,
110 foreach_lisp_flag_bit
111#undef _
112} lisp_flags_e;
113
Florin Corase127a7e2016-02-18 22:20:01 +0100114typedef struct
115{
Florin Corasba888e42017-01-24 11:38:18 -0800116 u32 flags;
117
Filip Tehlar46d4e362016-05-09 09:39:26 +0200118 /* LISP feature status */
119 u8 is_enabled;
120
Florin Corase127a7e2016-02-18 22:20:01 +0100121 /* eid table */
122 gid_dictionary_t mapping_index_by_gid;
123
124 /* pool of mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200125 mapping_t *mapping_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100126
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200127 /* hash map of secret keys by mapping index */
128 u8 *key_by_mapping_index;
129
Florin Corase127a7e2016-02-18 22:20:01 +0100130 /* pool of locators */
Florin Corasa2157cf2016-08-16 21:09:14 +0200131 locator_t *locator_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100132
133 /* pool of locator-sets */
Florin Corasa2157cf2016-08-16 21:09:14 +0200134 locator_set_t *locator_set_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100135
136 /* vector of locator-set vectors composed of and indexed by locator index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200137 u32 **locator_to_locator_sets;
Florin Corase127a7e2016-02-18 22:20:01 +0100138
139 /* hash map of locators by name */
Florin Corasa2157cf2016-08-16 21:09:14 +0200140 uword *locator_set_index_by_name;
Florin Corase127a7e2016-02-18 22:20:01 +0100141
142 /* vector of eid index vectors supported and indexed by locator-set index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200143 u32 **locator_set_to_eids;
Florin Corase127a7e2016-02-18 22:20:01 +0100144
145 /* vectors of indexes for local locator-sets and mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200146 u32 *local_mappings_indexes;
147 u32 *local_locator_set_indexes;
Florin Corase127a7e2016-02-18 22:20:01 +0100148
149 /* hash map of forwarding entries by mapping index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200150 u32 *fwd_entry_by_mapping_index;
Florin Corase127a7e2016-02-18 22:20:01 +0100151
152 /* forwarding entries pool */
Florin Corasa2157cf2016-08-16 21:09:14 +0200153 fwd_entry_t *fwd_entry_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100154
155 /* hash map keyed by nonce of pending map-requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200156 uword *pending_map_requests_by_nonce;
Florin Corase127a7e2016-02-18 22:20:01 +0100157
158 /* pool of pending map requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200159 pending_map_request_t *pending_map_requests_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100160
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200161 /* hash map of sent map register messages */
162 uword *map_register_messages_by_nonce;
163
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200164 /* vector of map-resolvers */
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200165 lisp_msmr_t *map_resolvers;
166
167 /* vector of map-servers */
168 lisp_msmr_t *map_servers;
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200169
170 /* map resolver address currently being used for sending requests.
171 * This has to be an actual address and not an index to map_resolvers vector
172 * since the vector may be modified during request resend/retry procedure
173 * and break things :-) */
174 ip_address_t active_map_resolver;
175
176 u8 do_map_resolver_election;
Florin Corase127a7e2016-02-18 22:20:01 +0100177
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200178 /* map-request locator set index */
179 u32 mreq_itr_rlocs;
180
Florin Coras1a1adc72016-07-22 01:45:30 +0200181 /* vni to vrf hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200182 uword *table_id_by_vni;
183 uword *vni_by_table_id;
Filip Tehlar324112f2016-06-02 16:07:38 +0200184
Florin Coras1a1adc72016-07-22 01:45:30 +0200185 /* vni to bd-index hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200186 uword *bd_id_by_vni;
187 uword *vni_by_bd_id;
Florin Coras1a1adc72016-07-22 01:45:30 +0200188
189 /* track l2 and l3 interfaces that have been created for vni */
Florin Corasa2157cf2016-08-16 21:09:14 +0200190 uword *l2_dp_intf_by_vni;
Florin Coras577c3552016-04-21 00:45:40 +0200191
Florin Corasba888e42017-01-24 11:38:18 -0800192 /* Proxy ITR map index */
Filip Tehlar53f09e32016-05-19 14:25:44 +0200193 u32 pitr_map_index;
194
Florin Corasba888e42017-01-24 11:38:18 -0800195 /** Proxy ETR map index */
196 u32 petr_map_index;
197
Filip Tehlar53f09e32016-05-19 14:25:44 +0200198 /* LISP PITR mode */
199 u8 lisp_pitr;
200
Florin Corasdca88042016-09-14 16:01:38 +0200201 /* map request mode */
202 u8 map_request_mode;
203
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200204 /* enable/disable map registering */
205 u8 map_registering;
206
207 /* enable/disable rloc-probing */
208 u8 rloc_probing;
209
Filip Tehlar9677a942016-11-28 10:23:31 +0100210 /* timing wheel for mappping timeouts */
211 timing_wheel_t wheel;
212
Florin Corase127a7e2016-02-18 22:20:01 +0100213 /* commodity */
Florin Corasa2157cf2016-08-16 21:09:14 +0200214 ip4_main_t *im4;
215 ip6_main_t *im6;
216 vlib_main_t *vlib_main;
217 vnet_main_t *vnet_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100218} lisp_cp_main_t;
219
220/* lisp-gpe control plane */
Florin Corasf3dc11a2017-01-24 03:13:43 -0800221extern lisp_cp_main_t lisp_control_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100222
223extern vlib_node_registration_t lisp_cp_input_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100224extern vlib_node_registration_t lisp_cp_lookup_ip4_node;
225extern vlib_node_registration_t lisp_cp_lookup_ip6_node;
Florin Corase127a7e2016-02-18 22:20:01 +0100226
Florin Corasa2157cf2016-08-16 21:09:14 +0200227clib_error_t *lisp_cp_init ();
Florin Corase127a7e2016-02-18 22:20:01 +0100228
Florin Corasf727db92016-06-23 15:01:58 +0200229always_inline lisp_cp_main_t *
Florin Corasa2157cf2016-08-16 21:09:14 +0200230vnet_lisp_cp_get_main ()
231{
Florin Corasf727db92016-06-23 15:01:58 +0200232 return &lisp_control_main;
233}
234
Florin Corase127a7e2016-02-18 22:20:01 +0100235typedef struct
236{
237 u8 is_add;
238 union
239 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200240 u8 *name;
Florin Corase127a7e2016-02-18 22:20:01 +0100241 u32 index;
242 };
Florin Corasa2157cf2016-08-16 21:09:14 +0200243 locator_t *locators;
Florin Corase127a7e2016-02-18 22:20:01 +0100244 u8 local;
245} vnet_lisp_add_del_locator_set_args_t;
246
247int
248vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
249 u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200250int
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200251vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200252 locator_set_t * ls, u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200253
Florin Corase127a7e2016-02-18 22:20:01 +0100254typedef struct
255{
256 u8 is_add;
Florin Corasf727db92016-06-23 15:01:58 +0200257 gid_address_t eid;
Florin Corase127a7e2016-02-18 22:20:01 +0100258 u32 locator_set_index;
259
260 u32 ttl;
261 u8 action;
262 u8 authoritative;
263
264 u8 local;
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200265 u8 is_static;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200266 u8 *key;
267 u8 key_id;
Florin Corase127a7e2016-02-18 22:20:01 +0100268} vnet_lisp_add_del_mapping_args_t;
269
270int
Florin Corasa2157cf2016-08-16 21:09:14 +0200271vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a,
272 u32 * map_index);
Florin Coras577c3552016-04-21 00:45:40 +0200273int
274vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200275 u32 * map_index_result);
Florin Corase127a7e2016-02-18 22:20:01 +0100276
Florin Corasf727db92016-06-23 15:01:58 +0200277int
278vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200279 u8 authoritative, u32 ttl, u8 is_add, u8 is_static,
Florin Corasa2157cf2016-08-16 21:09:14 +0200280 u32 * res_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200281
282typedef struct
283{
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200284 gid_address_t reid;
285 gid_address_t leid;
Florin Corasf727db92016-06-23 15:01:58 +0200286 u8 is_add;
287} vnet_lisp_add_del_adjacency_args_t;
288
Florin Corasa2157cf2016-08-16 21:09:14 +0200289int vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a);
Florin Corasf727db92016-06-23 15:01:58 +0200290
Florin Corase127a7e2016-02-18 22:20:01 +0100291typedef struct
292{
293 u8 is_add;
294 ip_address_t address;
295} vnet_lisp_add_del_map_resolver_args_t;
296
297int
298vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200299int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add);
Florin Corase127a7e2016-02-18 22:20:01 +0100300
Florin Corasa2157cf2016-08-16 21:09:14 +0200301clib_error_t *vnet_lisp_enable_disable (u8 is_enabled);
302u8 vnet_lisp_enable_disable_status (void);
Filip Tehlar195bcee2016-05-13 17:37:35 +0200303
Florin Corasa2157cf2016-08-16 21:09:14 +0200304int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
Florin Corasba888e42017-01-24 11:38:18 -0800305int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add);
Filip Tehlar53f09e32016-05-19 14:25:44 +0200306
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200307typedef struct
308{
309 u8 is_add;
Florin Corasa2157cf2016-08-16 21:09:14 +0200310 u8 *locator_set_name;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200311} vnet_lisp_add_del_mreq_itr_rloc_args_t;
312
313int
314vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a);
315
Florin Corasa2157cf2016-08-16 21:09:14 +0200316int vnet_lisp_clear_all_remote_adjacencies (void);
Filip Tehlar58f886a2016-05-30 15:57:40 +0200317
Florin Corasa2157cf2016-08-16 21:09:14 +0200318int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200319int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key,
320 u8 is_add);
Florin Corasdca88042016-09-14 16:01:38 +0200321int vnet_lisp_set_map_request_mode (u8 mode);
322u8 vnet_lisp_get_map_request_mode (void);
Filip Tehlar69a9b762016-09-23 10:00:52 +0200323lisp_adjacency_t *vnet_lisp_adjacencies_get_by_vni (u32 vni);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200324int vnet_lisp_rloc_probe_enable_disable (u8 is_enable);
325int vnet_lisp_map_register_enable_disable (u8 is_enable);
326u8 vnet_lisp_map_register_state_get (void);
327u8 vnet_lisp_rloc_probe_state_get (void);
Filip Tehlar324112f2016-06-02 16:07:38 +0200328
Florin Corasba888e42017-01-24 11:38:18 -0800329always_inline mapping_t *
330lisp_get_petr_mapping (lisp_cp_main_t * lcm)
331{
332 return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
333}
334
Florin Corase127a7e2016-02-18 22:20:01 +0100335#endif /* VNET_CONTROL_H_ */
Florin Corasa2157cf2016-08-16 21:09:14 +0200336
337/*
338 * fd.io coding-style-patch-verification: ON
339 *
340 * Local Variables:
341 * eval: (c-set-style "gnu")
342 * End:
343 */