blob: 7b0380fbc0ab12a3a7acd08c93da08d2b518718b [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>
Dave Barach5c20a012017-06-13 08:48:31 -040022#include <vppinfra/timing_wheel.h>
Florin Corase127a7e2016-02-18 22:20:01 +010023
Filip Tehlara5abdeb2016-07-18 17:35:40 +020024#define NUMBER_OF_RETRIES 1
Florin Corasa2157cf2016-08-16 21:09:14 +020025#define PENDING_MREQ_EXPIRATION_TIME 3.0 /* seconds */
Florin Corasf4691cd2016-08-15 19:16:32 +020026#define PENDING_MREQ_QUEUE_LEN 5
Filip Tehlara5abdeb2016-07-18 17:35:40 +020027
Filip Tehlar397fd7d2016-10-26 14:31:24 +020028#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 */
Filip Tehlar7048ff12017-07-27 08:09:14 +020033#define QUICK_MAP_REGISTER_MSG_COUNT 5
Filip Tehlar397fd7d2016-10-26 14:31:24 +020034#define QUICK_MAP_REGISTER_INTERVAL 3.0
35
36/* normal map-register period */
37#define MAP_REGISTER_INTERVAL 60.0
38
Filip Tehlar7048ff12017-07-27 08:09:14 +020039/* how many tries until next map-server election */
40#define MAX_EXPIRED_MAP_REGISTERS_DEFAULT 3
41
42#define PENDING_MREG_EXPIRATION_TIME 3.0 /* seconds */
43
Florin Corascdc74272017-06-21 16:27:01 -070044/* 24 hours */
45#define MAP_REGISTER_DEFAULT_TTL 86400
Filip Tehlar397fd7d2016-10-26 14:31:24 +020046
Florin Corase127a7e2016-02-18 22:20:01 +010047typedef struct
48{
49 gid_address_t src;
50 gid_address_t dst;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020051 u32 retries_num;
52 f64 time_to_expire;
53 u8 is_smr_invoked;
Florin Corasa2157cf2016-08-16 21:09:14 +020054 u64 *nonces;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020055 u8 to_be_removed;
Florin Corase127a7e2016-02-18 22:20:01 +010056} pending_map_request_t;
57
58typedef struct
59{
Filip Tehlar7048ff12017-07-27 08:09:14 +020060 f64 time_to_expire;
61} pending_map_register_t;
62
63typedef struct
64{
Filip Tehlar2fdaece2016-09-28 14:27:59 +020065 gid_address_t leid;
66 gid_address_t reid;
Filip Tehlar69a9b762016-09-23 10:00:52 +020067 u8 is_src_dst;
Florin Corasa2157cf2016-08-16 21:09:14 +020068 locator_pair_t *locator_pairs;
Florin Corase127a7e2016-02-18 22:20:01 +010069} fwd_entry_t;
70
Filip Tehlar69a9b762016-09-23 10:00:52 +020071typedef struct
72{
73 gid_address_t leid;
74 gid_address_t reid;
75} lisp_adjacency_t;
76
Florin Corase127a7e2016-02-18 22:20:01 +010077typedef enum
78{
79 IP4_MISS_PACKET,
80 IP6_MISS_PACKET
81} miss_packet_type_t;
82
Filip Tehlar397fd7d2016-10-26 14:31:24 +020083/* map-server/map-resolver structure */
Florin Corase127a7e2016-02-18 22:20:01 +010084typedef struct
85{
Filip Tehlara5abdeb2016-07-18 17:35:40 +020086 u8 is_down;
87 f64 last_update;
88 ip_address_t address;
Filip Tehlar397fd7d2016-10-26 14:31:24 +020089 char *key;
90} lisp_msmr_t;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020091
92typedef struct
93{
Florin Corase127a7e2016-02-18 22:20:01 +010094 /* headers */
95 u8 data[100];
96 u32 length;
97 miss_packet_type_t type;
98} miss_packet_t;
99
Filip Tehlard5a65db2017-05-17 17:21:10 +0200100typedef struct
101{
102 u8 mac[6];
103 u32 ip4;
104} lisp_api_l2_arp_entry_t;
105
Florin Corasdca88042016-09-14 16:01:38 +0200106typedef enum
107{
108 MR_MODE_DST_ONLY = 0,
109 MR_MODE_SRC_DST,
110 _MR_MODE_MAX
111} map_request_mode_t;
112
Florin Corasba888e42017-01-24 11:38:18 -0800113#define foreach_lisp_flag_bit \
Filip Tehlar4868ff62017-03-09 16:48:39 +0100114 _(USE_PETR, "Use Proxy-ETR") \
115 _(STATS_ENABLED, "Statistics enabled")
Florin Corasba888e42017-01-24 11:38:18 -0800116
117typedef enum lisp_flag_bits
118{
119#define _(sym, str) LISP_FLAG_BIT_##sym,
120 foreach_lisp_flag_bit
121#undef _
122} lisp_flag_bits_e;
123
124typedef enum lisp_flags
125{
126#define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym,
127 foreach_lisp_flag_bit
128#undef _
129} lisp_flags_e;
130
Florin Corase127a7e2016-02-18 22:20:01 +0100131typedef struct
132{
Filip Tehlard5a65db2017-05-17 17:21:10 +0200133 ip_address_t addr;
134 u32 bd;
135} lisp_l2_arp_key_t;
136
137typedef struct
138{
Florin Corasacd4c632017-06-15 14:33:48 -0700139 u64 nonce;
140 u8 is_rloc_probe;
141 mapping_t *mappings;
142 volatile u8 is_free;
143} map_records_arg_t;
144
145typedef struct
146{
Florin Corasba888e42017-01-24 11:38:18 -0800147 u32 flags;
148
Filip Tehlar46d4e362016-05-09 09:39:26 +0200149 /* LISP feature status */
150 u8 is_enabled;
151
Florin Corase127a7e2016-02-18 22:20:01 +0100152 /* eid table */
153 gid_dictionary_t mapping_index_by_gid;
154
155 /* pool of mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200156 mapping_t *mapping_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100157
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200158 /* hash map of secret keys by mapping index */
159 u8 *key_by_mapping_index;
160
Florin Corase127a7e2016-02-18 22:20:01 +0100161 /* pool of locators */
Florin Corasa2157cf2016-08-16 21:09:14 +0200162 locator_t *locator_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100163
164 /* pool of locator-sets */
Florin Corasa2157cf2016-08-16 21:09:14 +0200165 locator_set_t *locator_set_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100166
167 /* vector of locator-set vectors composed of and indexed by locator index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200168 u32 **locator_to_locator_sets;
Florin Corase127a7e2016-02-18 22:20:01 +0100169
170 /* hash map of locators by name */
Florin Corasa2157cf2016-08-16 21:09:14 +0200171 uword *locator_set_index_by_name;
Florin Corase127a7e2016-02-18 22:20:01 +0100172
173 /* vector of eid index vectors supported and indexed by locator-set index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200174 u32 **locator_set_to_eids;
Florin Corase127a7e2016-02-18 22:20:01 +0100175
176 /* vectors of indexes for local locator-sets and mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200177 u32 *local_mappings_indexes;
178 u32 *local_locator_set_indexes;
Florin Corase127a7e2016-02-18 22:20:01 +0100179
180 /* hash map of forwarding entries by mapping index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200181 u32 *fwd_entry_by_mapping_index;
Florin Corase127a7e2016-02-18 22:20:01 +0100182
183 /* forwarding entries pool */
Florin Corasa2157cf2016-08-16 21:09:14 +0200184 fwd_entry_t *fwd_entry_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100185
186 /* hash map keyed by nonce of pending map-requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200187 uword *pending_map_requests_by_nonce;
Florin Corase127a7e2016-02-18 22:20:01 +0100188
189 /* pool of pending map requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200190 pending_map_request_t *pending_map_requests_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100191
Filip Tehlar7048ff12017-07-27 08:09:14 +0200192 /* pool of pending map registers */
193 pending_map_register_t *pending_map_registers_pool;
194
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200195 /* hash map of sent map register messages */
196 uword *map_register_messages_by_nonce;
197
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200198 /* vector of map-resolvers */
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200199 lisp_msmr_t *map_resolvers;
200
201 /* vector of map-servers */
202 lisp_msmr_t *map_servers;
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200203
204 /* map resolver address currently being used for sending requests.
205 * This has to be an actual address and not an index to map_resolvers vector
206 * since the vector may be modified during request resend/retry procedure
207 * and break things :-) */
208 ip_address_t active_map_resolver;
Filip Tehlar7048ff12017-07-27 08:09:14 +0200209 ip_address_t active_map_server;
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200210
211 u8 do_map_resolver_election;
Filip Tehlar7048ff12017-07-27 08:09:14 +0200212 u8 do_map_server_election;
Florin Corase127a7e2016-02-18 22:20:01 +0100213
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200214 /* map-request locator set index */
215 u32 mreq_itr_rlocs;
216
Florin Coras1a1adc72016-07-22 01:45:30 +0200217 /* vni to vrf hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200218 uword *table_id_by_vni;
219 uword *vni_by_table_id;
Filip Tehlar324112f2016-06-02 16:07:38 +0200220
Florin Coras1a1adc72016-07-22 01:45:30 +0200221 /* vni to bd-index hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200222 uword *bd_id_by_vni;
223 uword *vni_by_bd_id;
Florin Coras1a1adc72016-07-22 01:45:30 +0200224
225 /* track l2 and l3 interfaces that have been created for vni */
Florin Corasa2157cf2016-08-16 21:09:14 +0200226 uword *l2_dp_intf_by_vni;
Florin Coras577c3552016-04-21 00:45:40 +0200227
Florin Corasba888e42017-01-24 11:38:18 -0800228 /* Proxy ITR map index */
Filip Tehlar53f09e32016-05-19 14:25:44 +0200229 u32 pitr_map_index;
230
Florin Corasba888e42017-01-24 11:38:18 -0800231 /** Proxy ETR map index */
232 u32 petr_map_index;
233
Filip Tehlar53f09e32016-05-19 14:25:44 +0200234 /* LISP PITR mode */
235 u8 lisp_pitr;
236
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200237 /* mapping index for NSH */
238 u32 nsh_map_index;
239
Florin Corasdca88042016-09-14 16:01:38 +0200240 /* map request mode */
241 u8 map_request_mode;
242
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200243 /* enable/disable map registering */
244 u8 map_registering;
245
246 /* enable/disable rloc-probing */
247 u8 rloc_probing;
248
Filip Tehlar9677a942016-11-28 10:23:31 +0100249 /* timing wheel for mappping timeouts */
250 timing_wheel_t wheel;
251
Florin Corasacd4c632017-06-15 14:33:48 -0700252 /** Per thread pool of records shared with thread0 */
253 map_records_arg_t **map_records_args_pool;
254
Filip Tehlar1e553a02017-08-02 12:45:07 +0200255 /* TTL used for all mappings when registering */
256 u32 map_register_ttl;
257
Filip Tehlar7048ff12017-07-27 08:09:14 +0200258 /* control variables for map server election */
259 u32 max_expired_map_registers;
260 u32 expired_map_registers;
261
Florin Corase127a7e2016-02-18 22:20:01 +0100262 /* commodity */
Florin Corasa2157cf2016-08-16 21:09:14 +0200263 ip4_main_t *im4;
264 ip6_main_t *im6;
265 vlib_main_t *vlib_main;
266 vnet_main_t *vnet_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100267} lisp_cp_main_t;
268
269/* lisp-gpe control plane */
Florin Corasf3dc11a2017-01-24 03:13:43 -0800270extern lisp_cp_main_t lisp_control_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100271
272extern vlib_node_registration_t lisp_cp_input_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100273extern vlib_node_registration_t lisp_cp_lookup_ip4_node;
274extern vlib_node_registration_t lisp_cp_lookup_ip6_node;
Florin Corase127a7e2016-02-18 22:20:01 +0100275
Florin Corasa2157cf2016-08-16 21:09:14 +0200276clib_error_t *lisp_cp_init ();
Florin Corase127a7e2016-02-18 22:20:01 +0100277
Florin Corasf727db92016-06-23 15:01:58 +0200278always_inline lisp_cp_main_t *
Florin Corasa2157cf2016-08-16 21:09:14 +0200279vnet_lisp_cp_get_main ()
280{
Florin Corasf727db92016-06-23 15:01:58 +0200281 return &lisp_control_main;
282}
283
Filip Tehlar4868ff62017-03-09 16:48:39 +0100284void
285get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b,
286 gid_address_t * src, gid_address_t * dst,
287 u16 type);
288
Florin Corase127a7e2016-02-18 22:20:01 +0100289typedef struct
290{
291 u8 is_add;
292 union
293 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200294 u8 *name;
Florin Corase127a7e2016-02-18 22:20:01 +0100295 u32 index;
296 };
Florin Corasa2157cf2016-08-16 21:09:14 +0200297 locator_t *locators;
Florin Corase127a7e2016-02-18 22:20:01 +0100298 u8 local;
299} vnet_lisp_add_del_locator_set_args_t;
300
301int
302vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
303 u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200304int
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200305vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200306 locator_set_t * ls, u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200307
Florin Corase127a7e2016-02-18 22:20:01 +0100308typedef struct
309{
310 u8 is_add;
Florin Corasf727db92016-06-23 15:01:58 +0200311 gid_address_t eid;
Florin Corase127a7e2016-02-18 22:20:01 +0100312 u32 locator_set_index;
313
314 u32 ttl;
315 u8 action;
316 u8 authoritative;
317
318 u8 local;
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200319 u8 is_static;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200320 u8 *key;
321 u8 key_id;
Florin Corase127a7e2016-02-18 22:20:01 +0100322} vnet_lisp_add_del_mapping_args_t;
323
324int
Florin Corasa2157cf2016-08-16 21:09:14 +0200325vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a,
326 u32 * map_index);
Florin Coras577c3552016-04-21 00:45:40 +0200327int
328vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200329 u32 * map_index_result);
Florin Corase127a7e2016-02-18 22:20:01 +0100330
Florin Corasf727db92016-06-23 15:01:58 +0200331int
332vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200333 u8 authoritative, u32 ttl, u8 is_add, u8 is_static,
Florin Corasa2157cf2016-08-16 21:09:14 +0200334 u32 * res_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200335
336typedef struct
337{
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200338 gid_address_t reid;
339 gid_address_t leid;
Florin Corasf727db92016-06-23 15:01:58 +0200340 u8 is_add;
341} vnet_lisp_add_del_adjacency_args_t;
342
Florin Corasa2157cf2016-08-16 21:09:14 +0200343int vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a);
Florin Corasf727db92016-06-23 15:01:58 +0200344
Florin Corase127a7e2016-02-18 22:20:01 +0100345typedef struct
346{
347 u8 is_add;
348 ip_address_t address;
349} vnet_lisp_add_del_map_resolver_args_t;
350
351int
352vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200353int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add);
Florin Corase127a7e2016-02-18 22:20:01 +0100354
Florin Corasa2157cf2016-08-16 21:09:14 +0200355clib_error_t *vnet_lisp_enable_disable (u8 is_enabled);
356u8 vnet_lisp_enable_disable_status (void);
Filip Tehlar195bcee2016-05-13 17:37:35 +0200357
Florin Corasa2157cf2016-08-16 21:09:14 +0200358int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
Florin Corasba888e42017-01-24 11:38:18 -0800359int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add);
Filip Tehlar53f09e32016-05-19 14:25:44 +0200360
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200361typedef struct
362{
363 u8 is_add;
Florin Corasa2157cf2016-08-16 21:09:14 +0200364 u8 *locator_set_name;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200365} vnet_lisp_add_del_mreq_itr_rloc_args_t;
366
367int
368vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a);
369
Florin Corasa2157cf2016-08-16 21:09:14 +0200370int vnet_lisp_clear_all_remote_adjacencies (void);
Filip Tehlar58f886a2016-05-30 15:57:40 +0200371
Florin Corasa2157cf2016-08-16 21:09:14 +0200372int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200373int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key,
374 u8 is_add);
Florin Corasdca88042016-09-14 16:01:38 +0200375int vnet_lisp_set_map_request_mode (u8 mode);
376u8 vnet_lisp_get_map_request_mode (void);
Filip Tehlar69a9b762016-09-23 10:00:52 +0200377lisp_adjacency_t *vnet_lisp_adjacencies_get_by_vni (u32 vni);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200378int vnet_lisp_rloc_probe_enable_disable (u8 is_enable);
379int vnet_lisp_map_register_enable_disable (u8 is_enable);
380u8 vnet_lisp_map_register_state_get (void);
381u8 vnet_lisp_rloc_probe_state_get (void);
Filip Tehlard5a65db2017-05-17 17:21:10 +0200382int vnet_lisp_add_del_l2_arp_entry (gid_address_t * key, u8 * mac, u8 is_add);
383u32 *vnet_lisp_l2_arp_bds_get (void);
384lisp_api_l2_arp_entry_t *vnet_lisp_l2_arp_entries_get_by_bd (u32 bd);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200385int vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add);
Filip Tehlar1e553a02017-08-02 12:45:07 +0200386int vnet_lisp_map_register_set_ttl (u32 ttl);
387u32 vnet_lisp_map_register_get_ttl (void);
Filip Tehlar7048ff12017-07-27 08:09:14 +0200388int vnet_lisp_map_register_fallback_threshold_set (u32 value);
389u32 vnet_lisp_map_register_fallback_threshold_get (void);
Filip Tehlar324112f2016-06-02 16:07:38 +0200390
Filip Tehlar816f4372017-04-26 16:09:06 +0200391map_records_arg_t *parse_map_reply (vlib_buffer_t * b);
392
Florin Corasba888e42017-01-24 11:38:18 -0800393always_inline mapping_t *
394lisp_get_petr_mapping (lisp_cp_main_t * lcm)
395{
396 return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
397}
398
Florin Corase127a7e2016-02-18 22:20:01 +0100399#endif /* VNET_CONTROL_H_ */
Florin Corasa2157cf2016-08-16 21:09:14 +0200400
401/*
402 * fd.io coding-style-patch-verification: ON
403 *
404 * Local Variables:
405 * eval: (c-set-style "gnu")
406 * End:
407 */