blob: 5f07833b6a38ed195487372ed9f2baf0419dd14d [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * mpls_features.c: MPLS input and output features
3 *
4 * Copyright (c) 2016 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/mpls/mpls.h>
19
20always_inline uword
21mpls_terminate (vlib_main_t * vm,
22 vlib_node_runtime_t * node,
23 vlib_frame_t * frame,
24 int error_code)
25{
26 u32 * buffers = vlib_frame_vector_args (frame);
27 uword n_packets = frame->n_vectors;
28
29 vlib_error_drop_buffers (vm, node,
30 buffers,
31 /* stride */ 1,
32 n_packets,
33 /* next */ 0,
34 mpls_input_node.index,
35 error_code);
36
37 return n_packets;
38}
39
Filip Tehlar17fcd982019-03-05 04:32:11 -080040VLIB_NODE_FN (mpls_punt_node) (vlib_main_t * vm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010041 vlib_node_runtime_t * node,
42 vlib_frame_t * frame)
43{
44 return (mpls_terminate(vm, node, frame, MPLS_ERROR_PUNT));
45}
46
47VLIB_REGISTER_NODE (mpls_punt_node) = {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010048 .name = "mpls-punt",
49 .vector_size = sizeof (u32),
50
51 .n_next_nodes = 1,
52 .next_nodes = {
53 [0] = "error-punt",
54 },
55};
56
Filip Tehlar17fcd982019-03-05 04:32:11 -080057VLIB_NODE_FN (mpls_drop_node) (vlib_main_t * vm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010058 vlib_node_runtime_t * node,
59 vlib_frame_t * frame)
60{
61 return (mpls_terminate(vm, node, frame, MPLS_ERROR_DROP));
62}
63
64VLIB_REGISTER_NODE (mpls_drop_node) = {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010065 .name = "mpls-drop",
66 .vector_size = sizeof (u32),
67
68 .n_next_nodes = 1,
69 .next_nodes = {
70 [0] = "error-drop",
71 },
72};
73
Filip Tehlar17fcd982019-03-05 04:32:11 -080074VLIB_NODE_FN (mpls_not_enabled_node) (vlib_main_t * vm,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010075 vlib_node_runtime_t * node,
76 vlib_frame_t * frame)
77{
78 return (mpls_terminate(vm, node, frame, MPLS_ERROR_NOT_ENABLED));
79}
80
81VLIB_REGISTER_NODE (mpls_not_enabled_node) = {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010082 .name = "mpls-not-enabled",
83 .vector_size = sizeof (u32),
84
85 .n_next_nodes = 1,
86 .next_nodes = {
87 [0] = "error-drop",
88 },
89};
90
Damjan Marion8b3191e2016-11-09 19:54:20 +010091VNET_FEATURE_ARC_INIT (mpls_input, static) =
92{
93 .arc_name = "mpls-input",
94 .start_nodes = VNET_FEATURES ("mpls-input"),
Dave Baracha25def72018-11-26 11:04:45 -050095 .last_in_arc = "mpls-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +010096 .arc_index_ptr = &mpls_main.input_feature_arc_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010097};
98
Damjan Marion8b3191e2016-11-09 19:54:20 +010099VNET_FEATURE_INIT (mpls_not_enabled, static) = {
100 .arc_name = "mpls-input",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101 .node_name = "mpls-not-enabled",
Neale Rannsb85e4392017-03-16 16:12:57 -0400102 .runs_before = VNET_FEATURES ("mpls-lookup"),
103};
104
105VNET_FEATURE_INIT (mpls_lookup, static) = {
106 .arc_name = "mpls-input",
107 .node_name = "mpls-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100108 .runs_before = VNET_FEATURES (0), /* not before any other features */
109};
110
111VNET_FEATURE_ARC_INIT (mpls_output, static) =
112{
113 .arc_name = "mpls-output",
114 .start_nodes = VNET_FEATURES ("mpls-output", "mpls-midchain"),
Dave Baracha25def72018-11-26 11:04:45 -0500115 .last_in_arc = "interface-output",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100116 .arc_index_ptr = &mpls_main.output_feature_arc_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100117};
118
Neale Ranns5e575b12016-10-03 09:40:25 +0100119/* Built-in ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100120VNET_FEATURE_INIT (mpls_interface_output, static) = {
121 .arc_name = "mpls-output",
Neale Ranns5e575b12016-10-03 09:40:25 +0100122 .node_name = "interface-output",
123 .runs_before = 0, /* not before any other features */
Neale Ranns5e575b12016-10-03 09:40:25 +0100124};
125
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126static clib_error_t *
127mpls_sw_interface_add_del (vnet_main_t * vnm,
128 u32 sw_if_index,
129 u32 is_add)
130{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100131 mpls_main_t * mm = &mpls_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100132
Damjan Marion8b3191e2016-11-09 19:54:20 +0100133 vec_validate_init_empty (mm->mpls_enabled_by_sw_if_index, sw_if_index, 0);
134 vec_validate_init_empty (mm->fib_index_by_sw_if_index, sw_if_index, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100135
Damjan Marion8b3191e2016-11-09 19:54:20 +0100136 vnet_feature_enable_disable ("mpls-input", "mpls-not-enabled", sw_if_index,
137 is_add, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100138
139 return /* no error */ 0;
140}
141
142VNET_SW_INTERFACE_ADD_DEL_FUNCTION (mpls_sw_interface_add_del);
143
Neale Ranns5e575b12016-10-03 09:40:25 +0100144