Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -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 | /* |
Paul Vinciguerra | 5b755e2 | 2019-10-26 19:34:40 -0400 | [diff] [blame] | 16 | * ip/ip_lookup.c: ip4/6 adjacency and lookup table management |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | #include <vnet/ip/ip.h> |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 41 | #include <vnet/adj/adj.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 42 | #include <vnet/fib/fib_table.h> |
| 43 | #include <vnet/fib/ip4_fib.h> |
| 44 | #include <vnet/fib/ip6_fib.h> |
| 45 | #include <vnet/mpls/mpls.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 46 | #include <vnet/mfib/mfib_table.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 47 | #include <vnet/dpo/drop_dpo.h> |
| 48 | #include <vnet/dpo/classify_dpo.h> |
| 49 | #include <vnet/dpo/punt_dpo.h> |
| 50 | #include <vnet/dpo/receive_dpo.h> |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 51 | #include <vnet/dpo/ip_null_dpo.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 53 | /** |
| 54 | * @file |
Paul Vinciguerra | 5b755e2 | 2019-10-26 19:34:40 -0400 | [diff] [blame] | 55 | * @brief IPv4 and IPv6 adjacency and lookup table management. |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 56 | * |
| 57 | */ |
| 58 | |
Neale Ranns | d96bad8 | 2017-03-08 01:12:54 -0800 | [diff] [blame] | 59 | static clib_error_t * |
| 60 | ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) |
| 61 | { |
| 62 | vec_validate_init_empty (ip4_main. |
| 63 | lookup_main.if_address_pool_index_by_sw_if_index, |
| 64 | sw_if_index, ~0); |
| 65 | vec_validate_init_empty (ip6_main. |
| 66 | lookup_main.if_address_pool_index_by_sw_if_index, |
| 67 | sw_if_index, ~0); |
| 68 | |
| 69 | return (NULL); |
| 70 | } |
| 71 | |
| 72 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del); |
| 73 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 74 | void |
| 75 | ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 77 | if (!lm->fib_result_n_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | lm->fib_result_n_bytes = sizeof (uword); |
| 79 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | lm->is_ip6 = is_ip6; |
Matthew Smith | 6c92f5b | 2019-08-07 11:46:30 -0500 | [diff] [blame] | 81 | mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword), |
| 82 | sizeof (ip_interface_prefix_key_t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | if (is_ip6) |
| 84 | { |
| 85 | lm->format_address_and_length = format_ip6_address_and_length; |
| 86 | mhash_init (&lm->address_to_if_address_index, sizeof (uword), |
| 87 | sizeof (ip6_address_fib_t)); |
| 88 | } |
| 89 | else |
| 90 | { |
| 91 | lm->format_address_and_length = format_ip4_address_and_length; |
| 92 | mhash_init (&lm->address_to_if_address_index, sizeof (uword), |
| 93 | sizeof (ip4_address_fib_t)); |
| 94 | } |
| 95 | |
| 96 | { |
| 97 | int i; |
| 98 | |
| 99 | /* Setup all IP protocols to be punted and builtin-unknown. */ |
| 100 | for (i = 0; i < 256; i++) |
| 101 | { |
| 102 | lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT; |
| 103 | lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN; |
| 104 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | |
| 106 | lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 107 | lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 : |
| 108 | IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP; |
| 109 | lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] = |
| 110 | IP_BUILTIN_PROTOCOL_UDP; |
| 111 | lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 : |
| 112 | IP_PROTOCOL_ICMP] = |
| 113 | IP_BUILTIN_PROTOCOL_ICMP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 117 | u8 * |
| 118 | format_ip_flow_hash_config (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 120 | flow_hash_config_t flow_hash_config = va_arg (*args, u32); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 121 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | #define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n); |
| 123 | foreach_flow_hash_bit; |
| 124 | #undef _ |
| 125 | |
| 126 | return s; |
| 127 | } |
| 128 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 129 | u8 * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 130 | format_ip_adjacency_packet_data (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 132 | u8 *packet_data = va_arg (*args, u8 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 133 | u32 n_packet_data_bytes = va_arg (*args, u32); |
BenoƮt Ganne | 138c37a | 2019-07-18 17:34:28 +0200 | [diff] [blame] | 134 | |
Neale Ranns | 0b6a857 | 2019-10-30 17:34:14 +0000 | [diff] [blame] | 135 | s = format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
| 137 | return s; |
| 138 | } |
| 139 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 140 | static uword |
| 141 | unformat_dpo (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 143 | dpo_id_t *dpo = va_arg (*args, dpo_id_t *); |
| 144 | fib_protocol_t fp = va_arg (*args, int); |
| 145 | dpo_proto_t proto; |
| 146 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 147 | proto = fib_proto_to_dpo (fp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | |
| 149 | if (unformat (input, "drop")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 150 | dpo_copy (dpo, drop_dpo_get (proto)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | else if (unformat (input, "punt")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 152 | dpo_copy (dpo, punt_dpo_get (proto)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | else if (unformat (input, "local")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 154 | receive_dpo_add_or_lock (proto, ~0, NULL, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 155 | else if (unformat (input, "null-send-unreach")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 156 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 157 | else if (unformat (input, "null-send-prohibit")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 158 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 159 | else if (unformat (input, "null")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 160 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | else if (unformat (input, "classify")) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 162 | { |
| 163 | u32 classify_table_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 165 | if (!unformat (input, "%d", &classify_table_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 166 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 167 | clib_warning ("classify adj must specify table index"); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 168 | return 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 171 | dpo_set (dpo, DPO_CLASSIFY, proto, |
| 172 | classify_dpo_create (proto, classify_table_index)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 173 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | else |
| 175 | return 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 176 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | return 1; |
| 178 | } |
| 179 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 180 | const ip46_address_t zero_addr = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 181 | .as_u64 = { |
| 182 | 0, 0}, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 183 | }; |
| 184 | |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 185 | static clib_error_t * |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 186 | vnet_ip_route_cmd (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 187 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 189 | unformat_input_t _line_input, *line_input = &_line_input; |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 190 | u32 table_id, is_del, fib_index, payload_proto; |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 191 | dpo_id_t dpo = DPO_INVALID, *dpos = NULL; |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 192 | fib_route_path_t *rpaths = NULL, rpath; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 193 | fib_prefix_t *prefixs = NULL, pfx; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 194 | clib_error_t *error = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | f64 count; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 196 | int i; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | |
| 198 | is_del = 0; |
| 199 | table_id = 0; |
| 200 | count = 1; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 201 | clib_memset (&pfx, 0, sizeof (pfx)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | |
| 203 | /* Get a line of input. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 204 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | return 0; |
| 206 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 208 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 209 | clib_memset (&rpath, 0, sizeof (rpath)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 210 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | if (unformat (line_input, "table %d", &table_id)) |
| 212 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 213 | else if (unformat (line_input, "count %f", &count)) |
| 214 | ; |
| 215 | |
| 216 | else if (unformat (line_input, "%U/%d", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 217 | unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len)) |
| 218 | { |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 219 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 220 | vec_add1 (prefixs, pfx); |
| 221 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | else if (unformat (line_input, "%U/%d", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 223 | unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len)) |
| 224 | { |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 225 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 226 | vec_add1 (prefixs, pfx); |
| 227 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 228 | else if (unformat (line_input, "via %U", |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 229 | unformat_fib_route_path, &rpath, &payload_proto)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 230 | { |
Neale Ranns | 8c2f05c | 2016-12-12 19:35:58 +0000 | [diff] [blame] | 231 | vec_add1 (rpaths, rpath); |
| 232 | } |
| 233 | else if (vec_len (prefixs) > 0 && |
| 234 | unformat (line_input, "via %U", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 235 | unformat_dpo, &dpo, prefixs[0].fp_proto)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 236 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 237 | vec_add1 (dpos, dpo); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 238 | } |
pragash | 352829f | 2017-08-17 22:53:24 -0400 | [diff] [blame] | 239 | else if (unformat (line_input, "del")) |
| 240 | is_del = 1; |
| 241 | else if (unformat (line_input, "add")) |
| 242 | is_del = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 244 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 245 | error = unformat_parse_error (line_input); |
| 246 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 247 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 249 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 250 | if (vec_len (prefixs) == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 251 | { |
| 252 | error = |
| 253 | clib_error_return (0, "expected ip4/ip6 destination address/length."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 254 | goto done; |
| 255 | } |
| 256 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 257 | if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 258 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 259 | error = clib_error_return (0, "expected paths."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | goto done; |
| 261 | } |
| 262 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 263 | if (~0 == table_id) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 264 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 265 | /* |
| 266 | * if no table_id is passed we will manipulate the default |
| 267 | */ |
| 268 | fib_index = 0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 269 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 270 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 271 | { |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 272 | fib_index = fib_table_find (prefixs[0].fp_proto, table_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 274 | if (~0 == fib_index) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 275 | { |
| 276 | error = clib_error_return (0, "Nonexistent table id %d", table_id); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 277 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 278 | } |
| 279 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 280 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 281 | for (i = 0; i < vec_len (prefixs); i++) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 282 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 283 | if (is_del && 0 == vec_len (rpaths)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 284 | { |
| 285 | fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI); |
| 286 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 287 | else if (!is_del && 1 == vec_len (dpos)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 288 | { |
| 289 | fib_table_entry_special_dpo_add (fib_index, |
| 290 | &prefixs[i], |
| 291 | FIB_SOURCE_CLI, |
| 292 | FIB_ENTRY_FLAG_EXCLUSIVE, |
| 293 | &dpos[0]); |
| 294 | dpo_reset (&dpos[0]); |
| 295 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 296 | else if (vec_len (dpos) > 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 297 | { |
| 298 | error = |
| 299 | clib_error_return (0, |
| 300 | "Load-balancing over multiple special adjacencies is unsupported"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 301 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 302 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 303 | else if (0 < vec_len (rpaths)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 304 | { |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 305 | u32 k, n, incr; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 306 | ip46_address_t dst = prefixs[i].fp_addr; |
| 307 | f64 t[2]; |
| 308 | n = count; |
| 309 | t[0] = vlib_time_now (vm); |
| 310 | incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) - |
| 311 | prefixs[i].fp_len); |
| 312 | |
| 313 | for (k = 0; k < n; k++) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 314 | { |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 315 | fib_prefix_t rpfx = { |
| 316 | .fp_len = prefixs[i].fp_len, |
| 317 | .fp_proto = prefixs[i].fp_proto, |
| 318 | .fp_addr = dst, |
| 319 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 320 | |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 321 | if (is_del) |
| 322 | fib_table_entry_path_remove2 (fib_index, |
| 323 | &rpfx, FIB_SOURCE_CLI, rpaths); |
| 324 | else |
| 325 | fib_table_entry_path_add2 (fib_index, |
| 326 | &rpfx, |
| 327 | FIB_SOURCE_CLI, |
| 328 | FIB_ENTRY_FLAG_NONE, rpaths); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 329 | |
| 330 | if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 331 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 332 | dst.ip4.as_u32 = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 333 | clib_host_to_net_u32 (incr + |
| 334 | clib_net_to_host_u32 (dst. |
| 335 | ip4.as_u32)); |
| 336 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 337 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 338 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 339 | int bucket = (incr < 64 ? 0 : 1); |
| 340 | dst.ip6.as_u64[bucket] = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 341 | clib_host_to_net_u64 (incr + |
| 342 | clib_net_to_host_u64 (dst.ip6.as_u64 |
| 343 | [bucket])); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 344 | } |
| 345 | } |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 346 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 347 | t[1] = vlib_time_now (vm); |
| 348 | if (count > 1) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 349 | vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0])); |
| 350 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 351 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 352 | { |
| 353 | error = clib_error_return (0, "Don't understand what you want..."); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 354 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 355 | } |
| 356 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 357 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 358 | done: |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 359 | vec_free (dpos); |
| 360 | vec_free (prefixs); |
| 361 | vec_free (rpaths); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 362 | unformat_free (line_input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | return error; |
| 364 | } |
| 365 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 366 | clib_error_t * |
| 367 | vnet_ip_table_cmd (vlib_main_t * vm, |
| 368 | unformat_input_t * main_input, |
| 369 | vlib_cli_command_t * cmd, fib_protocol_t fproto) |
| 370 | { |
| 371 | unformat_input_t _line_input, *line_input = &_line_input; |
| 372 | clib_error_t *error = NULL; |
| 373 | u32 table_id, is_add; |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 374 | u8 *name = NULL; |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 375 | |
| 376 | is_add = 1; |
| 377 | table_id = ~0; |
| 378 | |
| 379 | /* Get a line of input. */ |
| 380 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
| 381 | return 0; |
| 382 | |
| 383 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 384 | { |
| 385 | if (unformat (line_input, "%d", &table_id)) |
| 386 | ; |
| 387 | else if (unformat (line_input, "del")) |
| 388 | is_add = 0; |
| 389 | else if (unformat (line_input, "add")) |
| 390 | is_add = 1; |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 391 | else if (unformat (line_input, "name %s", &name)) |
| 392 | ; |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 393 | else |
| 394 | { |
| 395 | error = unformat_parse_error (line_input); |
| 396 | goto done; |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | if (~0 == table_id) |
| 401 | { |
| 402 | error = clib_error_return (0, "No table id"); |
| 403 | goto done; |
| 404 | } |
| 405 | else if (0 == table_id) |
| 406 | { |
| 407 | error = clib_error_return (0, "Can't change the default table"); |
| 408 | goto done; |
| 409 | } |
| 410 | else |
| 411 | { |
| 412 | if (is_add) |
| 413 | { |
Neale Ranns | 2297af0 | 2017-09-12 09:45:04 -0700 | [diff] [blame] | 414 | ip_table_create (fproto, table_id, 0, name); |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 415 | } |
| 416 | else |
| 417 | { |
| 418 | ip_table_delete (fproto, table_id, 0); |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | done: |
| 423 | unformat_free (line_input); |
| 424 | return error; |
| 425 | } |
| 426 | |
| 427 | clib_error_t * |
| 428 | vnet_ip4_table_cmd (vlib_main_t * vm, |
| 429 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
| 430 | { |
| 431 | return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4)); |
| 432 | } |
| 433 | |
| 434 | clib_error_t * |
| 435 | vnet_ip6_table_cmd (vlib_main_t * vm, |
| 436 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
| 437 | { |
| 438 | return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6)); |
| 439 | } |
| 440 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 441 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 442 | VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = { |
| 443 | .path = "ip", |
| 444 | .short_help = "Internet protocol (IP) commands", |
| 445 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 446 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 447 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 448 | /* *INDENT-OFF* */ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 449 | VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = { |
| 450 | .path = "ip6", |
| 451 | .short_help = "Internet protocol version 6 (IPv6) commands", |
| 452 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 453 | /* *INDENT-ON* */ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 454 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 455 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 456 | VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = { |
| 457 | .path = "show ip", |
| 458 | .short_help = "Internet protocol (IP) show commands", |
| 459 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 460 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 462 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 463 | VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = { |
| 464 | .path = "show ip6", |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 465 | .short_help = "Internet protocol version 6 (IPv6) show commands", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 466 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 467 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 469 | /*? |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 470 | * This command is used to add or delete IPv4 or IPv6 routes. All |
| 471 | * IP Addresses ('<em><dst-ip-addr>/<width></em>', |
| 472 | * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>') |
| 473 | * can be IPv4 or IPv6, but all must be of the same form in a single |
| 474 | * command. To display the current set of routes, use the commands |
| 475 | * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'. |
| 476 | * |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 477 | * @cliexpar |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 478 | * Example of how to add a straight forward static route: |
| 479 | * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0} |
| 480 | * Example of how to delete a straight forward static route: |
| 481 | * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 482 | * Mainly for route add/del performance testing, one can add or delete |
| 483 | * multiple routes by adding 'count N' to the previous item: |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 484 | * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 485 | * Add multiple routes for the same destination to create equal-cost multipath: |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 486 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0} |
| 487 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0} |
| 488 | * For unequal-cost multipath, specify the desired weights. This |
| 489 | * combination of weights results in 3/4 of the traffic following the |
| 490 | * second path, 1/4 following the first path: |
| 491 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1} |
| 492 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3} |
| 493 | * To add a route to a particular FIB table (VRF), use: |
| 494 | * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 495 | ?*/ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 496 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 497 | VLIB_CLI_COMMAND (ip_route_command, static) = { |
| 498 | .path = "ip route", |
Neale Ranns | 70ed8ae | 2017-11-15 12:54:46 -0800 | [diff] [blame] | 499 | .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 500 | .function = vnet_ip_route_cmd, |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 501 | .is_mp_safe = 1, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 502 | }; |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 503 | |
| 504 | /* *INDENT-ON* */ |
| 505 | /*? |
| 506 | * This command is used to add or delete IPv4 Tables. All |
| 507 | * Tables must be explicitly added before that can be used. Creating a |
| 508 | * table will add both unicast and multicast FIBs |
| 509 | * |
| 510 | ?*/ |
| 511 | /* *INDENT-OFF* */ |
| 512 | VLIB_CLI_COMMAND (ip4_table_command, static) = { |
| 513 | .path = "ip table", |
| 514 | .short_help = "ip table [add|del] <table-id>", |
| 515 | .function = vnet_ip4_table_cmd, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 516 | }; |
| 517 | /* *INDENT-ON* */ |
| 518 | |
| 519 | /* *INDENT-ON* */ |
| 520 | /*? |
| 521 | * This command is used to add or delete IPv4 Tables. All |
| 522 | * Tables must be explicitly added before that can be used. Creating a |
| 523 | * table will add both unicast and multicast FIBs |
| 524 | * |
| 525 | ?*/ |
| 526 | /* *INDENT-OFF* */ |
| 527 | VLIB_CLI_COMMAND (ip6_table_command, static) = { |
| 528 | .path = "ip6 table", |
| 529 | .short_help = "ip6 table [add|del] <table-id>", |
| 530 | .function = vnet_ip6_table_cmd, |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 531 | }; |
| 532 | |
| 533 | static clib_error_t * |
| 534 | ip_table_bind_cmd (vlib_main_t * vm, |
| 535 | unformat_input_t * input, |
| 536 | vlib_cli_command_t * cmd, |
| 537 | fib_protocol_t fproto) |
| 538 | { |
| 539 | vnet_main_t *vnm = vnet_get_main (); |
| 540 | clib_error_t *error = 0; |
| 541 | u32 sw_if_index, table_id; |
| 542 | int rv; |
| 543 | |
| 544 | sw_if_index = ~0; |
| 545 | |
| 546 | if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 547 | { |
| 548 | error = clib_error_return (0, "unknown interface `%U'", |
| 549 | format_unformat_error, input); |
| 550 | goto done; |
| 551 | } |
| 552 | |
| 553 | if (unformat (input, "%d", &table_id)) |
| 554 | ; |
| 555 | else |
| 556 | { |
| 557 | error = clib_error_return (0, "expected table id `%U'", |
| 558 | format_unformat_error, input); |
| 559 | goto done; |
| 560 | } |
| 561 | |
| 562 | rv = ip_table_bind (fproto, sw_if_index, table_id, 0); |
| 563 | |
| 564 | if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv) |
| 565 | { |
| 566 | error = clib_error_return (0, "IP addresses are still present on %U", |
| 567 | format_vnet_sw_if_index_name, |
| 568 | vnet_get_main(), |
| 569 | sw_if_index); |
| 570 | } |
| 571 | else if (VNET_API_ERROR_NO_SUCH_FIB == rv) |
| 572 | { |
| 573 | error = clib_error_return (0, "no such table %d", table_id); |
| 574 | } |
| 575 | else if (0 != rv) |
| 576 | { |
| 577 | error = clib_error_return (0, "unknown error"); |
| 578 | } |
| 579 | |
| 580 | done: |
| 581 | return error; |
| 582 | } |
| 583 | |
| 584 | static clib_error_t * |
| 585 | ip4_table_bind_cmd (vlib_main_t * vm, |
| 586 | unformat_input_t * input, |
| 587 | vlib_cli_command_t * cmd) |
| 588 | { |
| 589 | return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4)); |
| 590 | } |
| 591 | |
| 592 | static clib_error_t * |
| 593 | ip6_table_bind_cmd (vlib_main_t * vm, |
| 594 | unformat_input_t * input, |
| 595 | vlib_cli_command_t * cmd) |
| 596 | { |
| 597 | return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6)); |
| 598 | } |
| 599 | |
| 600 | /*? |
| 601 | * Place the indicated interface into the supplied IPv4 FIB table (also known |
Yichen Wang | 5c482a9 | 2018-08-02 17:12:01 -0700 | [diff] [blame] | 602 | * as a VRF). The FIB table must be created using "ip table add" already. To |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 603 | * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'. |
| 604 | * FIB table will only be displayed if a route has been added to the table, or |
| 605 | * an IP Address is assigned to an interface in the table (which adds a route |
| 606 | * automatically). |
| 607 | * |
| 608 | * @note IP addresses added after setting the interface IP table are added to |
| 609 | * the indicated FIB table. If an IP address is added prior to changing the |
| 610 | * table then this is an error. The control plane must remove these addresses |
| 611 | * first and then change the table. VPP will not automatically move the |
| 612 | * addresses from the old to the new table as it does not know the validity |
| 613 | * of such a change. |
| 614 | * |
| 615 | * @cliexpar |
| 616 | * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id): |
| 617 | * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2} |
| 618 | ?*/ |
| 619 | /* *INDENT-OFF* */ |
| 620 | VLIB_CLI_COMMAND (set_interface_ip_table_command, static) = |
| 621 | { |
| 622 | .path = "set interface ip table", |
| 623 | .function = ip4_table_bind_cmd, |
| 624 | .short_help = "set interface ip table <interface> <table-id>", |
| 625 | }; |
| 626 | /* *INDENT-ON* */ |
| 627 | |
| 628 | /*? |
| 629 | * Place the indicated interface into the supplied IPv6 FIB table (also known |
Yichen Wang | 5c482a9 | 2018-08-02 17:12:01 -0700 | [diff] [blame] | 630 | * as a VRF). The FIB table must be created using "ip6 table add" already. To |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 631 | * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'. |
| 632 | * FIB table will only be displayed if a route has been added to the table, or |
| 633 | * an IP Address is assigned to an interface in the table (which adds a route |
| 634 | * automatically). |
| 635 | * |
| 636 | * @note IP addresses added after setting the interface IP table are added to |
| 637 | * the indicated FIB table. If an IP address is added prior to changing the |
| 638 | * table then this is an error. The control plane must remove these addresses |
| 639 | * first and then change the table. VPP will not automatically move the |
| 640 | * addresses from the old to the new table as it does not know the validity |
| 641 | * of such a change. |
| 642 | * |
| 643 | * @cliexpar |
| 644 | * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id): |
| 645 | * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2} |
| 646 | ?*/ |
| 647 | /* *INDENT-OFF* */ |
| 648 | VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) = |
| 649 | { |
| 650 | .path = "set interface ip6 table", |
| 651 | .function = ip6_table_bind_cmd, |
| 652 | .short_help = "set interface ip6 table <interface> <table-id>" |
| 653 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 654 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 655 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 656 | clib_error_t * |
| 657 | vnet_ip_mroute_cmd (vlib_main_t * vm, |
| 658 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
| 659 | { |
| 660 | unformat_input_t _line_input, *line_input = &_line_input; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 661 | fib_route_path_t rpath, *rpaths = NULL; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 662 | clib_error_t *error = NULL; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 663 | u32 table_id, is_del, payload_proto; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 664 | mfib_prefix_t pfx; |
| 665 | u32 fib_index; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 666 | mfib_entry_flags_t eflags = 0; |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 667 | u32 gcount, scount, ss, gg, incr; |
| 668 | f64 timet[2]; |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 669 | u32 rpf_id = MFIB_RPF_ID_NONE; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 670 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 671 | gcount = scount = 1; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 672 | is_del = 0; |
| 673 | table_id = 0; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 674 | clib_memset (&pfx, 0, sizeof (pfx)); |
| 675 | clib_memset (&rpath, 0, sizeof (rpath)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 676 | rpath.frp_sw_if_index = ~0; |
| 677 | |
| 678 | /* Get a line of input. */ |
| 679 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
| 680 | return 0; |
| 681 | |
| 682 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 683 | { |
| 684 | if (unformat (line_input, "table %d", &table_id)) |
| 685 | ; |
| 686 | else if (unformat (line_input, "del")) |
| 687 | is_del = 1; |
| 688 | else if (unformat (line_input, "add")) |
| 689 | is_del = 0; |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 690 | else if (unformat (line_input, "rpf-id %d", &rpf_id)) |
| 691 | ; |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 692 | else if (unformat (line_input, "scount %d", &scount)) |
| 693 | ; |
| 694 | else if (unformat (line_input, "gcount %d", &gcount)) |
| 695 | ; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 696 | else if (unformat (line_input, "%U %U", |
| 697 | unformat_ip4_address, |
| 698 | &pfx.fp_src_addr.ip4, |
| 699 | unformat_ip4_address, &pfx.fp_grp_addr.ip4)) |
| 700 | { |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 701 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 702 | pfx.fp_len = 64; |
| 703 | } |
| 704 | else if (unformat (line_input, "%U %U", |
| 705 | unformat_ip6_address, |
| 706 | &pfx.fp_src_addr.ip6, |
| 707 | unformat_ip6_address, &pfx.fp_grp_addr.ip6)) |
| 708 | { |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 709 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 710 | pfx.fp_len = 256; |
| 711 | } |
| 712 | else if (unformat (line_input, "%U/%d", |
| 713 | unformat_ip4_address, |
| 714 | &pfx.fp_grp_addr.ip4, &pfx.fp_len)) |
| 715 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 716 | clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4)); |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 717 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 718 | } |
| 719 | else if (unformat (line_input, "%U/%d", |
| 720 | unformat_ip6_address, |
| 721 | &pfx.fp_grp_addr.ip6, &pfx.fp_len)) |
| 722 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 723 | clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6)); |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 724 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 725 | } |
| 726 | else if (unformat (line_input, "%U", |
| 727 | unformat_ip4_address, &pfx.fp_grp_addr.ip4)) |
| 728 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 729 | clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4)); |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 730 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 731 | pfx.fp_len = 32; |
| 732 | } |
| 733 | else if (unformat (line_input, "%U", |
| 734 | unformat_ip6_address, &pfx.fp_grp_addr.ip6)) |
| 735 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 736 | clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6)); |
Elias Rudberg | 224735b | 2020-06-04 00:15:45 +0200 | [diff] [blame] | 737 | payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 738 | pfx.fp_len = 128; |
| 739 | } |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 740 | else if (unformat (line_input, "via local Forward")) |
Neale Ranns | 5d85f2d | 2017-05-02 10:17:17 -0700 | [diff] [blame] | 741 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 742 | clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr)); |
Neale Ranns | 5d85f2d | 2017-05-02 10:17:17 -0700 | [diff] [blame] | 743 | rpath.frp_sw_if_index = ~0; |
| 744 | rpath.frp_weight = 1; |
| 745 | rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL; |
Neale Ranns | 3743999 | 2018-05-30 02:08:32 -0400 | [diff] [blame] | 746 | /* |
| 747 | * set the path proto appropriately for the prefix |
| 748 | */ |
| 749 | rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto); |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 750 | rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD; |
Neale Ranns | eacc8c5 | 2019-10-01 09:49:53 -0700 | [diff] [blame] | 751 | |
| 752 | vec_add1 (rpaths, rpath); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 753 | } |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 754 | else if (unformat (line_input, "via %U", |
| 755 | unformat_fib_route_path, &rpath, &payload_proto)) |
| 756 | { |
| 757 | vec_add1 (rpaths, rpath); |
| 758 | } |
| 759 | else if (unformat (line_input, "%U", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 760 | unformat_mfib_entry_flags, &eflags)) |
| 761 | ; |
| 762 | else |
| 763 | { |
| 764 | error = unformat_parse_error (line_input); |
| 765 | goto done; |
| 766 | } |
| 767 | } |
| 768 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 769 | if (~0 == table_id) |
| 770 | { |
| 771 | /* |
| 772 | * if no table_id is passed we will manipulate the default |
| 773 | */ |
| 774 | fib_index = 0; |
| 775 | } |
| 776 | else |
| 777 | { |
| 778 | fib_index = mfib_table_find (pfx.fp_proto, table_id); |
| 779 | |
| 780 | if (~0 == fib_index) |
| 781 | { |
| 782 | error = clib_error_return (0, "Nonexistent table id %d", table_id); |
| 783 | goto done; |
| 784 | } |
| 785 | } |
| 786 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 787 | timet[0] = vlib_time_now (vm); |
| 788 | |
| 789 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 790 | { |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 791 | incr = 1 << (32 - (pfx.fp_len % 32)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 792 | } |
| 793 | else |
| 794 | { |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 795 | incr = 1 << (128 - (pfx.fp_len % 128)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 796 | } |
| 797 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 798 | for (ss = 0; ss < scount; ss++) |
| 799 | { |
| 800 | for (gg = 0; gg < gcount; gg++) |
| 801 | { |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 802 | if (is_del && 0 == vec_len (rpaths)) |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 803 | { |
| 804 | /* no path provided => route delete */ |
| 805 | mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI); |
| 806 | } |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 807 | else if (eflags || (MFIB_RPF_ID_NONE != rpf_id)) |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 808 | { |
| 809 | mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI, |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 810 | rpf_id, eflags); |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 811 | } |
| 812 | else |
| 813 | { |
| 814 | if (is_del) |
| 815 | mfib_table_entry_path_remove (fib_index, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 816 | &pfx, MFIB_SOURCE_CLI, rpaths); |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 817 | else |
| 818 | mfib_table_entry_path_update (fib_index, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 819 | &pfx, MFIB_SOURCE_CLI, rpaths); |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
| 823 | { |
| 824 | pfx.fp_grp_addr.ip4.as_u32 = |
| 825 | clib_host_to_net_u32 (incr + |
| 826 | clib_net_to_host_u32 (pfx. |
| 827 | fp_grp_addr.ip4. |
| 828 | as_u32)); |
| 829 | } |
| 830 | else |
| 831 | { |
| 832 | int bucket = (incr < 64 ? 0 : 1); |
| 833 | pfx.fp_grp_addr.ip6.as_u64[bucket] = |
| 834 | clib_host_to_net_u64 (incr + |
| 835 | clib_net_to_host_u64 (pfx. |
| 836 | fp_grp_addr.ip6.as_u64 |
| 837 | [bucket])); |
| 838 | |
| 839 | } |
| 840 | } |
| 841 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
| 842 | { |
| 843 | pfx.fp_src_addr.ip4.as_u32 = |
| 844 | clib_host_to_net_u32 (1 + |
| 845 | clib_net_to_host_u32 (pfx.fp_src_addr. |
| 846 | ip4.as_u32)); |
| 847 | } |
| 848 | else |
| 849 | { |
| 850 | pfx.fp_src_addr.ip6.as_u64[1] = |
| 851 | clib_host_to_net_u64 (1 + |
| 852 | clib_net_to_host_u64 (pfx.fp_src_addr. |
| 853 | ip6.as_u64[1])); |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | timet[1] = vlib_time_now (vm); |
| 858 | |
| 859 | if (scount > 1 || gcount > 1) |
| 860 | vlib_cli_output (vm, "%.6e routes/sec", |
| 861 | (scount * gcount) / (timet[1] - timet[0])); |
| 862 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 863 | done: |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 864 | vec_free (rpaths); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 865 | unformat_free (line_input); |
| 866 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 867 | return error; |
| 868 | } |
| 869 | |
| 870 | /*? |
Paul Vinciguerra | 5b755e2 | 2019-10-26 19:34:40 -0400 | [diff] [blame] | 871 | * This command is used to add or delete IPv4 or IPv6 multicast routes. All |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 872 | * IP Addresses ('<em><dst-ip-addr>/<width></em>', |
| 873 | * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>') |
| 874 | * can be IPv4 or IPv6, but all must be of the same form in a single |
| 875 | * command. To display the current set of routes, use the commands |
| 876 | * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'. |
| 877 | * The full set of support flags for interfaces and route is shown via; |
| 878 | * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>' |
| 879 | * respectively. |
| 880 | * @cliexpar |
| 881 | * Example of how to add a forwarding interface to a route (and create the |
| 882 | * route if it does not exist) |
| 883 | * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward} |
| 884 | * Example of how to add an accepting interface to a route (and create the |
| 885 | * route if it does not exist) |
| 886 | * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept} |
| 887 | * Example of changing the route's flags to send signals via the API |
| 888 | * @cliexcmd{ip mroute add 232.1.1.1 Signal} |
| 889 | |
| 890 | ?*/ |
| 891 | /* *INDENT-OFF* */ |
| 892 | VLIB_CLI_COMMAND (ip_mroute_command, static) = |
| 893 | { |
| 894 | .path = "ip mroute", |
Neale Ranns | ad69c1f | 2018-12-05 16:39:45 +0000 | [diff] [blame] | 895 | .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [rpf-id <ID>] [via <next-hop-ip-addr> [<interface>],", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 896 | .function = vnet_ip_mroute_cmd, |
| 897 | .is_mp_safe = 1, |
| 898 | }; |
| 899 | /* *INDENT-ON* */ |
| 900 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 901 | /* |
| 902 | * fd.io coding-style-patch-verification: ON |
| 903 | * |
| 904 | * Local Variables: |
| 905 | * eval: (c-set-style "gnu") |
| 906 | * End: |
| 907 | */ |