blob: 0e63b3c745456956193f581e75cf3001413a2e5b [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 PENDING_MREG_EXPIRATION_TIME 3.0 /* seconds */
29#define RLOC_PROBING_INTERVAL 60.0
30
31/* when map-registration is enabled "quick registration" takes place first.
32 In this mode ETR sends map-register messages at an increased frequency
33 until specified message count is reached */
34#define QUICK_MAP_REGISTER_MSG_COUNT 3
35#define QUICK_MAP_REGISTER_INTERVAL 3.0
36
37/* normal map-register period */
38#define MAP_REGISTER_INTERVAL 60.0
39
Florin Corascdc74272017-06-21 16:27:01 -070040/* 24 hours */
41#define MAP_REGISTER_DEFAULT_TTL 86400
Filip Tehlar397fd7d2016-10-26 14:31:24 +020042
Florin Corase127a7e2016-02-18 22:20:01 +010043typedef struct
44{
45 gid_address_t src;
46 gid_address_t dst;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020047 u32 retries_num;
48 f64 time_to_expire;
49 u8 is_smr_invoked;
Florin Corasa2157cf2016-08-16 21:09:14 +020050 u64 *nonces;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020051 u8 to_be_removed;
Florin Corase127a7e2016-02-18 22:20:01 +010052} pending_map_request_t;
53
54typedef struct
55{
Filip Tehlar2fdaece2016-09-28 14:27:59 +020056 gid_address_t leid;
57 gid_address_t reid;
Filip Tehlar69a9b762016-09-23 10:00:52 +020058 u8 is_src_dst;
Florin Corasa2157cf2016-08-16 21:09:14 +020059 locator_pair_t *locator_pairs;
Florin Corase127a7e2016-02-18 22:20:01 +010060} fwd_entry_t;
61
Filip Tehlar69a9b762016-09-23 10:00:52 +020062typedef struct
63{
64 gid_address_t leid;
65 gid_address_t reid;
66} lisp_adjacency_t;
67
Florin Corase127a7e2016-02-18 22:20:01 +010068typedef enum
69{
70 IP4_MISS_PACKET,
71 IP6_MISS_PACKET
72} miss_packet_type_t;
73
Filip Tehlar397fd7d2016-10-26 14:31:24 +020074/* map-server/map-resolver structure */
Florin Corase127a7e2016-02-18 22:20:01 +010075typedef struct
76{
Filip Tehlara5abdeb2016-07-18 17:35:40 +020077 u8 is_down;
78 f64 last_update;
79 ip_address_t address;
Filip Tehlar397fd7d2016-10-26 14:31:24 +020080 char *key;
81} lisp_msmr_t;
Filip Tehlara5abdeb2016-07-18 17:35:40 +020082
83typedef struct
84{
Florin Corase127a7e2016-02-18 22:20:01 +010085 /* headers */
86 u8 data[100];
87 u32 length;
88 miss_packet_type_t type;
89} miss_packet_t;
90
Filip Tehlard5a65db2017-05-17 17:21:10 +020091typedef struct
92{
93 u8 mac[6];
94 u32 ip4;
95} lisp_api_l2_arp_entry_t;
96
Florin Corasdca88042016-09-14 16:01:38 +020097typedef enum
98{
99 MR_MODE_DST_ONLY = 0,
100 MR_MODE_SRC_DST,
101 _MR_MODE_MAX
102} map_request_mode_t;
103
Florin Corasba888e42017-01-24 11:38:18 -0800104#define foreach_lisp_flag_bit \
Filip Tehlar4868ff62017-03-09 16:48:39 +0100105 _(USE_PETR, "Use Proxy-ETR") \
106 _(STATS_ENABLED, "Statistics enabled")
Florin Corasba888e42017-01-24 11:38:18 -0800107
108typedef enum lisp_flag_bits
109{
110#define _(sym, str) LISP_FLAG_BIT_##sym,
111 foreach_lisp_flag_bit
112#undef _
113} lisp_flag_bits_e;
114
115typedef enum lisp_flags
116{
117#define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym,
118 foreach_lisp_flag_bit
119#undef _
120} lisp_flags_e;
121
Florin Corase127a7e2016-02-18 22:20:01 +0100122typedef struct
123{
Filip Tehlard5a65db2017-05-17 17:21:10 +0200124 ip_address_t addr;
125 u32 bd;
126} lisp_l2_arp_key_t;
127
128typedef struct
129{
Florin Corasacd4c632017-06-15 14:33:48 -0700130 u64 nonce;
131 u8 is_rloc_probe;
132 mapping_t *mappings;
133 volatile u8 is_free;
134} map_records_arg_t;
135
136typedef struct
137{
Florin Corasba888e42017-01-24 11:38:18 -0800138 u32 flags;
139
Filip Tehlar46d4e362016-05-09 09:39:26 +0200140 /* LISP feature status */
141 u8 is_enabled;
142
Florin Corase127a7e2016-02-18 22:20:01 +0100143 /* eid table */
144 gid_dictionary_t mapping_index_by_gid;
145
146 /* pool of mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200147 mapping_t *mapping_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100148
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200149 /* hash map of secret keys by mapping index */
150 u8 *key_by_mapping_index;
151
Florin Corase127a7e2016-02-18 22:20:01 +0100152 /* pool of locators */
Florin Corasa2157cf2016-08-16 21:09:14 +0200153 locator_t *locator_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100154
155 /* pool of locator-sets */
Florin Corasa2157cf2016-08-16 21:09:14 +0200156 locator_set_t *locator_set_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100157
158 /* vector of locator-set vectors composed of and indexed by locator index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200159 u32 **locator_to_locator_sets;
Florin Corase127a7e2016-02-18 22:20:01 +0100160
161 /* hash map of locators by name */
Florin Corasa2157cf2016-08-16 21:09:14 +0200162 uword *locator_set_index_by_name;
Florin Corase127a7e2016-02-18 22:20:01 +0100163
164 /* vector of eid index vectors supported and indexed by locator-set index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200165 u32 **locator_set_to_eids;
Florin Corase127a7e2016-02-18 22:20:01 +0100166
167 /* vectors of indexes for local locator-sets and mappings */
Florin Corasa2157cf2016-08-16 21:09:14 +0200168 u32 *local_mappings_indexes;
169 u32 *local_locator_set_indexes;
Florin Corase127a7e2016-02-18 22:20:01 +0100170
171 /* hash map of forwarding entries by mapping index */
Florin Corasa2157cf2016-08-16 21:09:14 +0200172 u32 *fwd_entry_by_mapping_index;
Florin Corase127a7e2016-02-18 22:20:01 +0100173
174 /* forwarding entries pool */
Florin Corasa2157cf2016-08-16 21:09:14 +0200175 fwd_entry_t *fwd_entry_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100176
177 /* hash map keyed by nonce of pending map-requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200178 uword *pending_map_requests_by_nonce;
Florin Corase127a7e2016-02-18 22:20:01 +0100179
180 /* pool of pending map requests */
Florin Corasa2157cf2016-08-16 21:09:14 +0200181 pending_map_request_t *pending_map_requests_pool;
Florin Corase127a7e2016-02-18 22:20:01 +0100182
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200183 /* hash map of sent map register messages */
184 uword *map_register_messages_by_nonce;
185
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200186 /* vector of map-resolvers */
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200187 lisp_msmr_t *map_resolvers;
188
189 /* vector of map-servers */
190 lisp_msmr_t *map_servers;
Filip Tehlara5abdeb2016-07-18 17:35:40 +0200191
192 /* map resolver address currently being used for sending requests.
193 * This has to be an actual address and not an index to map_resolvers vector
194 * since the vector may be modified during request resend/retry procedure
195 * and break things :-) */
196 ip_address_t active_map_resolver;
197
198 u8 do_map_resolver_election;
Florin Corase127a7e2016-02-18 22:20:01 +0100199
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200200 /* map-request locator set index */
201 u32 mreq_itr_rlocs;
202
Florin Coras1a1adc72016-07-22 01:45:30 +0200203 /* vni to vrf hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200204 uword *table_id_by_vni;
205 uword *vni_by_table_id;
Filip Tehlar324112f2016-06-02 16:07:38 +0200206
Florin Coras1a1adc72016-07-22 01:45:30 +0200207 /* vni to bd-index hash tables */
Florin Corasa2157cf2016-08-16 21:09:14 +0200208 uword *bd_id_by_vni;
209 uword *vni_by_bd_id;
Florin Coras1a1adc72016-07-22 01:45:30 +0200210
211 /* track l2 and l3 interfaces that have been created for vni */
Florin Corasa2157cf2016-08-16 21:09:14 +0200212 uword *l2_dp_intf_by_vni;
Florin Coras577c3552016-04-21 00:45:40 +0200213
Florin Corasba888e42017-01-24 11:38:18 -0800214 /* Proxy ITR map index */
Filip Tehlar53f09e32016-05-19 14:25:44 +0200215 u32 pitr_map_index;
216
Florin Corasba888e42017-01-24 11:38:18 -0800217 /** Proxy ETR map index */
218 u32 petr_map_index;
219
Filip Tehlar53f09e32016-05-19 14:25:44 +0200220 /* LISP PITR mode */
221 u8 lisp_pitr;
222
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200223 /* mapping index for NSH */
224 u32 nsh_map_index;
225
Florin Corasdca88042016-09-14 16:01:38 +0200226 /* map request mode */
227 u8 map_request_mode;
228
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200229 /* enable/disable map registering */
230 u8 map_registering;
231
232 /* enable/disable rloc-probing */
233 u8 rloc_probing;
234
Filip Tehlar9677a942016-11-28 10:23:31 +0100235 /* timing wheel for mappping timeouts */
236 timing_wheel_t wheel;
237
Florin Corasacd4c632017-06-15 14:33:48 -0700238 /** Per thread pool of records shared with thread0 */
239 map_records_arg_t **map_records_args_pool;
240
Florin Corase127a7e2016-02-18 22:20:01 +0100241 /* commodity */
Florin Corasa2157cf2016-08-16 21:09:14 +0200242 ip4_main_t *im4;
243 ip6_main_t *im6;
244 vlib_main_t *vlib_main;
245 vnet_main_t *vnet_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100246} lisp_cp_main_t;
247
248/* lisp-gpe control plane */
Florin Corasf3dc11a2017-01-24 03:13:43 -0800249extern lisp_cp_main_t lisp_control_main;
Florin Corase127a7e2016-02-18 22:20:01 +0100250
251extern vlib_node_registration_t lisp_cp_input_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100252extern vlib_node_registration_t lisp_cp_lookup_ip4_node;
253extern vlib_node_registration_t lisp_cp_lookup_ip6_node;
Florin Corase127a7e2016-02-18 22:20:01 +0100254
Florin Corasa2157cf2016-08-16 21:09:14 +0200255clib_error_t *lisp_cp_init ();
Florin Corase127a7e2016-02-18 22:20:01 +0100256
Florin Corasf727db92016-06-23 15:01:58 +0200257always_inline lisp_cp_main_t *
Florin Corasa2157cf2016-08-16 21:09:14 +0200258vnet_lisp_cp_get_main ()
259{
Florin Corasf727db92016-06-23 15:01:58 +0200260 return &lisp_control_main;
261}
262
Filip Tehlar4868ff62017-03-09 16:48:39 +0100263void
264get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b,
265 gid_address_t * src, gid_address_t * dst,
266 u16 type);
267
Florin Corase127a7e2016-02-18 22:20:01 +0100268typedef struct
269{
270 u8 is_add;
271 union
272 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200273 u8 *name;
Florin Corase127a7e2016-02-18 22:20:01 +0100274 u32 index;
275 };
Florin Corasa2157cf2016-08-16 21:09:14 +0200276 locator_t *locators;
Florin Corase127a7e2016-02-18 22:20:01 +0100277 u8 local;
278} vnet_lisp_add_del_locator_set_args_t;
279
280int
281vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
282 u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200283int
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200284vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200285 locator_set_t * ls, u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200286
Florin Corase127a7e2016-02-18 22:20:01 +0100287typedef struct
288{
289 u8 is_add;
Florin Corasf727db92016-06-23 15:01:58 +0200290 gid_address_t eid;
Florin Corase127a7e2016-02-18 22:20:01 +0100291 u32 locator_set_index;
292
293 u32 ttl;
294 u8 action;
295 u8 authoritative;
296
297 u8 local;
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200298 u8 is_static;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200299 u8 *key;
300 u8 key_id;
Florin Corase127a7e2016-02-18 22:20:01 +0100301} vnet_lisp_add_del_mapping_args_t;
302
303int
Florin Corasa2157cf2016-08-16 21:09:14 +0200304vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a,
305 u32 * map_index);
Florin Coras577c3552016-04-21 00:45:40 +0200306int
307vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200308 u32 * map_index_result);
Florin Corase127a7e2016-02-18 22:20:01 +0100309
Florin Corasf727db92016-06-23 15:01:58 +0200310int
311vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200312 u8 authoritative, u32 ttl, u8 is_add, u8 is_static,
Florin Corasa2157cf2016-08-16 21:09:14 +0200313 u32 * res_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200314
315typedef struct
316{
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200317 gid_address_t reid;
318 gid_address_t leid;
Florin Corasf727db92016-06-23 15:01:58 +0200319 u8 is_add;
320} vnet_lisp_add_del_adjacency_args_t;
321
Florin Corasa2157cf2016-08-16 21:09:14 +0200322int vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a);
Florin Corasf727db92016-06-23 15:01:58 +0200323
Florin Corase127a7e2016-02-18 22:20:01 +0100324typedef struct
325{
326 u8 is_add;
327 ip_address_t address;
328} vnet_lisp_add_del_map_resolver_args_t;
329
330int
331vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200332int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add);
Florin Corase127a7e2016-02-18 22:20:01 +0100333
Florin Corasa2157cf2016-08-16 21:09:14 +0200334clib_error_t *vnet_lisp_enable_disable (u8 is_enabled);
335u8 vnet_lisp_enable_disable_status (void);
Filip Tehlar195bcee2016-05-13 17:37:35 +0200336
Florin Corasa2157cf2016-08-16 21:09:14 +0200337int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
Florin Corasba888e42017-01-24 11:38:18 -0800338int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add);
Filip Tehlar53f09e32016-05-19 14:25:44 +0200339
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200340typedef struct
341{
342 u8 is_add;
Florin Corasa2157cf2016-08-16 21:09:14 +0200343 u8 *locator_set_name;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +0200344} vnet_lisp_add_del_mreq_itr_rloc_args_t;
345
346int
347vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a);
348
Florin Corasa2157cf2016-08-16 21:09:14 +0200349int vnet_lisp_clear_all_remote_adjacencies (void);
Filip Tehlar58f886a2016-05-30 15:57:40 +0200350
Florin Corasa2157cf2016-08-16 21:09:14 +0200351int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200352int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key,
353 u8 is_add);
Florin Corasdca88042016-09-14 16:01:38 +0200354int vnet_lisp_set_map_request_mode (u8 mode);
355u8 vnet_lisp_get_map_request_mode (void);
Filip Tehlar69a9b762016-09-23 10:00:52 +0200356lisp_adjacency_t *vnet_lisp_adjacencies_get_by_vni (u32 vni);
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200357int vnet_lisp_rloc_probe_enable_disable (u8 is_enable);
358int vnet_lisp_map_register_enable_disable (u8 is_enable);
359u8 vnet_lisp_map_register_state_get (void);
360u8 vnet_lisp_rloc_probe_state_get (void);
Filip Tehlard5a65db2017-05-17 17:21:10 +0200361int vnet_lisp_add_del_l2_arp_entry (gid_address_t * key, u8 * mac, u8 is_add);
362u32 *vnet_lisp_l2_arp_bds_get (void);
363lisp_api_l2_arp_entry_t *vnet_lisp_l2_arp_entries_get_by_bd (u32 bd);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200364int vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add);
Filip Tehlar324112f2016-06-02 16:07:38 +0200365
Filip Tehlar816f4372017-04-26 16:09:06 +0200366map_records_arg_t *parse_map_reply (vlib_buffer_t * b);
367
Florin Corasba888e42017-01-24 11:38:18 -0800368always_inline mapping_t *
369lisp_get_petr_mapping (lisp_cp_main_t * lcm)
370{
371 return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
372}
373
Florin Corase127a7e2016-02-18 22:20:01 +0100374#endif /* VNET_CONTROL_H_ */
Florin Corasa2157cf2016-08-16 21:09:14 +0200375
376/*
377 * fd.io coding-style-patch-verification: ON
378 *
379 * Local Variables:
380 * eval: (c-set-style "gnu")
381 * End:
382 */