FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
control.h
Go to the documentation of this file.
1 /*
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>
22 #include <vppinfra/timing_wheel.h>
23 
24 #define NUMBER_OF_RETRIES 1
25 #define PENDING_MREQ_EXPIRATION_TIME 3.0 /* seconds */
26 #define PENDING_MREQ_QUEUE_LEN 5
27 
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 5
34 #define QUICK_MAP_REGISTER_INTERVAL 3.0
35 
36 /* normal map-register period */
37 #define MAP_REGISTER_INTERVAL 60.0
38 
39 /* 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 
44 /* 24 hours */
45 #define MAP_REGISTER_DEFAULT_TTL 86400
46 
47 typedef struct
48 {
57 
58 typedef struct
59 {
62 
63 typedef struct
64 {
69 } fwd_entry_t;
70 
71 typedef struct
72 {
76 
77 typedef enum
78 {
82 
83 /* map-server/map-resolver structure */
84 typedef struct
85 {
88  ip_address_t address;
89  char *key;
90 } lisp_msmr_t;
91 
92 typedef struct
93 {
94  /* headers */
95  u8 data[100];
99 
100 typedef struct
101 {
102  u8 mac[6];
105 
106 typedef struct
107 {
108  u8 mac[6];
109  u8 ip6[16];
111 
112 typedef enum
113 {
116  _MR_MODE_MAX
118 
119 #define foreach_lisp_flag_bit \
120  _(USE_PETR, "Use Proxy-ETR") \
121  _(STATS_ENABLED, "Statistics enabled")
122 
123 typedef enum lisp_flag_bits
124 {
125 #define _(sym, str) LISP_FLAG_BIT_##sym,
127 #undef _
129 
130 typedef enum lisp_flags
131 {
132 #define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym,
134 #undef _
135 } lisp_flags_e;
136 
137 typedef struct
138 {
139  ip_address_t addr;
142 
143 typedef enum
144 {
148 
149 typedef struct
150 {
154  volatile u8 is_free;
156 
157 typedef struct
158 {
160 
161  /* LISP feature status */
163 
164  /* eid table */
166 
167  /* pool of mappings */
169 
170  /* hash map of secret keys by mapping index */
172 
173  /* pool of locators */
175 
176  /* pool of locator-sets */
178 
179  /* vector of locator-set vectors composed of and indexed by locator index */
181 
182  /* hash map of locators by name */
184 
185  /* vector of eid index vectors supported and indexed by locator-set index */
187 
188  /* vectors of indexes for local locator-sets and mappings */
191 
192  /* hash map of forwarding entries by mapping index */
194 
195  /* pool of vectors of rmts per lcl mapping in adjacencies */
197 
198  /* hash of pool positions of vectors of rmts by lcl mapping index */
200 
201  /* forwarding entries pool */
203 
204  /* hash map keyed by nonce of pending map-requests */
206 
207  /* pool of pending map requests */
209 
210  /* pool of pending map registers */
212 
213  /* hash map of sent map register messages */
215 
216  /* vector of map-resolvers */
218 
219  /* vector of map-servers */
221 
222  /* map resolver address currently being used for sending requests.
223  * This has to be an actual address and not an index to map_resolvers vector
224  * since the vector may be modified during request resend/retry procedure
225  * and break things :-) */
226  ip_address_t active_map_resolver;
227  ip_address_t active_map_server;
228 
231 
232  /* map-request locator set index */
234 
235  /* vni to vrf hash tables */
238 
239  /* vni to bd-index hash tables */
242 
243  /* track l2 and l3 interfaces that have been created for vni */
245 
246  /* Proxy ITR map index */
248 
249  /** Proxy ETR map index */
251 
252  /* LISP PITR mode */
254 
255  /* mapping index for NSH */
257 
258  /* map request mode */
260 
261  /* enable/disable map registering */
263 
264  /* enable/disable rloc-probing */
266 
267  /* timing wheel for mappping timeouts */
269 
270  /** Per thread pool of records shared with thread0 */
272 
273  /* TTL used for all mappings when registering */
275 
276  /* control variables for map server election */
279 
280  /** either UDP based or binary API. Default is UDP */
282 
283  /* commodity */
289 
290 /* lisp-gpe control plane */
292 
296 
298 
301 {
302  return &lisp_control_main;
303 }
304 
305 void
307  gid_address_t * src, gid_address_t * dst,
308  u16 type);
309 
310 typedef struct
311 {
313  union
314  {
317  };
321 
322 int
324  u32 * ls_index);
325 int
327  locator_set_t * ls, u32 * ls_index);
328 
329 typedef struct
330 {
334 
338 
341  u8 *key;
344 
345 int
347  u32 * map_index);
348 int
350  u32 * map_index_result);
351 
352 int
354  locator_t * rlocs, u32 * res_map_index,
355  u8 * is_changed);
356 
357 int vnet_lisp_del_mapping (gid_address_t * eid, u32 * res_map_index);
358 
359 typedef struct
360 {
365 
367 
368 typedef struct
369 {
371  ip_address_t address;
373 
374 int
376 int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add);
377 
380 
381 int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
382 int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add);
383 
384 typedef struct
385 {
389 
390 int
392 
394 
395 int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
396 int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key,
397  u8 is_add);
406  u8 is_add);
409 int vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add);
414 u32 *vnet_lisp_ndp_bds_get (void);
418 
420 
423 {
424  return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
425 }
426 
427 #endif /* VNET_CONTROL_H_ */
428 
429 /*
430  * fd.io coding-style-patch-verification: ON
431  *
432  * Local Variables:
433  * eval: (c-set-style "gnu")
434  * End:
435  */
u8 vnet_lisp_map_register_state_get(void)
Definition: control.c:422
int vnet_lisp_add_mapping(vnet_lisp_add_del_mapping_args_t *a, locator_t *rlocs, u32 *res_map_index, u8 *is_changed)
Adds/updates mapping.
Definition: control.c:1268
u32 vnet_lisp_map_register_fallback_threshold_get(void)
Definition: control.c:1667
map_records_arg_t ** map_records_args_pool
Per thread pool of records shared with thread0.
Definition: control.h:271
u8 is_down
Definition: control.h:86
u32 pitr_map_index
Definition: control.h:247
gid_address_t leid
Definition: control.h:73
int vnet_lisp_del_mapping(gid_address_t *eid, u32 *res_map_index)
Removes a mapping.
Definition: control.c:1377
u32 * lcl_to_rmt_adjs_by_lcl_idx
Definition: control.h:199
a
Definition: bitmap.h:516
int vnet_lisp_add_del_map_table_key(gid_address_t *eid, char *key, u8 is_add)
int vnet_lisp_add_del_locator(vnet_lisp_add_del_locator_set_args_t *a, locator_set_t *ls, u32 *ls_index)
Definition: control.c:1893
int vnet_lisp_add_del_map_server(ip_address_t *addr, u8 is_add)
Definition: control.c:671
ip_address_t active_map_resolver
Definition: control.h:226
lisp_msmr_t * map_resolvers
Definition: control.h:217
int vnet_lisp_add_del_l2_arp_ndp_entry(gid_address_t *key, u8 *mac, u8 is_add)
Definition: control.c:1030
locator_pair_t * locator_pairs
Definition: control.h:68
uword * table_id_by_vni
Definition: control.h:236
lisp_adjacency_t * vnet_lisp_adjacencies_get_by_vni(u32 vni)
Returns vector of adjacencies.
Definition: control.c:617
lisp_api_ndp_entry_t * vnet_lisp_ndp_entries_get_by_bd(u32 bd)
Definition: control.c:1015
u32 * local_mappings_indexes
Definition: control.h:189
locator_t * locator_pool
Definition: control.h:174
Definition: control.h:63
struct _vlib_node_registration vlib_node_registration_t
vlib_node_registration_t lisp_cp_lookup_ip6_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_ip6_node)
Definition: control.c:3483
clib_error_t * lisp_cp_init()
u32 ip4
Definition: control.h:103
u32 nsh_map_index
Definition: control.h:256
int vnet_lisp_map_register_enable_disable(u8 is_enable)
Definition: control.c:2146
ip_address_t address
Definition: control.h:88
uword * vni_by_table_id
Definition: control.h:237
enum lisp_flag_bits lisp_flag_bits_e
lisp_msmr_t * map_servers
Definition: control.h:220
u32 ** locator_to_locator_sets
Definition: control.h:180
vlib_main_t * vlib_main
Definition: control.h:286
vlib_node_registration_t lisp_cp_lookup_ip4_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node)
Definition: control.c:3463
void get_src_and_dst_eids_from_buffer(lisp_cp_main_t *lcm, vlib_buffer_t *b, gid_address_t *src, gid_address_t *dst, u16 type)
Definition: control.c:3143
#define always_inline
Definition: clib.h:84
u32 * fwd_entry_by_mapping_index
Definition: control.h:193
int vnet_lisp_map_register_set_ttl(u32 ttl)
Definition: control.c:2261
u32 expired_map_registers
Definition: control.h:278
unsigned long u64
Definition: types.h:89
#define foreach_lisp_flag_bit
Definition: control.h:119
uword * bd_id_by_vni
Definition: control.h:240
static lisp_cp_main_t * vnet_lisp_cp_get_main()
Definition: control.h:300
u8 do_map_server_election
Definition: control.h:230
uword * vni_by_bd_id
Definition: control.h:241
u8 vnet_lisp_get_map_request_mode(void)
Definition: control.c:57
lisp_flags
Definition: control.h:130
gid_address_t src
Definition: control.h:49
u32 petr_map_index
Proxy ETR map index.
Definition: control.h:250
ip6_main_t * im6
Definition: control.h:285
enum lisp_flags lisp_flags_e
u8 is_src_dst
Definition: control.h:67
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:458
u8 vnet_lisp_enable_disable_status(void)
Definition: control.c:2206
u8 do_map_resolver_election
Definition: control.h:229
f64 last_update
Definition: control.h:87
map_records_arg_t * parse_map_reply(vlib_buffer_t *b)
Definition: control.c:4151
int vnet_lisp_set_map_request_mode(u8 mode)
Definition: control.c:1538
u8 * key_by_mapping_index
Definition: control.h:171
u32 * local_locator_set_indexes
Definition: control.h:190
gid_address_t reid
Definition: control.h:66
lisp_api_l2_arp_entry_t * vnet_lisp_l2_arp_entries_get_by_bd(u32 bd)
Definition: control.c:980
u8 map_request_mode
Definition: control.h:259
volatile u8 is_free
Definition: control.h:154
lisp_transport_protocol_t vnet_lisp_get_transport_protocol(void)
Definition: control.c:4742
int vnet_lisp_rloc_probe_enable_disable(u8 is_enable)
Definition: control.c:2137
lisp_cp_main_t lisp_control_main
Definition: control.c:37
u32 vnet_lisp_set_transport_protocol(u8 protocol)
Definition: control.c:4729
u8 map_registering
Definition: control.h:262
int vnet_lisp_use_petr(ip_address_t *ip, u8 is_add)
Configure Proxy-ETR.
Definition: control.c:1682
uword * pending_map_requests_by_nonce
Definition: control.h:205
int vnet_lisp_map_cache_add_del(vnet_lisp_add_del_mapping_args_t *a, u32 *map_index)
Add/remove mapping to/from map-cache.
Definition: control.c:722
int vnet_lisp_eid_table_map(u32 vni, u32 vrf, u8 is_l2, u8 is_add)
Definition: control.c:1069
char * key
Definition: control.h:89
u32 * vnet_lisp_l2_arp_bds_get(void)
Definition: control.c:920
int vnet_lisp_nsh_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1559
lisp_transport_protocol_t
Definition: control.h:143
ip_address_t addr
Definition: control.h:139
int vnet_lisp_pitr_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1610
u8 vnet_lisp_rloc_probe_state_get(void)
Definition: control.c:429
int vnet_lisp_add_del_map_resolver(vnet_lisp_add_del_map_resolver_args_t *a)
Definition: control.c:2213
timing_wheel_t wheel
Definition: control.h:268
Definition: control.h:106
struct _gid_address_t gid_address_t
lisp_flag_bits
Definition: control.h:123
unsigned int u32
Definition: types.h:88
int vnet_lisp_add_del_local_mapping(vnet_lisp_add_del_mapping_args_t *a, u32 *map_index_result)
Add/update/delete mapping to/in/from map-cache.
Definition: control.c:874
lisp_transport_protocol_t transport_protocol
either UDP based or binary API.
Definition: control.h:281
gid_dictionary_t mapping_index_by_gid
Definition: control.h:165
IPv4 main type.
Definition: ip4.h:95
uword * l2_dp_intf_by_vni
Definition: control.h:244
u32 vnet_lisp_map_register_get_ttl(void)
Definition: control.c:2269
locator_set_t * locator_set_pool
Definition: control.h:177
u32 ** locator_set_to_eids
Definition: control.h:186
Definition: control.h:100
pending_map_register_t * pending_map_registers_pool
Definition: control.h:211
u32 map_register_ttl
Definition: control.h:274
fwd_entry_t * fwd_entry_pool
Definition: control.h:202
u64 uword
Definition: types.h:112
pending_map_request_t * pending_map_requests_pool
Definition: control.h:208
miss_packet_type_t
Definition: control.h:77
unsigned short u16
Definition: types.h:57
int vnet_lisp_add_del_mreq_itr_rlocs(vnet_lisp_add_del_mreq_itr_rloc_args_t *a)
Definition: control.c:2276
map_request_mode_t
Definition: control.h:112
ip_address_t active_map_server
Definition: control.h:227
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
static mapping_t * lisp_get_petr_mapping(lisp_cp_main_t *lcm)
Definition: control.h:422
mapping_t * mapping_pool
Definition: control.h:168
uword * locator_set_index_by_name
Definition: control.h:183
int vnet_lisp_add_del_adjacency(vnet_lisp_add_del_adjacency_args_t *a)
Adds adjacency or removes forwarding entry associated to remote mapping.
Definition: control.c:1477
gid_address_t reid
Definition: control.h:74
vlib_node_registration_t lisp_cp_input_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_input_node)
Definition: control.c:4296
gid_address_t dst
Definition: control.h:50
u32 ** lcl_to_rmt_adjacencies
Definition: control.h:196
uword * map_register_messages_by_nonce
Definition: control.h:214
clib_error_t * vnet_lisp_enable_disable(u8 is_enabled)
Definition: control.c:2155
vhost_vring_addr_t addr
Definition: vhost-user.h:83
int vnet_lisp_clear_all_remote_adjacencies(void)
Definition: control.c:1426
mapping_t * mappings
Definition: control.h:153
u32 max_expired_map_registers
Definition: control.h:277
u32 mreq_itr_rlocs
Definition: control.h:233
u32 * vnet_lisp_ndp_bds_get(void)
Definition: control.c:943
vnet_main_t * vnet_main
Definition: control.h:287
u32 length
Definition: control.h:96
ip4_main_t * im4
Definition: control.h:284
gid_address_t leid
Definition: control.h:65
int vnet_lisp_map_register_fallback_threshold_set(u32 value)
Definition: control.c:1654
miss_packet_type_t type
Definition: control.h:97
int vnet_lisp_add_del_locator_set(vnet_lisp_add_del_locator_set_args_t *a, u32 *ls_index)
Definition: control.c:1997