FD.io VPP  v17.07.01-10-g3be13f0
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 
23 #define NUMBER_OF_RETRIES 1
24 #define PENDING_MREQ_EXPIRATION_TIME 3.0 /* seconds */
25 #define PENDING_MREQ_QUEUE_LEN 5
26 
27 #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 
39 /* 24 hours */
40 #define MAP_REGISTER_DEFAULT_TTL 86400
41 
42 typedef struct
43 {
52 
53 typedef struct
54 {
59 } fwd_entry_t;
60 
61 typedef struct
62 {
66 
67 typedef enum
68 {
72 
73 /* map-server/map-resolver structure */
74 typedef struct
75 {
78  ip_address_t address;
79  char *key;
80 } lisp_msmr_t;
81 
82 typedef struct
83 {
84  /* headers */
85  u8 data[100];
89 
90 typedef struct
91 {
92  u8 mac[6];
95 
96 typedef enum
97 {
100  _MR_MODE_MAX
102 
103 #define foreach_lisp_flag_bit \
104  _(USE_PETR, "Use Proxy-ETR") \
105  _(STATS_ENABLED, "Statistics enabled")
106 
107 typedef enum lisp_flag_bits
108 {
109 #define _(sym, str) LISP_FLAG_BIT_##sym,
111 #undef _
113 
114 typedef enum lisp_flags
115 {
116 #define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym,
118 #undef _
119 } lisp_flags_e;
120 
121 typedef struct
122 {
123  ip_address_t addr;
126 
127 typedef struct
128 {
132  volatile u8 is_free;
134 
135 typedef struct
136 {
138 
139  /* LISP feature status */
141 
142  /* eid table */
144 
145  /* pool of mappings */
147 
148  /* hash map of secret keys by mapping index */
150 
151  /* pool of locators */
153 
154  /* pool of locator-sets */
156 
157  /* vector of locator-set vectors composed of and indexed by locator index */
159 
160  /* hash map of locators by name */
162 
163  /* vector of eid index vectors supported and indexed by locator-set index */
165 
166  /* vectors of indexes for local locator-sets and mappings */
169 
170  /* hash map of forwarding entries by mapping index */
172 
173  /* forwarding entries pool */
175 
176  /* hash map keyed by nonce of pending map-requests */
178 
179  /* pool of pending map requests */
181 
182  /* hash map of sent map register messages */
184 
185  /* vector of map-resolvers */
187 
188  /* vector of map-servers */
190 
191  /* map resolver address currently being used for sending requests.
192  * This has to be an actual address and not an index to map_resolvers vector
193  * since the vector may be modified during request resend/retry procedure
194  * and break things :-) */
195  ip_address_t active_map_resolver;
196 
198 
199  /* map-request locator set index */
201 
202  /* vni to vrf hash tables */
205 
206  /* vni to bd-index hash tables */
209 
210  /* track l2 and l3 interfaces that have been created for vni */
212 
213  /* Proxy ITR map index */
215 
216  /** Proxy ETR map index */
218 
219  /* LISP PITR mode */
221 
222  /* mapping index for NSH */
224 
225  /* map request mode */
227 
228  /* enable/disable map registering */
230 
231  /* enable/disable rloc-probing */
233 
234  /* timing wheel for mappping timeouts */
236 
237  /** Per thread pool of records shared with thread0 */
239 
240  /* commodity */
246 
247 /* lisp-gpe control plane */
249 
253 
255 
258 {
259  return &lisp_control_main;
260 }
261 
262 void
264  gid_address_t * src, gid_address_t * dst,
265  u16 type);
266 
267 typedef struct
268 {
270  union
271  {
274  };
278 
279 int
281  u32 * ls_index);
282 int
284  locator_set_t * ls, u32 * ls_index);
285 
286 typedef struct
287 {
291 
295 
298  u8 *key;
301 
302 int
304  u32 * map_index);
305 int
307  u32 * map_index_result);
308 
309 int
310 vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
311  u8 authoritative, u32 ttl, u8 is_add, u8 is_static,
312  u32 * res_map_index);
313 
314 typedef struct
315 {
320 
322 
323 typedef struct
324 {
326  ip_address_t address;
328 
329 int
331 int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add);
332 
335 
336 int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
337 int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add);
338 
339 typedef struct
340 {
344 
345 int
347 
349 
350 int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
351 int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key,
352  u8 is_add);
360 int vnet_lisp_add_del_l2_arp_entry (gid_address_t * key, u8 * mac, u8 is_add);
363 int vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add);
364 
366 
369 {
370  return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
371 }
372 
373 #endif /* VNET_CONTROL_H_ */
374 
375 /*
376  * fd.io coding-style-patch-verification: ON
377  *
378  * Local Variables:
379  * eval: (c-set-style "gnu")
380  * End:
381  */
u8 vnet_lisp_map_register_state_get(void)
Definition: control.c:417
map_records_arg_t ** map_records_args_pool
Per thread pool of records shared with thread0.
Definition: control.h:238
u8 is_down
Definition: control.h:76
u32 pitr_map_index
Definition: control.h:214
gid_address_t leid
Definition: control.h:63
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:1719
int vnet_lisp_add_del_map_server(ip_address_t *addr, u8 is_add)
Definition: control.c:649
ip_address_t active_map_resolver
Definition: control.h:195
lisp_msmr_t * map_resolvers
Definition: control.h:186
locator_pair_t * locator_pairs
Definition: control.h:58
uword * table_id_by_vni
Definition: control.h:203
lisp_adjacency_t * vnet_lisp_adjacencies_get_by_vni(u32 vni)
Returns vector of adjacencies.
Definition: control.c:595
u32 * local_mappings_indexes
Definition: control.h:167
locator_t * locator_pool
Definition: control.h:152
Definition: control.h:53
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:3221
clib_error_t * lisp_cp_init()
u32 ip4
Definition: control.h:93
u32 nsh_map_index
Definition: control.h:223
int vnet_lisp_map_register_enable_disable(u8 is_enable)
Definition: control.c:1972
ip_address_t address
Definition: control.h:78
uword * vni_by_table_id
Definition: control.h:204
enum lisp_flag_bits lisp_flag_bits_e
lisp_msmr_t * map_servers
Definition: control.h:189
u32 ** locator_to_locator_sets
Definition: control.h:158
vlib_main_t * vlib_main
Definition: control.h:243
vlib_node_registration_t lisp_cp_lookup_ip4_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node)
Definition: control.c:3201
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:2939
#define always_inline
Definition: clib.h:84
u32 * fwd_entry_by_mapping_index
Definition: control.h:171
unsigned long u64
Definition: types.h:89
#define foreach_lisp_flag_bit
Definition: control.h:103
uword * bd_id_by_vni
Definition: control.h:207
static lisp_cp_main_t * vnet_lisp_cp_get_main()
Definition: control.h:257
uword * vni_by_bd_id
Definition: control.h:208
u8 vnet_lisp_get_map_request_mode(void)
Definition: control.c:52
lisp_flags
Definition: control.h:114
gid_address_t src
Definition: control.h:44
u32 petr_map_index
Proxy ETR map index.
Definition: control.h:217
ip6_main_t * im6
Definition: control.h:242
enum lisp_flags lisp_flags_e
int vnet_lisp_add_del_l2_arp_entry(gid_address_t *key, u8 *mac, u8 is_add)
Definition: control.c:897
u8 is_src_dst
Definition: control.h:57
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:397
u8 vnet_lisp_enable_disable_status(void)
Definition: control.c:2023
u8 do_map_resolver_election
Definition: control.h:197
f64 last_update
Definition: control.h:77
map_records_arg_t * parse_map_reply(vlib_buffer_t *b)
Definition: control.c:3807
int vnet_lisp_set_map_request_mode(u8 mode)
Definition: control.c:1384
u8 * key_by_mapping_index
Definition: control.h:149
u32 * local_locator_set_indexes
Definition: control.h:168
gid_address_t reid
Definition: control.h:56
lisp_api_l2_arp_entry_t * vnet_lisp_l2_arp_entries_get_by_bd(u32 bd)
Definition: control.c:882
u8 map_request_mode
Definition: control.h:226
volatile u8 is_free
Definition: control.h:132
int vnet_lisp_rloc_probe_enable_disable(u8 is_enable)
Definition: control.c:1963
lisp_cp_main_t lisp_control_main
Definition: control.c:33
u8 map_registering
Definition: control.h:229
int vnet_lisp_use_petr(ip_address_t *ip, u8 is_add)
Configure Proxy-ETR.
Definition: control.c:1508
int vnet_lisp_add_del_mapping(gid_address_t *deid, locator_t *dlocs, u8 action, u8 authoritative, u32 ttl, u8 is_add, u8 is_static, u32 *res_map_index)
Adds/removes/updates mapping.
Definition: control.c:1139
uword * pending_map_requests_by_nonce
Definition: control.h:177
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:694
int vnet_lisp_eid_table_map(u32 vni, u32 vrf, u8 is_l2, u8 is_add)
Definition: control.c:936
char * key
Definition: control.h:79
u32 * vnet_lisp_l2_arp_bds_get(void)
Definition: control.c:851
int vnet_lisp_nsh_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1405
ip_address_t addr
Definition: control.h:123
int vnet_lisp_pitr_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1456
u8 vnet_lisp_rloc_probe_state_get(void)
Definition: control.c:424
int vnet_lisp_add_del_map_resolver(vnet_lisp_add_del_map_resolver_args_t *a)
Definition: control.c:2030
timing_wheel_t wheel
Definition: control.h:235
struct _gid_address_t gid_address_t
lisp_flag_bits
Definition: control.h:107
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:809
gid_dictionary_t mapping_index_by_gid
Definition: control.h:143
IPv4 main type.
Definition: ip4.h:83
uword * l2_dp_intf_by_vni
Definition: control.h:211
locator_set_t * locator_set_pool
Definition: control.h:155
u32 ** locator_set_to_eids
Definition: control.h:164
Definition: control.h:90
fwd_entry_t * fwd_entry_pool
Definition: control.h:174
u64 uword
Definition: types.h:112
pending_map_request_t * pending_map_requests_pool
Definition: control.h:180
miss_packet_type_t
Definition: control.h:67
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:2078
map_request_mode_t
Definition: control.h:96
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:368
mapping_t * mapping_pool
Definition: control.h:146
uword * locator_set_index_by_name
Definition: control.h:161
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:1323
gid_address_t reid
Definition: control.h:64
vlib_node_registration_t lisp_cp_input_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_input_node)
Definition: control.c:3952
gid_address_t dst
Definition: control.h:45
uword * map_register_messages_by_nonce
Definition: control.h:183
clib_error_t * vnet_lisp_enable_disable(u8 is_enabled)
Definition: control.c:1981
vhost_vring_addr_t addr
Definition: vhost-user.h:82
int vnet_lisp_clear_all_remote_adjacencies(void)
Definition: control.c:1272
mapping_t * mappings
Definition: control.h:131
u32 mreq_itr_rlocs
Definition: control.h:200
vnet_main_t * vnet_main
Definition: control.h:244
u32 length
Definition: control.h:86
ip4_main_t * im4
Definition: control.h:241
gid_address_t leid
Definition: control.h:55
miss_packet_type_t type
Definition: control.h:87
int vnet_lisp_add_del_locator_set(vnet_lisp_add_del_locator_set_args_t *a, u32 *ls_index)
Definition: control.c:1823