blob: b978bd797428404d910ad2d1f0e5b9ca3113e702 [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
Nathan Skrzypczake2d0c6e2022-03-23 18:08:53 +0100131uword
132unformat_ip_flow_hash_config (unformat_input_t *input, va_list *args)
133{
134 flow_hash_config_t *flow_hash_config = va_arg (*args, flow_hash_config_t *);
135 uword start_index = unformat_check_input (input);
136 int matched_once = 0;
137
138 if (unformat (input, "default"))
139 {
140 *flow_hash_config = IP_FLOW_HASH_DEFAULT;
141 return 1;
142 }
143 while (!unformat_is_eof (input) &&
144 !is_white_space (unformat_peek_input (input)))
145 {
146 if (unformat (input, "%_,"))
147 ;
Takeru Hayasakab23c6f42023-01-17 04:45:58 +0900148#define _(a, b, c) \
Nathan Skrzypczake2d0c6e2022-03-23 18:08:53 +0100149 else if (unformat (input, "%_" #a)) \
150 { \
Takeru Hayasakab23c6f42023-01-17 04:45:58 +0900151 *flow_hash_config |= c; \
Nathan Skrzypczake2d0c6e2022-03-23 18:08:53 +0100152 matched_once = 1; \
153 }
Takeru Hayasakab23c6f42023-01-17 04:45:58 +0900154 foreach_flow_hash_bit
Nathan Skrzypczake2d0c6e2022-03-23 18:08:53 +0100155#undef _
156 else
157 {
158 /* Roll back to our start */
159 input->index = start_index;
160 return 0;
161 }
162 }
163
164 return matched_once;
165}
166
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500170 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 u32 n_packet_data_bytes = va_arg (*args, u32);
Benoît Ganne138c37a2019-07-18 17:34:28 +0200172
Neale Ranns0b6a8572019-10-30 17:34:14 +0000173 s = format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
175 return s;
176}
177
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178static uword
179unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100181 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
182 fib_protocol_t fp = va_arg (*args, int);
183 dpo_proto_t proto;
184
Dave Barachd7cb1b52016-12-09 09:52:16 -0500185 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
187 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500188 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500190 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100193 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500194 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100195 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500196 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100197 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500198 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100200 {
201 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100203 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500204 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100205 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100207 }
208
Dave Barachd7cb1b52016-12-09 09:52:16 -0500209 dpo_set (dpo, DPO_CLASSIFY, proto,
210 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100211 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 else
213 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100214
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 return 1;
216}
217
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100218const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500219 .as_u64 = {
220 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100221};
222
Gavril Floriane7f34c92023-06-15 18:39:57 +0000223bool
224fib_prefix_validate (const fib_prefix_t *prefix)
225{
226 if (FIB_PROTOCOL_IP4 == prefix->fp_proto)
227 {
228 if (prefix->fp_len > 32)
229 {
230 return false;
231 }
232 }
233
234 if (FIB_PROTOCOL_IP6 == prefix->fp_proto)
235 {
236 if (prefix->fp_len > 128)
237 {
238 return false;
239 }
240 }
241 return true;
242}
243
Neale Ranns039cbfe2018-02-27 03:45:38 -0800244static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100245vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500248 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800249 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100250 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800251 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100252 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100255 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
257 is_del = 0;
258 table_id = 0;
259 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400260 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
262 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500263 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 return 0;
265
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
267 {
Dave Barachb7b92992018-10-17 10:38:51 -0400268 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100269
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 if (unformat (line_input, "table %d", &table_id))
271 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 else if (unformat (line_input, "count %f", &count))
273 ;
274
275 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
277 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800278 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 vec_add1 (prefixs, pfx);
280 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
283 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800284 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285 vec_add1 (prefixs, pfx);
286 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800288 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000290 vec_add1 (rpaths, rpath);
291 }
292 else if (vec_len (prefixs) > 0 &&
293 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100296 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500297 }
pragash352829f2017-08-17 22:53:24 -0400298 else if (unformat (line_input, "del"))
299 is_del = 1;
300 else if (unformat (line_input, "add"))
301 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 error = unformat_parse_error (line_input);
305 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100309 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 {
311 error =
312 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313 goto done;
314 }
315
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100316 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 goto done;
320 }
321
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500323 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100324 /*
325 * if no table_id is passed we will manipulate the default
326 */
327 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100329 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700331 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500334 {
335 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500337 }
338 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100340 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100342 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500343 {
344 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
345 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100346 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 {
348 fib_table_entry_special_dpo_add (fib_index,
349 &prefixs[i],
350 FIB_SOURCE_CLI,
351 FIB_ENTRY_FLAG_EXCLUSIVE,
352 &dpos[0]);
353 dpo_reset (&dpos[0]);
354 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100355 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 {
357 error =
358 clib_error_return (0,
359 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100362 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500363 {
Jieqiang Wangcfdb15b2021-08-03 16:07:52 +0000364 u32 k, n;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100365 f64 t[2];
366 n = count;
367 t[0] = vlib_time_now (vm);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368
369 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 {
Neale Ranns097fa662018-05-01 05:17:55 -0700371 fib_prefix_t rpfx = {
372 .fp_len = prefixs[i].fp_len,
373 .fp_proto = prefixs[i].fp_proto,
Jieqiang Wangcfdb15b2021-08-03 16:07:52 +0000374 .fp_addr = prefixs[i].fp_addr,
Neale Ranns097fa662018-05-01 05:17:55 -0700375 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376
Gavril Floriane7f34c92023-06-15 18:39:57 +0000377 if (!fib_prefix_validate (&rpfx))
378 {
379 vlib_cli_output (vm, "Invalid prefix len: %d", rpfx.fp_len);
380 continue;
381 }
382
Neale Ranns097fa662018-05-01 05:17:55 -0700383 if (is_del)
384 fib_table_entry_path_remove2 (fib_index,
385 &rpfx, FIB_SOURCE_CLI, rpaths);
386 else
387 fib_table_entry_path_add2 (fib_index,
388 &rpfx,
389 FIB_SOURCE_CLI,
390 FIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100391
Jieqiang Wangcfdb15b2021-08-03 16:07:52 +0000392 fib_prefix_increment (&prefixs[i]);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393 }
Neale Ranns097fa662018-05-01 05:17:55 -0700394
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395 t[1] = vlib_time_now (vm);
396 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500397 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
398 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100399 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500400 {
401 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100402 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403 }
404 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100405
Dave Barachd7cb1b52016-12-09 09:52:16 -0500406done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100407 vec_free (dpos);
408 vec_free (prefixs);
409 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500410 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 return error;
412}
413
Neale Ranns15002542017-09-10 04:39:11 -0700414clib_error_t *
415vnet_ip_table_cmd (vlib_main_t * vm,
416 unformat_input_t * main_input,
417 vlib_cli_command_t * cmd, fib_protocol_t fproto)
418{
419 unformat_input_t _line_input, *line_input = &_line_input;
420 clib_error_t *error = NULL;
421 u32 table_id, is_add;
Benoît Ganneff570d32024-04-16 09:36:05 +0200422 u8 create_mfib;
Neale Ranns2297af02017-09-12 09:45:04 -0700423 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700424
425 is_add = 1;
426 table_id = ~0;
Benoît Ganneff570d32024-04-16 09:36:05 +0200427 create_mfib = 1;
Neale Ranns15002542017-09-10 04:39:11 -0700428
429 /* Get a line of input. */
430 if (!unformat_user (main_input, unformat_line_input, line_input))
431 return 0;
432
433 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
434 {
435 if (unformat (line_input, "%d", &table_id))
436 ;
437 else if (unformat (line_input, "del"))
438 is_add = 0;
439 else if (unformat (line_input, "add"))
440 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700441 else if (unformat (line_input, "name %s", &name))
442 ;
Benoît Ganneff570d32024-04-16 09:36:05 +0200443 else if (unformat (line_input, "no-mfib"))
444 create_mfib = 0;
Neale Ranns15002542017-09-10 04:39:11 -0700445 else
446 {
447 error = unformat_parse_error (line_input);
448 goto done;
449 }
450 }
451
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200452 if (0 == table_id)
Neale Ranns15002542017-09-10 04:39:11 -0700453 {
454 error = clib_error_return (0, "Can't change the default table");
455 goto done;
456 }
457 else
Neale Ranns15002542017-09-10 04:39:11 -0700458 {
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200459 if (is_add)
460 {
461 if (~0 == table_id)
462 {
463 table_id = ip_table_get_unused_id (fproto);
464 vlib_cli_output (vm, "%u\n", table_id);
465 }
Benoît Ganneff570d32024-04-16 09:36:05 +0200466 ip_table_create (fproto, table_id, 0 /* is_api */, create_mfib,
467 name);
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200468 }
469 else
470 {
471 if (~0 == table_id)
472 {
473 error = clib_error_return (0, "No table id");
474 goto done;
475 }
476 ip_table_delete (fproto, table_id, 0);
477 }
Neale Ranns15002542017-09-10 04:39:11 -0700478 }
Neale Ranns15002542017-09-10 04:39:11 -0700479
480done:
Steven Luong221be7c2021-12-15 13:27:53 -0800481 vec_free (name);
Neale Ranns15002542017-09-10 04:39:11 -0700482 unformat_free (line_input);
483 return error;
484}
485
486clib_error_t *
487vnet_ip4_table_cmd (vlib_main_t * vm,
488 unformat_input_t * main_input, vlib_cli_command_t * cmd)
489{
490 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
491}
492
493clib_error_t *
494vnet_ip6_table_cmd (vlib_main_t * vm,
495 unformat_input_t * main_input, vlib_cli_command_t * cmd)
496{
497 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
498}
499
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200500clib_error_t *
501vnet_show_ip_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
502 vlib_cli_command_t *cmd, fib_protocol_t fproto)
503{
504 unformat_input_t _line_input, *line_input = &_line_input;
505 fib_table_t *fib, *fibs;
506 clib_error_t *error = NULL;
507 u32 table_id = ~0, fib_index;
508 /* Get a line of input. */
509 if (unformat_user (main_input, unformat_line_input, line_input))
510 {
511 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
512 {
513 if (unformat (line_input, "%d", &table_id))
514 ;
515 else
516 {
517 error = unformat_parse_error (line_input);
518 goto done;
519 }
520 }
521 unformat_free (line_input);
522 }
523
524 fibs = (fproto == FIB_PROTOCOL_IP4) ? ip4_main.fibs : ip6_main.fibs;
525
526 if (table_id != (u32) ~0)
527 {
528 fib_index = fib_table_find (fproto, table_id);
529 if (fib_index == (u32) ~0)
530 {
531 error = clib_error_return (0, "Couldn't find table with table_id %u",
532 table_id);
533 goto done;
534 }
535
536 fib = fib_table_get (fib_index, fproto);
Nathan Skrzypczak99b96392022-05-16 10:44:32 +0200537 vlib_cli_output (vm, "[%u] table_id:%u %v", fib->ft_index,
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200538 fib->ft_table_id, fib->ft_desc);
539 }
540 else
541 {
542 pool_foreach (fib, fibs)
Nathan Skrzypczak99b96392022-05-16 10:44:32 +0200543 vlib_cli_output (vm, "[%u] table_id:%u %v", fib->ft_index,
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200544 fib->ft_table_id, fib->ft_desc);
545 }
546
547done:
548 return error;
549}
550
551clib_error_t *
552vnet_show_ip4_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
553 vlib_cli_command_t *cmd)
554{
555 return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
556}
557
558clib_error_t *
559vnet_show_ip6_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
560 vlib_cli_command_t *cmd)
561{
562 return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
563}
564
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
566 .path = "ip",
567 .short_help = "Internet protocol (IP) commands",
568};
569
Billy McFall0683c9c2016-10-13 08:27:31 -0400570VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
571 .path = "ip6",
572 .short_help = "Internet protocol version 6 (IPv6) commands",
573};
574
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
576 .path = "show ip",
577 .short_help = "Internet protocol (IP) show commands",
578};
579
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
581 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400582 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583};
584
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700585/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400586 * This command is used to add or delete IPv4 or IPv6 routes. All
587 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
588 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
589 * can be IPv4 or IPv6, but all must be of the same form in a single
590 * command. To display the current set of routes, use the commands
591 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
592 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700593 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400594 * Example of how to add a straight forward static route:
595 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
596 * Example of how to delete a straight forward static route:
597 * @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 -0700598 * Mainly for route add/del performance testing, one can add or delete
599 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400600 * @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 -0700601 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400602 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
603 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
604 * For unequal-cost multipath, specify the desired weights. This
605 * combination of weights results in 3/4 of the traffic following the
606 * second path, 1/4 following the first path:
607 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
608 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
609 * To add a route to a particular FIB table (VRF), use:
610 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Mohsin Kazmi8c77c192024-04-19 11:02:28 +0000611 * To add a route to drop the traffic:
612 * @cliexcmd{ip route add 172.16.24.0/24 table 100 via 127.0.0.1 drop}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700613 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614VLIB_CLI_COMMAND (ip_route_command, static) = {
615 .path = "ip route",
Mauro Sardara95396472022-03-22 17:53:46 +0000616 .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table "
617 "<table-id>] via [next-hop-address] [next-hop-interface] "
618 "[next-hop-table <value>] [weight <value>] [preference "
619 "<value>] [udp-encap <value>] [ip4-lookup-in-table <value>] "
620 "[ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] "
Vladislav Grishenkodea806d2024-02-20 11:58:01 +0500621 "[resolve-via-host] [resolve-via-connected] [rx-ip4|rx-ip6 "
Mohsin Kazmi8c77c192024-04-19 11:02:28 +0000622 "<interface>] [out-labels <value value value>] [drop]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400624 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625};
Neale Ranns15002542017-09-10 04:39:11 -0700626
Neale Ranns15002542017-09-10 04:39:11 -0700627/*?
628 * This command is used to add or delete IPv4 Tables. All
629 * Tables must be explicitly added before that can be used. Creating a
630 * table will add both unicast and multicast FIBs
631 *
632 ?*/
Neale Ranns15002542017-09-10 04:39:11 -0700633VLIB_CLI_COMMAND (ip4_table_command, static) = {
634 .path = "ip table",
635 .short_help = "ip table [add|del] <table-id>",
636 .function = vnet_ip4_table_cmd,
Neale Ranns15002542017-09-10 04:39:11 -0700637};
Neale Ranns15002542017-09-10 04:39:11 -0700638
Neale Ranns15002542017-09-10 04:39:11 -0700639/*?
640 * This command is used to add or delete IPv4 Tables. All
641 * Tables must be explicitly added before that can be used. Creating a
642 * table will add both unicast and multicast FIBs
643 *
644 ?*/
Neale Ranns15002542017-09-10 04:39:11 -0700645VLIB_CLI_COMMAND (ip6_table_command, static) = {
646 .path = "ip6 table",
647 .short_help = "ip6 table [add|del] <table-id>",
648 .function = vnet_ip6_table_cmd,
Neale Ranns15002542017-09-10 04:39:11 -0700649};
650
Nathan Skrzypczak14b472e2021-08-16 19:14:48 +0200651VLIB_CLI_COMMAND (show_ip4_table_command, static) = {
652 .path = "show ip table",
653 .short_help = "show ip table <table-id>",
654 .function = vnet_show_ip4_table_cmd,
655};
656
657VLIB_CLI_COMMAND (show_ip6_table_command, static) = {
658 .path = "show ip6 table",
659 .short_help = "show ip6 table <table-id>",
660 .function = vnet_show_ip6_table_cmd,
661};
662
Neale Ranns15002542017-09-10 04:39:11 -0700663static clib_error_t *
664ip_table_bind_cmd (vlib_main_t * vm,
665 unformat_input_t * input,
666 vlib_cli_command_t * cmd,
667 fib_protocol_t fproto)
668{
669 vnet_main_t *vnm = vnet_get_main ();
670 clib_error_t *error = 0;
671 u32 sw_if_index, table_id;
672 int rv;
673
674 sw_if_index = ~0;
675
676 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
677 {
678 error = clib_error_return (0, "unknown interface `%U'",
679 format_unformat_error, input);
680 goto done;
681 }
682
683 if (unformat (input, "%d", &table_id))
684 ;
685 else
686 {
687 error = clib_error_return (0, "expected table id `%U'",
688 format_unformat_error, input);
689 goto done;
690 }
691
Nathan Skrzypczak275bd792021-09-17 17:29:14 +0200692 rv = ip_table_bind (fproto, sw_if_index, table_id);
Neale Ranns15002542017-09-10 04:39:11 -0700693
694 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
695 {
696 error = clib_error_return (0, "IP addresses are still present on %U",
697 format_vnet_sw_if_index_name,
698 vnet_get_main(),
699 sw_if_index);
700 }
701 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
702 {
703 error = clib_error_return (0, "no such table %d", table_id);
704 }
705 else if (0 != rv)
706 {
707 error = clib_error_return (0, "unknown error");
708 }
709
710 done:
711 return error;
712}
713
714static clib_error_t *
715ip4_table_bind_cmd (vlib_main_t * vm,
716 unformat_input_t * input,
717 vlib_cli_command_t * cmd)
718{
719 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
720}
721
722static clib_error_t *
723ip6_table_bind_cmd (vlib_main_t * vm,
724 unformat_input_t * input,
725 vlib_cli_command_t * cmd)
726{
727 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
728}
729
730/*?
731 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700732 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700733 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
734 * FIB table will only be displayed if a route has been added to the table, or
735 * an IP Address is assigned to an interface in the table (which adds a route
736 * automatically).
737 *
738 * @note IP addresses added after setting the interface IP table are added to
739 * the indicated FIB table. If an IP address is added prior to changing the
740 * table then this is an error. The control plane must remove these addresses
741 * first and then change the table. VPP will not automatically move the
742 * addresses from the old to the new table as it does not know the validity
743 * of such a change.
744 *
745 * @cliexpar
746 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
747 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
748 ?*/
Neale Ranns15002542017-09-10 04:39:11 -0700749VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
750{
751 .path = "set interface ip table",
752 .function = ip4_table_bind_cmd,
753 .short_help = "set interface ip table <interface> <table-id>",
754};
Neale Ranns15002542017-09-10 04:39:11 -0700755
756/*?
757 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700758 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700759 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
760 * FIB table will only be displayed if a route has been added to the table, or
761 * an IP Address is assigned to an interface in the table (which adds a route
762 * automatically).
763 *
764 * @note IP addresses added after setting the interface IP table are added to
765 * the indicated FIB table. If an IP address is added prior to changing the
766 * table then this is an error. The control plane must remove these addresses
767 * first and then change the table. VPP will not automatically move the
768 * addresses from the old to the new table as it does not know the validity
769 * of such a change.
770 *
771 * @cliexpar
772 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
773 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
774 ?*/
Neale Ranns15002542017-09-10 04:39:11 -0700775VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
776{
777 .path = "set interface ip6 table",
778 .function = ip6_table_bind_cmd,
779 .short_help = "set interface ip6 table <interface> <table-id>"
780};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781
Neale Ranns32e1c012016-11-22 17:07:28 +0000782clib_error_t *
783vnet_ip_mroute_cmd (vlib_main_t * vm,
784 unformat_input_t * main_input, vlib_cli_command_t * cmd)
785{
786 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns097fa662018-05-01 05:17:55 -0700787 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000788 clib_error_t *error = NULL;
Neale Ranns097fa662018-05-01 05:17:55 -0700789 u32 table_id, is_del, payload_proto;
Neale Ranns32e1c012016-11-22 17:07:28 +0000790 mfib_prefix_t pfx;
791 u32 fib_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000792 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800793 u32 gcount, scount, ss, gg, incr;
794 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000795 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000796
Neale Ranns52456fc2017-02-15 00:38:27 -0800797 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000798 is_del = 0;
799 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400800 clib_memset (&pfx, 0, sizeof (pfx));
801 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000802 rpath.frp_sw_if_index = ~0;
803
804 /* Get a line of input. */
805 if (!unformat_user (main_input, unformat_line_input, line_input))
806 return 0;
807
808 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
809 {
810 if (unformat (line_input, "table %d", &table_id))
811 ;
812 else if (unformat (line_input, "del"))
813 is_del = 1;
814 else if (unformat (line_input, "add"))
815 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000816 else if (unformat (line_input, "rpf-id %d", &rpf_id))
817 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800818 else if (unformat (line_input, "scount %d", &scount))
819 ;
820 else if (unformat (line_input, "gcount %d", &gcount))
821 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000822 else if (unformat (line_input, "%U %U",
823 unformat_ip4_address,
824 &pfx.fp_src_addr.ip4,
825 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
826 {
Elias Rudberg224735b2020-06-04 00:15:45 +0200827 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000828 pfx.fp_len = 64;
829 }
830 else if (unformat (line_input, "%U %U",
831 unformat_ip6_address,
832 &pfx.fp_src_addr.ip6,
833 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
834 {
Elias Rudberg224735b2020-06-04 00:15:45 +0200835 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000836 pfx.fp_len = 256;
837 }
838 else if (unformat (line_input, "%U/%d",
839 unformat_ip4_address,
840 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
841 {
Dave Barachb7b92992018-10-17 10:38:51 -0400842 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Elias Rudberg224735b2020-06-04 00:15:45 +0200843 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000844 }
845 else if (unformat (line_input, "%U/%d",
846 unformat_ip6_address,
847 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
848 {
Dave Barachb7b92992018-10-17 10:38:51 -0400849 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Elias Rudberg224735b2020-06-04 00:15:45 +0200850 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000851 }
852 else if (unformat (line_input, "%U",
853 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
854 {
Dave Barachb7b92992018-10-17 10:38:51 -0400855 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Elias Rudberg224735b2020-06-04 00:15:45 +0200856 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns32e1c012016-11-22 17:07:28 +0000857 pfx.fp_len = 32;
858 }
859 else if (unformat (line_input, "%U",
860 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
861 {
Dave Barachb7b92992018-10-17 10:38:51 -0400862 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Elias Rudberg224735b2020-06-04 00:15:45 +0200863 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Neale Ranns32e1c012016-11-22 17:07:28 +0000864 pfx.fp_len = 128;
865 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000866 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700867 {
Dave Barachb7b92992018-10-17 10:38:51 -0400868 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700869 rpath.frp_sw_if_index = ~0;
870 rpath.frp_weight = 1;
871 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400872 /*
873 * set the path proto appropriately for the prefix
874 */
875 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns097fa662018-05-01 05:17:55 -0700876 rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
Neale Rannseacc8c52019-10-01 09:49:53 -0700877
878 vec_add1 (rpaths, rpath);
Neale Ranns32e1c012016-11-22 17:07:28 +0000879 }
Neale Ranns097fa662018-05-01 05:17:55 -0700880 else if (unformat (line_input, "via %U",
881 unformat_fib_route_path, &rpath, &payload_proto))
882 {
883 vec_add1 (rpaths, rpath);
884 }
885 else if (unformat (line_input, "%U",
Neale Ranns32e1c012016-11-22 17:07:28 +0000886 unformat_mfib_entry_flags, &eflags))
887 ;
888 else
889 {
890 error = unformat_parse_error (line_input);
891 goto done;
892 }
893 }
894
Neale Ranns32e1c012016-11-22 17:07:28 +0000895 if (~0 == table_id)
896 {
897 /*
898 * if no table_id is passed we will manipulate the default
899 */
900 fib_index = 0;
901 }
902 else
903 {
904 fib_index = mfib_table_find (pfx.fp_proto, table_id);
905
906 if (~0 == fib_index)
907 {
908 error = clib_error_return (0, "Nonexistent table id %d", table_id);
909 goto done;
910 }
911 }
912
Neale Ranns52456fc2017-02-15 00:38:27 -0800913 timet[0] = vlib_time_now (vm);
914
915 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000916 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800917 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000918 }
919 else
920 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800921 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000922 }
923
Neale Ranns52456fc2017-02-15 00:38:27 -0800924 for (ss = 0; ss < scount; ss++)
925 {
926 for (gg = 0; gg < gcount; gg++)
927 {
Neale Ranns097fa662018-05-01 05:17:55 -0700928 if (is_del && 0 == vec_len (rpaths))
Neale Ranns52456fc2017-02-15 00:38:27 -0800929 {
930 /* no path provided => route delete */
931 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
932 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000933 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800934 {
935 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000936 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800937 }
938 else
939 {
940 if (is_del)
941 mfib_table_entry_path_remove (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700942 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800943 else
Paul Atkins8e2b1b12021-10-12 14:32:11 +0100944 mfib_table_entry_path_update (fib_index, &pfx, MFIB_SOURCE_CLI,
945 MFIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800946 }
947
948 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
949 {
950 pfx.fp_grp_addr.ip4.as_u32 =
951 clib_host_to_net_u32 (incr +
952 clib_net_to_host_u32 (pfx.
953 fp_grp_addr.ip4.
954 as_u32));
955 }
956 else
957 {
958 int bucket = (incr < 64 ? 0 : 1);
959 pfx.fp_grp_addr.ip6.as_u64[bucket] =
960 clib_host_to_net_u64 (incr +
961 clib_net_to_host_u64 (pfx.
962 fp_grp_addr.ip6.as_u64
963 [bucket]));
964
965 }
966 }
967 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
968 {
969 pfx.fp_src_addr.ip4.as_u32 =
970 clib_host_to_net_u32 (1 +
971 clib_net_to_host_u32 (pfx.fp_src_addr.
972 ip4.as_u32));
973 }
974 else
975 {
976 pfx.fp_src_addr.ip6.as_u64[1] =
977 clib_host_to_net_u64 (1 +
978 clib_net_to_host_u64 (pfx.fp_src_addr.
979 ip6.as_u64[1]));
980 }
981 }
982
983 timet[1] = vlib_time_now (vm);
984
985 if (scount > 1 || gcount > 1)
986 vlib_cli_output (vm, "%.6e routes/sec",
987 (scount * gcount) / (timet[1] - timet[0]));
988
Neale Ranns32e1c012016-11-22 17:07:28 +0000989done:
Neale Ranns097fa662018-05-01 05:17:55 -0700990 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500991 unformat_free (line_input);
992
Neale Ranns32e1c012016-11-22 17:07:28 +0000993 return error;
994}
995
996/*?
Paul Vinciguerra5b755e22019-10-26 19:34:40 -0400997 * This command is used to add or delete IPv4 or IPv6 multicast routes. All
Neale Ranns32e1c012016-11-22 17:07:28 +0000998 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
999 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1000 * can be IPv4 or IPv6, but all must be of the same form in a single
1001 * command. To display the current set of routes, use the commands
1002 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1003 * The full set of support flags for interfaces and route is shown via;
1004 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1005 * respectively.
1006 * @cliexpar
1007 * Example of how to add a forwarding interface to a route (and create the
1008 * route if it does not exist)
1009 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1010 * Example of how to add an accepting interface to a route (and create the
1011 * route if it does not exist)
1012 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1013 * Example of changing the route's flags to send signals via the API
1014 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1015
1016 ?*/
Neale Ranns32e1c012016-11-22 17:07:28 +00001017VLIB_CLI_COMMAND (ip_mroute_command, static) =
1018{
1019 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +00001020 .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 +00001021 .function = vnet_ip_mroute_cmd,
1022 .is_mp_safe = 1,
1023};
Neale Ranns32e1c012016-11-22 17:07:28 +00001024
Dave Barachd7cb1b52016-12-09 09:52:16 -05001025/*
1026 * fd.io coding-style-patch-verification: ON
1027 *
1028 * Local Variables:
1029 * eval: (c-set-style "gnu")
1030 * End:
1031 */