Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1 | /* |
| 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* */ |
| 22 | VNET_FEATURE_ARC_INIT (ip6_punt) = |
| 23 | { |
| 24 | .arc_name = "ip6-punt", |
| 25 | .start_nodes = VNET_FEATURES ("ip6-punt"), |
| 26 | }; |
| 27 | |
| 28 | VNET_FEATURE_ARC_INIT (ip6_drop) = |
| 29 | { |
| 30 | .arc_name = "ip6-drop", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 31 | .start_nodes = VNET_FEATURES ("ip6-drop", "ip6-not-enabled"), |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 32 | }; |
| 33 | /* *INDENT-ON* */ |
| 34 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 35 | extern ip_punt_policer_t ip6_punt_policer_cfg; |
| 36 | |
| 37 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 38 | ip_punt_policer_t ip6_punt_policer_cfg; |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 39 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 40 | |
| 41 | static char *ip6_punt_policer_error_strings[] = { |
| 42 | #define _(sym,string) string, |
| 43 | foreach_ip_punt_policer_error |
| 44 | #undef _ |
| 45 | }; |
| 46 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 47 | VLIB_NODE_FN (ip6_punt_policer_node) (vlib_main_t * vm, |
| 48 | vlib_node_runtime_t * node, |
| 49 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 50 | { |
| 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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 59 | VLIB_REGISTER_NODE (ip6_punt_policer_node) = { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 60 | .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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 73 | VNET_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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 80 | VLIB_NODE_FN (ip6_drop_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 81 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 82 | { |
| 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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 91 | VLIB_NODE_FN (ip6_not_enabled_node) (vlib_main_t * vm, |
| 92 | vlib_node_runtime_t * node, |
| 93 | vlib_frame_t * frame) |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 94 | { |
| 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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 103 | VLIB_NODE_FN (ip6_punt_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 104 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 105 | { |
| 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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 114 | VLIB_REGISTER_NODE (ip6_drop_node) = |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 115 | { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 116 | .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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 125 | VLIB_REGISTER_NODE (ip6_not_enabled_node) = |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 126 | { |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 127 | .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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 136 | VLIB_REGISTER_NODE (ip6_punt_node) = |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 137 | { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 138 | .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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 147 | VNET_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 | |
| 153 | VNET_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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 160 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 161 | void |
| 162 | ip6_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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 169 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 170 | |
| 171 | static clib_error_t * |
| 172 | ip6_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 | |
| 212 | done: |
| 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* */ |
| 223 | VLIB_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 Nayak | 4112e38 | 2017-12-11 17:36:54 +0530 | [diff] [blame] | 229 | |
Swarup Nayak | 4112e38 | 2017-12-11 17:36:54 +0530 | [diff] [blame] | 230 | /* *INDENT-ON* */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 231 | |
| 232 | #define foreach_ip6_punt_redirect_error \ |
| 233 | _(DROP, "ip6 punt redirect drop") |
| 234 | |
| 235 | typedef 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 | |
| 243 | static char *ip6_punt_redirect_error_strings[] = { |
| 244 | #define _(sym,string) string, |
| 245 | foreach_ip6_punt_redirect_error |
| 246 | #undef _ |
| 247 | }; |
| 248 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 249 | VLIB_NODE_FN (ip6_punt_redirect_node) (vlib_main_t * vm, |
| 250 | vlib_node_runtime_t * node, |
| 251 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 252 | { |
| 253 | return (ip_punt_redirect (vm, node, frame, |
| 254 | vnet_feat_arc_ip6_punt.feature_arc_index, |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 255 | FIB_PROTOCOL_IP6)); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | /* *INDENT-OFF* */ |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 259 | VLIB_REGISTER_NODE (ip6_punt_redirect_node) = { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 260 | .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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 275 | VNET_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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 282 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 283 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 284 | void |
| 285 | ip6_punt_redirect_add (u32 rx_sw_if_index, |
| 286 | u32 tx_sw_if_index, ip46_address_t * nh) |
| 287 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 288 | /* *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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 295 | }; |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 296 | /* *INDENT-ON* */ |
| 297 | vec_add1 (rpaths, rpath); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 298 | |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 299 | ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths); |
| 300 | |
| 301 | vec_free (rpaths); |
| 302 | } |
| 303 | |
| 304 | void |
| 305 | ip6_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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 310 | |
| 311 | vnet_feature_enable_disable ("ip6-punt", "ip6-punt-redirect", 0, 1, 0, 0); |
| 312 | } |
| 313 | |
| 314 | void |
| 315 | ip6_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 Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 319 | ip_punt_redirect_del (FIB_PROTOCOL_IP6, rx_sw_if_index); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 320 | } |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 321 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 322 | |
| 323 | static clib_error_t * |
| 324 | ip6_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 Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 329 | fib_route_path_t *rpaths = NULL, rpath; |
Neale Ranns | 5ca2a8a | 2019-07-29 12:59:45 +0000 | [diff] [blame] | 330 | dpo_proto_t payload_proto; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 331 | clib_error_t *error = 0; |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 332 | u32 rx_sw_if_index = ~0; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 333 | 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 Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 353 | else if (unformat (line_input, "via %U", |
Neale Ranns | 5ca2a8a | 2019-07-29 12:59:45 +0000 | [diff] [blame] | 354 | unformat_fib_route_path, &rpath, &payload_proto)) |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 355 | vec_add1 (rpaths, rpath); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 356 | else |
| 357 | { |
| 358 | error = unformat_parse_error (line_input); |
| 359 | goto done; |
| 360 | } |
| 361 | } |
| 362 | |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 363 | if (~0 == rx_sw_if_index) |
| 364 | { |
| 365 | error = unformat_parse_error (line_input); |
| 366 | goto done; |
| 367 | } |
| 368 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 369 | if (is_add) |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 370 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 371 | if (vec_len (rpaths)) |
| 372 | ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths); |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 373 | } |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 374 | else |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 375 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 376 | ip6_punt_redirect_del (rx_sw_if_index); |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 377 | } |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 378 | |
| 379 | done: |
| 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* */ |
| 390 | VLIB_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 Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 398 | #ifndef CLIB_MARCH_VARIANT |
Pavel Kotucek | 609e121 | 2018-11-27 09:59:44 +0100 | [diff] [blame] | 399 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 400 | #endif /* CLIB_MARCH_VARIANT */ |
Pavel Kotucek | 609e121 | 2018-11-27 09:59:44 +0100 | [diff] [blame] | 401 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 402 | static clib_error_t * |
| 403 | ip6_punt_redirect_show_cmd (vlib_main_t * vm, |
| 404 | unformat_input_t * main_input, |
| 405 | vlib_cli_command_t * cmd) |
| 406 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 407 | vlib_cli_output (vm, "%U", format_ip_punt_redirect, FIB_PROTOCOL_IP6); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 408 | |
| 409 | return (NULL); |
| 410 | } |
| 411 | |
| 412 | /*? |
| 413 | * |
| 414 | * @cliexpar |
| 415 | * @cliexcmd{set ip punt policer <INDEX>} |
| 416 | ?*/ |
| 417 | /* *INDENT-OFF* */ |
| 418 | VLIB_CLI_COMMAND (show_ip6_punt_redirect_command, static) = |
| 419 | { |
| 420 | .path = "show ip6 punt redirect", |
| 421 | .function = ip6_punt_redirect_show_cmd, |
Swarup Nayak | a3611a7 | 2017-12-06 18:55:43 +0530 | [diff] [blame] | 422 | .short_help = "show ip6 punt redirect", |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 423 | .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 | */ |