blob: ff750563c539c562c8be276a85be98da4002baee [file] [log] [blame]
Florin Coras577c3552016-04-21 00:45:40 +02001/*
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
Florin Corasff0bf132016-09-05 19:30:35 +020016/**
17 * @file
18 * @brief Common utility functions for LISP-GPE interfaces.
19 *
20 */
21
Florin Coras577c3552016-04-21 00:45:40 +020022#include <vppinfra/error.h>
23#include <vppinfra/hash.h>
24#include <vnet/vnet.h>
25#include <vnet/ip/ip.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026#include <vnet/udp/udp.h>
Florin Coras577c3552016-04-21 00:45:40 +020027#include <vnet/ethernet/ethernet.h>
28#include <vnet/lisp-gpe/lisp_gpe.h>
Neale Ranns5e575b12016-10-03 09:40:25 +010029#include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
30#include <vnet/lisp-gpe/lisp_gpe_tenant.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010031#include <vnet/lisp-gpe/lisp_gpe_adjacency.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010032#include <vnet/adj/adj.h>
33#include <vnet/fib/fib_table.h>
34#include <vnet/fib/ip4_fib.h>
35#include <vnet/fib/ip6_fib.h>
Neale Ranns5e575b12016-10-03 09:40:25 +010036#include <vnet/lisp-cp/lisp_cp_dpo.h>
37
38/**
39 * @brief The VLIB node arc/edge from the interface's TX node, to the L2
40 * load-balanceing node. Which is where all packets go
41 */
42static uword l2_arc_to_lb;
Florin Coras577c3552016-04-21 00:45:40 +020043
44#define foreach_lisp_gpe_tx_next \
45 _(DROP, "error-drop") \
Florin Coras02655bd2016-04-26 00:17:24 +020046 _(IP4_LOOKUP, "ip4-lookup") \
47 _(IP6_LOOKUP, "ip6-lookup")
Florin Coras577c3552016-04-21 00:45:40 +020048
49typedef enum
50{
51#define _(sym,str) LISP_GPE_TX_NEXT_##sym,
52 foreach_lisp_gpe_tx_next
53#undef _
Florin Coras220beac2016-08-16 23:04:00 +020054 LISP_GPE_TX_N_NEXT,
Florin Coras577c3552016-04-21 00:45:40 +020055} lisp_gpe_tx_next_t;
56
57typedef struct
58{
59 u32 tunnel_index;
60} lisp_gpe_tx_trace_t;
61
62u8 *
63format_lisp_gpe_tx_trace (u8 * s, va_list * args)
64{
65 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Coras220beac2016-08-16 23:04:00 +020067 lisp_gpe_tx_trace_t *t = va_arg (*args, lisp_gpe_tx_trace_t *);
Florin Coras577c3552016-04-21 00:45:40 +020068
69 s = format (s, "LISP-GPE-TX: tunnel %d", t->tunnel_index);
70 return s;
71}
72
Florin Coras02655bd2016-04-26 00:17:24 +020073#define is_v4_packet(_h) ((*(u8*) _h) & 0xF0) == 0x40
74
Florin Corasff0bf132016-09-05 19:30:35 +020075/**
76 * @brief LISP-GPE interface TX (encap) function.
77 * @node lisp_gpe_interface_tx
78 *
79 * The LISP-GPE interface TX (encap) function.
80 *
81 * Looks up the associated tunnel based on the adjacency hit in the SD FIB
82 * and if the tunnel is multihomed it uses the flow hash to determine
83 * sub-tunnel, and rewrite string, to be used to encapsulate the packet.
84 *
85 * @param[in] vm vlib_main_t corresponding to the current thread.
86 * @param[in] node vlib_node_runtime_t data for this node.
87 * @param[in] frame vlib_frame_t whose contents should be dispatched.
88 *
89 * @return number of vectors in frame.
90 */
Florin Coras577c3552016-04-21 00:45:40 +020091static uword
92lisp_gpe_interface_tx (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras220beac2016-08-16 23:04:00 +020093 vlib_frame_t * from_frame)
Florin Coras577c3552016-04-21 00:45:40 +020094{
Florin Coras220beac2016-08-16 23:04:00 +020095 u32 n_left_from, next_index, *from, *to_next;
96 lisp_gpe_main_t *lgm = &lisp_gpe_main;
Florin Coras577c3552016-04-21 00:45:40 +020097
98 from = vlib_frame_vector_args (from_frame);
99 n_left_from = from_frame->n_vectors;
100
101 next_index = node->cached_next_index;
102
103 while (n_left_from > 0)
104 {
105 u32 n_left_to_next;
106
Florin Coras220beac2016-08-16 23:04:00 +0200107 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Coras577c3552016-04-21 00:45:40 +0200108
Florin Coras577c3552016-04-21 00:45:40 +0200109 while (n_left_from > 0 && n_left_to_next > 0)
Florin Coras220beac2016-08-16 23:04:00 +0200110 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100111 u32 bi0, adj_index0, next0;
112 const ip_adjacency_t *adj0;
113 const dpo_id_t *dpo0;
Florin Coras220beac2016-08-16 23:04:00 +0200114 vlib_buffer_t *b0;
Florin Coras220beac2016-08-16 23:04:00 +0200115 u8 is_v4_0;
Florin Coras577c3552016-04-21 00:45:40 +0200116
Florin Coras220beac2016-08-16 23:04:00 +0200117 bi0 = from[0];
118 to_next[0] = bi0;
119 from += 1;
120 to_next += 1;
121 n_left_from -= 1;
122 n_left_to_next -= 1;
Florin Coras577c3552016-04-21 00:45:40 +0200123
Florin Coras220beac2016-08-16 23:04:00 +0200124 b0 = vlib_get_buffer (vm, bi0);
Florin Coras577c3552016-04-21 00:45:40 +0200125
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126 /* Fixup the checksum and len fields in the LISP tunnel encap
127 * that was applied at the midchain node */
Florin Coras220beac2016-08-16 23:04:00 +0200128 is_v4_0 = is_v4_packet (vlib_buffer_get_current (b0));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100129 ip_udp_fixup_one (lgm->vlib_main, b0, is_v4_0);
Florin Coras577c3552016-04-21 00:45:40 +0200130
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100131 /* Follow the DPO on which the midchain is stacked */
132 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
133 adj0 = adj_get (adj_index0);
134 dpo0 = &adj0->sub_type.midchain.next_dpo;
135 next0 = dpo0->dpoi_next_node;
136 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
Florin Coras577c3552016-04-21 00:45:40 +0200137
Florin Coras220beac2016-08-16 23:04:00 +0200138 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
139 {
140 lisp_gpe_tx_trace_t *tr = vlib_add_trace (vm, node, b0,
141 sizeof (*tr));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100142 tr->tunnel_index = adj_index0;
Florin Coras220beac2016-08-16 23:04:00 +0200143 }
144 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
145 n_left_to_next, bi0, next0);
146 }
Florin Coras577c3552016-04-21 00:45:40 +0200147
148 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
149 }
Florin Coras0f6b7962016-06-21 22:32:47 +0200150
Florin Coras577c3552016-04-21 00:45:40 +0200151 return from_frame->n_vectors;
152}
153
154static u8 *
155format_lisp_gpe_name (u8 * s, va_list * args)
156{
157 u32 dev_instance = va_arg (*args, u32);
158 return format (s, "lisp_gpe%d", dev_instance);
159}
160
Florin Coras220beac2016-08-16 23:04:00 +0200161/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100162VNET_DEVICE_CLASS (lisp_gpe_device_class) = {
Florin Coras577c3552016-04-21 00:45:40 +0200163 .name = "LISP_GPE",
164 .format_device_name = format_lisp_gpe_name,
165 .format_tx_trace = format_lisp_gpe_tx_trace,
166 .tx_function = lisp_gpe_interface_tx,
Florin Coras577c3552016-04-21 00:45:40 +0200167};
Florin Coras220beac2016-08-16 23:04:00 +0200168/* *INDENT-ON* */
Florin Coras577c3552016-04-21 00:45:40 +0200169
Florin Coras577c3552016-04-21 00:45:40 +0200170u8 *
171format_lisp_gpe_header_with_length (u8 * s, va_list * args)
172{
Florin Coras220beac2016-08-16 23:04:00 +0200173 lisp_gpe_header_t *h = va_arg (*args, lisp_gpe_header_t *);
Florin Coras577c3552016-04-21 00:45:40 +0200174 u32 max_header_bytes = va_arg (*args, u32);
175 u32 header_bytes;
176
177 header_bytes = sizeof (h[0]);
178 if (max_header_bytes != 0 && header_bytes > max_header_bytes)
179 return format (s, "lisp-gpe header truncated");
180
181 s = format (s, "flags: ");
182#define _(n,v) if (h->flags & v) s = format (s, "%s ", #n);
183 foreach_lisp_gpe_flag_bit;
184#undef _
185
186 s = format (s, "\n ver_res %d res %d next_protocol %d iid %d(%x)",
Florin Coras220beac2016-08-16 23:04:00 +0200187 h->ver_res, h->res, h->next_protocol,
Filip Tehlarb4874ee2017-03-29 09:39:23 +0200188 clib_net_to_host_u32 (h->iid << 8),
189 clib_net_to_host_u32 (h->iid << 8));
Florin Coras577c3552016-04-21 00:45:40 +0200190 return s;
191}
192
Florin Coras220beac2016-08-16 23:04:00 +0200193/* *INDENT-OFF* */
Florin Coras577c3552016-04-21 00:45:40 +0200194VNET_HW_INTERFACE_CLASS (lisp_gpe_hw_class) = {
195 .name = "LISP_GPE",
196 .format_header = format_lisp_gpe_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100197 .build_rewrite = lisp_gpe_build_rewrite,
198 .update_adjacency = lisp_gpe_update_adjacency,
Florin Coras577c3552016-04-21 00:45:40 +0200199};
Florin Coras220beac2016-08-16 23:04:00 +0200200/* *INDENT-ON* */
Florin Coras577c3552016-04-21 00:45:40 +0200201
Florin Coras1a1adc72016-07-22 01:45:30 +0200202
203typedef struct
204{
Florin Corasce1b4c72017-01-26 14:25:34 -0800205 u32 dpo_index;
Florin Coras1a1adc72016-07-22 01:45:30 +0200206} l2_lisp_gpe_tx_trace_t;
207
Neale Ranns5e575b12016-10-03 09:40:25 +0100208static u8 *
Florin Coras1a1adc72016-07-22 01:45:30 +0200209format_l2_lisp_gpe_tx_trace (u8 * s, va_list * args)
210{
211 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
212 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Coras220beac2016-08-16 23:04:00 +0200213 l2_lisp_gpe_tx_trace_t *t = va_arg (*args, l2_lisp_gpe_tx_trace_t *);
Florin Coras1a1adc72016-07-22 01:45:30 +0200214
Florin Corasce1b4c72017-01-26 14:25:34 -0800215 s = format (s, "L2-LISP-GPE-TX: load-balance %d", t->dpo_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200216 return s;
217}
218
Florin Corasff0bf132016-09-05 19:30:35 +0200219/**
220 * @brief LISP-GPE interface TX (encap) function for L2 overlays.
221 * @node l2_lisp_gpe_interface_tx
222 *
223 * The L2 LISP-GPE interface TX (encap) function.
224 *
225 * Uses bridge domain index, source and destination ethernet addresses to
226 * lookup tunnel. If the tunnel is multihomed a flow has is used to determine
227 * the sub-tunnel and therefore the rewrite string to be used to encapsulate
228 * the packets.
229 *
230 * @param[in] vm vlib_main_t corresponding to the current thread.
231 * @param[in] node vlib_node_runtime_t data for this node.
232 * @param[in] frame vlib_frame_t whose contents should be dispatched.
233 *
234 * @return number of vectors in frame.
235 */
Florin Coras1a1adc72016-07-22 01:45:30 +0200236static uword
237l2_lisp_gpe_interface_tx (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras220beac2016-08-16 23:04:00 +0200238 vlib_frame_t * from_frame)
Florin Coras1a1adc72016-07-22 01:45:30 +0200239{
Florin Coras220beac2016-08-16 23:04:00 +0200240 u32 n_left_from, next_index, *from, *to_next;
241 lisp_gpe_main_t *lgm = &lisp_gpe_main;
Florin Coras1a1adc72016-07-22 01:45:30 +0200242
243 from = vlib_frame_vector_args (from_frame);
244 n_left_from = from_frame->n_vectors;
245
246 next_index = node->cached_next_index;
247
248 while (n_left_from > 0)
249 {
250 u32 n_left_to_next;
251
Florin Coras220beac2016-08-16 23:04:00 +0200252 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Coras1a1adc72016-07-22 01:45:30 +0200253
Florin Coras1a1adc72016-07-22 01:45:30 +0200254 while (n_left_from > 0 && n_left_to_next > 0)
Florin Coras220beac2016-08-16 23:04:00 +0200255 {
256 vlib_buffer_t *b0;
Neale Ranns5e575b12016-10-03 09:40:25 +0100257 u32 bi0, lbi0;
Florin Coras220beac2016-08-16 23:04:00 +0200258 ethernet_header_t *e0;
Florin Coras1a1adc72016-07-22 01:45:30 +0200259
Florin Coras220beac2016-08-16 23:04:00 +0200260 bi0 = from[0];
261 to_next[0] = bi0;
262 from += 1;
263 to_next += 1;
264 n_left_from -= 1;
265 n_left_to_next -= 1;
Florin Coras1a1adc72016-07-22 01:45:30 +0200266
Florin Coras220beac2016-08-16 23:04:00 +0200267 b0 = vlib_get_buffer (vm, bi0);
268 e0 = vlib_buffer_get_current (b0);
Florin Coras1a1adc72016-07-22 01:45:30 +0200269
Neale Ranns5e575b12016-10-03 09:40:25 +0100270 vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_MAC;
Florin Coras1a1adc72016-07-22 01:45:30 +0200271
Neale Ranns5e575b12016-10-03 09:40:25 +0100272 /* lookup dst + src mac */
273 lbi0 = lisp_l2_fib_lookup (lgm, vnet_buffer (b0)->l2.bd_index,
274 e0->src_address, e0->dst_address);
275 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = lbi0;
276
Florin Coras1a1adc72016-07-22 01:45:30 +0200277
Florin Coras220beac2016-08-16 23:04:00 +0200278 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
279 {
280 l2_lisp_gpe_tx_trace_t *tr = vlib_add_trace (vm, node, b0,
281 sizeof (*tr));
Florin Corasce1b4c72017-01-26 14:25:34 -0800282 tr->dpo_index = lbi0;
Florin Coras220beac2016-08-16 23:04:00 +0200283 }
284 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
Neale Ranns5e575b12016-10-03 09:40:25 +0100285 n_left_to_next, bi0, l2_arc_to_lb);
Florin Coras220beac2016-08-16 23:04:00 +0200286 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200287
288 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200289 }
290
Florin Coras1a1adc72016-07-22 01:45:30 +0200291 return from_frame->n_vectors;
292}
293
294static u8 *
295format_l2_lisp_gpe_name (u8 * s, va_list * args)
296{
297 u32 dev_instance = va_arg (*args, u32);
298 return format (s, "l2_lisp_gpe%d", dev_instance);
299}
300
Florin Coras220beac2016-08-16 23:04:00 +0200301/* *INDENT-OFF* */
Florin Coras1a1adc72016-07-22 01:45:30 +0200302VNET_DEVICE_CLASS (l2_lisp_gpe_device_class,static) = {
303 .name = "L2_LISP_GPE",
304 .format_device_name = format_l2_lisp_gpe_name,
Neale Ranns5e575b12016-10-03 09:40:25 +0100305 .format_tx_trace = format_l2_lisp_gpe_tx_trace,
Florin Coras1a1adc72016-07-22 01:45:30 +0200306 .tx_function = l2_lisp_gpe_interface_tx,
Florin Coras1a1adc72016-07-22 01:45:30 +0200307};
Florin Coras220beac2016-08-16 23:04:00 +0200308/* *INDENT-ON* */
Florin Coras1a1adc72016-07-22 01:45:30 +0200309
Florin Corasce1b4c72017-01-26 14:25:34 -0800310typedef struct
311{
312 u32 dpo_index;
313} nsh_lisp_gpe_tx_trace_t;
314
315u8 *
316format_nsh_lisp_gpe_tx_trace (u8 * s, va_list * args)
317{
318 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
319 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
320 nsh_lisp_gpe_tx_trace_t *t = va_arg (*args, nsh_lisp_gpe_tx_trace_t *);
321
322 s = format (s, "NSH-GPE-TX: tunnel %d", t->dpo_index);
323 return s;
324}
325
326/**
327 * @brief LISP-GPE interface TX for NSH overlays.
328 * @node nsh_lisp_gpe_interface_tx
329 *
330 * The NSH LISP-GPE interface TX function.
331 *
332 * @param[in] vm vlib_main_t corresponding to the current thread.
333 * @param[in] node vlib_node_runtime_t data for this node.
334 * @param[in] frame vlib_frame_t whose contents should be dispatched.
335 *
336 * @return number of vectors in frame.
337 */
338static uword
339nsh_lisp_gpe_interface_tx (vlib_main_t * vm, vlib_node_runtime_t * node,
340 vlib_frame_t * from_frame)
341{
342 u32 n_left_from, next_index, *from, *to_next;
343 lisp_gpe_main_t *lgm = &lisp_gpe_main;
344
345 from = vlib_frame_vector_args (from_frame);
346 n_left_from = from_frame->n_vectors;
347
348 next_index = node->cached_next_index;
349
350 while (n_left_from > 0)
351 {
352 u32 n_left_to_next;
353
354 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
355
356 while (n_left_from > 0 && n_left_to_next > 0)
357 {
358 vlib_buffer_t *b0;
359 u32 bi0;
360 u32 *nsh0, next0;
361 const dpo_id_t *dpo0;
362
363 bi0 = from[0];
364 to_next[0] = bi0;
365 from += 1;
366 to_next += 1;
367 n_left_from -= 1;
368 n_left_to_next -= 1;
369
370 b0 = vlib_get_buffer (vm, bi0);
371 nsh0 = vlib_buffer_get_current (b0);
372
373 vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_LCAF;
374
375 /* lookup SPI + SI (second word of the NSH header).
376 * NB: Load balancing was done by the control plane */
377 dpo0 = lisp_nsh_fib_lookup (lgm, nsh0[1]);
378
379 next0 = dpo0->dpoi_next_node;
380 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
381
382 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
383 {
384 nsh_lisp_gpe_tx_trace_t *tr = vlib_add_trace (vm, node, b0,
385 sizeof (*tr));
386 tr->dpo_index = dpo0->dpoi_index;
387 }
388 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
389 n_left_to_next, bi0, next0);
390 }
391
392 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
393 }
394
395 return from_frame->n_vectors;
396}
397
398static u8 *
399format_nsh_lisp_gpe_name (u8 * s, va_list * args)
400{
401 u32 dev_instance = va_arg (*args, u32);
402 return format (s, "nsh_lisp_gpe%d", dev_instance);
403}
404
405/* *INDENT-OFF* */
406VNET_DEVICE_CLASS (nsh_lisp_gpe_device_class,static) = {
407 .name = "NSH_LISP_GPE",
408 .format_device_name = format_nsh_lisp_gpe_name,
409 .format_tx_trace = format_nsh_lisp_gpe_tx_trace,
410 .tx_function = nsh_lisp_gpe_interface_tx,
411};
412/* *INDENT-ON* */
413
Florin Coras1a1adc72016-07-22 01:45:30 +0200414static vnet_hw_interface_t *
Neale Ranns5e575b12016-10-03 09:40:25 +0100415lisp_gpe_create_iface (lisp_gpe_main_t * lgm, u32 vni, u32 dp_table,
Florin Coras220beac2016-08-16 23:04:00 +0200416 vnet_device_class_t * dev_class,
417 tunnel_lookup_t * tuns)
Florin Coras1a1adc72016-07-22 01:45:30 +0200418{
419 u32 flen;
420 u32 hw_if_index = ~0;
Florin Coras220beac2016-08-16 23:04:00 +0200421 u8 *new_name;
422 vnet_hw_interface_t *hi;
423 vnet_main_t *vnm = lgm->vnet_main;
Florin Coras1a1adc72016-07-22 01:45:30 +0200424
425 /* create hw lisp_gpeX iface if needed, otherwise reuse existing */
Florin Coras220beac2016-08-16 23:04:00 +0200426 flen = vec_len (lgm->free_tunnel_hw_if_indices);
Florin Coras1a1adc72016-07-22 01:45:30 +0200427 if (flen > 0)
428 {
429 hw_if_index = lgm->free_tunnel_hw_if_indices[flen - 1];
Florin Coras220beac2016-08-16 23:04:00 +0200430 _vec_len (lgm->free_tunnel_hw_if_indices) -= 1;
Florin Coras1a1adc72016-07-22 01:45:30 +0200431
432 hi = vnet_get_hw_interface (vnm, hw_if_index);
433
434 /* rename interface */
Florin Coras220beac2016-08-16 23:04:00 +0200435 new_name = format (0, "%U", dev_class->format_device_name, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200436
Florin Coras220beac2016-08-16 23:04:00 +0200437 vec_add1 (new_name, 0);
Florin Coras1a1adc72016-07-22 01:45:30 +0200438 vnet_rename_interface (vnm, hw_if_index, (char *) new_name);
Florin Coras220beac2016-08-16 23:04:00 +0200439 vec_free (new_name);
Florin Coras1a1adc72016-07-22 01:45:30 +0200440
441 /* clear old stats of freed interface before reuse */
Florin Coras220beac2016-08-16 23:04:00 +0200442 vnet_interface_main_t *im = &vnm->interface_main;
Florin Coras1a1adc72016-07-22 01:45:30 +0200443 vnet_interface_counter_lock (im);
Florin Coras220beac2016-08-16 23:04:00 +0200444 vlib_zero_combined_counter (&im->combined_sw_if_counters
445 [VNET_INTERFACE_COUNTER_TX],
446 hi->sw_if_index);
447 vlib_zero_combined_counter (&im->combined_sw_if_counters
448 [VNET_INTERFACE_COUNTER_RX],
449 hi->sw_if_index);
450 vlib_zero_simple_counter (&im->sw_if_counters
451 [VNET_INTERFACE_COUNTER_DROP],
452 hi->sw_if_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200453 vnet_interface_counter_unlock (im);
454 }
455 else
456 {
457 hw_if_index = vnet_register_interface (vnm, dev_class->index, vni,
Florin Coras220beac2016-08-16 23:04:00 +0200458 lisp_gpe_hw_class.index, 0);
Florin Coras1a1adc72016-07-22 01:45:30 +0200459 hi = vnet_get_hw_interface (vnm, hw_if_index);
460 }
461
Florin Coras220beac2016-08-16 23:04:00 +0200462 hash_set (tuns->hw_if_index_by_dp_table, dp_table, hw_if_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200463
464 /* set tunnel termination: post decap, packets are tagged as having been
465 * originated by lisp-gpe interface */
Florin Coras220beac2016-08-16 23:04:00 +0200466 hash_set (tuns->sw_if_index_by_vni, vni, hi->sw_if_index);
467 hash_set (tuns->vni_by_sw_if_index, hi->sw_if_index, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200468
469 return hi;
470}
471
472static void
Neale Ranns5e575b12016-10-03 09:40:25 +0100473lisp_gpe_remove_iface (lisp_gpe_main_t * lgm, u32 hi_index, u32 dp_table,
Florin Coras220beac2016-08-16 23:04:00 +0200474 tunnel_lookup_t * tuns)
Florin Coras1a1adc72016-07-22 01:45:30 +0200475{
Florin Coras220beac2016-08-16 23:04:00 +0200476 vnet_main_t *vnm = lgm->vnet_main;
477 vnet_hw_interface_t *hi;
478 uword *vnip;
Florin Coras1a1adc72016-07-22 01:45:30 +0200479
480 hi = vnet_get_hw_interface (vnm, hi_index);
481
482 /* disable interface */
Florin Coras220beac2016-08-16 23:04:00 +0200483 vnet_sw_interface_set_flags (vnm, hi->sw_if_index, 0 /* down */ );
484 vnet_hw_interface_set_flags (vnm, hi->hw_if_index, 0 /* down */ );
485 hash_unset (tuns->hw_if_index_by_dp_table, dp_table);
486 vec_add1 (lgm->free_tunnel_hw_if_indices, hi->hw_if_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200487
488 /* clean tunnel termination and vni to sw_if_index binding */
Florin Coras220beac2016-08-16 23:04:00 +0200489 vnip = hash_get (tuns->vni_by_sw_if_index, hi->sw_if_index);
Florin Corasf7643fd2016-08-01 15:35:20 +0200490 if (0 == vnip)
491 {
492 clib_warning ("No vni associated to interface %d", hi->sw_if_index);
493 return;
494 }
Florin Coras220beac2016-08-16 23:04:00 +0200495 hash_unset (tuns->sw_if_index_by_vni, vnip[0]);
496 hash_unset (tuns->vni_by_sw_if_index, hi->sw_if_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200497}
498
Neale Ranns5e575b12016-10-03 09:40:25 +0100499static void
500lisp_gpe_iface_set_table (u32 sw_if_index, u32 table_id)
501{
502 fib_node_index_t fib_index;
503
504 fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, table_id);
505 vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index);
506 ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
507 ip4_sw_interface_enable_disable (sw_if_index, 1);
508
509 fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, table_id);
510 vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index);
511 ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
512 ip6_sw_interface_enable_disable (sw_if_index, 1);
513}
514
515static void
516lisp_gpe_tenant_del_default_routes (u32 table_id)
517{
518 fib_protocol_t proto;
519
520 FOR_EACH_FIB_IP_PROTOCOL (proto)
521 {
522 fib_prefix_t prefix = {
523 .fp_proto = proto,
524 };
525 u32 fib_index;
526
527 fib_index = fib_table_find (prefix.fp_proto, table_id);
528 fib_table_entry_special_remove (fib_index, &prefix, FIB_SOURCE_LISP);
529 fib_table_unlock (fib_index, prefix.fp_proto);
530 }
531}
532
533static void
534lisp_gpe_tenant_add_default_routes (u32 table_id)
535{
536 fib_protocol_t proto;
537
538 FOR_EACH_FIB_IP_PROTOCOL (proto)
539 {
540 fib_prefix_t prefix = {
541 .fp_proto = proto,
542 };
543 u32 fib_index;
544
545 /*
546 * Add a deafult route that results in a control plane punt DPO
547 */
548 fib_index = fib_table_find_or_create_and_lock (prefix.fp_proto, table_id);
549 fib_table_entry_special_dpo_add (fib_index, &prefix, FIB_SOURCE_LISP,
550 FIB_ENTRY_FLAG_EXCLUSIVE,
551 lisp_cp_dpo_get (fib_proto_to_dpo
552 (proto)));
553 }
554}
555
556
Florin Corasff0bf132016-09-05 19:30:35 +0200557/**
558 * @brief Add/del LISP-GPE L3 interface.
559 *
560 * Creates LISP-GPE interface, sets ingress arcs from lisp_gpeX_lookup,
561 * installs default routes that attract all traffic with no more specific
562 * routes to lgpe-ipx-lookup, set egress arcs to ipx-lookup, sets
563 * the interface in the right vrf and enables it.
564 *
565 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
566 * @param[in] a Parameters to create interface.
567 *
568 * @return number of vectors in frame.
569 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100570u32
571lisp_gpe_add_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 table_id)
Florin Coras1a1adc72016-07-22 01:45:30 +0200572{
Florin Coras220beac2016-08-16 23:04:00 +0200573 vnet_main_t *vnm = lgm->vnet_main;
574 tunnel_lookup_t *l3_ifaces = &lgm->l3_ifaces;
575 vnet_hw_interface_t *hi;
Florin Coras220beac2016-08-16 23:04:00 +0200576 uword *hip, *si;
Florin Coras1a1adc72016-07-22 01:45:30 +0200577
Neale Ranns5e575b12016-10-03 09:40:25 +0100578 hip = hash_get (l3_ifaces->hw_if_index_by_dp_table, table_id);
Florin Coras577c3552016-04-21 00:45:40 +0200579
Neale Ranns5e575b12016-10-03 09:40:25 +0100580 if (hip)
Florin Coras577c3552016-04-21 00:45:40 +0200581 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100582 clib_warning ("vrf %d already mapped to a vni", table_id);
583 return ~0;
Florin Coras577c3552016-04-21 00:45:40 +0200584 }
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200585
Neale Ranns5e575b12016-10-03 09:40:25 +0100586 si = hash_get (l3_ifaces->sw_if_index_by_vni, vni);
587
588 if (si)
589 {
590 clib_warning ("Interface for vni %d already exists", vni);
591 }
592
593 /* create lisp iface and populate tunnel tables */
594 hi = lisp_gpe_create_iface (lgm, vni, table_id,
595 &lisp_gpe_device_class, l3_ifaces);
596
597 /* insert default routes that point to lisp-cp lookup */
598 lisp_gpe_iface_set_table (hi->sw_if_index, table_id);
599 lisp_gpe_tenant_add_default_routes (table_id);
600
601 /* enable interface */
602 vnet_sw_interface_set_flags (vnm, hi->sw_if_index,
603 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
604 vnet_hw_interface_set_flags (vnm, hi->hw_if_index,
605 VNET_HW_INTERFACE_FLAG_LINK_UP);
606
607 return (hi->sw_if_index);
608}
609
610void
611lisp_gpe_del_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 table_id)
612{
613 vnet_main_t *vnm = lgm->vnet_main;
614 tunnel_lookup_t *l3_ifaces = &lgm->l3_ifaces;
615 vnet_hw_interface_t *hi;
616 uword *hip;
617
618 hip = hash_get (l3_ifaces->hw_if_index_by_dp_table, table_id);
619
620 if (hip == 0)
621 {
622 clib_warning ("The interface for vrf %d doesn't exist", table_id);
623 return;
624 }
625
626 hi = vnet_get_hw_interface (vnm, hip[0]);
627
628 lisp_gpe_remove_iface (lgm, hip[0], table_id, &lgm->l3_ifaces);
629
630 /* unset default routes */
631 ip4_sw_interface_enable_disable (hi->sw_if_index, 0);
632 ip6_sw_interface_enable_disable (hi->sw_if_index, 0);
633 lisp_gpe_tenant_del_default_routes (table_id);
Florin Coras577c3552016-04-21 00:45:40 +0200634}
635
Florin Corasff0bf132016-09-05 19:30:35 +0200636/**
637 * @brief Add/del LISP-GPE L2 interface.
638 *
639 * Creates LISP-GPE interface, sets it in L2 mode in the appropriate
640 * bridge domain, sets egress arcs and enables it.
641 *
642 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
643 * @param[in] a Parameters to create interface.
644 *
645 * @return number of vectors in frame.
646 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100647u32
648lisp_gpe_add_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id)
Florin Coras1a1adc72016-07-22 01:45:30 +0200649{
Florin Coras220beac2016-08-16 23:04:00 +0200650 vnet_main_t *vnm = lgm->vnet_main;
651 tunnel_lookup_t *l2_ifaces = &lgm->l2_ifaces;
652 vnet_hw_interface_t *hi;
653 uword *hip, *si;
Florin Coras1a1adc72016-07-22 01:45:30 +0200654 u16 bd_index;
655
Neale Ranns5e575b12016-10-03 09:40:25 +0100656 bd_index = bd_find_or_add_bd_index (&bd_main, bd_id);
Florin Coras220beac2016-08-16 23:04:00 +0200657 hip = hash_get (l2_ifaces->hw_if_index_by_dp_table, bd_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200658
Neale Ranns5e575b12016-10-03 09:40:25 +0100659 if (hip)
Florin Coras1a1adc72016-07-22 01:45:30 +0200660 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100661 clib_warning ("bridge domain %d already mapped to a vni", bd_id);
662 return ~0;
Florin Coras1a1adc72016-07-22 01:45:30 +0200663 }
664
Neale Ranns5e575b12016-10-03 09:40:25 +0100665 si = hash_get (l2_ifaces->sw_if_index_by_vni, vni);
666 if (si)
667 {
668 clib_warning ("Interface for vni %d already exists", vni);
669 return ~0;
670 }
671
672 /* create lisp iface and populate tunnel tables */
673 hi = lisp_gpe_create_iface (lgm, vni, bd_index,
674 &l2_lisp_gpe_device_class, &lgm->l2_ifaces);
675
676 /* enable interface */
677 vnet_sw_interface_set_flags (vnm, hi->sw_if_index,
678 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
679 vnet_hw_interface_set_flags (vnm, hi->hw_if_index,
680 VNET_HW_INTERFACE_FLAG_LINK_UP);
681
682 l2_arc_to_lb = vlib_node_add_named_next (vlib_get_main (),
683 hi->tx_node_index,
684 "l2-load-balance");
685
686 /* we're ready. add iface to l2 bridge domain */
687 set_int_l2_mode (lgm->vlib_main, vnm, MODE_L2_BRIDGE, hi->sw_if_index,
688 bd_index, 0, 0, 0);
689
690 return (hi->sw_if_index);
Florin Coras1a1adc72016-07-22 01:45:30 +0200691}
692
Neale Ranns5e575b12016-10-03 09:40:25 +0100693/**
694 * @brief Add/del LISP-GPE L2 interface.
695 *
696 * Creates LISP-GPE interface, sets it in L2 mode in the appropriate
697 * bridge domain, sets egress arcs and enables it.
698 *
699 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
700 * @param[in] a Parameters to create interface.
701 *
702 * @return number of vectors in frame.
703 */
704void
705lisp_gpe_del_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id)
Florin Coras1a1adc72016-07-22 01:45:30 +0200706{
Neale Ranns5e575b12016-10-03 09:40:25 +0100707 tunnel_lookup_t *l2_ifaces = &lgm->l2_ifaces;
Florin Coras9e79be22017-05-05 00:24:16 -0700708 vnet_hw_interface_t *hi;
Florin Coras1a1adc72016-07-22 01:45:30 +0200709
Eyal Barib1352ed2017-04-07 23:14:17 +0300710 u32 bd_index = bd_find_index (&bd_main, bd_id);
711 ASSERT (bd_index != ~0);
712 uword *hip = hash_get (l2_ifaces->hw_if_index_by_dp_table, bd_index);
Neale Ranns5e575b12016-10-03 09:40:25 +0100713
714 if (hip == 0)
Florin Coras1a1adc72016-07-22 01:45:30 +0200715 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100716 clib_warning ("The interface for bridge domain %d doesn't exist",
717 bd_id);
718 return;
Florin Coras1a1adc72016-07-22 01:45:30 +0200719 }
Florin Coras9e79be22017-05-05 00:24:16 -0700720
721 /* Remove interface from bridge .. by enabling L3 mode */
722 hi = vnet_get_hw_interface (lgm->vnet_main, hip[0]);
723 set_int_l2_mode (lgm->vlib_main, lgm->vnet_main, MODE_L3, hi->sw_if_index,
724 0, 0, 0, 0);
Neale Ranns5e575b12016-10-03 09:40:25 +0100725 lisp_gpe_remove_iface (lgm, hip[0], bd_index, &lgm->l2_ifaces);
Florin Coras1a1adc72016-07-22 01:45:30 +0200726}
727
Florin Corasce1b4c72017-01-26 14:25:34 -0800728/**
729 * @brief Add LISP-GPE NSH interface.
730 *
731 * Creates LISP-GPE interface, sets it in L3 mode.
732 *
733 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
734 * @param[in] a Parameters to create interface.
735 *
736 * @return sw_if_index.
737 */
738u32
739lisp_gpe_add_nsh_iface (lisp_gpe_main_t * lgm)
740{
741 vnet_main_t *vnm = lgm->vnet_main;
742 tunnel_lookup_t *nsh_ifaces = &lgm->nsh_ifaces;
743 vnet_hw_interface_t *hi;
744 uword *hip, *si;
745
746 hip = hash_get (nsh_ifaces->hw_if_index_by_dp_table, 0);
747
748 if (hip)
749 {
750 clib_warning ("NSH interface 0 already exists");
751 return ~0;
752 }
753
754 si = hash_get (nsh_ifaces->sw_if_index_by_vni, 0);
755 if (si)
756 {
757 clib_warning ("NSH interface already exists");
758 return ~0;
759 }
760
761 /* create lisp iface and populate tunnel tables */
762 hi = lisp_gpe_create_iface (lgm, 0, 0,
763 &nsh_lisp_gpe_device_class, &lgm->nsh_ifaces);
764
765 /* enable interface */
766 vnet_sw_interface_set_flags (vnm, hi->sw_if_index,
767 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
768 vnet_hw_interface_set_flags (vnm, hi->hw_if_index,
769 VNET_HW_INTERFACE_FLAG_LINK_UP);
770
771 return (hi->sw_if_index);
772}
773
774/**
775 * @brief Del LISP-GPE NSH interface.
776 *
777 */
778void
779lisp_gpe_del_nsh_iface (lisp_gpe_main_t * lgm)
780{
781 tunnel_lookup_t *nsh_ifaces = &lgm->nsh_ifaces;
782 uword *hip;
783
784 hip = hash_get (nsh_ifaces->hw_if_index_by_dp_table, 0);
785
786 if (hip == 0)
787 {
788 clib_warning ("The NSH 0 interface doesn't exist");
789 return;
790 }
791 lisp_gpe_remove_iface (lgm, hip[0], 0, &lgm->nsh_ifaces);
792}
793
Florin Coras577c3552016-04-21 00:45:40 +0200794static clib_error_t *
795lisp_gpe_add_del_iface_command_fn (vlib_main_t * vm, unformat_input_t * input,
Florin Coras220beac2016-08-16 23:04:00 +0200796 vlib_cli_command_t * cmd)
Florin Coras577c3552016-04-21 00:45:40 +0200797{
Florin Coras220beac2016-08-16 23:04:00 +0200798 unformat_input_t _line_input, *line_input = &_line_input;
Florin Coras577c3552016-04-21 00:45:40 +0200799 u8 is_add = 1;
Florin Coras1a1adc72016-07-22 01:45:30 +0200800 u32 table_id, vni, bd_id;
801 u8 vni_is_set = 0, vrf_is_set = 0, bd_index_is_set = 0;
Florin Corasce1b4c72017-01-26 14:25:34 -0800802 u8 nsh_iface = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500803 clib_error_t *error = NULL;
Florin Coras577c3552016-04-21 00:45:40 +0200804
Neale Ranns5e575b12016-10-03 09:40:25 +0100805 if (vnet_lisp_gpe_enable_disable_status () == 0)
806 {
807 return clib_error_return (0, "LISP is disabled");
808 }
Florin Coras577c3552016-04-21 00:45:40 +0200809
810 /* Get a line of input. */
Florin Coras220beac2016-08-16 23:04:00 +0200811 if (!unformat_user (input, unformat_line_input, line_input))
Florin Coras577c3552016-04-21 00:45:40 +0200812 return 0;
813
814 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
815 {
816 if (unformat (line_input, "add"))
Florin Coras220beac2016-08-16 23:04:00 +0200817 is_add = 1;
Florin Coras577c3552016-04-21 00:45:40 +0200818 else if (unformat (line_input, "del"))
Florin Coras220beac2016-08-16 23:04:00 +0200819 is_add = 0;
Florin Coras577c3552016-04-21 00:45:40 +0200820 else if (unformat (line_input, "vrf %d", &table_id))
Florin Coras220beac2016-08-16 23:04:00 +0200821 {
822 vrf_is_set = 1;
823 }
Florin Coras69ae1872016-07-19 11:52:35 +0200824 else if (unformat (line_input, "vni %d", &vni))
Florin Coras220beac2016-08-16 23:04:00 +0200825 {
826 vni_is_set = 1;
827 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200828 else if (unformat (line_input, "bd %d", &bd_id))
Florin Coras220beac2016-08-16 23:04:00 +0200829 {
830 bd_index_is_set = 1;
831 }
Florin Corasce1b4c72017-01-26 14:25:34 -0800832 else if (unformat (line_input, "nsh"))
833 {
834 nsh_iface = 1;
835 }
Florin Coras577c3552016-04-21 00:45:40 +0200836 else
Florin Coras220beac2016-08-16 23:04:00 +0200837 {
Billy McFalla9a20e72017-02-15 11:39:12 -0500838 error = clib_error_return (0, "parse error: '%U'",
839 format_unformat_error, line_input);
840 goto done;
Florin Coras220beac2016-08-16 23:04:00 +0200841 }
Florin Coras577c3552016-04-21 00:45:40 +0200842 }
843
Florin Coras6085e162017-02-15 14:16:26 -0800844 if (nsh_iface)
845 {
846 if (is_add)
847 {
848 if (~0 == lisp_gpe_add_nsh_iface (&lisp_gpe_main))
849 {
Billy McFalla9a20e72017-02-15 11:39:12 -0500850 error = clib_error_return (0, "NSH interface not created");
851 goto done;
Florin Coras6085e162017-02-15 14:16:26 -0800852 }
853 }
854 else
855 {
856 lisp_gpe_del_nsh_iface (&lisp_gpe_main);
857 }
Billy McFall614c1312017-03-01 17:01:06 -0500858 goto done;
Florin Coras6085e162017-02-15 14:16:26 -0800859 }
860
Florin Coras1a1adc72016-07-22 01:45:30 +0200861 if (vrf_is_set && bd_index_is_set)
Billy McFalla9a20e72017-02-15 11:39:12 -0500862 {
863 error = clib_error_return
864 (0, "Cannot set both vrf and brdige domain index!");
865 goto done;
866 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200867
868 if (!vni_is_set)
Billy McFalla9a20e72017-02-15 11:39:12 -0500869 {
870 error = clib_error_return (0, "vni must be set!");
871 goto done;
872 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200873
874 if (!vrf_is_set && !bd_index_is_set)
Billy McFalla9a20e72017-02-15 11:39:12 -0500875 {
876 error =
877 clib_error_return (0, "vrf or bridge domain index must be set!");
878 goto done;
879 }
Florin Coras69ae1872016-07-19 11:52:35 +0200880
Neale Ranns5e575b12016-10-03 09:40:25 +0100881 if (bd_index_is_set)
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200882 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100883 if (is_add)
884 {
885 if (~0 == lisp_gpe_tenant_l2_iface_add_or_lock (vni, bd_id))
Billy McFalla9a20e72017-02-15 11:39:12 -0500886 {
887 error = clib_error_return (0, "L2 interface not created");
888 goto done;
889 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100890 }
891 else
892 lisp_gpe_tenant_l2_iface_unlock (vni);
893 }
894 else
895 {
896 if (is_add)
897 {
898 if (~0 == lisp_gpe_tenant_l3_iface_add_or_lock (vni, table_id))
Billy McFalla9a20e72017-02-15 11:39:12 -0500899 {
900 error = clib_error_return (0, "L3 interface not created");
901 goto done;
902 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100903 }
904 else
905 lisp_gpe_tenant_l3_iface_unlock (vni);
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200906 }
907
Billy McFalla9a20e72017-02-15 11:39:12 -0500908done:
909 unformat_free (line_input);
910
911 return error;
Florin Coras577c3552016-04-21 00:45:40 +0200912}
913
Florin Coras220beac2016-08-16 23:04:00 +0200914/* *INDENT-OFF* */
Florin Coras577c3552016-04-21 00:45:40 +0200915VLIB_CLI_COMMAND (add_del_lisp_gpe_iface_command, static) = {
Filip Tehlar82786c42017-02-20 15:20:37 +0100916 .path = "gpe iface",
917 .short_help = "gpe iface add/del vni <vni> vrf <vrf>",
Florin Coras577c3552016-04-21 00:45:40 +0200918 .function = lisp_gpe_add_del_iface_command_fn,
919};
Florin Coras220beac2016-08-16 23:04:00 +0200920/* *INDENT-ON* */
921
922/*
923 * fd.io coding-style-patch-verification: ON
924 *
925 * Local Variables:
926 * eval: (c-set-style "gnu")
927 * End:
928 */