blob: cf0b5fcf1ef3df85a1791cc13c450a4b113d6671 [file] [log] [blame]
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001/*
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
Neale Ranns4c7c8e52017-10-21 09:37:55 -070016#include <vnet/ip/ip4_input.h>
17#include <vnet/ip/ip6_input.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080018#include <vnet/dpo/mpls_disposition.h>
19#include <vnet/mpls/mpls.h>
20
Filip Tehlareb9a27f2019-03-07 01:42:11 -080021#ifndef CLIB_MARCH_VARIANT
Neale Ranns0f26c5a2017-03-01 15:12:11 -080022/*
23 * pool of all MPLS Label DPOs
24 */
25mpls_disp_dpo_t *mpls_disp_dpo_pool;
26
27static mpls_disp_dpo_t *
28mpls_disp_dpo_alloc (void)
29{
30 mpls_disp_dpo_t *mdd;
31
32 pool_get_aligned(mpls_disp_dpo_pool, mdd, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -040033 clib_memset(mdd, 0, sizeof(*mdd));
Neale Ranns0f26c5a2017-03-01 15:12:11 -080034
35 dpo_reset(&mdd->mdd_dpo);
36
37 return (mdd);
38}
39
40static index_t
41mpls_disp_dpo_get_index (mpls_disp_dpo_t *mdd)
42{
43 return (mdd - mpls_disp_dpo_pool);
44}
45
Neale Ranns31ed7442018-02-23 05:29:09 -080046void
Neale Ranns0f26c5a2017-03-01 15:12:11 -080047mpls_disp_dpo_create (dpo_proto_t payload_proto,
48 fib_rpf_id_t rpf_id,
Neale Ranns31ed7442018-02-23 05:29:09 -080049 fib_mpls_lsp_mode_t mode,
50 const dpo_id_t *parent,
51 dpo_id_t *dpo)
Neale Ranns0f26c5a2017-03-01 15:12:11 -080052{
53 mpls_disp_dpo_t *mdd;
Neale Ranns31ed7442018-02-23 05:29:09 -080054 dpo_type_t dtype;
Neale Ranns0f26c5a2017-03-01 15:12:11 -080055
56 mdd = mpls_disp_dpo_alloc();
57
58 mdd->mdd_payload_proto = payload_proto;
59 mdd->mdd_rpf_id = rpf_id;
Neale Ranns31ed7442018-02-23 05:29:09 -080060 mdd->mdd_mode = mode;
61 dtype = (FIB_MPLS_LSP_MODE_PIPE == mode ?
62 DPO_MPLS_DISPOSITION_PIPE :
63 DPO_MPLS_DISPOSITION_UNIFORM);
Neale Ranns0f26c5a2017-03-01 15:12:11 -080064
Neale Ranns31ed7442018-02-23 05:29:09 -080065 /*
66 * stack this disposition object on the parent given
67 */
68 dpo_stack(dtype,
Neale Ranns0f26c5a2017-03-01 15:12:11 -080069 mdd->mdd_payload_proto,
70 &mdd->mdd_dpo,
Neale Ranns31ed7442018-02-23 05:29:09 -080071 parent);
Neale Ranns0f26c5a2017-03-01 15:12:11 -080072
Neale Ranns31ed7442018-02-23 05:29:09 -080073 /*
74 * set up the return DPO to refer to this object
75 */
76 dpo_set(dpo,
77 dtype,
78 payload_proto,
79 mpls_disp_dpo_get_index(mdd));
Neale Ranns0f26c5a2017-03-01 15:12:11 -080080}
81
82u8*
83format_mpls_disp_dpo (u8 *s, va_list *args)
84{
Neale Ranns31ed7442018-02-23 05:29:09 -080085 index_t index = va_arg(*args, index_t);
86 u32 indent = va_arg(*args, u32);
Neale Ranns0f26c5a2017-03-01 15:12:11 -080087 mpls_disp_dpo_t *mdd;
88
89 mdd = mpls_disp_dpo_get(index);
90
Neale Ranns31ed7442018-02-23 05:29:09 -080091 s = format(s, "mpls-disposition:[%d]:[%U, %U]",
Neale Ranns0f26c5a2017-03-01 15:12:11 -080092 index,
Neale Ranns31ed7442018-02-23 05:29:09 -080093 format_dpo_proto, mdd->mdd_payload_proto,
94 format_fib_mpls_lsp_mode, mdd->mdd_mode);
Neale Ranns0f26c5a2017-03-01 15:12:11 -080095
96 s = format(s, "\n%U", format_white_space, indent);
97 s = format(s, "%U", format_dpo_id, &mdd->mdd_dpo, indent+2);
98
99 return (s);
100}
101
102static void
103mpls_disp_dpo_lock (dpo_id_t *dpo)
104{
105 mpls_disp_dpo_t *mdd;
106
107 mdd = mpls_disp_dpo_get(dpo->dpoi_index);
108
109 mdd->mdd_locks++;
110}
111
112static void
113mpls_disp_dpo_unlock (dpo_id_t *dpo)
114{
115 mpls_disp_dpo_t *mdd;
116
117 mdd = mpls_disp_dpo_get(dpo->dpoi_index);
118
119 mdd->mdd_locks--;
120
121 if (0 == mdd->mdd_locks)
122 {
123 dpo_reset(&mdd->mdd_dpo);
124 pool_put(mpls_disp_dpo_pool, mdd);
125 }
126}
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800127#endif /* CLIB_MARCH_VARIANT */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800128
129/**
130 * @brief A struct to hold tracing information for the MPLS label disposition
131 * node.
132 */
133typedef struct mpls_label_disposition_trace_t_
134{
135 index_t mdd;
136} mpls_label_disposition_trace_t;
137
Neale Ranns31ed7442018-02-23 05:29:09 -0800138extern vlib_node_registration_t ip4_mpls_label_disposition_pipe_node;
139extern vlib_node_registration_t ip6_mpls_label_disposition_pipe_node;
140extern vlib_node_registration_t ip4_mpls_label_disposition_uniform_node;
141extern vlib_node_registration_t ip6_mpls_label_disposition_uniform_node;
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700142
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800143always_inline uword
144mpls_label_disposition_inline (vlib_main_t * vm,
Neale Ranns31ed7442018-02-23 05:29:09 -0800145 vlib_node_runtime_t * node,
146 vlib_frame_t * from_frame,
147 u8 payload_is_ip4,
148 u8 payload_is_ip6,
149 fib_mpls_lsp_mode_t mode)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800150{
151 u32 n_left_from, next_index, * from, * to_next;
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700152 vlib_node_runtime_t *error_node;
153
154 if (payload_is_ip4)
Neale Ranns31ed7442018-02-23 05:29:09 -0800155 {
156 if (FIB_MPLS_LSP_MODE_PIPE == mode)
157 error_node =
158 vlib_node_get_runtime(vm, ip4_mpls_label_disposition_pipe_node.index);
159 else
160 error_node =
161 vlib_node_get_runtime(vm, ip4_mpls_label_disposition_uniform_node.index);
162 }
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700163 else
Neale Ranns31ed7442018-02-23 05:29:09 -0800164 {
165 if (FIB_MPLS_LSP_MODE_PIPE == mode)
166 error_node =
Neale Ranns19bd1902018-03-19 02:32:57 -0700167 vlib_node_get_runtime(vm, ip6_mpls_label_disposition_pipe_node.index);
Neale Ranns31ed7442018-02-23 05:29:09 -0800168 else
169 error_node =
170 vlib_node_get_runtime(vm, ip6_mpls_label_disposition_uniform_node.index);
171 }
172 from = vlib_frame_vector_args(from_frame);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800173 n_left_from = from_frame->n_vectors;
174
175 next_index = node->cached_next_index;
176
177 while (n_left_from > 0)
178 {
179 u32 n_left_to_next;
180
181 vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
182
183 while (n_left_from >= 4 && n_left_to_next >= 2)
184 {
185 mpls_disp_dpo_t *mdd0, *mdd1;
186 u32 bi0, mddi0, bi1, mddi1;
187 vlib_buffer_t * b0, *b1;
188 u32 next0, next1;
189
190 bi0 = to_next[0] = from[0];
191 bi1 = to_next[1] = from[1];
192
193 /* Prefetch next iteration. */
194 {
195 vlib_buffer_t * p2, * p3;
196
Neale Ranns31ed7442018-02-23 05:29:09 -0800197 p2 = vlib_get_buffer(vm, from[2]);
198 p3 = vlib_get_buffer(vm, from[3]);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800199
Neale Ranns31ed7442018-02-23 05:29:09 -0800200 vlib_prefetch_buffer_header(p2, STORE);
201 vlib_prefetch_buffer_header(p3, STORE);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800202
Neale Ranns31ed7442018-02-23 05:29:09 -0800203 CLIB_PREFETCH(p2->data, sizeof(ip6_header_t), STORE);
204 CLIB_PREFETCH(p3->data, sizeof(ip6_header_t), STORE);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800205 }
206
207 from += 2;
208 to_next += 2;
209 n_left_from -= 2;
210 n_left_to_next -= 2;
211
Neale Ranns31ed7442018-02-23 05:29:09 -0800212 b0 = vlib_get_buffer(vm, bi0);
213 b1 = vlib_get_buffer(vm, bi1);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800214
215 /* dst lookup was done by ip4 lookup */
216 mddi0 = vnet_buffer(b0)->ip.adj_index[VLIB_TX];
217 mddi1 = vnet_buffer(b1)->ip.adj_index[VLIB_TX];
218 mdd0 = mpls_disp_dpo_get(mddi0);
219 mdd1 = mpls_disp_dpo_get(mddi1);
220
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700221 next0 = mdd0->mdd_dpo.dpoi_next_node;
222 next1 = mdd1->mdd_dpo.dpoi_next_node;
223
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800224 if (payload_is_ip4)
225 {
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700226 ip4_header_t *ip0, *ip1;
227
Neale Ranns31ed7442018-02-23 05:29:09 -0800228 ip0 = vlib_buffer_get_current(b0);
229 ip1 = vlib_buffer_get_current(b1);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700230
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800231 /*
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700232 * IPv4 input checks on the exposed IP header
233 * including checksum
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800234 */
Neale Ranns31ed7442018-02-23 05:29:09 -0800235 ip4_input_check_x2(vm, error_node,
236 b0, b1, ip0, ip1,
237 &next0, &next1, 1);
238
239 if (FIB_MPLS_LSP_MODE_UNIFORM == mode)
240 {
241 /*
242 * Copy the TTL from the MPLS packet into the
243 * exposed IP. recalc the chksum
244 */
245 ip0->ttl = vnet_buffer(b0)->mpls.ttl;
246 ip1->ttl = vnet_buffer(b1)->mpls.ttl;
247 ip0->tos = mpls_exp_to_ip_dscp(vnet_buffer(b0)->mpls.exp);
248 ip1->tos = mpls_exp_to_ip_dscp(vnet_buffer(b1)->mpls.exp);
249
250 ip0->checksum = ip4_header_checksum(ip0);
251 ip1->checksum = ip4_header_checksum(ip1);
252 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800253 }
254 else if (payload_is_ip6)
255 {
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700256 ip6_header_t *ip0, *ip1;
257
Neale Ranns31ed7442018-02-23 05:29:09 -0800258 ip0 = vlib_buffer_get_current(b0);
259 ip1 = vlib_buffer_get_current(b1);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700260
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800261 /*
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700262 * IPv6 input checks on the exposed IP header
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800263 */
Neale Ranns31ed7442018-02-23 05:29:09 -0800264 ip6_input_check_x2(vm, error_node,
265 b0, b1, ip0, ip1,
266 &next0, &next1);
267
268 if (FIB_MPLS_LSP_MODE_UNIFORM == mode)
269 {
270 /*
271 * Copy the TTL from the MPLS packet into the
272 * exposed IP
273 */
274 ip0->hop_limit = vnet_buffer(b0)->mpls.ttl;
275 ip1->hop_limit = vnet_buffer(b1)->mpls.ttl;
276
277 ip6_set_traffic_class_network_order(
278 ip0,
279 mpls_exp_to_ip_dscp(vnet_buffer(b0)->mpls.exp));
280 ip6_set_traffic_class_network_order(
281 ip1,
282 mpls_exp_to_ip_dscp(vnet_buffer(b1)->mpls.exp));
283 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800284 }
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700285
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800286 vnet_buffer(b0)->ip.adj_index[VLIB_TX] = mdd0->mdd_dpo.dpoi_index;
287 vnet_buffer(b1)->ip.adj_index[VLIB_TX] = mdd1->mdd_dpo.dpoi_index;
288 vnet_buffer(b0)->ip.rpf_id = mdd0->mdd_rpf_id;
289 vnet_buffer(b1)->ip.rpf_id = mdd1->mdd_rpf_id;
290
291 if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
292 {
293 mpls_label_disposition_trace_t *tr =
Neale Ranns31ed7442018-02-23 05:29:09 -0800294 vlib_add_trace(vm, node, b0, sizeof(*tr));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800295
296 tr->mdd = mddi0;
297 }
298 if (PREDICT_FALSE(b1->flags & VLIB_BUFFER_IS_TRACED))
299 {
300 mpls_label_disposition_trace_t *tr =
Neale Ranns31ed7442018-02-23 05:29:09 -0800301 vlib_add_trace(vm, node, b1, sizeof(*tr));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800302 tr->mdd = mddi1;
303 }
304
305 vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next,
306 n_left_to_next,
307 bi0, bi1, next0, next1);
308 }
309
310 while (n_left_from > 0 && n_left_to_next > 0)
311 {
312 mpls_disp_dpo_t *mdd0;
313 vlib_buffer_t * b0;
314 u32 bi0, mddi0;
315 u32 next0;
316
317 bi0 = from[0];
318 to_next[0] = bi0;
319 from += 1;
320 to_next += 1;
321 n_left_from -= 1;
322 n_left_to_next -= 1;
323
Neale Ranns31ed7442018-02-23 05:29:09 -0800324 b0 = vlib_get_buffer(vm, bi0);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800325
326 /* dst lookup was done by ip4 lookup */
327 mddi0 = vnet_buffer(b0)->ip.adj_index[VLIB_TX];
328 mdd0 = mpls_disp_dpo_get(mddi0);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700329 next0 = mdd0->mdd_dpo.dpoi_next_node;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800330
331 if (payload_is_ip4)
332 {
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700333 ip4_header_t *ip0;
334
Neale Ranns31ed7442018-02-23 05:29:09 -0800335 ip0 = vlib_buffer_get_current(b0);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700336
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800337 /*
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700338 * IPv4 input checks on the exposed IP header
339 * including checksum
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800340 */
Neale Ranns31ed7442018-02-23 05:29:09 -0800341 ip4_input_check_x1(vm, error_node, b0, ip0, &next0, 1);
342
343 if (FIB_MPLS_LSP_MODE_UNIFORM == mode)
344 {
345 /*
346 * Copy the TTL from the MPLS packet into the
347 * exposed IP. recalc the chksum
348 */
349 ip0->ttl = vnet_buffer(b0)->mpls.ttl;
350 ip0->tos = mpls_exp_to_ip_dscp(vnet_buffer(b0)->mpls.exp);
351 ip0->checksum = ip4_header_checksum(ip0);
352 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800353 }
354 else if (payload_is_ip6)
355 {
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700356 ip6_header_t *ip0;
357
Neale Ranns31ed7442018-02-23 05:29:09 -0800358 ip0 = vlib_buffer_get_current(b0);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700359
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800360 /*
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700361 * IPv6 input checks on the exposed IP header
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800362 */
Neale Ranns31ed7442018-02-23 05:29:09 -0800363 ip6_input_check_x1(vm, error_node, b0, ip0, &next0);
364
365 if (FIB_MPLS_LSP_MODE_UNIFORM == mode)
366 {
367 /*
368 * Copy the TTL from the MPLS packet into the
369 * exposed IP
370 */
371 ip0->hop_limit = vnet_buffer(b0)->mpls.ttl;
372
373 ip6_set_traffic_class_network_order(
374 ip0,
375 mpls_exp_to_ip_dscp(vnet_buffer(b0)->mpls.exp));
376 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800377 }
378
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800379 vnet_buffer(b0)->ip.adj_index[VLIB_TX] = mdd0->mdd_dpo.dpoi_index;
380 vnet_buffer(b0)->ip.rpf_id = mdd0->mdd_rpf_id;
381
382 if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
383 {
384 mpls_label_disposition_trace_t *tr =
Neale Ranns31ed7442018-02-23 05:29:09 -0800385 vlib_add_trace(vm, node, b0, sizeof(*tr));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800386 tr->mdd = mddi0;
387 }
388
389 vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next,
390 n_left_to_next, bi0, next0);
391 }
Neale Ranns31ed7442018-02-23 05:29:09 -0800392 vlib_put_next_frame(vm, node, next_index, n_left_to_next);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800393 }
394 return from_frame->n_vectors;
395}
396
397static u8 *
398format_mpls_label_disposition_trace (u8 * s, va_list * args)
399{
Neale Ranns31ed7442018-02-23 05:29:09 -0800400 CLIB_UNUSED(vlib_main_t * vm) = va_arg(*args, vlib_main_t *);
401 CLIB_UNUSED(vlib_node_t * node) = va_arg(*args, vlib_node_t *);
402 CLIB_UNUSED(mpls_label_disposition_trace_t * t);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800403
Neale Ranns31ed7442018-02-23 05:29:09 -0800404 t = va_arg(*args, mpls_label_disposition_trace_t *);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800405
406 s = format(s, "disp:%d", t->mdd);
407 return (s);
408}
409
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800410VLIB_NODE_FN (ip4_mpls_label_disposition_pipe_node) (vlib_main_t * vm,
Neale Ranns31ed7442018-02-23 05:29:09 -0800411 vlib_node_runtime_t * node,
412 vlib_frame_t * frame)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800413{
Neale Ranns31ed7442018-02-23 05:29:09 -0800414 return (mpls_label_disposition_inline(vm, node, frame, 1, 0,
415 FIB_MPLS_LSP_MODE_PIPE));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800416}
417
Neale Ranns31ed7442018-02-23 05:29:09 -0800418VLIB_REGISTER_NODE(ip4_mpls_label_disposition_pipe_node) = {
Neale Ranns31ed7442018-02-23 05:29:09 -0800419 .name = "ip4-mpls-label-disposition-pipe",
420 .vector_size = sizeof(u32),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800421
422 .format_trace = format_mpls_label_disposition_trace,
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700423 .sibling_of = "ip4-input",
424 .n_errors = IP4_N_ERROR,
425 .error_strings = ip4_error_strings,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800426};
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800427
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800428VLIB_NODE_FN (ip6_mpls_label_disposition_pipe_node) (vlib_main_t * vm,
Neale Ranns31ed7442018-02-23 05:29:09 -0800429 vlib_node_runtime_t * node,
430 vlib_frame_t * frame)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800431{
Neale Ranns31ed7442018-02-23 05:29:09 -0800432 return (mpls_label_disposition_inline(vm, node, frame, 0, 1,
433 FIB_MPLS_LSP_MODE_PIPE));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800434}
435
Neale Ranns31ed7442018-02-23 05:29:09 -0800436VLIB_REGISTER_NODE(ip6_mpls_label_disposition_pipe_node) = {
Neale Ranns31ed7442018-02-23 05:29:09 -0800437 .name = "ip6-mpls-label-disposition-pipe",
438 .vector_size = sizeof(u32),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800439
440 .format_trace = format_mpls_label_disposition_trace,
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700441 .sibling_of = "ip6-input",
442 .n_errors = IP6_N_ERROR,
443 .error_strings = ip6_error_strings,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800444};
Neale Ranns31ed7442018-02-23 05:29:09 -0800445
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800446VLIB_NODE_FN (ip4_mpls_label_disposition_uniform_node) (vlib_main_t * vm,
Neale Ranns31ed7442018-02-23 05:29:09 -0800447 vlib_node_runtime_t * node,
448 vlib_frame_t * frame)
449{
450 return (mpls_label_disposition_inline(vm, node, frame, 1, 0,
451 FIB_MPLS_LSP_MODE_UNIFORM));
452}
453
454VLIB_REGISTER_NODE(ip4_mpls_label_disposition_uniform_node) = {
Neale Ranns31ed7442018-02-23 05:29:09 -0800455 .name = "ip4-mpls-label-disposition-uniform",
456 .vector_size = sizeof(u32),
457
458 .format_trace = format_mpls_label_disposition_trace,
459 .sibling_of = "ip4-input",
460 .n_errors = IP4_N_ERROR,
461 .error_strings = ip4_error_strings,
462};
Neale Ranns31ed7442018-02-23 05:29:09 -0800463
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800464VLIB_NODE_FN (ip6_mpls_label_disposition_uniform_node) (vlib_main_t * vm,
Neale Ranns31ed7442018-02-23 05:29:09 -0800465 vlib_node_runtime_t * node,
466 vlib_frame_t * frame)
467{
468 return (mpls_label_disposition_inline(vm, node, frame, 0, 1,
469 FIB_MPLS_LSP_MODE_UNIFORM));
470}
471
472VLIB_REGISTER_NODE(ip6_mpls_label_disposition_uniform_node) = {
Neale Ranns31ed7442018-02-23 05:29:09 -0800473 .name = "ip6-mpls-label-disposition-uniform",
474 .vector_size = sizeof(u32),
475
476 .format_trace = format_mpls_label_disposition_trace,
477 .sibling_of = "ip6-input",
478 .n_errors = IP6_N_ERROR,
479 .error_strings = ip6_error_strings,
480};
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800481
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800482#ifndef CLIB_MARCH_VARIANT
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800483static void
484mpls_disp_dpo_mem_show (void)
485{
486 fib_show_memory_usage("MPLS label",
487 pool_elts(mpls_disp_dpo_pool),
488 pool_len(mpls_disp_dpo_pool),
489 sizeof(mpls_disp_dpo_t));
490}
491
492const static dpo_vft_t mdd_vft = {
493 .dv_lock = mpls_disp_dpo_lock,
494 .dv_unlock = mpls_disp_dpo_unlock,
495 .dv_format = format_mpls_disp_dpo,
496 .dv_mem_show = mpls_disp_dpo_mem_show,
497};
498
Neale Ranns31ed7442018-02-23 05:29:09 -0800499const static char* const mpls_label_disp_pipe_ip4_nodes[] =
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800500{
Neale Ranns31ed7442018-02-23 05:29:09 -0800501 "ip4-mpls-label-disposition-pipe",
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800502 NULL,
503};
Neale Ranns31ed7442018-02-23 05:29:09 -0800504const static char* const mpls_label_disp_pipe_ip6_nodes[] =
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800505{
Neale Ranns31ed7442018-02-23 05:29:09 -0800506 "ip6-mpls-label-disposition-pipe",
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800507 NULL,
508};
Neale Ranns31ed7442018-02-23 05:29:09 -0800509const static char* const * const mpls_label_disp_pipe_nodes[DPO_PROTO_NUM] =
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800510{
Neale Ranns31ed7442018-02-23 05:29:09 -0800511 [DPO_PROTO_IP4] = mpls_label_disp_pipe_ip4_nodes,
512 [DPO_PROTO_IP6] = mpls_label_disp_pipe_ip6_nodes,
513};
514
515const static char* const mpls_label_disp_uniform_ip4_nodes[] =
516{
517 "ip4-mpls-label-disposition-uniform",
518 NULL,
519};
520const static char* const mpls_label_disp_uniform_ip6_nodes[] =
521{
522 "ip6-mpls-label-disposition-uniform",
523 NULL,
524};
525const static char* const * const mpls_label_disp_uniform_nodes[DPO_PROTO_NUM] =
526{
527 [DPO_PROTO_IP4] = mpls_label_disp_uniform_ip4_nodes,
528 [DPO_PROTO_IP6] = mpls_label_disp_uniform_ip6_nodes,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800529};
530
531
532void
Neale Ranns31ed7442018-02-23 05:29:09 -0800533mpls_disp_dpo_module_init(void)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800534{
Neale Ranns31ed7442018-02-23 05:29:09 -0800535 dpo_register(DPO_MPLS_DISPOSITION_PIPE, &mdd_vft,
536 mpls_label_disp_pipe_nodes);
537 dpo_register(DPO_MPLS_DISPOSITION_UNIFORM, &mdd_vft,
538 mpls_label_disp_uniform_nodes);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800539}
Filip Tehlareb9a27f2019-03-07 01:42:11 -0800540#endif /* CLIB_MARCH_VARIANT */