blob: 8d91c093a4b488404528c611be41d226e1f25851 [file] [log] [blame]
Neale Rannsd91c1db2017-07-31 02:30:50 -07001/*
2 * Copyright (c) 2015 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
16#include <vnet/ip/ip.h>
17#include <vnet/ip/ip_punt_drop.h>
18#include <vnet/policer/policer.h>
19#include <vnet/policer/police_inlines.h>
20
21/* *INDENT-OFF* */
22VNET_FEATURE_ARC_INIT (ip6_punt) =
23{
24 .arc_name = "ip6-punt",
25 .start_nodes = VNET_FEATURES ("ip6-punt"),
26};
27
28VNET_FEATURE_ARC_INIT (ip6_drop) =
29{
30 .arc_name = "ip6-drop",
Neale Ranns8269d3d2018-01-30 09:02:20 -080031 .start_nodes = VNET_FEATURES ("ip6-drop", "ip6-not-enabled"),
Neale Rannsd91c1db2017-07-31 02:30:50 -070032};
33/* *INDENT-ON* */
34
Filip Tehlar26ea14e2019-03-11 05:30:21 -070035extern ip_punt_policer_t ip6_punt_policer_cfg;
36
37#ifndef CLIB_MARCH_VARIANT
Neale Rannsd91c1db2017-07-31 02:30:50 -070038ip_punt_policer_t ip6_punt_policer_cfg;
Filip Tehlar26ea14e2019-03-11 05:30:21 -070039#endif /* CLIB_MARCH_VARIANT */
Neale Rannsd91c1db2017-07-31 02:30:50 -070040
41static char *ip6_punt_policer_error_strings[] = {
42#define _(sym,string) string,
43 foreach_ip_punt_policer_error
44#undef _
45};
46
Filip Tehlar26ea14e2019-03-11 05:30:21 -070047VLIB_NODE_FN (ip6_punt_policer_node) (vlib_main_t * vm,
48 vlib_node_runtime_t * node,
49 vlib_frame_t * frame)
Neale Rannsd91c1db2017-07-31 02:30:50 -070050{
51 return (ip_punt_policer (vm, node, frame,
52 vnet_feat_arc_ip6_punt.feature_arc_index,
53 ip6_punt_policer_cfg.policer_index));
54}
55
56
57/* *INDENT-OFF* */
58
Filip Tehlar26ea14e2019-03-11 05:30:21 -070059VLIB_REGISTER_NODE (ip6_punt_policer_node) = {
Neale Rannsd91c1db2017-07-31 02:30:50 -070060 .name = "ip6-punt-policer",
61 .vector_size = sizeof (u32),
62 .n_next_nodes = IP_PUNT_POLICER_N_NEXT,
63 .format_trace = format_ip_punt_policer_trace,
64 .n_errors = ARRAY_LEN(ip6_punt_policer_error_strings),
65 .error_strings = ip6_punt_policer_error_strings,
66
67 /* edit / add dispositions here */
68 .next_nodes = {
69 [IP_PUNT_POLICER_NEXT_DROP] = "ip6-drop",
70 },
71};
72
Neale Rannsd91c1db2017-07-31 02:30:50 -070073VNET_FEATURE_INIT (ip6_punt_policer_node, static) = {
74 .arc_name = "ip6-punt",
75 .node_name = "ip6-punt-policer",
76 .runs_before = VNET_FEATURES("ip6-punt-redirect")
77};
78/* *INDENT-ON* */
79
Filip Tehlar26ea14e2019-03-11 05:30:21 -070080VLIB_NODE_FN (ip6_drop_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
81 vlib_frame_t * frame)
Neale Rannsd91c1db2017-07-31 02:30:50 -070082{
83 if (node->flags & VLIB_NODE_FLAG_TRACE)
84 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
85
86 return ip_drop_or_punt (vm, node, frame,
87 vnet_feat_arc_ip6_drop.feature_arc_index);
88
89}
90
Filip Tehlar26ea14e2019-03-11 05:30:21 -070091VLIB_NODE_FN (ip6_not_enabled_node) (vlib_main_t * vm,
92 vlib_node_runtime_t * node,
93 vlib_frame_t * frame)
Neale Ranns8269d3d2018-01-30 09:02:20 -080094{
95 if (node->flags & VLIB_NODE_FLAG_TRACE)
96 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
97
98 return ip_drop_or_punt (vm, node, frame,
99 vnet_feat_arc_ip6_drop.feature_arc_index);
100
101}
102
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700103VLIB_NODE_FN (ip6_punt_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
104 vlib_frame_t * frame)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700105{
106 if (node->flags & VLIB_NODE_FLAG_TRACE)
107 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
108
109 return ip_drop_or_punt (vm, node, frame,
110 vnet_feat_arc_ip6_punt.feature_arc_index);
111}
112
113/* *INDENT-OFF* */
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700114VLIB_REGISTER_NODE (ip6_drop_node) =
Neale Rannsd91c1db2017-07-31 02:30:50 -0700115{
Neale Rannsd91c1db2017-07-31 02:30:50 -0700116 .name = "ip6-drop",
117 .vector_size = sizeof (u32),
118 .format_trace = format_ip6_forward_next_trace,
119 .n_next_nodes = 1,
120 .next_nodes = {
121 [0] = "error-drop",
122 },
123};
124
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700125VLIB_REGISTER_NODE (ip6_not_enabled_node) =
Neale Ranns8269d3d2018-01-30 09:02:20 -0800126{
Neale Ranns8269d3d2018-01-30 09:02:20 -0800127 .name = "ip6-not-enabled",
128 .vector_size = sizeof (u32),
129 .format_trace = format_ip6_forward_next_trace,
130 .n_next_nodes = 1,
131 .next_nodes = {
132 [0] = "error-drop",
133 },
134};
135
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700136VLIB_REGISTER_NODE (ip6_punt_node) =
Neale Rannsd91c1db2017-07-31 02:30:50 -0700137{
Neale Rannsd91c1db2017-07-31 02:30:50 -0700138 .name = "ip6-punt",
139 .vector_size = sizeof (u32),
140 .format_trace = format_ip6_forward_next_trace,
141 .n_next_nodes = 1,
142 .next_nodes = {
143 [0] = "error-punt",
144 },
145};
146
Neale Rannsd91c1db2017-07-31 02:30:50 -0700147VNET_FEATURE_INIT (ip6_punt_end_of_arc, static) = {
148 .arc_name = "ip6-punt",
149 .node_name = "error-punt",
150 .runs_before = 0, /* not before any other features */
151};
152
153VNET_FEATURE_INIT (ip6_drop_end_of_arc, static) = {
154 .arc_name = "ip6-drop",
155 .node_name = "error-drop",
156 .runs_before = 0, /* not before any other features */
157};
158/* *INDENT-ON */
159
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700160#ifndef CLIB_MARCH_VARIANT
Neale Rannsd91c1db2017-07-31 02:30:50 -0700161void
162ip6_punt_policer_add_del (u8 is_add, u32 policer_index)
163{
164 ip6_punt_policer_cfg.policer_index = policer_index;
165
166 vnet_feature_enable_disable ("ip6-punt", "ip6-punt-policer",
167 0, is_add, 0, 0);
168}
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700169#endif /* CLIB_MARCH_VARIANT */
Neale Rannsd91c1db2017-07-31 02:30:50 -0700170
171static clib_error_t *
172ip6_punt_police_cmd (vlib_main_t * vm,
173 unformat_input_t * main_input,
174 vlib_cli_command_t * cmd)
175{
176 unformat_input_t _line_input, *line_input = &_line_input;
177 clib_error_t *error = 0;
178 u32 policer_index;
179 u8 is_add = 1;
180
181 policer_index = ~0;
182
183 if (!unformat_user (main_input, unformat_line_input, line_input))
184 return 0;
185
186 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
187 {
188 if (unformat (line_input, "%d", &policer_index))
189 ;
190 else if (unformat (line_input, "del"))
191 is_add = 0;
192 else if (unformat (line_input, "add"))
193 is_add = 1;
194 else
195 {
196 error = unformat_parse_error (line_input);
197 goto done;
198 }
199 }
200
201 if (is_add && ~0 == policer_index)
202 {
203 error = clib_error_return (0, "expected policer index `%U'",
204 format_unformat_error, line_input);
205 goto done;
206 }
207 if (!is_add)
208 policer_index = ~0;
209
210 ip6_punt_policer_add_del(is_add, policer_index);
211
212done:
213 unformat_free (line_input);
214 return (error);
215}
216
217/*?
218 *
219 * @cliexpar
220 * @cliexcmd{set ip punt policer <INDEX>}
221 ?*/
222/* *INDENT-OFF* */
223VLIB_CLI_COMMAND (ip6_punt_policer_command, static) =
224{
225 .path = "ip6 punt policer",
226 .function = ip6_punt_police_cmd,
227 .short_help = "ip6 punt policer [add|del] <index>",
228};
Swarup Nayak4112e382017-12-11 17:36:54 +0530229
Swarup Nayak4112e382017-12-11 17:36:54 +0530230/* *INDENT-ON* */
Neale Rannsd91c1db2017-07-31 02:30:50 -0700231
232#define foreach_ip6_punt_redirect_error \
233_(DROP, "ip6 punt redirect drop")
234
235typedef enum
236{
237#define _(sym,str) IP6_PUNT_REDIRECT_ERROR_##sym,
238 foreach_ip6_punt_redirect_error
239#undef _
240 IP6_PUNT_REDIRECT_N_ERROR,
241} ip6_punt_redirect_error_t;
242
243static char *ip6_punt_redirect_error_strings[] = {
244#define _(sym,string) string,
245 foreach_ip6_punt_redirect_error
246#undef _
247};
248
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700249VLIB_NODE_FN (ip6_punt_redirect_node) (vlib_main_t * vm,
250 vlib_node_runtime_t * node,
251 vlib_frame_t * frame)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700252{
253 return (ip_punt_redirect (vm, node, frame,
254 vnet_feat_arc_ip6_punt.feature_arc_index,
Neale Ranns92207752019-06-03 13:21:40 +0000255 FIB_PROTOCOL_IP6));
Neale Rannsd91c1db2017-07-31 02:30:50 -0700256}
257
258/* *INDENT-OFF* */
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700259VLIB_REGISTER_NODE (ip6_punt_redirect_node) = {
Neale Rannsd91c1db2017-07-31 02:30:50 -0700260 .name = "ip6-punt-redirect",
261 .vector_size = sizeof (u32),
262 .n_next_nodes = IP_PUNT_REDIRECT_N_NEXT,
263 .format_trace = format_ip_punt_redirect_trace,
264 .n_errors = ARRAY_LEN(ip6_punt_redirect_error_strings),
265 .error_strings = ip6_punt_redirect_error_strings,
266
267 /* edit / add dispositions here */
268 .next_nodes = {
269 [IP_PUNT_REDIRECT_NEXT_DROP] = "ip6-drop",
270 [IP_PUNT_REDIRECT_NEXT_TX] = "ip6-rewrite",
271 [IP_PUNT_REDIRECT_NEXT_ARP] = "ip6-discover-neighbor",
272 },
273};
274
Neale Rannsd91c1db2017-07-31 02:30:50 -0700275VNET_FEATURE_INIT (ip6_punt_redirect_node, static) = {
276 .arc_name = "ip6-punt",
277 .node_name = "ip6-punt-redirect",
278 .runs_before = VNET_FEATURES("error-punt")
279};
280/* *INDENT-ON* */
281
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700282#ifndef CLIB_MARCH_VARIANT
Neale Ranns92207752019-06-03 13:21:40 +0000283
Neale Rannsd91c1db2017-07-31 02:30:50 -0700284void
285ip6_punt_redirect_add (u32 rx_sw_if_index,
286 u32 tx_sw_if_index, ip46_address_t * nh)
287{
Neale Ranns92207752019-06-03 13:21:40 +0000288 /* *INDENT-OFF* */
289 fib_route_path_t *rpaths = NULL, rpath = {
290 .frp_proto = DPO_PROTO_IP6,
291 .frp_addr = *nh,
292 .frp_sw_if_index = tx_sw_if_index,
293 .frp_weight = 1,
294 .frp_fib_index = ~0,
Neale Rannsd91c1db2017-07-31 02:30:50 -0700295 };
Neale Ranns92207752019-06-03 13:21:40 +0000296 /* *INDENT-ON* */
297 vec_add1 (rpaths, rpath);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700298
Neale Ranns92207752019-06-03 13:21:40 +0000299 ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths);
300
301 vec_free (rpaths);
302}
303
304void
305ip6_punt_redirect_add_paths (u32 rx_sw_if_index, fib_route_path_t * rpaths)
306{
307 ip_punt_redirect_add (FIB_PROTOCOL_IP6,
308 rx_sw_if_index,
309 FIB_FORW_CHAIN_TYPE_UNICAST_IP6, rpaths);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700310
311 vnet_feature_enable_disable ("ip6-punt", "ip6-punt-redirect", 0, 1, 0, 0);
312}
313
314void
315ip6_punt_redirect_del (u32 rx_sw_if_index)
316{
317 vnet_feature_enable_disable ("ip6-punt", "ip6-punt-redirect", 0, 0, 0, 0);
318
Neale Ranns92207752019-06-03 13:21:40 +0000319 ip_punt_redirect_del (FIB_PROTOCOL_IP6, rx_sw_if_index);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700320}
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700321#endif /* CLIB_MARCH_VARIANT */
Neale Rannsd91c1db2017-07-31 02:30:50 -0700322
323static clib_error_t *
324ip6_punt_redirect_cmd (vlib_main_t * vm,
325 unformat_input_t * main_input,
326 vlib_cli_command_t * cmd)
327{
328 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns92207752019-06-03 13:21:40 +0000329 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns5ca2a8a2019-07-29 12:59:45 +0000330 dpo_proto_t payload_proto;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700331 clib_error_t *error = 0;
Neale Ranns92207752019-06-03 13:21:40 +0000332 u32 rx_sw_if_index = ~0;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700333 vnet_main_t *vnm;
334 u8 is_add;
335
336 is_add = 1;
337 vnm = vnet_get_main ();
338
339 if (!unformat_user (main_input, unformat_line_input, line_input))
340 return 0;
341
342 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
343 {
344 if (unformat (line_input, "del"))
345 is_add = 0;
346 else if (unformat (line_input, "add"))
347 is_add = 1;
348 else if (unformat (line_input, "rx all"))
349 rx_sw_if_index = ~0;
350 else if (unformat (line_input, "rx %U",
351 unformat_vnet_sw_interface, vnm, &rx_sw_if_index))
352 ;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700353 else if (unformat (line_input, "via %U",
Neale Ranns5ca2a8a2019-07-29 12:59:45 +0000354 unformat_fib_route_path, &rpath, &payload_proto))
Neale Ranns92207752019-06-03 13:21:40 +0000355 vec_add1 (rpaths, rpath);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700356 else
357 {
358 error = unformat_parse_error (line_input);
359 goto done;
360 }
361 }
362
Neale Ranns92207752019-06-03 13:21:40 +0000363 if (~0 == rx_sw_if_index)
364 {
365 error = unformat_parse_error (line_input);
366 goto done;
367 }
368
Neale Rannsd91c1db2017-07-31 02:30:50 -0700369 if (is_add)
Swarup Nayakecf844c2017-12-11 13:52:44 +0530370 {
Neale Ranns92207752019-06-03 13:21:40 +0000371 if (vec_len (rpaths))
372 ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths);
Swarup Nayakecf844c2017-12-11 13:52:44 +0530373 }
Neale Rannsd91c1db2017-07-31 02:30:50 -0700374 else
Swarup Nayakecf844c2017-12-11 13:52:44 +0530375 {
Neale Ranns92207752019-06-03 13:21:40 +0000376 ip6_punt_redirect_del (rx_sw_if_index);
Swarup Nayakecf844c2017-12-11 13:52:44 +0530377 }
Neale Rannsd91c1db2017-07-31 02:30:50 -0700378
379done:
380 unformat_free (line_input);
381 return (error);
382}
383
384/*?
385 *
386 * @cliexpar
387 * @cliexcmd{set ip punt policer <INDEX>}
388 ?*/
389/* *INDENT-OFF* */
390VLIB_CLI_COMMAND (ip6_punt_redirect_command, static) =
391{
392 .path = "ip6 punt redirect",
393 .function = ip6_punt_redirect_cmd,
394 .short_help = "ip6 punt redirect [add|del] rx [<interface>|all] via [<nh>] <tx_interface>",
395};
396/* *INDENT-ON* */
397
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700398#ifndef CLIB_MARCH_VARIANT
Pavel Kotucek609e1212018-11-27 09:59:44 +0100399
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700400#endif /* CLIB_MARCH_VARIANT */
Pavel Kotucek609e1212018-11-27 09:59:44 +0100401
Neale Rannsd91c1db2017-07-31 02:30:50 -0700402static clib_error_t *
403ip6_punt_redirect_show_cmd (vlib_main_t * vm,
404 unformat_input_t * main_input,
405 vlib_cli_command_t * cmd)
406{
Neale Ranns92207752019-06-03 13:21:40 +0000407 vlib_cli_output (vm, "%U", format_ip_punt_redirect, FIB_PROTOCOL_IP6);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700408
409 return (NULL);
410}
411
412/*?
413 *
414 * @cliexpar
415 * @cliexcmd{set ip punt policer <INDEX>}
416 ?*/
417/* *INDENT-OFF* */
418VLIB_CLI_COMMAND (show_ip6_punt_redirect_command, static) =
419{
420 .path = "show ip6 punt redirect",
421 .function = ip6_punt_redirect_show_cmd,
Swarup Nayaka3611a72017-12-06 18:55:43 +0530422 .short_help = "show ip6 punt redirect",
Neale Rannsd91c1db2017-07-31 02:30:50 -0700423 .is_mp_safe = 1,
424};
425/* *INDENT-ON* */
426
427/*
428 * fd.io coding-style-patch-verification: ON
429 *
430 * Local Variables:
431 * eval: (c-set-style "gnu")
432 * End:
433 */