blob: e1e5620fc9dc263d14fdeef2848f75b1916ddb07 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Florin Corase127a7e2016-02-18 22:20:01 +01002 * Copyright (c) 2016 Cisco and/or its affiliates.
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 * 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 */
Florin Corasff0bf132016-09-05 19:30:35 +020015/**
16 * @file
17 * @brief LISP-GPE definitions.
18 */
Florin Corase127a7e2016-02-18 22:20:01 +010019
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#ifndef included_vnet_lisp_gpe_h
21#define included_vnet_lisp_gpe_h
22
23#include <vppinfra/error.h>
Florin Corase127a7e2016-02-18 22:20:01 +010024#include <vppinfra/mhash.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/vnet.h>
26#include <vnet/ip/ip.h>
27#include <vnet/l2/l2_input.h>
28#include <vnet/ethernet/ethernet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029#include <vnet/ip/ip4_packet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050030#include <vnet/udp/udp.h>
Florin Corase127a7e2016-02-18 22:20:01 +010031#include <vnet/lisp-cp/lisp_types.h>
32#include <vnet/lisp-gpe/lisp_gpe_packet.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010033#include <vnet/adj/adj_types.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050034#include <vppinfra/bihash_24_8.h>
35#include <vppinfra/bihash_template.h>
Florin Corase127a7e2016-02-18 22:20:01 +010036
Florin Corasff0bf132016-09-05 19:30:35 +020037/** IP4-UDP-LISP encap header */
Florin Coras220beac2016-08-16 23:04:00 +020038/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070039typedef CLIB_PACKED (struct {
40 ip4_header_t ip4; /* 20 bytes */
41 udp_header_t udp; /* 8 bytes */
42 lisp_gpe_header_t lisp; /* 8 bytes */
43}) ip4_udp_lisp_gpe_header_t;
Florin Coras220beac2016-08-16 23:04:00 +020044/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Florin Corasff0bf132016-09-05 19:30:35 +020046/** IP6-UDP-LISP encap header */
Florin Coras220beac2016-08-16 23:04:00 +020047/* *INDENT-OFF* */
Florin Coras02655bd2016-04-26 00:17:24 +020048typedef CLIB_PACKED (struct {
49 ip6_header_t ip6; /* 40 bytes */
50 udp_header_t udp; /* 8 bytes */
51 lisp_gpe_header_t lisp; /* 8 bytes */
52}) ip6_udp_lisp_gpe_header_t;
Florin Coras220beac2016-08-16 23:04:00 +020053/* *INDENT-ON* */
Florin Coras02655bd2016-04-26 00:17:24 +020054
Florin Coras02655bd2016-04-26 00:17:24 +020055#define foreach_lisp_gpe_ip_input_next \
Ed Warnickecb9cada2015-12-08 15:45:58 -070056_(DROP, "error-drop") \
57_(IP4_INPUT, "ip4-input") \
58_(IP6_INPUT, "ip6-input") \
Florin Coras1a1adc72016-07-22 01:45:30 +020059_(L2_INPUT, "l2-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Florin Corasff0bf132016-09-05 19:30:35 +020061/** Enum of possible next nodes post LISP-GPE decap */
Florin Coras220beac2016-08-16 23:04:00 +020062typedef enum
63{
Ed Warnickecb9cada2015-12-08 15:45:58 -070064#define _(s,n) LISP_GPE_INPUT_NEXT_##s,
Florin Coras02655bd2016-04-26 00:17:24 +020065 foreach_lisp_gpe_ip_input_next
Ed Warnickecb9cada2015-12-08 15:45:58 -070066#undef _
Florin Coras220beac2016-08-16 23:04:00 +020067 LISP_GPE_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070068} lisp_gpe_input_next_t;
69
Florin Coras263440e2017-02-22 23:38:08 -080070/* Arc to nsh-input added only if nsh-input exists */
71#define LISP_GPE_INPUT_NEXT_NSH_INPUT 4
72
Florin Coras220beac2016-08-16 23:04:00 +020073typedef enum
74{
Ed Warnickecb9cada2015-12-08 15:45:58 -070075#define lisp_gpe_error(n,s) LISP_GPE_ERROR_##n,
76#include <vnet/lisp-gpe/lisp_gpe_error.def>
77#undef lisp_gpe_error
78 LISP_GPE_N_ERROR,
Florin Coras577c3552016-04-21 00:45:40 +020079} lisp_gpe_error_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Florin Coras1a1adc72016-07-22 01:45:30 +020081typedef struct tunnel_lookup
82{
Florin Corasff0bf132016-09-05 19:30:35 +020083 /** Lookup lisp-gpe interfaces by dp table (eg. vrf/bridge index) */
Florin Coras220beac2016-08-16 23:04:00 +020084 uword *hw_if_index_by_dp_table;
Florin Coras1a1adc72016-07-22 01:45:30 +020085
Florin Corasff0bf132016-09-05 19:30:35 +020086 /** lookup decap tunnel termination sw_if_index by vni and vice versa */
Florin Coras220beac2016-08-16 23:04:00 +020087 uword *sw_if_index_by_vni;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010088
89 // FIXME - Need this?
Florin Coras220beac2016-08-16 23:04:00 +020090 uword *vni_by_sw_if_index;
Florin Coras1a1adc72016-07-22 01:45:30 +020091} tunnel_lookup_t;
92
Filip Tehlar4868ff62017-03-09 16:48:39 +010093typedef struct
94{
95 u32 fwd_entry_index;
96 u32 tunnel_index;
97} lisp_stats_key_t;
98
99typedef struct
100{
101 u32 pkt_count;
102 u32 bytes;
103} lisp_stats_t;
104
105typedef struct
106{
107 u32 vni;
108 dp_address_t deid;
109 dp_address_t seid;
110 ip_address_t loc_rloc;
111 ip_address_t rmt_rloc;
112
113 lisp_stats_t stats;
114} lisp_api_stats_t;
Filip Tehlar3e7b56932017-02-21 18:28:34 +0100115
116typedef enum gpe_encap_mode_e
117{
118 GPE_ENCAP_LISP,
119 GPE_ENCAP_VXLAN,
120 GPE_ENCAP_COUNT
121} gpe_encap_mode_t;
122
Florin Corasff0bf132016-09-05 19:30:35 +0200123/** LISP-GPE global state*/
Florin Corase127a7e2016-02-18 22:20:01 +0100124typedef struct lisp_gpe_main
125{
Neale Ranns5e575b12016-10-03 09:40:25 +0100126 /**
127 * @brief DB of all forwarding entries. The Key is:{l-EID,r-EID,vni}
128 * where the EID encodes L2 or L3
129 */
130 uword *lisp_gpe_fwd_entries;
131
132 /**
133 * @brief A Pool of all LISP forwarding entries
134 */
135 struct lisp_gpe_fwd_entry_t_ *lisp_fwd_entry_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Florin Corasff0bf132016-09-05 19:30:35 +0200137 /** Free vlib hw_if_indices */
Florin Coras220beac2016-08-16 23:04:00 +0200138 u32 *free_tunnel_hw_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
Florin Coras1a1adc72016-07-22 01:45:30 +0200140 u8 is_en;
141
142 /* L3 data structures
143 * ================== */
Florin Coras1a1adc72016-07-22 01:45:30 +0200144 tunnel_lookup_t l3_ifaces;
Florin Coras577c3552016-04-21 00:45:40 +0200145
Florin Coras1a1adc72016-07-22 01:45:30 +0200146 /* L2 data structures
147 * ================== */
148
Florin Corasff0bf132016-09-05 19:30:35 +0200149 /** L2 LISP FIB */
Florin Coras220beac2016-08-16 23:04:00 +0200150 BVT (clib_bihash) l2_fib;
Florin Coras1a1adc72016-07-22 01:45:30 +0200151
152 tunnel_lookup_t l2_ifaces;
153
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100154 /** Load-balance for a miss in the table */
Neale Ranns5e575b12016-10-03 09:40:25 +0100155 dpo_id_t l2_lb_cp_lkup;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100156
Florin Corasce1b4c72017-01-26 14:25:34 -0800157 /* NSH data structures
158 * ================== */
159
160 BVT (clib_bihash) nsh_fib;
161
162 tunnel_lookup_t nsh_ifaces;
163
164 const dpo_id_t *nsh_cp_lkup;
165
Filip Tehlar3e7b56932017-02-21 18:28:34 +0100166 gpe_encap_mode_t encap_mode;
167
Filip Tehlar4868ff62017-03-09 16:48:39 +0100168 lisp_stats_t *lisp_stats_pool;
169 uword *lisp_stats_index_by_key;
170
Florin Corasff0bf132016-09-05 19:30:35 +0200171 /** convenience */
Florin Coras220beac2016-08-16 23:04:00 +0200172 vlib_main_t *vlib_main;
173 vnet_main_t *vnet_main;
174 ip4_main_t *im4;
175 ip6_main_t *im6;
176 ip_lookup_main_t *lm4;
177 ip_lookup_main_t *lm6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178} lisp_gpe_main_t;
179
Florin Corasff0bf132016-09-05 19:30:35 +0200180/** LISP-GPE global state*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181lisp_gpe_main_t lisp_gpe_main;
182
Florin Coras1a1adc72016-07-22 01:45:30 +0200183always_inline lisp_gpe_main_t *
Florin Coras220beac2016-08-16 23:04:00 +0200184vnet_lisp_gpe_get_main ()
185{
Florin Coras1a1adc72016-07-22 01:45:30 +0200186 return &lisp_gpe_main;
187}
188
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100189
Florin Coras02655bd2016-04-26 00:17:24 +0200190extern vlib_node_registration_t lisp_gpe_ip4_input_node;
191extern vlib_node_registration_t lisp_gpe_ip6_input_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100192extern vnet_hw_interface_class_t lisp_gpe_hw_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Florin Coras220beac2016-08-16 23:04:00 +0200194u8 *format_lisp_gpe_header_with_length (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Florin Corasff0bf132016-09-05 19:30:35 +0200196/** Read LISP-GPE status */
Florin Coras220beac2016-08-16 23:04:00 +0200197u8 vnet_lisp_gpe_enable_disable_status (void);
Florin Corasff0bf132016-09-05 19:30:35 +0200198
Neale Ranns5e575b12016-10-03 09:40:25 +0100199u32
200lisp_gpe_l3_iface_find_or_create (lisp_gpe_main_t * lgm,
201 u32 overlay_table_id, u32 vni);
202
Florin Corasff0bf132016-09-05 19:30:35 +0200203/** Add/del LISP-GPE interface. */
Neale Ranns5e575b12016-10-03 09:40:25 +0100204extern void lisp_gpe_del_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id);
205extern u32 lisp_gpe_add_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id);
206extern void lisp_gpe_del_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id);
207extern u32 lisp_gpe_add_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id);
208
Florin Corase127a7e2016-02-18 22:20:01 +0100209
Florin Coras577c3552016-04-21 00:45:40 +0200210typedef struct
211{
212 u8 is_en;
213} vnet_lisp_gpe_enable_disable_args_t;
214
Florin Coras220beac2016-08-16 23:04:00 +0200215clib_error_t
216 * vnet_lisp_gpe_enable_disable (vnet_lisp_gpe_enable_disable_args_t * a);
Florin Coras577c3552016-04-21 00:45:40 +0200217
Neale Ranns5e575b12016-10-03 09:40:25 +0100218typedef enum
219{
220 NO_ACTION,
221 FORWARD_NATIVE,
222 SEND_MAP_REQUEST,
223 DROP
224} negative_fwd_actions_e;
225
Florin Corasff0bf132016-09-05 19:30:35 +0200226/** */
Florin Corase127a7e2016-02-18 22:20:01 +0100227typedef struct
228{
Filip Tehlared6b52b2017-03-22 09:02:33 +0100229 u8 is_src_dst;
230
Florin Corase127a7e2016-02-18 22:20:01 +0100231 u8 is_add;
Florin Corased09a052016-05-06 14:22:40 +0200232
Florin Corasff0bf132016-09-05 19:30:35 +0200233 /** type of mapping */
Florin Corase127a7e2016-02-18 22:20:01 +0100234 u8 is_negative;
Florin Corasff0bf132016-09-05 19:30:35 +0200235
236 /** action for negative mappings */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100237 negative_fwd_actions_e action;
Florin Corased09a052016-05-06 14:22:40 +0200238
Florin Corasff0bf132016-09-05 19:30:35 +0200239 /** local eid */
Florin Coras1a1adc72016-07-22 01:45:30 +0200240 gid_address_t lcl_eid;
Florin Corasff0bf132016-09-05 19:30:35 +0200241
242 /** remote eid */
Florin Coras1a1adc72016-07-22 01:45:30 +0200243 gid_address_t rmt_eid;
Florin Corased09a052016-05-06 14:22:40 +0200244
Florin Corasff0bf132016-09-05 19:30:35 +0200245 /** vector of locator pairs */
Florin Coras220beac2016-08-16 23:04:00 +0200246 locator_pair_t *locator_pairs;
Florin Corased09a052016-05-06 14:22:40 +0200247
Florin Corasff0bf132016-09-05 19:30:35 +0200248 /** FIB index to lookup remote locator at encap */
Florin Corase127a7e2016-02-18 22:20:01 +0100249 u32 encap_fib_index;
Florin Corasff0bf132016-09-05 19:30:35 +0200250
251 /** FIB index to lookup inner IP at decap */
Florin Corase127a7e2016-02-18 22:20:01 +0100252 u32 decap_fib_index;
Florin Corased09a052016-05-06 14:22:40 +0200253
Florin Corasff0bf132016-09-05 19:30:35 +0200254 /* TODO remove */
255 u32 decap_next_index;
Florin Corased09a052016-05-06 14:22:40 +0200256
Florin Corasff0bf132016-09-05 19:30:35 +0200257 /** VNI/tenant id in HOST byte order */
Florin Corased09a052016-05-06 14:22:40 +0200258 u32 vni;
259
Florin Corasff0bf132016-09-05 19:30:35 +0200260 /** vrf or bd where fwd entry should be inserted */
Florin Coras1a1adc72016-07-22 01:45:30 +0200261 union
262 {
Florin Corasff0bf132016-09-05 19:30:35 +0200263 /** table (vrf) id */
Florin Coras1a1adc72016-07-22 01:45:30 +0200264 u32 table_id;
Florin Corasff0bf132016-09-05 19:30:35 +0200265
266 /** bridge domain id */
Florin Coras1a1adc72016-07-22 01:45:30 +0200267 u16 bd_id;
Florin Coras429e7952016-08-02 02:31:03 +0200268
Florin Corasff0bf132016-09-05 19:30:35 +0200269 /** generic access */
Florin Coras429e7952016-08-02 02:31:03 +0200270 u32 dp_table;
Florin Coras1a1adc72016-07-22 01:45:30 +0200271 };
Florin Corase127a7e2016-02-18 22:20:01 +0100272} vnet_lisp_gpe_add_del_fwd_entry_args_t;
273
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100274typedef struct
275{
276 u32 fwd_entry_index;
277 u32 dp_table;
278 u32 vni;
279 dp_address_t leid;
280 dp_address_t reid;
281} lisp_api_gpe_fwd_entry_t;
282
Florin Coras02655bd2016-04-26 00:17:24 +0200283#define foreach_lgpe_ip4_lookup_next \
284 _(DROP, "error-drop") \
285 _(LISP_CP_LOOKUP, "lisp-cp-lookup")
286
287typedef enum lgpe_ip4_lookup_next
288{
289#define _(sym,str) LGPE_IP4_LOOKUP_NEXT_##sym,
290 foreach_lgpe_ip4_lookup_next
291#undef _
Florin Coras220beac2016-08-16 23:04:00 +0200292 LGPE_IP4_LOOKUP_N_NEXT,
Florin Coras02655bd2016-04-26 00:17:24 +0200293} lgpe_ip4_lookup_next_t;
294
Florin Corasff0bf132016-09-05 19:30:35 +0200295#define foreach_lgpe_ip6_lookup_next \
Florin Coras02655bd2016-04-26 00:17:24 +0200296 _(DROP, "error-drop") \
297 _(LISP_CP_LOOKUP, "lisp-cp-lookup")
298
299typedef enum lgpe_ip6_lookup_next
300{
301#define _(sym,str) LGPE_IP6_LOOKUP_NEXT_##sym,
302 foreach_lgpe_ip6_lookup_next
303#undef _
Florin Coras220beac2016-08-16 23:04:00 +0200304 LGPE_IP6_LOOKUP_N_NEXT,
Florin Coras02655bd2016-04-26 00:17:24 +0200305} lgpe_ip6_lookup_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
Florin Coras220beac2016-08-16 23:04:00 +0200307u8 *format_vnet_lisp_gpe_status (u8 * s, va_list * args);
Filip Tehlar46d4e362016-05-09 09:39:26 +0200308
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100309lisp_api_gpe_fwd_entry_t *vnet_lisp_gpe_fwd_entries_get_by_vni (u32 vni);
Filip Tehlar3e7b56932017-02-21 18:28:34 +0100310gpe_encap_mode_t vnet_gpe_get_encap_mode (void);
311int vnet_gpe_set_encap_mode (gpe_encap_mode_t mode);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100312
Filip Tehlar4868ff62017-03-09 16:48:39 +0100313u8 vnet_lisp_stats_enable_disable_state (void);
314vnet_api_error_t vnet_lisp_stats_enable_disable (u8 enable);
315lisp_api_stats_t *vnet_lisp_get_stats (void);
316void vnet_lisp_flush_stats (void);
317
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318#endif /* included_vnet_lisp_gpe_h */
Florin Coras220beac2016-08-16 23:04:00 +0200319
320/*
321 * fd.io coding-style-patch-verification: ON
322 *
323 * Local Variables:
324 * eval: (c-set-style "gnu")
325 * End:
326 */