blob: d6e85e70b440b7cd6ec650120a4b33a0384ef329 [file] [log] [blame]
Neale Rannsad422ed2016-11-02 14:20:04 +00001/*
2 * mpls_tunnel.c: MPLS tunnel interfaces (i.e. for RSVP-TE)
3 *
4 * Copyright (c) 2012 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/pg/pg.h>
20#include <vnet/mpls/mpls_tunnel.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080021#include <vnet/mpls/mpls_types.h>
Neale Rannsad422ed2016-11-02 14:20:04 +000022#include <vnet/ip/ip.h>
23#include <vnet/fib/fib_path_list.h>
24#include <vnet/adj/adj_midchain.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080025#include <vnet/adj/adj_mcast.h>
26#include <vnet/dpo/replicate_dpo.h>
Neale Ranns227038a2017-04-21 01:07:59 -070027#include <vnet/fib/mpls_fib.h>
Neale Rannsad422ed2016-11-02 14:20:04 +000028
29/**
30 * @brief pool of tunnel instances
31 */
32static mpls_tunnel_t *mpls_tunnel_pool;
33
34/**
35 * @brief Pool of free tunnel SW indices - i.e. recycled indices
36 */
37static u32 * mpls_tunnel_free_hw_if_indices;
38
39/**
40 * @brief DB of SW index to tunnel index
41 */
42static u32 *mpls_tunnel_db;
43
44/**
Neale Ranns0f26c5a2017-03-01 15:12:11 -080045 * @brief MPLS tunnel flags strings
46 */
47static const char *mpls_tunnel_attribute_names[] = MPLS_TUNNEL_ATTRIBUTES;
48
49/**
Neale Rannsad422ed2016-11-02 14:20:04 +000050 * @brief Get a tunnel object from a SW interface index
51 */
52static mpls_tunnel_t*
53mpls_tunnel_get_from_sw_if_index (u32 sw_if_index)
54{
55 if ((vec_len(mpls_tunnel_db) < sw_if_index) ||
Neale Ranns0f26c5a2017-03-01 15:12:11 -080056 (~0 == mpls_tunnel_db[sw_if_index]))
57 return (NULL);
Neale Rannsad422ed2016-11-02 14:20:04 +000058
59 return (pool_elt_at_index(mpls_tunnel_pool,
Neale Ranns0f26c5a2017-03-01 15:12:11 -080060 mpls_tunnel_db[sw_if_index]));
Neale Rannsad422ed2016-11-02 14:20:04 +000061}
62
63/**
64 * @brief Build a rewrite string for the MPLS tunnel.
Neale Ranns0f26c5a2017-03-01 15:12:11 -080065 */
66static u8*
67mpls_tunnel_build_rewrite_i (void)
68{
69 /*
70 * passing the adj code a NULL rewirte means 'i don't have one cos
71 * t'other end is unresolved'. That's not the case here. For the mpls
72 * tunnel there are just no bytes of encap to apply in the adj. We'll impose
73 * the label stack once we choose a path. So return a zero length rewrite.
74 */
75 u8 *rewrite = NULL;
76
77 vec_validate(rewrite, 0);
78 vec_reset_length(rewrite);
79
80 return (rewrite);
81}
82
83/**
84 * @brief Build a rewrite string for the MPLS tunnel.
Neale Rannsad422ed2016-11-02 14:20:04 +000085 */
86static u8*
87mpls_tunnel_build_rewrite (vnet_main_t * vnm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -080088 u32 sw_if_index,
89 vnet_link_t link_type,
90 const void *dst_address)
Neale Rannsad422ed2016-11-02 14:20:04 +000091{
Neale Ranns0f26c5a2017-03-01 15:12:11 -080092 return (mpls_tunnel_build_rewrite_i());
93}
Neale Rannsad422ed2016-11-02 14:20:04 +000094
Neale Ranns0f26c5a2017-03-01 15:12:11 -080095typedef struct mpls_tunnel_collect_forwarding_ctx_t_
96{
97 load_balance_path_t * next_hops;
98 const mpls_tunnel_t *mt;
99 fib_forward_chain_type_t fct;
100} mpls_tunnel_collect_forwarding_ctx_t;
101
Neale Ranns81424992017-05-18 03:03:22 -0700102static fib_path_list_walk_rc_t
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800103mpls_tunnel_collect_forwarding (fib_node_index_t pl_index,
104 fib_node_index_t path_index,
105 void *arg)
106{
107 mpls_tunnel_collect_forwarding_ctx_t *ctx;
108 fib_path_ext_t *path_ext;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800109
110 ctx = arg;
Neale Rannsad422ed2016-11-02 14:20:04 +0000111
Neale Ranns3b222a32016-12-02 15:41:03 +0000112 /*
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800113 * if the path is not resolved, don't include it.
Neale Ranns3b222a32016-12-02 15:41:03 +0000114 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800115 if (!fib_path_is_resolved(path_index))
Neale Rannsad422ed2016-11-02 14:20:04 +0000116 {
Neale Ranns81424992017-05-18 03:03:22 -0700117 return (FIB_PATH_LIST_WALK_CONTINUE);
Neale Rannsad422ed2016-11-02 14:20:04 +0000118 }
119
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800120 /*
121 * get the matching path-extension for the path being visited.
122 */
Neale Ranns81424992017-05-18 03:03:22 -0700123 path_ext = fib_path_ext_list_find_by_path_index(&ctx->mt->mt_path_exts,
124 path_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800125
Neale Ranns81424992017-05-18 03:03:22 -0700126 if (NULL != path_ext)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800127 {
128 /*
129 * found a matching extension. stack it to obtain the forwarding
130 * info for this path.
131 */
132 ctx->next_hops = fib_path_ext_stack(path_ext,
133 ctx->fct,
134 ctx->fct,
135 ctx->next_hops);
136 }
137 else
138 ASSERT(0);
139 /*
140 * else
141 * There should be a path-extenios associated with each path
142 */
143
Neale Ranns81424992017-05-18 03:03:22 -0700144 return (FIB_PATH_LIST_WALK_CONTINUE);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800145}
146
147static void
148mpls_tunnel_mk_lb (mpls_tunnel_t *mt,
149 vnet_link_t linkt,
150 fib_forward_chain_type_t fct,
151 dpo_id_t *dpo_lb)
152{
153 dpo_proto_t lb_proto;
154
155 /*
156 * If the entry has path extensions then we construct a load-balance
157 * by stacking the extensions on the forwarding chains of the paths.
158 * Otherwise we use the load-balance of the path-list
159 */
160 mpls_tunnel_collect_forwarding_ctx_t ctx = {
161 .mt = mt,
162 .next_hops = NULL,
163 .fct = fct,
164 };
165
166 /*
167 * As an optimisation we allocate the vector of next-hops to be sized
168 * equal to the maximum nuber of paths we will need, which is also the
169 * most likely number we will need, since in most cases the paths are 'up'.
170 */
171 vec_validate(ctx.next_hops, fib_path_list_get_n_paths(mt->mt_path_list));
172 vec_reset_length(ctx.next_hops);
173
174 lb_proto = vnet_link_to_dpo_proto(linkt);
175
176 fib_path_list_walk(mt->mt_path_list,
177 mpls_tunnel_collect_forwarding,
178 &ctx);
179
180 if (!dpo_id_is_valid(dpo_lb))
181 {
182 /*
183 * first time create
184 */
185 if (mt->mt_flags & MPLS_TUNNEL_FLAG_MCAST)
186 {
187 dpo_set(dpo_lb,
188 DPO_REPLICATE,
189 lb_proto,
190 replicate_create(0, lb_proto));
191 }
192 else
193 {
194 flow_hash_config_t fhc;
195
Neale Ranns227038a2017-04-21 01:07:59 -0700196 switch (linkt)
197 {
198 case VNET_LINK_MPLS:
199 fhc = MPLS_FLOW_HASH_DEFAULT;
200 break;
201 case VNET_LINK_IP4:
202 case VNET_LINK_IP6:
203 fhc = IP_FLOW_HASH_DEFAULT;
204 break;
205 default:
206 fhc = 0;
207 break;
208 }
209
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800210 dpo_set(dpo_lb,
211 DPO_LOAD_BALANCE,
212 lb_proto,
213 load_balance_create(0, lb_proto, fhc));
214 }
215 }
216
217 if (mt->mt_flags & MPLS_TUNNEL_FLAG_MCAST)
218 {
219 /*
220 * MPLS multicast
221 */
222 replicate_multipath_update(dpo_lb, ctx.next_hops);
Neale Ranns3b222a32016-12-02 15:41:03 +0000223 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000224 else
Neale Ranns3b222a32016-12-02 15:41:03 +0000225 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800226 load_balance_multipath_update(dpo_lb,
227 ctx.next_hops,
228 LOAD_BALANCE_FLAG_NONE);
229 vec_free(ctx.next_hops);
Neale Ranns3b222a32016-12-02 15:41:03 +0000230 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000231}
232
233/**
234 * mpls_tunnel_stack
235 *
236 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
237 */
238static void
239mpls_tunnel_stack (adj_index_t ai)
240{
241 ip_adjacency_t *adj;
242 mpls_tunnel_t *mt;
243 u32 sw_if_index;
244
245 adj = adj_get(ai);
246 sw_if_index = adj->rewrite_header.sw_if_index;
247
248 mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
249
250 if (NULL == mt)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800251 return;
Neale Rannsad422ed2016-11-02 14:20:04 +0000252
253 /*
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800254 * while we're stacking the adj, remove the tunnel from the child list
255 * of the path list. this breaks a circular dependency of walk updates
256 * where the create of adjacencies in the children can lead to walks
257 * that get back here.
258 */
259 fib_path_list_lock(mt->mt_path_list);
260
261 fib_path_list_child_remove(mt->mt_path_list,
262 mt->mt_sibling_index);
263
264 /*
265 * Construct the DPO (load-balance or replicate) that we can stack
266 * the tunnel's midchain on
Neale Rannsad422ed2016-11-02 14:20:04 +0000267 */
268 if (vnet_hw_interface_get_flags(vnet_get_main(),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800269 mt->mt_hw_if_index) &
270 VNET_HW_INTERFACE_FLAG_LINK_UP)
Neale Rannsad422ed2016-11-02 14:20:04 +0000271 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800272 dpo_id_t dpo = DPO_INVALID;
Neale Rannsad422ed2016-11-02 14:20:04 +0000273
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800274 mpls_tunnel_mk_lb(mt,
275 adj->ia_link,
276 FIB_FORW_CHAIN_TYPE_MPLS_EOS,
277 &dpo);
Neale Rannsad422ed2016-11-02 14:20:04 +0000278
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800279 adj_nbr_midchain_stack(ai, &dpo);
280 dpo_reset(&dpo);
Neale Rannsad422ed2016-11-02 14:20:04 +0000281 }
282 else
283 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800284 adj_nbr_midchain_unstack(ai);
Neale Rannsad422ed2016-11-02 14:20:04 +0000285 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800286
287 mt->mt_sibling_index = fib_path_list_child_add(mt->mt_path_list,
288 FIB_NODE_TYPE_MPLS_TUNNEL,
289 mt - mpls_tunnel_pool);
290
291 fib_path_list_lock(mt->mt_path_list);
Neale Rannsad422ed2016-11-02 14:20:04 +0000292}
293
294/**
295 * @brief Call back when restacking all adjacencies on a MPLS interface
296 */
297static adj_walk_rc_t
298mpls_adj_walk_cb (adj_index_t ai,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800299 void *ctx)
Neale Rannsad422ed2016-11-02 14:20:04 +0000300{
301 mpls_tunnel_stack(ai);
302
303 return (ADJ_WALK_RC_CONTINUE);
304}
305
306static void
307mpls_tunnel_restack (mpls_tunnel_t *mt)
308{
309 fib_protocol_t proto;
310
311 /*
312 * walk all the adjacencies on the MPLS interface and restack them
313 */
314 FOR_EACH_FIB_PROTOCOL(proto)
315 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800316 adj_nbr_walk(mt->mt_sw_if_index,
317 proto,
318 mpls_adj_walk_cb,
319 NULL);
Neale Rannsad422ed2016-11-02 14:20:04 +0000320 }
321}
322
323static clib_error_t *
324mpls_tunnel_admin_up_down (vnet_main_t * vnm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800325 u32 hw_if_index,
326 u32 flags)
Neale Rannsad422ed2016-11-02 14:20:04 +0000327{
328 vnet_hw_interface_t * hi;
329 mpls_tunnel_t *mt;
330
331 hi = vnet_get_hw_interface (vnm, hw_if_index);
332
333 mt = mpls_tunnel_get_from_sw_if_index(hi->sw_if_index);
334
335 if (NULL == mt)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800336 return (NULL);
Neale Rannsad422ed2016-11-02 14:20:04 +0000337
338 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800339 vnet_hw_interface_set_flags (vnm, hw_if_index,
340 VNET_HW_INTERFACE_FLAG_LINK_UP);
Neale Rannsad422ed2016-11-02 14:20:04 +0000341 else
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800342 vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */);
Neale Rannsad422ed2016-11-02 14:20:04 +0000343
344 mpls_tunnel_restack(mt);
345
346 return (NULL);
347}
348
349/**
350 * @brief Fixup the adj rewrite post encap. This is a no-op since the
351 * rewrite is a stack of labels.
352 */
353static void
354mpls_tunnel_fixup (vlib_main_t *vm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800355 ip_adjacency_t *adj,
356 vlib_buffer_t *b0)
Neale Rannsad422ed2016-11-02 14:20:04 +0000357{
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800358 /*
359 * A no-op w.r.t. the header. but reset the 'have we pushed any
360 * MPLS labels onto the packet' flag. That way when we enter the
361 * tunnel we'll get a TTL set to 255
362 */
363 vnet_buffer(b0)->mpls.first = 0;
Neale Rannsad422ed2016-11-02 14:20:04 +0000364}
365
366static void
367mpls_tunnel_update_adj (vnet_main_t * vnm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800368 u32 sw_if_index,
369 adj_index_t ai)
Neale Rannsad422ed2016-11-02 14:20:04 +0000370{
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800371 ip_adjacency_t *adj;
372
373 ASSERT(ADJ_INDEX_INVALID != ai);
374
375 adj = adj_get(ai);
376
377 switch (adj->lookup_next_index)
378 {
379 case IP_LOOKUP_NEXT_ARP:
380 case IP_LOOKUP_NEXT_GLEAN:
381 adj_nbr_midchain_update_rewrite(ai, mpls_tunnel_fixup,
382 ADJ_FLAG_NONE,
383 mpls_tunnel_build_rewrite_i());
384 break;
385 case IP_LOOKUP_NEXT_MCAST:
386 /*
387 * Construct a partial rewrite from the known ethernet mcast dest MAC
388 * There's no MAC fixup, so the last 2 parameters are 0
389 */
390 adj_mcast_midchain_update_rewrite(ai, mpls_tunnel_fixup,
391 ADJ_FLAG_NONE,
392 mpls_tunnel_build_rewrite_i(),
393 0, 0);
394 break;
395
396 case IP_LOOKUP_NEXT_DROP:
397 case IP_LOOKUP_NEXT_PUNT:
398 case IP_LOOKUP_NEXT_LOCAL:
399 case IP_LOOKUP_NEXT_REWRITE:
400 case IP_LOOKUP_NEXT_MIDCHAIN:
401 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
402 case IP_LOOKUP_NEXT_ICMP_ERROR:
403 case IP_LOOKUP_N_NEXT:
404 ASSERT (0);
405 break;
406 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000407
408 mpls_tunnel_stack(ai);
409}
410
411static u8 *
412format_mpls_tunnel_name (u8 * s, va_list * args)
413{
414 u32 dev_instance = va_arg (*args, u32);
415 return format (s, "mpls-tunnel%d", dev_instance);
416}
417
418static u8 *
419format_mpls_tunnel_device (u8 * s, va_list * args)
420{
421 u32 dev_instance = va_arg (*args, u32);
422 CLIB_UNUSED (int verbose) = va_arg (*args, int);
423
424 return (format (s, "MPLS-tunnel: id %d\n", dev_instance));
425}
426
427/**
428 * @brief Packet trace structure
429 */
430typedef struct mpls_tunnel_trace_t_
431{
432 /**
433 * Tunnel-id / index in tunnel vector
434 */
435 u32 tunnel_id;
436} mpls_tunnel_trace_t;
437
438static u8 *
439format_mpls_tunnel_tx_trace (u8 * s,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800440 va_list * args)
Neale Rannsad422ed2016-11-02 14:20:04 +0000441{
442 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
443 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
444 mpls_tunnel_trace_t * t = va_arg (*args, mpls_tunnel_trace_t *);
445
446 s = format (s, "MPLS: tunnel %d", t->tunnel_id);
447 return s;
448}
449
450/**
451 * @brief TX function. Only called L2. L3 traffic uses the adj-midchains
452 */
453static uword
454mpls_tunnel_tx (vlib_main_t * vm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800455 vlib_node_runtime_t * node,
456 vlib_frame_t * frame)
Neale Rannsad422ed2016-11-02 14:20:04 +0000457{
458 u32 next_index;
459 u32 * from, * to_next, n_left_from, n_left_to_next;
460 vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
461 const mpls_tunnel_t *mt;
462
463 mt = pool_elt_at_index(mpls_tunnel_pool, rd->dev_instance);
464
465 /* Vector of buffer / pkt indices we're supposed to process */
466 from = vlib_frame_vector_args (frame);
467
468 /* Number of buffers / pkts */
469 n_left_from = frame->n_vectors;
470
471 /* Speculatively send the first buffer to the last disposition we used */
472 next_index = node->cached_next_index;
473
474 while (n_left_from > 0)
475 {
476 /* set up to enqueue to our disposition with index = next_index */
477 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
478
479 /*
480 * FIXME DUAL LOOP
481 */
482 while (n_left_from > 0 && n_left_to_next > 0)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800483 {
484 vlib_buffer_t * b0;
485 u32 bi0;
Neale Rannsad422ed2016-11-02 14:20:04 +0000486
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800487 bi0 = from[0];
488 to_next[0] = bi0;
489 from += 1;
490 to_next += 1;
491 n_left_from -= 1;
492 n_left_to_next -= 1;
Neale Rannsad422ed2016-11-02 14:20:04 +0000493
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800494 b0 = vlib_get_buffer(vm, bi0);
Neale Rannsad422ed2016-11-02 14:20:04 +0000495
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800496 vnet_buffer(b0)->ip.adj_index[VLIB_TX] = mt->mt_l2_adj;
Neale Rannsad422ed2016-11-02 14:20:04 +0000497
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800498 if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
499 {
500 mpls_tunnel_trace_t *tr = vlib_add_trace (vm, node,
501 b0, sizeof (*tr));
502 tr->tunnel_id = rd->dev_instance;
503 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000504
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800505 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
506 to_next, n_left_to_next,
507 bi0, mt->mt_l2_tx_arc);
508 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000509
510 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
511 }
512
513 return frame->n_vectors;
514}
515
516VNET_DEVICE_CLASS (mpls_tunnel_class) = {
517 .name = "MPLS tunnel device",
518 .format_device_name = format_mpls_tunnel_name,
519 .format_device = format_mpls_tunnel_device,
520 .format_tx_trace = format_mpls_tunnel_tx_trace,
521 .tx_function = mpls_tunnel_tx,
Neale Rannsad422ed2016-11-02 14:20:04 +0000522 .admin_up_down_function = mpls_tunnel_admin_up_down,
523};
524
525VNET_HW_INTERFACE_CLASS (mpls_tunnel_hw_interface_class) = {
526 .name = "MPLS-Tunnel",
527// .format_header = format_mpls_eth_header_with_length,
528// .unformat_header = unformat_mpls_eth_header,
529 .update_adjacency = mpls_tunnel_update_adj,
530 .build_rewrite = mpls_tunnel_build_rewrite,
531 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
532};
533
534const mpls_tunnel_t *
535mpls_tunnel_get (u32 mti)
536{
537 return (pool_elt_at_index(mpls_tunnel_pool, mti));
538}
539
540/**
541 * @brief Walk all the MPLS tunnels
542 */
543void
544mpls_tunnel_walk (mpls_tunnel_walk_cb_t cb,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800545 void *ctx)
Neale Rannsad422ed2016-11-02 14:20:04 +0000546{
547 u32 mti;
548
549 pool_foreach_index(mti, mpls_tunnel_pool,
550 ({
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800551 cb(mti, ctx);
Neale Rannsad422ed2016-11-02 14:20:04 +0000552 }));
553}
554
555void
556vnet_mpls_tunnel_del (u32 sw_if_index)
557{
558 mpls_tunnel_t *mt;
559
560 mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
561
562 if (NULL == mt)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800563 return;
Neale Rannsad422ed2016-11-02 14:20:04 +0000564
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800565 if (FIB_NODE_INDEX_INVALID != mt->mt_path_list)
566 fib_path_list_child_remove(mt->mt_path_list,
567 mt->mt_sibling_index);
568 if (ADJ_INDEX_INVALID != mt->mt_l2_adj)
569 adj_unlock(mt->mt_l2_adj);
Neale Rannsad422ed2016-11-02 14:20:04 +0000570
571 vec_add1 (mpls_tunnel_free_hw_if_indices, mt->mt_hw_if_index);
572 pool_put(mpls_tunnel_pool, mt);
573 mpls_tunnel_db[sw_if_index] = ~0;
574}
575
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800576u32
577vnet_mpls_tunnel_create (u8 l2_only,
578 u8 is_multicast)
Neale Rannsad422ed2016-11-02 14:20:04 +0000579{
580 vnet_hw_interface_t * hi;
581 mpls_tunnel_t *mt;
582 vnet_main_t * vnm;
583 u32 mti;
584
585 vnm = vnet_get_main();
586 pool_get(mpls_tunnel_pool, mt);
587 memset (mt, 0, sizeof (*mt));
588 mti = mt - mpls_tunnel_pool;
589 fib_node_init(&mt->mt_node, FIB_NODE_TYPE_MPLS_TUNNEL);
590 mt->mt_l2_adj = ADJ_INDEX_INVALID;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800591 mt->mt_path_list = FIB_NODE_INDEX_INVALID;
592 mt->mt_sibling_index = FIB_NODE_INDEX_INVALID;
593
594 if (is_multicast)
595 mt->mt_flags |= MPLS_TUNNEL_FLAG_MCAST;
Neale Rannsad422ed2016-11-02 14:20:04 +0000596
597 /*
598 * Create a new, or re=use and old, tunnel HW interface
599 */
600 if (vec_len (mpls_tunnel_free_hw_if_indices) > 0)
601 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800602 mt->mt_hw_if_index =
603 mpls_tunnel_free_hw_if_indices[vec_len(mpls_tunnel_free_hw_if_indices)-1];
604 _vec_len (mpls_tunnel_free_hw_if_indices) -= 1;
605 hi = vnet_get_hw_interface (vnm, mt->mt_hw_if_index);
606 hi->hw_instance = mti;
607 hi->dev_instance = mti;
Neale Rannsad422ed2016-11-02 14:20:04 +0000608 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800609 else
Neale Rannsad422ed2016-11-02 14:20:04 +0000610 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800611 mt->mt_hw_if_index = vnet_register_interface(
612 vnm,
613 mpls_tunnel_class.index,
614 mti,
615 mpls_tunnel_hw_interface_class.index,
616 mti);
617 hi = vnet_get_hw_interface(vnm, mt->mt_hw_if_index);
Neale Rannsad422ed2016-11-02 14:20:04 +0000618 }
619
620 /*
621 * Add the new tunnel to the tunnel DB - key:SW if index
622 */
623 mt->mt_sw_if_index = hi->sw_if_index;
624 vec_validate_init_empty(mpls_tunnel_db, mt->mt_sw_if_index, ~0);
625 mpls_tunnel_db[mt->mt_sw_if_index] = mti;
626
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800627 if (l2_only)
628 {
629 mt->mt_l2_adj =
630 adj_nbr_add_or_lock(fib_path_list_get_proto(mt->mt_path_list),
631 VNET_LINK_ETHERNET,
632 &zero_addr,
633 mt->mt_sw_if_index);
634
635 mt->mt_l2_tx_arc = vlib_node_add_named_next(vlib_get_main(),
636 hi->tx_node_index,
637 "adj-l2-midchain");
638 }
639
640 return (mt->mt_sw_if_index);
641}
642
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800643void
644vnet_mpls_tunnel_path_add (u32 sw_if_index,
645 fib_route_path_t *rpaths)
646{
647 mpls_tunnel_t *mt;
648 u32 mti;
649
650 mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
651
652 if (NULL == mt)
653 return;
654
655 mti = mt - mpls_tunnel_pool;
656
Neale Rannsad422ed2016-11-02 14:20:04 +0000657 /*
658 * construct a path-list from the path provided
659 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800660 if (FIB_NODE_INDEX_INVALID == mt->mt_path_list)
Neale Rannsad422ed2016-11-02 14:20:04 +0000661 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800662 mt->mt_path_list = fib_path_list_create(FIB_PATH_LIST_FLAG_SHARED, rpaths);
663 mt->mt_sibling_index = fib_path_list_child_add(mt->mt_path_list,
664 FIB_NODE_TYPE_MPLS_TUNNEL,
665 mti);
Neale Rannsad422ed2016-11-02 14:20:04 +0000666 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800667 else
668 {
669 fib_node_index_t old_pl_index;
Neale Rannsad422ed2016-11-02 14:20:04 +0000670
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800671 old_pl_index = mt->mt_path_list;
672
673 mt->mt_path_list =
674 fib_path_list_copy_and_path_add(old_pl_index,
675 FIB_PATH_LIST_FLAG_SHARED,
676 rpaths);
677
678 fib_path_list_child_remove(old_pl_index,
679 mt->mt_sibling_index);
680 mt->mt_sibling_index = fib_path_list_child_add(mt->mt_path_list,
681 FIB_NODE_TYPE_MPLS_TUNNEL,
682 mti);
683 /*
684 * re-resolve all the path-extensions with the new path-list
685 */
Neale Ranns81424992017-05-18 03:03:22 -0700686 fib_path_ext_list_resolve(&mt->mt_path_exts, mt->mt_path_list);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800687 }
Neale Ranns81424992017-05-18 03:03:22 -0700688 fib_path_ext_list_insert(&mt->mt_path_exts,
689 mt->mt_path_list,
690 FIB_PATH_EXT_MPLS,
691 rpaths);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800692 mpls_tunnel_restack(mt);
Neale Rannsad422ed2016-11-02 14:20:04 +0000693}
694
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800695int
696vnet_mpls_tunnel_path_remove (u32 sw_if_index,
697 fib_route_path_t *rpaths)
698{
699 mpls_tunnel_t *mt;
700 u32 mti;
701
702 mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
703
704 if (NULL == mt)
705 return (0);
706
707 mti = mt - mpls_tunnel_pool;
708
709 /*
710 * construct a path-list from the path provided
711 */
712 if (FIB_NODE_INDEX_INVALID == mt->mt_path_list)
713 {
714 /* can't remove a path if we have onoe */
715 return (0);
716 }
717 else
718 {
719 fib_node_index_t old_pl_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800720
721 old_pl_index = mt->mt_path_list;
722
723 mt->mt_path_list =
724 fib_path_list_copy_and_path_remove(old_pl_index,
725 FIB_PATH_LIST_FLAG_SHARED,
726 rpaths);
727
728 fib_path_list_child_remove(old_pl_index,
729 mt->mt_sibling_index);
730
731 if (FIB_NODE_INDEX_INVALID == mt->mt_path_list)
732 {
733 /* no paths left */
734 return (0);
735 }
736 else
737 {
738 mt->mt_sibling_index =
739 fib_path_list_child_add(mt->mt_path_list,
740 FIB_NODE_TYPE_MPLS_TUNNEL,
741 mti);
742 }
743 /*
744 * find the matching path extension and remove it
745 */
Neale Ranns81424992017-05-18 03:03:22 -0700746 fib_path_ext_list_remove(&mt->mt_path_exts,
747 FIB_PATH_EXT_MPLS,
748 rpaths);
749
750 /*
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800751 * re-resolve all the path-extensions with the new path-list
752 */
Neale Ranns81424992017-05-18 03:03:22 -0700753 fib_path_ext_list_resolve(&mt->mt_path_exts,
754 mt->mt_path_list);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800755
756 mpls_tunnel_restack(mt);
757 }
758
759 return (fib_path_list_get_n_paths(mt->mt_path_list));
760}
761
762
Neale Rannsad422ed2016-11-02 14:20:04 +0000763static clib_error_t *
764vnet_create_mpls_tunnel_command_fn (vlib_main_t * vm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800765 unformat_input_t * input,
766 vlib_cli_command_t * cmd)
Neale Rannsad422ed2016-11-02 14:20:04 +0000767{
768 unformat_input_t _line_input, * line_input = &_line_input;
769 vnet_main_t * vnm = vnet_get_main();
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800770 u8 is_del = 0, l2_only = 0, is_multicast =0;
Neale Rannsad422ed2016-11-02 14:20:04 +0000771 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800772 mpls_label_t out_label = MPLS_LABEL_INVALID;
Neale Rannsad422ed2016-11-02 14:20:04 +0000773 u32 sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500774 clib_error_t *error = NULL;
Neale Rannsad422ed2016-11-02 14:20:04 +0000775
776 memset(&rpath, 0, sizeof(rpath));
777
778 /* Get a line of input. */
779 if (! unformat_user (input, unformat_line_input, line_input))
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800780 return 0;
Neale Rannsad422ed2016-11-02 14:20:04 +0000781
782 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
783 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800784 if (unformat (line_input, "del %U",
785 unformat_vnet_sw_interface, vnm,
786 &sw_if_index))
787 is_del = 1;
788 else if (unformat (line_input, "add"))
789 is_del = 0;
790 else if (unformat (line_input, "out-label %U",
791 unformat_mpls_unicast_label, &out_label))
792 {
793 vec_add1(rpath.frp_label_stack, out_label);
794 }
795 else if (unformat (line_input, "via %U %U",
796 unformat_ip4_address,
797 &rpath.frp_addr.ip4,
798 unformat_vnet_sw_interface, vnm,
799 &rpath.frp_sw_if_index))
800 {
801 rpath.frp_weight = 1;
802 rpath.frp_proto = FIB_PROTOCOL_IP4;
803 }
804
805 else if (unformat (line_input, "via %U %U",
806 unformat_ip6_address,
807 &rpath.frp_addr.ip6,
808 unformat_vnet_sw_interface, vnm,
809 &rpath.frp_sw_if_index))
810 {
811 rpath.frp_weight = 1;
812 rpath.frp_proto = FIB_PROTOCOL_IP6;
813 }
814 else if (unformat (line_input, "via %U",
815 unformat_ip6_address,
816 &rpath.frp_addr.ip6))
817 {
818 rpath.frp_fib_index = 0;
819 rpath.frp_weight = 1;
820 rpath.frp_sw_if_index = ~0;
821 rpath.frp_proto = FIB_PROTOCOL_IP6;
822 }
823 else if (unformat (line_input, "via %U",
824 unformat_ip4_address,
825 &rpath.frp_addr.ip4))
826 {
827 rpath.frp_fib_index = 0;
828 rpath.frp_weight = 1;
829 rpath.frp_sw_if_index = ~0;
830 rpath.frp_proto = FIB_PROTOCOL_IP4;
831 }
832 else if (unformat (line_input, "l2-only"))
833 l2_only = 1;
834 else if (unformat (line_input, "multicast"))
835 is_multicast = 1;
836 else
837 {
838 error = clib_error_return (0, "unknown input '%U'",
839 format_unformat_error, line_input);
840 goto done;
841 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000842 }
843
844 if (is_del)
845 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800846 vnet_mpls_tunnel_del(sw_if_index);
Neale Rannsad422ed2016-11-02 14:20:04 +0000847 }
848 else
849 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800850 if (0 == vec_len(rpath.frp_label_stack))
851 {
852 error = clib_error_return (0, "No Output Labels '%U'",
853 format_unformat_error, line_input);
854 goto done;
855 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000856
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800857 vec_add1(rpaths, rpath);
858 sw_if_index = vnet_mpls_tunnel_create(l2_only, is_multicast);
859 vnet_mpls_tunnel_path_add(sw_if_index, rpaths);
Neale Rannsad422ed2016-11-02 14:20:04 +0000860 }
861
Billy McFalla9a20e72017-02-15 11:39:12 -0500862done:
Neale Rannsad422ed2016-11-02 14:20:04 +0000863 vec_free(rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500864 unformat_free (line_input);
Neale Rannsad422ed2016-11-02 14:20:04 +0000865
Billy McFalla9a20e72017-02-15 11:39:12 -0500866 return error;
Neale Rannsad422ed2016-11-02 14:20:04 +0000867}
868
869/*?
870 * This command create a uni-directional MPLS tunnel
871 *
872 * @cliexpar
873 * @cliexstart{create mpls tunnel}
874 * create mpls tunnel via 10.0.0.1 GigEthernet0/8/0 out-label 33 out-label 34
875 * @cliexend
876 ?*/
877VLIB_CLI_COMMAND (create_mpls_tunnel_command, static) = {
878 .path = "mpls tunnel",
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800879 .short_help =
Neale Rannsad422ed2016-11-02 14:20:04 +0000880 "mpls tunnel via [addr] [interface] [out-labels]",
881 .function = vnet_create_mpls_tunnel_command_fn,
882};
883
884static u8 *
885format_mpls_tunnel (u8 * s, va_list * args)
886{
887 mpls_tunnel_t *mt = va_arg (*args, mpls_tunnel_t *);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800888 mpls_tunnel_attribute_t attr;
Neale Rannsad422ed2016-11-02 14:20:04 +0000889
890 s = format(s, "mpls_tunnel%d: sw_if_index:%d hw_if_index:%d",
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800891 mt - mpls_tunnel_pool,
892 mt->mt_sw_if_index,
893 mt->mt_hw_if_index);
894 if (MPLS_TUNNEL_FLAG_NONE != mt->mt_flags) {
895 s = format(s, " \n flags:");
896 FOR_EACH_MPLS_TUNNEL_ATTRIBUTE(attr) {
897 if ((1<<attr) & mt->mt_flags) {
898 s = format (s, "%s,", mpls_tunnel_attribute_names[attr]);
899 }
900 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000901 }
902 s = format(s, "\n via:\n");
903 s = fib_path_list_format(mt->mt_path_list, s);
Neale Ranns81424992017-05-18 03:03:22 -0700904 s = format(s, "%U", format_fib_path_ext_list, &mt->mt_path_exts);
Neale Rannsad422ed2016-11-02 14:20:04 +0000905 s = format(s, "\n");
906
907 return (s);
908}
909
910static clib_error_t *
911show_mpls_tunnel_command_fn (vlib_main_t * vm,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800912 unformat_input_t * input,
913 vlib_cli_command_t * cmd)
Neale Rannsad422ed2016-11-02 14:20:04 +0000914{
915 mpls_tunnel_t * mt;
916 u32 mti = ~0;
917
918 if (pool_elts (mpls_tunnel_pool) == 0)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800919 vlib_cli_output (vm, "No MPLS tunnels configured...");
Neale Rannsad422ed2016-11-02 14:20:04 +0000920
921 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
922 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800923 if (unformat (input, "%d", &mti))
924 ;
925 else
926 break;
Neale Rannsad422ed2016-11-02 14:20:04 +0000927 }
928
929 if (~0 == mti)
930 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800931 pool_foreach (mt, mpls_tunnel_pool,
932 ({
933 vlib_cli_output (vm, "[@%d] %U",
934 mt - mpls_tunnel_pool,
935 format_mpls_tunnel, mt);
936 }));
Neale Rannsad422ed2016-11-02 14:20:04 +0000937 }
938 else
939 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800940 if (pool_is_free_index(mpls_tunnel_pool, mti))
941 return clib_error_return (0, "Not atunnel index %d", mti);
Neale Rannsad422ed2016-11-02 14:20:04 +0000942
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800943 mt = pool_elt_at_index(mpls_tunnel_pool, mti);
Neale Rannsad422ed2016-11-02 14:20:04 +0000944
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800945 vlib_cli_output (vm, "[@%d] %U",
946 mt - mpls_tunnel_pool,
947 format_mpls_tunnel, mt);
Neale Rannsad422ed2016-11-02 14:20:04 +0000948 }
949
950 return 0;
951}
952
953/*?
954 * This command to show MPLS tunnels
955 *
956 * @cliexpar
957 * @cliexstart{sh mpls tunnel 2}
958 * [@2] mpls_tunnel2: sw_if_index:5 hw_if_index:5
959 * label-stack:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800960 * 3,
Neale Rannsad422ed2016-11-02 14:20:04 +0000961 * via:
962 * index:26 locks:1 proto:ipv4 uPRF-list:26 len:1 itfs:[2, ]
963 * index:26 pl-index:26 ipv4 weight=1 attached-nexthop: oper-flags:resolved,
964 * 10.0.0.2 loop0
965 * [@0]: ipv4 via 10.0.0.2 loop0: IP4: de:ad:00:00:00:00 -> 00:00:11:aa:bb:cc
966 * @cliexend
967 ?*/
968VLIB_CLI_COMMAND (show_mpls_tunnel_command, static) = {
969 .path = "show mpls tunnel",
970 .function = show_mpls_tunnel_command_fn,
971};
972
973static mpls_tunnel_t *
974mpls_tunnel_from_fib_node (fib_node_t *node)
975{
976#if (CLIB_DEBUG > 0)
977 ASSERT(FIB_NODE_TYPE_MPLS_TUNNEL == node->fn_type);
978#endif
979 return ((mpls_tunnel_t*) (((char*)node) -
980 STRUCT_OFFSET_OF(mpls_tunnel_t, mt_node)));
981}
982
983/**
984 * Function definition to backwalk a FIB node
985 */
986static fib_node_back_walk_rc_t
987mpls_tunnel_back_walk (fib_node_t *node,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800988 fib_node_back_walk_ctx_t *ctx)
Neale Rannsad422ed2016-11-02 14:20:04 +0000989{
990 mpls_tunnel_restack(mpls_tunnel_from_fib_node(node));
991
992 return (FIB_NODE_BACK_WALK_CONTINUE);
993}
994
995/**
996 * Function definition to get a FIB node from its index
997 */
998static fib_node_t*
999mpls_tunnel_fib_node_get (fib_node_index_t index)
1000{
1001 mpls_tunnel_t * mt;
1002
1003 mt = pool_elt_at_index(mpls_tunnel_pool, index);
1004
1005 return (&mt->mt_node);
1006}
1007
1008/**
1009 * Function definition to inform the FIB node that its last lock has gone.
1010 */
1011static void
1012mpls_tunnel_last_lock_gone (fib_node_t *node)
1013{
1014 /*
1015 * The MPLS MPLS tunnel is a root of the graph. As such
1016 * it never has children and thus is never locked.
1017 */
1018 ASSERT(0);
1019}
1020
1021/*
1022 * Virtual function table registered by MPLS MPLS tunnels
1023 * for participation in the FIB object graph.
1024 */
1025const static fib_node_vft_t mpls_vft = {
1026 .fnv_get = mpls_tunnel_fib_node_get,
1027 .fnv_last_lock = mpls_tunnel_last_lock_gone,
1028 .fnv_back_walk = mpls_tunnel_back_walk,
1029};
1030
1031static clib_error_t *
1032mpls_tunnel_init (vlib_main_t *vm)
1033{
1034 fib_node_register_type(FIB_NODE_TYPE_MPLS_TUNNEL, &mpls_vft);
1035
1036 return 0;
1037}
1038VLIB_INIT_FUNCTION(mpls_tunnel_init);