FD.io VPP  v16.12-rc0-308-g931be3a
Vector Packet Processing
mpls_features.c
Go to the documentation of this file.
1 /*
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 
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 
40 static uword
42  vlib_node_runtime_t * node,
43  vlib_frame_t * frame)
44 {
45  return (mpls_terminate(vm, node, frame, MPLS_ERROR_PUNT));
46 }
47 
49  .function = mpls_punt,
50  .name = "mpls-punt",
51  .vector_size = sizeof (u32),
52 
53  .n_next_nodes = 1,
54  .next_nodes = {
55  [0] = "error-punt",
56  },
57 };
58 
60 
61 static uword
63  vlib_node_runtime_t * node,
64  vlib_frame_t * frame)
65 {
66  return (mpls_terminate(vm, node, frame, MPLS_ERROR_DROP));
67 }
68 
70  .function = mpls_drop,
71  .name = "mpls-drop",
72  .vector_size = sizeof (u32),
73 
74  .n_next_nodes = 1,
75  .next_nodes = {
76  [0] = "error-drop",
77  },
78 };
79 
81 
82 static uword
84  vlib_node_runtime_t * node,
85  vlib_frame_t * frame)
86 {
87  return (mpls_terminate(vm, node, frame, MPLS_ERROR_NOT_ENABLED));
88 }
89 
91  .function = mpls_not_enabled,
92  .name = "mpls-not-enabled",
93  .vector_size = sizeof (u32),
94 
95  .n_next_nodes = 1,
96  .next_nodes = {
97  [0] = "error-drop",
98  },
99 };
100 
102 
104  .node_name = "mpls-lookup",
105  .runs_before = ORDER_CONSTRAINTS {"mpls-not-enabled", 0},
106  .feature_index = &mpls_main.mpls_rx_feature_lookup,
107 };
108 
110  .node_name = "mpls-not-enabled",
111  .runs_before = ORDER_CONSTRAINTS {0}, /* not before any other features */
112  .feature_index = &mpls_main.mpls_rx_feature_not_enabled,
113 };
114 
115 /* Built-in ip4 tx feature path definition */
116 VNET_MPLS_TX_FEATURE_INIT (interface_output, static) = {
117  .node_name = "interface-output",
118  .runs_before = 0, /* not before any other features */
120 };
121 
122 
123 static char * rx_feature_start_nodes[] =
124 {
125  "mpls-input",
126 };
127 static char * tx_feature_start_nodes[] =
128 {
129  "mpls-output",
130  "mpls-midchain",
131 };
132 
133 clib_error_t *
135 {
137  vnet_config_main_t * vcm = &cm->config_main;
138  clib_error_t *error;
139 
140  error = vnet_feature_arc_init
141  (vm, vcm, rx_feature_start_nodes,
145 
146  if (error)
147  return error;
148 
150  vcm = &cm->config_main;
151 
152  error = vnet_feature_arc_init
153  (vm, vcm,
158 
159  return error;
160 }
161 
162 static clib_error_t *
164  u32 sw_if_index,
165  u32 is_add)
166 {
167  vlib_main_t * vm = vnm->vlib_main;
168  mpls_main_t * mm = &mpls_main;
169  u32 feature_index;
170  u32 ci, cast;
171 
172  for (cast = 0; cast < VNET_N_IP_FEAT; cast++)
173  {
175  vnet_config_main_t * vcm = &cm->config_main;
176 
177  if (VNET_IP_RX_MULTICAST_FEAT == cast)
178  continue;
179 
183  ci = cm->config_index_by_sw_if_index[sw_if_index];
184 
185  if (cast == VNET_IP_RX_UNICAST_FEAT)
186  feature_index = mm->mpls_rx_feature_not_enabled;
187  else
188  feature_index = mm->mpls_tx_feature_interface_output;
189 
190 
191  if (is_add)
192  ci = vnet_config_add_feature (vm, vcm, ci,
193  feature_index,
194  /* config data */ 0,
195  /* # bytes of config data */ 0);
196  else
197  {
198  ci = vnet_config_del_feature (vm, vcm, ci,
199  feature_index,
200  /* config data */ 0,
201  /* # bytes of config data */ 0);
202  mm->mpls_enabled_by_sw_if_index[sw_if_index] = 0;;
203  }
204  cm->config_index_by_sw_if_index[sw_if_index] = ci;
205  }
206 
207  return /* no error */ 0;
208 }
209 
211 
212 #define foreach_af_cast \
213 _(VNET_IP_RX_UNICAST_FEAT, "mpls input") \
214 _(VNET_IP_TX_FEAT, "mpls output") \
215 
vnet_config_main_t config_main
Definition: feature.h:55
vlib_node_registration_t mpls_drop_node
(constructor) VLIB_REGISTER_NODE (mpls_drop_node)
Definition: mpls_features.c:69
uword vlib_error_drop_buffers(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u32 next_buffer_stride, u32 n_buffers, u32 next_index, u32 drop_error_node, u32 drop_error_code)
Definition: error.c:44
VNET_MPLS_TX_FEATURE_INIT(interface_output, static)
vlib_node_registration_t mpls_not_enabled_node
(constructor) VLIB_REGISTER_NODE (mpls_not_enabled_node)
Definition: mpls_features.c:90
static char * rx_feature_start_nodes[]
VNET_MPLS_FEATURE_INIT(mpls_lookup, static)
u32 mpls_rx_feature_not_enabled
Definition: mpls.h:102
u32 * fib_index_by_sw_if_index
Definition: mpls.h:89
u32 vnet_config_del_feature(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_string_heap_index, u32 feature_index, void *feature_config, u32 n_feature_config_bytes)
Definition: config.c:300
u32 mpls_tx_feature_interface_output
Definition: mpls.h:103
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(mpls_sw_interface_add_del)
clib_error_t * mpls_feature_init(vlib_main_t *vm)
vnet_feature_config_main_t feature_config_mains[VNET_N_IP_FEAT]
Definition: mpls.h:98
u8 * mpls_enabled_by_sw_if_index
Definition: mpls.h:124
static uword mpls_terminate(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int error_code)
Definition: mpls_features.c:21
#define always_inline
Definition: clib.h:84
vlib_node_registration_t mpls_punt_node
(constructor) VLIB_REGISTER_NODE (mpls_punt_node)
Definition: mpls_features.c:48
static uword mpls_lookup(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: mpls_lookup.c:62
static clib_error_t * mpls_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
vlib_main_t * vlib_main
Definition: vnet.h:88
#define ORDER_CONSTRAINTS
Definition: feature.h:188
clib_error_t * vnet_feature_arc_init(vlib_main_t *vm, vnet_config_main_t *vcm, char **feature_start_nodes, int num_feature_start_nodes, vnet_feature_registration_t *first_reg, char ***feature_nodes)
Initialize a feature graph arc.
Definition: registration.c:127
vlib_node_registration_t mpls_input_node
(constructor) VLIB_REGISTER_NODE (mpls_input_node)
Definition: node.c:168
u16 n_vectors
Definition: node.h:344
mpls_main_t mpls_main
Definition: mpls.c:25
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
u32 vnet_config_add_feature(vlib_main_t *vm, vnet_config_main_t *cm, u32 config_string_heap_index, u32 feature_index, void *feature_config, u32 n_feature_config_bytes)
Definition: config.c:239
u64 uword
Definition: types.h:112
vnet_feature_registration_t * next_feature[VNET_N_IP_FEAT]
Definition: mpls.h:118
char ** feature_nodes[VNET_N_IP_FEAT]
Definition: mpls.h:121
static uword mpls_punt(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: mpls_features.c:41
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:253
static uword mpls_drop(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: mpls_features.c:62
#define VLIB_NODE_FUNCTION_MULTIARCH(node, fn)
Definition: node.h:158
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
static char * tx_feature_start_nodes[]
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:445
static uword mpls_not_enabled(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: mpls_features.c:83
u32 mpls_rx_feature_lookup
Definition: mpls.h:101