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 (ip4_punt) = |
| 23 | { |
| 24 | .arc_name = "ip4-punt", |
| 25 | .start_nodes = VNET_FEATURES ("ip4-punt"), |
| 26 | }; |
| 27 | |
| 28 | VNET_FEATURE_ARC_INIT (ip4_drop) = |
| 29 | { |
| 30 | .arc_name = "ip4-drop", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 31 | .start_nodes = VNET_FEATURES ("ip4-drop", "ip4-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 ip4_punt_policer_cfg; |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 36 | |
| 37 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 38 | u8 * |
| 39 | format_ip_punt_policer_trace (u8 * s, va_list * args) |
| 40 | { |
| 41 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 42 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 43 | ip_punt_policer_trace_t *t = va_arg (*args, ip_punt_policer_trace_t *); |
| 44 | |
| 45 | s = format (s, "policer_index %d next %d", t->policer_index, t->next); |
| 46 | return s; |
| 47 | } |
| 48 | |
| 49 | ip_punt_policer_t ip4_punt_policer_cfg = { |
| 50 | .policer_index = ~0, |
| 51 | }; |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 52 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 53 | |
| 54 | static char *ip4_punt_policer_error_strings[] = { |
| 55 | #define _(sym,string) string, |
| 56 | foreach_ip_punt_policer_error |
| 57 | #undef _ |
| 58 | }; |
| 59 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 60 | VLIB_NODE_FN (ip4_punt_policer_node) (vlib_main_t * vm, |
| 61 | vlib_node_runtime_t * node, |
| 62 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 63 | { |
| 64 | return (ip_punt_policer (vm, node, frame, |
| 65 | vnet_feat_arc_ip4_punt.feature_arc_index, |
| 66 | ip4_punt_policer_cfg.policer_index)); |
| 67 | } |
| 68 | |
| 69 | /* *INDENT-OFF* */ |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 70 | VLIB_REGISTER_NODE (ip4_punt_policer_node) = { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 71 | .name = "ip4-punt-policer", |
| 72 | .vector_size = sizeof (u32), |
| 73 | .n_next_nodes = IP_PUNT_POLICER_N_NEXT, |
| 74 | .format_trace = format_ip_punt_policer_trace, |
| 75 | .n_errors = ARRAY_LEN(ip4_punt_policer_error_strings), |
| 76 | .error_strings = ip4_punt_policer_error_strings, |
| 77 | |
| 78 | .next_nodes = { |
| 79 | [IP_PUNT_POLICER_NEXT_DROP] = "ip4-drop", |
| 80 | }, |
| 81 | }; |
| 82 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 83 | VNET_FEATURE_INIT (ip4_punt_policer_node) = { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 84 | .arc_name = "ip4-punt", |
| 85 | .node_name = "ip4-punt-policer", |
| 86 | .runs_before = VNET_FEATURES("ip4-punt-redirect"), |
| 87 | }; |
| 88 | /* *INDENT-ON* */ |
| 89 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 90 | |
| 91 | #define foreach_ip4_punt_redirect_error \ |
| 92 | _(DROP, "ip4 punt redirect drop") |
| 93 | |
| 94 | typedef enum |
| 95 | { |
| 96 | #define _(sym,str) IP4_PUNT_REDIRECT_ERROR_##sym, |
| 97 | foreach_ip4_punt_redirect_error |
| 98 | #undef _ |
| 99 | IP4_PUNT_REDIRECT_N_ERROR, |
| 100 | } ip4_punt_redirect_error_t; |
| 101 | |
| 102 | static char *ip4_punt_redirect_error_strings[] = { |
| 103 | #define _(sym,string) string, |
| 104 | foreach_ip4_punt_redirect_error |
| 105 | #undef _ |
| 106 | }; |
| 107 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 108 | VLIB_NODE_FN (ip4_punt_redirect_node) (vlib_main_t * vm, |
| 109 | vlib_node_runtime_t * node, |
| 110 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 111 | { |
| 112 | return (ip_punt_redirect (vm, node, frame, |
| 113 | vnet_feat_arc_ip4_punt.feature_arc_index, |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 114 | FIB_PROTOCOL_IP4)); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | /* *INDENT-OFF* */ |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 118 | VLIB_REGISTER_NODE (ip4_punt_redirect_node) = { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 119 | .name = "ip4-punt-redirect", |
| 120 | .vector_size = sizeof (u32), |
| 121 | .n_next_nodes = IP_PUNT_REDIRECT_N_NEXT, |
| 122 | .format_trace = format_ip_punt_redirect_trace, |
| 123 | .n_errors = ARRAY_LEN(ip4_punt_redirect_error_strings), |
| 124 | .error_strings = ip4_punt_redirect_error_strings, |
| 125 | |
| 126 | /* edit / add dispositions here */ |
| 127 | .next_nodes = { |
| 128 | [IP_PUNT_REDIRECT_NEXT_DROP] = "ip4-drop", |
| 129 | [IP_PUNT_REDIRECT_NEXT_TX] = "ip4-rewrite", |
| 130 | [IP_PUNT_REDIRECT_NEXT_ARP] = "ip4-arp", |
| 131 | }, |
| 132 | }; |
| 133 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 134 | VNET_FEATURE_INIT (ip4_punt_redirect_node, static) = { |
| 135 | .arc_name = "ip4-punt", |
| 136 | .node_name = "ip4-punt-redirect", |
| 137 | .runs_before = VNET_FEATURES("error-punt"), |
| 138 | }; |
| 139 | /* *INDENT-ON* */ |
| 140 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 141 | VLIB_NODE_FN (ip4_drop_node) (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 142 | vlib_frame_t * frame) |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 143 | { |
| 144 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 145 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 146 | |
| 147 | return ip_drop_or_punt (vm, node, frame, |
| 148 | vnet_feat_arc_ip4_drop.feature_arc_index); |
| 149 | |
| 150 | } |
| 151 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 152 | VLIB_NODE_FN (ip4_not_enabled_node) (vlib_main_t * vm, |
| 153 | vlib_node_runtime_t * node, |
| 154 | vlib_frame_t * frame) |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 155 | { |
| 156 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 157 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 158 | |
| 159 | return ip_drop_or_punt (vm, node, frame, |
| 160 | vnet_feat_arc_ip4_drop.feature_arc_index); |
| 161 | } |
| 162 | |
| 163 | static uword |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 164 | ip4_punt (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 165 | { |
| 166 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 167 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 168 | |
| 169 | return ip_drop_or_punt (vm, node, frame, |
| 170 | vnet_feat_arc_ip4_punt.feature_arc_index); |
| 171 | } |
| 172 | |
| 173 | /* *INDENT-OFF* */ |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 174 | VLIB_REGISTER_NODE (ip4_drop_node) = |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 175 | { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 176 | .name = "ip4-drop", |
| 177 | .vector_size = sizeof (u32), |
| 178 | .format_trace = format_ip4_forward_next_trace, |
| 179 | .n_next_nodes = 1, |
| 180 | .next_nodes = { |
| 181 | [0] = "error-drop", |
| 182 | }, |
| 183 | }; |
| 184 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 185 | VLIB_REGISTER_NODE (ip4_not_enabled_node) = |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 186 | { |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 187 | .name = "ip4-not-enabled", |
| 188 | .vector_size = sizeof (u32), |
| 189 | .format_trace = format_ip4_forward_next_trace, |
Neale Ranns | 6bcc6a4 | 2019-10-15 15:47:55 +0000 | [diff] [blame] | 190 | .sibling_of = "ip4-drop", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 191 | }; |
| 192 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 193 | VLIB_REGISTER_NODE (ip4_punt_node) = |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 194 | { |
| 195 | .function = ip4_punt, |
| 196 | .name = "ip4-punt", |
| 197 | .vector_size = sizeof (u32), |
| 198 | .format_trace = format_ip4_forward_next_trace, |
| 199 | .n_next_nodes = 1, |
| 200 | .next_nodes = { |
| 201 | [0] = "error-punt", |
| 202 | }, |
| 203 | }; |
| 204 | |
| 205 | VNET_FEATURE_INIT (ip4_punt_end_of_arc, static) = { |
| 206 | .arc_name = "ip4-punt", |
| 207 | .node_name = "error-punt", |
| 208 | .runs_before = 0, /* not before any other features */ |
| 209 | }; |
| 210 | |
| 211 | VNET_FEATURE_INIT (ip4_drop_end_of_arc, static) = { |
| 212 | .arc_name = "ip4-drop", |
| 213 | .node_name = "error-drop", |
| 214 | .runs_before = 0, /* not before any other features */ |
| 215 | }; |
| 216 | /* *INDENT-ON */ |
| 217 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 218 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 219 | void |
| 220 | ip4_punt_policer_add_del (u8 is_add, u32 policer_index) |
| 221 | { |
| 222 | ip4_punt_policer_cfg.policer_index = policer_index; |
| 223 | |
| 224 | vnet_feature_enable_disable ("ip4-punt", "ip4-punt-policer", |
| 225 | 0, is_add, 0, 0); |
| 226 | } |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 227 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 228 | |
| 229 | static clib_error_t * |
| 230 | ip4_punt_police_cmd (vlib_main_t * vm, |
| 231 | unformat_input_t * main_input, |
| 232 | vlib_cli_command_t * cmd) |
| 233 | { |
| 234 | unformat_input_t _line_input, *line_input = &_line_input; |
| 235 | clib_error_t *error = 0; |
| 236 | u32 policer_index; |
| 237 | u8 is_add = 1; |
| 238 | |
| 239 | policer_index = ~0; |
| 240 | |
| 241 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
| 242 | return 0; |
| 243 | |
| 244 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 245 | { |
| 246 | if (unformat (line_input, "%d", &policer_index)) |
| 247 | ; |
| 248 | else if (unformat (line_input, "del")) |
| 249 | is_add = 0; |
| 250 | else if (unformat (line_input, "add")) |
| 251 | is_add = 1; |
| 252 | else |
| 253 | { |
| 254 | error = unformat_parse_error (line_input); |
| 255 | goto done; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | if (is_add && ~0 == policer_index) |
| 260 | { |
| 261 | error = clib_error_return (0, "expected policer index `%U'", |
| 262 | format_unformat_error, line_input); |
| 263 | goto done; |
| 264 | } |
| 265 | if (!is_add) |
| 266 | policer_index = ~0; |
| 267 | |
| 268 | ip4_punt_policer_add_del(is_add, policer_index); |
| 269 | |
| 270 | done: |
| 271 | unformat_free (line_input); |
| 272 | return (error); |
| 273 | } |
| 274 | |
| 275 | /*? |
| 276 | * |
| 277 | * @cliexpar |
| 278 | * @cliexcmd{set ip punt policer <INDEX>} |
| 279 | ?*/ |
| 280 | /* *INDENT-OFF* */ |
| 281 | VLIB_CLI_COMMAND (ip4_punt_policer_command, static) = |
| 282 | { |
| 283 | .path = "ip punt policer", |
| 284 | .function = ip4_punt_police_cmd, |
| 285 | .short_help = "ip punt policer [add|del] <index>", |
| 286 | }; |
| 287 | /* *INDENT-ON* */ |
| 288 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 289 | #ifndef CLIB_MARCH_VARIANT |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 290 | |
| 291 | void |
| 292 | ip4_punt_redirect_add (u32 rx_sw_if_index, |
| 293 | u32 tx_sw_if_index, ip46_address_t * nh) |
| 294 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 295 | /* *INDENT-OFF* */ |
| 296 | fib_route_path_t *rpaths = NULL, rpath = { |
| 297 | .frp_proto = DPO_PROTO_IP4, |
| 298 | .frp_addr = *nh, |
| 299 | .frp_sw_if_index = tx_sw_if_index, |
| 300 | .frp_weight = 1, |
| 301 | .frp_fib_index = ~0, |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 302 | }; |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 303 | /* *INDENT-ON* */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 304 | |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 305 | vec_add1 (rpaths, rpath); |
| 306 | |
| 307 | ip4_punt_redirect_add_paths (rx_sw_if_index, rpaths); |
| 308 | |
| 309 | vec_free (rpaths); |
| 310 | } |
| 311 | |
| 312 | void |
| 313 | ip4_punt_redirect_add_paths (u32 rx_sw_if_index, fib_route_path_t * rpaths) |
| 314 | { |
| 315 | ip_punt_redirect_add (FIB_PROTOCOL_IP4, |
| 316 | rx_sw_if_index, |
| 317 | FIB_FORW_CHAIN_TYPE_UNICAST_IP4, rpaths); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 318 | |
| 319 | vnet_feature_enable_disable ("ip4-punt", "ip4-punt-redirect", 0, 1, 0, 0); |
| 320 | } |
| 321 | |
| 322 | void |
| 323 | ip4_punt_redirect_del (u32 rx_sw_if_index) |
| 324 | { |
| 325 | vnet_feature_enable_disable ("ip4-punt", "ip4-punt-redirect", 0, 0, 0, 0); |
| 326 | |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 327 | ip_punt_redirect_del (FIB_PROTOCOL_IP4, rx_sw_if_index); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 328 | } |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 329 | #endif /* CLIB_MARCH_VARIANT */ |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 330 | |
| 331 | static clib_error_t * |
| 332 | ip4_punt_redirect_cmd (vlib_main_t * vm, |
| 333 | unformat_input_t * main_input, |
| 334 | vlib_cli_command_t * cmd) |
| 335 | { |
| 336 | unformat_input_t _line_input, *line_input = &_line_input; |
Mohsin Kazmi | a84cb71 | 2020-06-25 13:43:52 +0200 | [diff] [blame] | 337 | ip46_address_t nh = { 0 }; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 338 | clib_error_t *error = 0; |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 339 | u32 rx_sw_if_index = ~0; |
Mohsin Kazmi | a84cb71 | 2020-06-25 13:43:52 +0200 | [diff] [blame] | 340 | u32 tx_sw_if_index = ~0; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 341 | vnet_main_t *vnm; |
| 342 | u8 is_add; |
| 343 | |
| 344 | is_add = 1; |
| 345 | vnm = vnet_get_main (); |
| 346 | |
| 347 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
| 348 | return 0; |
| 349 | |
| 350 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 351 | { |
| 352 | if (unformat (line_input, "del")) |
| 353 | is_add = 0; |
| 354 | else if (unformat (line_input, "add")) |
| 355 | is_add = 1; |
| 356 | else if (unformat (line_input, "rx all")) |
| 357 | rx_sw_if_index = ~0; |
| 358 | else if (unformat (line_input, "rx %U", |
| 359 | unformat_vnet_sw_interface, vnm, &rx_sw_if_index)) |
| 360 | ; |
Mohsin Kazmi | a84cb71 | 2020-06-25 13:43:52 +0200 | [diff] [blame] | 361 | else if (unformat (line_input, "via %U %U", |
| 362 | unformat_ip4_address, unformat_vnet_sw_interface, |
| 363 | &nh.ip4, vnm, &tx_sw_if_index)) |
| 364 | ; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 365 | else if (unformat (line_input, "via %U", |
Mohsin Kazmi | a84cb71 | 2020-06-25 13:43:52 +0200 | [diff] [blame] | 366 | unformat_vnet_sw_interface, vnm, &tx_sw_if_index)) |
| 367 | ; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 368 | else |
| 369 | { |
| 370 | error = unformat_parse_error (line_input); |
| 371 | goto done; |
| 372 | } |
| 373 | } |
| 374 | |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 375 | if (~0 == rx_sw_if_index) |
| 376 | { |
| 377 | error = unformat_parse_error (line_input); |
| 378 | goto done; |
| 379 | } |
| 380 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 381 | if (is_add) |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 382 | { |
Mohsin Kazmi | a84cb71 | 2020-06-25 13:43:52 +0200 | [diff] [blame] | 383 | ip4_punt_redirect_add (rx_sw_if_index, tx_sw_if_index, &nh); |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 384 | } |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 385 | else |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 386 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 387 | ip4_punt_redirect_del (rx_sw_if_index); |
Swarup Nayak | ecf844c | 2017-12-11 13:52:44 +0530 | [diff] [blame] | 388 | } |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 389 | |
| 390 | done: |
| 391 | unformat_free (line_input); |
| 392 | return (error); |
| 393 | } |
| 394 | |
| 395 | /*? |
| 396 | * |
| 397 | * @cliexpar |
| 398 | * @cliexcmd{set ip punt policer} |
| 399 | ?*/ |
| 400 | /* *INDENT-OFF* */ |
| 401 | VLIB_CLI_COMMAND (ip4_punt_redirect_command, static) = |
| 402 | { |
| 403 | .path = "ip punt redirect", |
| 404 | .function = ip4_punt_redirect_cmd, |
| 405 | .short_help = "ip punt redirect [add|del] rx [<interface>|all] via [<nh>] <tx_interface>", |
| 406 | }; |
| 407 | /* *INDENT-ON* */ |
| 408 | |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 409 | static clib_error_t * |
| 410 | ip4_punt_redirect_show_cmd (vlib_main_t * vm, |
| 411 | unformat_input_t * main_input, |
| 412 | vlib_cli_command_t * cmd) |
| 413 | { |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 414 | vlib_cli_output (vm, "%U", format_ip_punt_redirect, FIB_PROTOCOL_IP4); |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 415 | |
| 416 | return (NULL); |
| 417 | } |
| 418 | |
| 419 | /*? |
| 420 | * |
| 421 | * @cliexpar |
| 422 | * @cliexcmd{set ip punt redierect} |
| 423 | ?*/ |
| 424 | /* *INDENT-OFF* */ |
| 425 | VLIB_CLI_COMMAND (show_ip4_punt_redirect_command, static) = |
| 426 | { |
| 427 | .path = "show ip punt redirect", |
| 428 | .function = ip4_punt_redirect_show_cmd, |
Swarup Nayak | a3611a7 | 2017-12-06 18:55:43 +0530 | [diff] [blame] | 429 | .short_help = "show ip punt redirect", |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 430 | .is_mp_safe = 1, |
| 431 | }; |
| 432 | /* *INDENT-ON* */ |
| 433 | |
| 434 | /* |
| 435 | * fd.io coding-style-patch-verification: ON |
| 436 | * |
| 437 | * Local Variables: |
| 438 | * eval: (c-set-style "gnu") |
| 439 | * End: |
| 440 | */ |