blob: 192c4c7cebcc0a68b97bd2c4fd37e883f82287f9 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -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/*
Paul Vinciguerra5b755e22019-10-26 19:34:40 -040016 * ip/ip_lookup.c: ip4/6 adjacency and lookup table management
Ed Warnickecb9cada2015-12-08 15:45:58 -070017 *
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 Warnickecb9cada2015-12-08 15:45:58 -070040#include <vnet/ip/ip.h>
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010041#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042#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 Ranns32e1c012016-11-22 17:07:28 +000046#include <vnet/mfib/mfib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047#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 Ranns948e00f2016-10-20 13:39:34 +010051#include <vnet/dpo/ip_null_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Billy McFall0683c9c2016-10-13 08:27:31 -040053/**
54 * @file
Paul Vinciguerra5b755e22019-10-26 19:34:40 -040055 * @brief IPv4 and IPv6 adjacency and lookup table management.
Billy McFall0683c9c2016-10-13 08:27:31 -040056 *
57 */
58
Neale Rannsd96bad82017-03-08 01:12:54 -080059static clib_error_t *
60ip_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
72VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
73
Dave Barachd7cb1b52016-12-09 09:52:16 -050074void
75ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
Dave Barachd7cb1b52016-12-09 09:52:16 -050077 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 lm->fib_result_n_bytes = sizeof (uword);
79
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 lm->is_ip6 = is_ip6;
Matthew Smith6c92f5b2019-08-07 11:46:30 -050081 mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword),
82 sizeof (ip_interface_prefix_key_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 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 Warnickecb9cada2015-12-08 15:45:58 -0700105
106 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 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 Warnickecb9cada2015-12-08 15:45:58 -0700114 }
115}
116
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117u8 *
118format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100120 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +0000122#define _(n, b, v) \
123 if (flow_hash_config & v) \
124 s = format (s, "%s ", #n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 foreach_flow_hash_bit;
126#undef _
127
128 return s;
129}
130
Dave Barachd7cb1b52016-12-09 09:52:16 -0500131u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 u32 n_packet_data_bytes = va_arg (*args, u32);
BenoƮt Ganne138c37a2019-07-18 17:34:28 +0200136
Neale Ranns0b6a8572019-10-30 17:34:14 +0000137 s = format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 return s;
140}
141
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142static uword
143unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100145 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
146 fib_protocol_t fp = va_arg (*args, int);
147 dpo_proto_t proto;
148
Dave Barachd7cb1b52016-12-09 09:52:16 -0500149 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500152 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500154 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500156 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100157 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500158 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100159 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500160 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100161 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500162 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100164 {
165 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100167 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100169 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500170 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100171 }
172
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173 dpo_set (dpo, DPO_CLASSIFY, proto,
174 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100175 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 else
177 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 return 1;
180}
181
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100182const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183 .as_u64 = {
184 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100185};
186
Neale Ranns039cbfe2018-02-27 03:45:38 -0800187static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100188vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500189 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800192 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100193 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800194 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100195 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500196 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100198 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
200 is_del = 0;
201 table_id = 0;
202 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400203 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
205 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 return 0;
208
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
210 {
Dave Barachb7b92992018-10-17 10:38:51 -0400211 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100212
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 if (unformat (line_input, "table %d", &table_id))
214 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 else if (unformat (line_input, "count %f", &count))
216 ;
217
218 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500219 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
220 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800221 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 vec_add1 (prefixs, pfx);
223 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500225 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
226 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800227 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228 vec_add1 (prefixs, pfx);
229 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800231 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500232 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000233 vec_add1 (rpaths, rpath);
234 }
235 else if (vec_len (prefixs) > 0 &&
236 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100237 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100239 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500240 }
pragash352829f2017-08-17 22:53:24 -0400241 else if (unformat (line_input, "del"))
242 is_del = 1;
243 else if (unformat (line_input, "add"))
244 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 error = unformat_parse_error (line_input);
248 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500249 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500251
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100252 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 {
254 error =
255 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 goto done;
257 }
258
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100259 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 goto done;
263 }
264
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100265 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500266 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100267 /*
268 * if no table_id is passed we will manipulate the default
269 */
270 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500271 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100272 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500273 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700274 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100276 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500277 {
278 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100279 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 }
281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100283 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500284 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100285 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 {
287 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
288 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100289 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 {
291 fib_table_entry_special_dpo_add (fib_index,
292 &prefixs[i],
293 FIB_SOURCE_CLI,
294 FIB_ENTRY_FLAG_EXCLUSIVE,
295 &dpos[0]);
296 dpo_reset (&dpos[0]);
297 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100298 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299 {
300 error =
301 clib_error_return (0,
302 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500304 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100305 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 {
Neale Ranns097fa662018-05-01 05:17:55 -0700307 u32 k, n, incr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100308 ip46_address_t dst = prefixs[i].fp_addr;
309 f64 t[2];
310 n = count;
311 t[0] = vlib_time_now (vm);
312 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
313 prefixs[i].fp_len);
314
315 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 {
Neale Ranns097fa662018-05-01 05:17:55 -0700317 fib_prefix_t rpfx = {
318 .fp_len = prefixs[i].fp_len,
319 .fp_proto = prefixs[i].fp_proto,
320 .fp_addr = dst,
321 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322
Neale Ranns097fa662018-05-01 05:17:55 -0700323 if (is_del)
324 fib_table_entry_path_remove2 (fib_index,
325 &rpfx, FIB_SOURCE_CLI, rpaths);
326 else
327 fib_table_entry_path_add2 (fib_index,
328 &rpfx,
329 FIB_SOURCE_CLI,
330 FIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331
332 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100334 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 clib_host_to_net_u32 (incr +
336 clib_net_to_host_u32 (dst.
337 ip4.as_u32));
338 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500340 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 int bucket = (incr < 64 ? 0 : 1);
342 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500343 clib_host_to_net_u64 (incr +
344 clib_net_to_host_u64 (dst.ip6.as_u64
345 [bucket]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 }
347 }
Neale Ranns097fa662018-05-01 05:17:55 -0700348
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100349 t[1] = vlib_time_now (vm);
350 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
352 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100353 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500354 {
355 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 }
358 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100359
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100361 vec_free (dpos);
362 vec_free (prefixs);
363 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500364 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 return error;
366}
367
Neale Ranns15002542017-09-10 04:39:11 -0700368clib_error_t *
369vnet_ip_table_cmd (vlib_main_t * vm,
370 unformat_input_t * main_input,
371 vlib_cli_command_t * cmd, fib_protocol_t fproto)
372{
373 unformat_input_t _line_input, *line_input = &_line_input;
374 clib_error_t *error = NULL;
375 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700376 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700377
378 is_add = 1;
379 table_id = ~0;
380
381 /* Get a line of input. */
382 if (!unformat_user (main_input, unformat_line_input, line_input))
383 return 0;
384
385 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
386 {
387 if (unformat (line_input, "%d", &table_id))
388 ;
389 else if (unformat (line_input, "del"))
390 is_add = 0;
391 else if (unformat (line_input, "add"))
392 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700393 else if (unformat (line_input, "name %s", &name))
394 ;
Neale Ranns15002542017-09-10 04:39:11 -0700395 else
396 {
397 error = unformat_parse_error (line_input);
398 goto done;
399 }
400 }
401
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200402 if (0 == table_id)
Neale Ranns15002542017-09-10 04:39:11 -0700403 {
404 error = clib_error_return (0, "Can't change the default table");
405 goto done;
406 }
407 else
Neale Ranns15002542017-09-10 04:39:11 -0700408 {
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200409 if (is_add)
410 {
411 if (~0 == table_id)
412 {
413 table_id = ip_table_get_unused_id (fproto);
414 vlib_cli_output (vm, "%u\n", table_id);
415 }
416 ip_table_create (fproto, table_id, 0, name);
417 }
418 else
419 {
420 if (~0 == table_id)
421 {
422 error = clib_error_return (0, "No table id");
423 goto done;
424 }
425 ip_table_delete (fproto, table_id, 0);
426 }
Neale Ranns15002542017-09-10 04:39:11 -0700427 }
Neale Ranns15002542017-09-10 04:39:11 -0700428
429done:
430 unformat_free (line_input);
431 return error;
432}
433
434clib_error_t *
435vnet_ip4_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_IP4));
439}
440
441clib_error_t *
442vnet_ip6_table_cmd (vlib_main_t * vm,
443 unformat_input_t * main_input, vlib_cli_command_t * cmd)
444{
445 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
446}
447
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200448clib_error_t *
449vnet_show_ip_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
450 vlib_cli_command_t *cmd, fib_protocol_t fproto)
451{
452 unformat_input_t _line_input, *line_input = &_line_input;
453 fib_table_t *fib, *fibs;
454 clib_error_t *error = NULL;
455 u32 table_id = ~0, fib_index;
456 /* Get a line of input. */
457 if (unformat_user (main_input, unformat_line_input, line_input))
458 {
459 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
460 {
461 if (unformat (line_input, "%d", &table_id))
462 ;
463 else
464 {
465 error = unformat_parse_error (line_input);
466 goto done;
467 }
468 }
469 unformat_free (line_input);
470 }
471
472 fibs = (fproto == FIB_PROTOCOL_IP4) ? ip4_main.fibs : ip6_main.fibs;
473
474 if (table_id != (u32) ~0)
475 {
476 fib_index = fib_table_find (fproto, table_id);
477 if (fib_index == (u32) ~0)
478 {
479 error = clib_error_return (0, "Couldn't find table with table_id %u",
480 table_id);
481 goto done;
482 }
483
484 fib = fib_table_get (fib_index, fproto);
485 vlib_cli_output (vm, "[%3u] table_id:%3u %v", fib->ft_index,
486 fib->ft_table_id, fib->ft_desc);
487 }
488 else
489 {
490 pool_foreach (fib, fibs)
491 vlib_cli_output (vm, "[%3u] table_id:%3u %v", fib->ft_index,
492 fib->ft_table_id, fib->ft_desc);
493 }
494
495done:
496 return error;
497}
498
499clib_error_t *
500vnet_show_ip4_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
501 vlib_cli_command_t *cmd)
502{
503 return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
504}
505
506clib_error_t *
507vnet_show_ip6_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
508 vlib_cli_command_t *cmd)
509{
510 return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
511}
512
Dave Barachd7cb1b52016-12-09 09:52:16 -0500513/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
515 .path = "ip",
516 .short_help = "Internet protocol (IP) commands",
517};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500518/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
Dave Barachd7cb1b52016-12-09 09:52:16 -0500520/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400521VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
522 .path = "ip6",
523 .short_help = "Internet protocol version 6 (IPv6) commands",
524};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500525/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400526
Dave Barachd7cb1b52016-12-09 09:52:16 -0500527/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
529 .path = "show ip",
530 .short_help = "Internet protocol (IP) show commands",
531};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500532/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533
Dave Barachd7cb1b52016-12-09 09:52:16 -0500534/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
536 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400537 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500539/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700541/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400542 * This command is used to add or delete IPv4 or IPv6 routes. All
543 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
544 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
545 * can be IPv4 or IPv6, but all must be of the same form in a single
546 * command. To display the current set of routes, use the commands
547 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
548 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700549 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400550 * Example of how to add a straight forward static route:
551 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
552 * Example of how to delete a straight forward static route:
553 * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700554 * Mainly for route add/del performance testing, one can add or delete
555 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400556 * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700557 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400558 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
559 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
560 * For unequal-cost multipath, specify the desired weights. This
561 * combination of weights results in 3/4 of the traffic following the
562 * second path, 1/4 following the first path:
563 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
564 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
565 * To add a route to a particular FIB table (VRF), use:
566 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700567 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400568/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569VLIB_CLI_COMMAND (ip_route_command, static) = {
570 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800571 .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 Warnickecb9cada2015-12-08 15:45:58 -0700572 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400573 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574};
Neale Ranns15002542017-09-10 04:39:11 -0700575
576/* *INDENT-ON* */
577/*?
578 * This command is used to add or delete IPv4 Tables. All
579 * Tables must be explicitly added before that can be used. Creating a
580 * table will add both unicast and multicast FIBs
581 *
582 ?*/
583/* *INDENT-OFF* */
584VLIB_CLI_COMMAND (ip4_table_command, static) = {
585 .path = "ip table",
586 .short_help = "ip table [add|del] <table-id>",
587 .function = vnet_ip4_table_cmd,
Neale Ranns15002542017-09-10 04:39:11 -0700588};
589/* *INDENT-ON* */
590
591/* *INDENT-ON* */
592/*?
593 * This command is used to add or delete IPv4 Tables. All
594 * Tables must be explicitly added before that can be used. Creating a
595 * table will add both unicast and multicast FIBs
596 *
597 ?*/
598/* *INDENT-OFF* */
599VLIB_CLI_COMMAND (ip6_table_command, static) = {
600 .path = "ip6 table",
601 .short_help = "ip6 table [add|del] <table-id>",
602 .function = vnet_ip6_table_cmd,
Neale Ranns15002542017-09-10 04:39:11 -0700603};
604
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200605VLIB_CLI_COMMAND (show_ip4_table_command, static) = {
606 .path = "show ip table",
607 .short_help = "show ip table <table-id>",
608 .function = vnet_show_ip4_table_cmd,
609};
610
611VLIB_CLI_COMMAND (show_ip6_table_command, static) = {
612 .path = "show ip6 table",
613 .short_help = "show ip6 table <table-id>",
614 .function = vnet_show_ip6_table_cmd,
615};
616
Neale Ranns15002542017-09-10 04:39:11 -0700617static clib_error_t *
618ip_table_bind_cmd (vlib_main_t * vm,
619 unformat_input_t * input,
620 vlib_cli_command_t * cmd,
621 fib_protocol_t fproto)
622{
623 vnet_main_t *vnm = vnet_get_main ();
624 clib_error_t *error = 0;
625 u32 sw_if_index, table_id;
626 int rv;
627
628 sw_if_index = ~0;
629
630 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
631 {
632 error = clib_error_return (0, "unknown interface `%U'",
633 format_unformat_error, input);
634 goto done;
635 }
636
637 if (unformat (input, "%d", &table_id))
638 ;
639 else
640 {
641 error = clib_error_return (0, "expected table id `%U'",
642 format_unformat_error, input);
643 goto done;
644 }
645
Nathan Skrzypczak275bd792021-09-17 17:29:14 +0200646 rv = ip_table_bind (fproto, sw_if_index, table_id);
Neale Ranns15002542017-09-10 04:39:11 -0700647
648 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
649 {
650 error = clib_error_return (0, "IP addresses are still present on %U",
651 format_vnet_sw_if_index_name,
652 vnet_get_main(),
653 sw_if_index);
654 }
655 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
656 {
657 error = clib_error_return (0, "no such table %d", table_id);
658 }
659 else if (0 != rv)
660 {
661 error = clib_error_return (0, "unknown error");
662 }
663
664 done:
665 return error;
666}
667
668static clib_error_t *
669ip4_table_bind_cmd (vlib_main_t * vm,
670 unformat_input_t * input,
671 vlib_cli_command_t * cmd)
672{
673 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
674}
675
676static clib_error_t *
677ip6_table_bind_cmd (vlib_main_t * vm,
678 unformat_input_t * input,
679 vlib_cli_command_t * cmd)
680{
681 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
682}
683
684/*?
685 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700686 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700687 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
688 * FIB table will only be displayed if a route has been added to the table, or
689 * an IP Address is assigned to an interface in the table (which adds a route
690 * automatically).
691 *
692 * @note IP addresses added after setting the interface IP table are added to
693 * the indicated FIB table. If an IP address is added prior to changing the
694 * table then this is an error. The control plane must remove these addresses
695 * first and then change the table. VPP will not automatically move the
696 * addresses from the old to the new table as it does not know the validity
697 * of such a change.
698 *
699 * @cliexpar
700 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
701 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
702 ?*/
703/* *INDENT-OFF* */
704VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
705{
706 .path = "set interface ip table",
707 .function = ip4_table_bind_cmd,
708 .short_help = "set interface ip table <interface> <table-id>",
709};
710/* *INDENT-ON* */
711
712/*?
713 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700714 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700715 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
716 * FIB table will only be displayed if a route has been added to the table, or
717 * an IP Address is assigned to an interface in the table (which adds a route
718 * automatically).
719 *
720 * @note IP addresses added after setting the interface IP table are added to
721 * the indicated FIB table. If an IP address is added prior to changing the
722 * table then this is an error. The control plane must remove these addresses
723 * first and then change the table. VPP will not automatically move the
724 * addresses from the old to the new table as it does not know the validity
725 * of such a change.
726 *
727 * @cliexpar
728 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
729 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
730 ?*/
731/* *INDENT-OFF* */
732VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
733{
734 .path = "set interface ip6 table",
735 .function = ip6_table_bind_cmd,
736 .short_help = "set interface ip6 table <interface> <table-id>"
737};
Billy McFall0683c9c2016-10-13 08:27:31 -0400738/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739
Neale Ranns32e1c012016-11-22 17:07:28 +0000740clib_error_t *
741vnet_ip_mroute_cmd (vlib_main_t * vm,
742 unformat_input_t * main_input, vlib_cli_command_t * cmd)
743{
744 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns097fa662018-05-01 05:17:55 -0700745 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000746 clib_error_t *error = NULL;
Neale Ranns097fa662018-05-01 05:17:55 -0700747 u32 table_id, is_del, payload_proto;
Neale Ranns32e1c012016-11-22 17:07:28 +0000748 mfib_prefix_t pfx;
749 u32 fib_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000750 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800751 u32 gcount, scount, ss, gg, incr;
752 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000753 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000754
Neale Ranns52456fc2017-02-15 00:38:27 -0800755 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000756 is_del = 0;
757 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400758 clib_memset (&pfx, 0, sizeof (pfx));
759 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000760 rpath.frp_sw_if_index = ~0;
761
762 /* Get a line of input. */
763 if (!unformat_user (main_input, unformat_line_input, line_input))
764 return 0;
765
766 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
767 {
768 if (unformat (line_input, "table %d", &table_id))
769 ;
770 else if (unformat (line_input, "del"))
771 is_del = 1;
772 else if (unformat (line_input, "add"))
773 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000774 else if (unformat (line_input, "rpf-id %d", &rpf_id))
775 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800776 else if (unformat (line_input, "scount %d", &scount))
777 ;
778 else if (unformat (line_input, "gcount %d", &gcount))
779 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000780 else if (unformat (line_input, "%U %U",
781 unformat_ip4_address,
782 &pfx.fp_src_addr.ip4,
783 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
784 {
Elias Rudberg224735b2020-06-04 00:15:45 +0200785 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000786 pfx.fp_len = 64;
787 }
788 else if (unformat (line_input, "%U %U",
789 unformat_ip6_address,
790 &pfx.fp_src_addr.ip6,
791 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
792 {
Elias Rudberg224735b2020-06-04 00:15:45 +0200793 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000794 pfx.fp_len = 256;
795 }
796 else if (unformat (line_input, "%U/%d",
797 unformat_ip4_address,
798 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
799 {
Dave Barachb7b92992018-10-17 10:38:51 -0400800 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Elias Rudberg224735b2020-06-04 00:15:45 +0200801 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000802 }
803 else if (unformat (line_input, "%U/%d",
804 unformat_ip6_address,
805 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
806 {
Dave Barachb7b92992018-10-17 10:38:51 -0400807 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Elias Rudberg224735b2020-06-04 00:15:45 +0200808 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000809 }
810 else if (unformat (line_input, "%U",
811 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
812 {
Dave Barachb7b92992018-10-17 10:38:51 -0400813 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Elias Rudberg224735b2020-06-04 00:15:45 +0200814 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000815 pfx.fp_len = 32;
816 }
817 else if (unformat (line_input, "%U",
818 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
819 {
Dave Barachb7b92992018-10-17 10:38:51 -0400820 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Elias Rudberg224735b2020-06-04 00:15:45 +0200821 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000822 pfx.fp_len = 128;
823 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000824 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700825 {
Dave Barachb7b92992018-10-17 10:38:51 -0400826 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700827 rpath.frp_sw_if_index = ~0;
828 rpath.frp_weight = 1;
829 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400830 /*
831 * set the path proto appropriately for the prefix
832 */
833 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns097fa662018-05-01 05:17:55 -0700834 rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
Neale Rannseacc8c52019-10-01 09:49:53 -0700835
836 vec_add1 (rpaths, rpath);
Neale Ranns32e1c012016-11-22 17:07:28 +0000837 }
Neale Ranns097fa662018-05-01 05:17:55 -0700838 else if (unformat (line_input, "via %U",
839 unformat_fib_route_path, &rpath, &payload_proto))
840 {
841 vec_add1 (rpaths, rpath);
842 }
843 else if (unformat (line_input, "%U",
Neale Ranns32e1c012016-11-22 17:07:28 +0000844 unformat_mfib_entry_flags, &eflags))
845 ;
846 else
847 {
848 error = unformat_parse_error (line_input);
849 goto done;
850 }
851 }
852
Neale Ranns32e1c012016-11-22 17:07:28 +0000853 if (~0 == table_id)
854 {
855 /*
856 * if no table_id is passed we will manipulate the default
857 */
858 fib_index = 0;
859 }
860 else
861 {
862 fib_index = mfib_table_find (pfx.fp_proto, table_id);
863
864 if (~0 == fib_index)
865 {
866 error = clib_error_return (0, "Nonexistent table id %d", table_id);
867 goto done;
868 }
869 }
870
Neale Ranns52456fc2017-02-15 00:38:27 -0800871 timet[0] = vlib_time_now (vm);
872
873 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000874 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800875 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000876 }
877 else
878 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800879 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000880 }
881
Neale Ranns52456fc2017-02-15 00:38:27 -0800882 for (ss = 0; ss < scount; ss++)
883 {
884 for (gg = 0; gg < gcount; gg++)
885 {
Neale Ranns097fa662018-05-01 05:17:55 -0700886 if (is_del && 0 == vec_len (rpaths))
Neale Ranns52456fc2017-02-15 00:38:27 -0800887 {
888 /* no path provided => route delete */
889 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
890 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000891 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800892 {
893 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000894 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800895 }
896 else
897 {
898 if (is_del)
899 mfib_table_entry_path_remove (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700900 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800901 else
902 mfib_table_entry_path_update (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700903 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800904 }
905
906 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
907 {
908 pfx.fp_grp_addr.ip4.as_u32 =
909 clib_host_to_net_u32 (incr +
910 clib_net_to_host_u32 (pfx.
911 fp_grp_addr.ip4.
912 as_u32));
913 }
914 else
915 {
916 int bucket = (incr < 64 ? 0 : 1);
917 pfx.fp_grp_addr.ip6.as_u64[bucket] =
918 clib_host_to_net_u64 (incr +
919 clib_net_to_host_u64 (pfx.
920 fp_grp_addr.ip6.as_u64
921 [bucket]));
922
923 }
924 }
925 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
926 {
927 pfx.fp_src_addr.ip4.as_u32 =
928 clib_host_to_net_u32 (1 +
929 clib_net_to_host_u32 (pfx.fp_src_addr.
930 ip4.as_u32));
931 }
932 else
933 {
934 pfx.fp_src_addr.ip6.as_u64[1] =
935 clib_host_to_net_u64 (1 +
936 clib_net_to_host_u64 (pfx.fp_src_addr.
937 ip6.as_u64[1]));
938 }
939 }
940
941 timet[1] = vlib_time_now (vm);
942
943 if (scount > 1 || gcount > 1)
944 vlib_cli_output (vm, "%.6e routes/sec",
945 (scount * gcount) / (timet[1] - timet[0]));
946
Neale Ranns32e1c012016-11-22 17:07:28 +0000947done:
Neale Ranns097fa662018-05-01 05:17:55 -0700948 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500949 unformat_free (line_input);
950
Neale Ranns32e1c012016-11-22 17:07:28 +0000951 return error;
952}
953
954/*?
Paul Vinciguerra5b755e22019-10-26 19:34:40 -0400955 * This command is used to add or delete IPv4 or IPv6 multicast routes. All
Neale Ranns32e1c012016-11-22 17:07:28 +0000956 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
957 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
958 * can be IPv4 or IPv6, but all must be of the same form in a single
959 * command. To display the current set of routes, use the commands
960 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
961 * The full set of support flags for interfaces and route is shown via;
962 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
963 * respectively.
964 * @cliexpar
965 * Example of how to add a forwarding interface to a route (and create the
966 * route if it does not exist)
967 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
968 * Example of how to add an accepting interface to a route (and create the
969 * route if it does not exist)
970 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
971 * Example of changing the route's flags to send signals via the API
972 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
973
974 ?*/
975/* *INDENT-OFF* */
976VLIB_CLI_COMMAND (ip_mroute_command, static) =
977{
978 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +0000979 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [rpf-id <ID>] [via <next-hop-ip-addr> [<interface>],",
Neale Ranns32e1c012016-11-22 17:07:28 +0000980 .function = vnet_ip_mroute_cmd,
981 .is_mp_safe = 1,
982};
983/* *INDENT-ON* */
984
Dave Barachd7cb1b52016-12-09 09:52:16 -0500985/*
986 * fd.io coding-style-patch-verification: ON
987 *
988 * Local Variables:
989 * eval: (c-set-style "gnu")
990 * End:
991 */