blob: 3b30fb9ce5efdf8bdd80e762915588ccc5d4e4a5 [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>
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -070052#include <vnet/dpo/l3_proxy_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Billy McFall0683c9c2016-10-13 08:27:31 -040054/**
55 * @file
Paul Vinciguerra5b755e22019-10-26 19:34:40 -040056 * @brief IPv4 and IPv6 adjacency and lookup table management.
Billy McFall0683c9c2016-10-13 08:27:31 -040057 *
58 */
59
Ed Warnickecb9cada2015-12-08 15:45:58 -070060clib_error_t *
61ip_interface_address_add_del (ip_lookup_main_t * lm,
62 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066{
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 vnet_main_t *vnm = vnet_get_main ();
68 ip_interface_address_t *a, *prev, *next;
69 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Dave Barachd7cb1b52016-12-09 09:52:16 -050071 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
72 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
74
75 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080076 if ((a && (address_length != a->address_length)) ||
77 (address_length == 0) ||
78 (lm->is_ip6 && address_length > 128) ||
79 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 {
81 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 return clib_error_create
83 ("%U wrong length (expected %d) for interface %U",
84 lm->format_address_and_length, addr_fib,
85 address_length, a ? a->address_length : -1,
86 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 }
88
89 if (is_del)
90 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050091 if (!a)
92 {
93 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
94 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
95 return clib_error_create ("%U not found for interface %U",
96 lm->format_address_and_length,
97 addr_fib, address_length,
98 format_vnet_sw_interface_name, vnm, si);
99 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101 if (a->prev_this_sw_interface != ~0)
102 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 prev =
104 pool_elt_at_index (lm->if_address_pool,
105 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 prev->next_this_sw_interface = a->next_this_sw_interface;
107 }
108 if (a->next_this_sw_interface != ~0)
109 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 next =
111 pool_elt_at_index (lm->if_address_pool,
112 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 next->prev_this_sw_interface = a->prev_this_sw_interface;
114
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 if (a->prev_this_sw_interface == ~0)
116 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
117 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 }
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 if ((a->next_this_sw_interface == ~0)
121 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
123
124 mhash_unset (&lm->address_to_if_address_index, addr_fib,
125 /* old_value */ 0);
126 pool_put (lm->if_address_pool, a);
127
128 if (result_if_address_index)
129 *result_if_address_index = ~0;
130 }
131
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 u32 pi; /* previous index */
135 u32 ai;
136 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
138 pool_get (lm->if_address_pool, a);
Dave Barachb7b92992018-10-17 10:38:51 -0400139 clib_memset (a, ~0, sizeof (a[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 ai = a - lm->if_address_pool;
141
142 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
143 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 while (pi != (u32) ~ 0)
145 {
146 prev = pool_elt_at_index (lm->if_address_pool, pi);
147 pi = prev->next_this_sw_interface;
148 }
149 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 a->address_key = mhash_set (&lm->address_to_if_address_index,
152 addr_fib, ai, /* old_value */ 0);
153 a->address_length = address_length;
154 a->sw_if_index = sw_if_index;
155 a->flags = 0;
156 a->prev_this_sw_interface = pi;
157 a->next_this_sw_interface = ~0;
158 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
162 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 if (result_if_address_index)
164 *result_if_address_index = ai;
165 }
166 else
167 {
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500168 if (sw_if_index != a->sw_if_index)
169 {
170 if (result_if_address_index)
171 *result_if_address_index = ~0;
172 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
173 return clib_error_create
174 ("Prefix %U already found on interface %U",
175 lm->format_address_and_length, addr_fib, address_length,
176 format_vnet_sw_if_index_name, vnm, a->sw_if_index);
177 }
178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 if (result_if_address_index)
180 *result_if_address_index = a - lm->if_address_pool;
181 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 return /* no error */ 0;
184}
185
Neale Rannsd96bad82017-03-08 01:12:54 -0800186static clib_error_t *
187ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
188{
189 vec_validate_init_empty (ip4_main.
190 lookup_main.if_address_pool_index_by_sw_if_index,
191 sw_if_index, ~0);
192 vec_validate_init_empty (ip6_main.
193 lookup_main.if_address_pool_index_by_sw_if_index,
194 sw_if_index, ~0);
195
196 return (NULL);
197}
198
199VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
200
Dave Barachd7cb1b52016-12-09 09:52:16 -0500201void
202ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500204 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 lm->fib_result_n_bytes = sizeof (uword);
206
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 lm->is_ip6 = is_ip6;
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500208 mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword),
209 sizeof (ip_interface_prefix_key_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 if (is_ip6)
211 {
212 lm->format_address_and_length = format_ip6_address_and_length;
213 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
214 sizeof (ip6_address_fib_t));
215 }
216 else
217 {
218 lm->format_address_and_length = format_ip4_address_and_length;
219 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
220 sizeof (ip4_address_fib_t));
221 }
222
223 {
224 int i;
225
226 /* Setup all IP protocols to be punted and builtin-unknown. */
227 for (i = 0; i < 256; i++)
228 {
229 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
230 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
231 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
233 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
235 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
236 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
237 IP_BUILTIN_PROTOCOL_UDP;
238 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
239 IP_PROTOCOL_ICMP] =
240 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 }
242}
243
Dave Barachd7cb1b52016-12-09 09:52:16 -0500244u8 *
245format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100247 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500248
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
250 foreach_flow_hash_bit;
251#undef _
252
253 return s;
254}
255
Dave Barachd7cb1b52016-12-09 09:52:16 -0500256u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 u32 n_packet_data_bytes = va_arg (*args, u32);
Benoît Ganne138c37a2019-07-18 17:34:28 +0200261
Neale Ranns0b6a8572019-10-30 17:34:14 +0000262 s = format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
264 return s;
265}
266
Dave Barachd7cb1b52016-12-09 09:52:16 -0500267static uword
268unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100270 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
271 fib_protocol_t fp = va_arg (*args, int);
272 dpo_proto_t proto;
273
Dave Barachd7cb1b52016-12-09 09:52:16 -0500274 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
276 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500277 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100282 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100284 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100286 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500287 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100289 {
290 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100292 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100296 }
297
Dave Barachd7cb1b52016-12-09 09:52:16 -0500298 dpo_set (dpo, DPO_CLASSIFY, proto,
299 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100300 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 else
302 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 return 1;
305}
306
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100307const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308 .as_u64 = {
309 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100310};
311
Neale Ranns039cbfe2018-02-27 03:45:38 -0800312static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100313vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800317 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100318 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800319 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100320 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500321 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100323 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
325 is_del = 0;
326 table_id = 0;
327 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400328 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
330 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500331 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 return 0;
333
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
335 {
Dave Barachb7b92992018-10-17 10:38:51 -0400336 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 if (unformat (line_input, "table %d", &table_id))
339 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 else if (unformat (line_input, "count %f", &count))
341 ;
342
343 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
345 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800346 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 vec_add1 (prefixs, pfx);
348 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500350 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
351 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800352 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500353 vec_add1 (prefixs, pfx);
354 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800356 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000358 vec_add1 (rpaths, rpath);
359 }
360 else if (vec_len (prefixs) > 0 &&
361 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100362 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500363 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100364 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 }
pragash352829f2017-08-17 22:53:24 -0400366 else if (unformat (line_input, "del"))
367 is_del = 1;
368 else if (unformat (line_input, "add"))
369 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 error = unformat_parse_error (line_input);
373 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 {
379 error =
380 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 goto done;
382 }
383
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100384 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100386 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387 goto done;
388 }
389
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100390 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100392 /*
393 * if no table_id is passed we will manipulate the default
394 */
395 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700399 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100401 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500402 {
403 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 }
406 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100408 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100410 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500411 {
412 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
413 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100414 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 {
416 fib_table_entry_special_dpo_add (fib_index,
417 &prefixs[i],
418 FIB_SOURCE_CLI,
419 FIB_ENTRY_FLAG_EXCLUSIVE,
420 &dpos[0]);
421 dpo_reset (&dpos[0]);
422 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500424 {
425 error =
426 clib_error_return (0,
427 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100428 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100430 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 {
Neale Ranns097fa662018-05-01 05:17:55 -0700432 u32 k, n, incr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100433 ip46_address_t dst = prefixs[i].fp_addr;
434 f64 t[2];
435 n = count;
436 t[0] = vlib_time_now (vm);
437 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
438 prefixs[i].fp_len);
439
440 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500441 {
Neale Ranns097fa662018-05-01 05:17:55 -0700442 fib_prefix_t rpfx = {
443 .fp_len = prefixs[i].fp_len,
444 .fp_proto = prefixs[i].fp_proto,
445 .fp_addr = dst,
446 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447
Neale Ranns097fa662018-05-01 05:17:55 -0700448 if (is_del)
449 fib_table_entry_path_remove2 (fib_index,
450 &rpfx, FIB_SOURCE_CLI, rpaths);
451 else
452 fib_table_entry_path_add2 (fib_index,
453 &rpfx,
454 FIB_SOURCE_CLI,
455 FIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456
457 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460 clib_host_to_net_u32 (incr +
461 clib_net_to_host_u32 (dst.
462 ip4.as_u32));
463 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100464 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500465 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466 int bucket = (incr < 64 ? 0 : 1);
467 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 clib_host_to_net_u64 (incr +
469 clib_net_to_host_u64 (dst.ip6.as_u64
470 [bucket]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500471 }
472 }
Neale Ranns097fa662018-05-01 05:17:55 -0700473
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100474 t[1] = vlib_time_now (vm);
475 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
477 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 {
480 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500482 }
483 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100484
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100486 vec_free (dpos);
487 vec_free (prefixs);
488 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500489 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 return error;
491}
492
Neale Ranns15002542017-09-10 04:39:11 -0700493clib_error_t *
494vnet_ip_table_cmd (vlib_main_t * vm,
495 unformat_input_t * main_input,
496 vlib_cli_command_t * cmd, fib_protocol_t fproto)
497{
498 unformat_input_t _line_input, *line_input = &_line_input;
499 clib_error_t *error = NULL;
500 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700501 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700502
503 is_add = 1;
504 table_id = ~0;
505
506 /* Get a line of input. */
507 if (!unformat_user (main_input, unformat_line_input, line_input))
508 return 0;
509
510 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
511 {
512 if (unformat (line_input, "%d", &table_id))
513 ;
514 else if (unformat (line_input, "del"))
515 is_add = 0;
516 else if (unformat (line_input, "add"))
517 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700518 else if (unformat (line_input, "name %s", &name))
519 ;
Neale Ranns15002542017-09-10 04:39:11 -0700520 else
521 {
522 error = unformat_parse_error (line_input);
523 goto done;
524 }
525 }
526
527 if (~0 == table_id)
528 {
529 error = clib_error_return (0, "No table id");
530 goto done;
531 }
532 else if (0 == table_id)
533 {
534 error = clib_error_return (0, "Can't change the default table");
535 goto done;
536 }
537 else
538 {
539 if (is_add)
540 {
Neale Ranns2297af02017-09-12 09:45:04 -0700541 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700542 }
543 else
544 {
545 ip_table_delete (fproto, table_id, 0);
546 }
547 }
548
549done:
550 unformat_free (line_input);
551 return error;
552}
553
554clib_error_t *
555vnet_ip4_table_cmd (vlib_main_t * vm,
556 unformat_input_t * main_input, vlib_cli_command_t * cmd)
557{
558 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
559}
560
561clib_error_t *
562vnet_ip6_table_cmd (vlib_main_t * vm,
563 unformat_input_t * main_input, vlib_cli_command_t * cmd)
564{
565 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
566}
567
Dave Barachd7cb1b52016-12-09 09:52:16 -0500568/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
570 .path = "ip",
571 .short_help = "Internet protocol (IP) commands",
572};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500573/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Dave Barachd7cb1b52016-12-09 09:52:16 -0500575/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400576VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
577 .path = "ip6",
578 .short_help = "Internet protocol version 6 (IPv6) commands",
579};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500580/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400581
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
584 .path = "show ip",
585 .short_help = "Internet protocol (IP) show commands",
586};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500587/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Dave Barachd7cb1b52016-12-09 09:52:16 -0500589/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
591 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400592 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700596/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400597 * This command is used to add or delete IPv4 or IPv6 routes. All
598 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
599 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
600 * can be IPv4 or IPv6, but all must be of the same form in a single
601 * command. To display the current set of routes, use the commands
602 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
603 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700604 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400605 * Example of how to add a straight forward static route:
606 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
607 * Example of how to delete a straight forward static route:
608 * @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 -0700609 * Mainly for route add/del performance testing, one can add or delete
610 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400611 * @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 -0700612 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400613 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
614 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
615 * For unequal-cost multipath, specify the desired weights. This
616 * combination of weights results in 3/4 of the traffic following the
617 * second path, 1/4 following the first path:
618 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
619 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
620 * To add a route to a particular FIB table (VRF), use:
621 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700622 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400623/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624VLIB_CLI_COMMAND (ip_route_command, static) = {
625 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800626 .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 -0700627 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400628 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629};
Neale Ranns15002542017-09-10 04:39:11 -0700630
631/* *INDENT-ON* */
632/*?
633 * This command is used to add or delete IPv4 Tables. All
634 * Tables must be explicitly added before that can be used. Creating a
635 * table will add both unicast and multicast FIBs
636 *
637 ?*/
638/* *INDENT-OFF* */
639VLIB_CLI_COMMAND (ip4_table_command, static) = {
640 .path = "ip table",
641 .short_help = "ip table [add|del] <table-id>",
642 .function = vnet_ip4_table_cmd,
643 .is_mp_safe = 1,
644};
645/* *INDENT-ON* */
646
647/* *INDENT-ON* */
648/*?
649 * This command is used to add or delete IPv4 Tables. All
650 * Tables must be explicitly added before that can be used. Creating a
651 * table will add both unicast and multicast FIBs
652 *
653 ?*/
654/* *INDENT-OFF* */
655VLIB_CLI_COMMAND (ip6_table_command, static) = {
656 .path = "ip6 table",
657 .short_help = "ip6 table [add|del] <table-id>",
658 .function = vnet_ip6_table_cmd,
659 .is_mp_safe = 1,
660};
661
662static clib_error_t *
663ip_table_bind_cmd (vlib_main_t * vm,
664 unformat_input_t * input,
665 vlib_cli_command_t * cmd,
666 fib_protocol_t fproto)
667{
668 vnet_main_t *vnm = vnet_get_main ();
669 clib_error_t *error = 0;
670 u32 sw_if_index, table_id;
671 int rv;
672
673 sw_if_index = ~0;
674
675 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
676 {
677 error = clib_error_return (0, "unknown interface `%U'",
678 format_unformat_error, input);
679 goto done;
680 }
681
682 if (unformat (input, "%d", &table_id))
683 ;
684 else
685 {
686 error = clib_error_return (0, "expected table id `%U'",
687 format_unformat_error, input);
688 goto done;
689 }
690
691 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
692
693 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
694 {
695 error = clib_error_return (0, "IP addresses are still present on %U",
696 format_vnet_sw_if_index_name,
697 vnet_get_main(),
698 sw_if_index);
699 }
700 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
701 {
702 error = clib_error_return (0, "no such table %d", table_id);
703 }
704 else if (0 != rv)
705 {
706 error = clib_error_return (0, "unknown error");
707 }
708
709 done:
710 return error;
711}
712
713static clib_error_t *
714ip4_table_bind_cmd (vlib_main_t * vm,
715 unformat_input_t * input,
716 vlib_cli_command_t * cmd)
717{
718 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
719}
720
721static clib_error_t *
722ip6_table_bind_cmd (vlib_main_t * vm,
723 unformat_input_t * input,
724 vlib_cli_command_t * cmd)
725{
726 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
727}
728
729/*?
730 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700731 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700732 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
733 * FIB table will only be displayed if a route has been added to the table, or
734 * an IP Address is assigned to an interface in the table (which adds a route
735 * automatically).
736 *
737 * @note IP addresses added after setting the interface IP table are added to
738 * the indicated FIB table. If an IP address is added prior to changing the
739 * table then this is an error. The control plane must remove these addresses
740 * first and then change the table. VPP will not automatically move the
741 * addresses from the old to the new table as it does not know the validity
742 * of such a change.
743 *
744 * @cliexpar
745 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
746 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
747 ?*/
748/* *INDENT-OFF* */
749VLIB_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};
755/* *INDENT-ON* */
756
757/*?
758 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700759 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700760 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
761 * FIB table will only be displayed if a route has been added to the table, or
762 * an IP Address is assigned to an interface in the table (which adds a route
763 * automatically).
764 *
765 * @note IP addresses added after setting the interface IP table are added to
766 * the indicated FIB table. If an IP address is added prior to changing the
767 * table then this is an error. The control plane must remove these addresses
768 * first and then change the table. VPP will not automatically move the
769 * addresses from the old to the new table as it does not know the validity
770 * of such a change.
771 *
772 * @cliexpar
773 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
774 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
775 ?*/
776/* *INDENT-OFF* */
777VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
778{
779 .path = "set interface ip6 table",
780 .function = ip6_table_bind_cmd,
781 .short_help = "set interface ip6 table <interface> <table-id>"
782};
Billy McFall0683c9c2016-10-13 08:27:31 -0400783/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
Neale Ranns32e1c012016-11-22 17:07:28 +0000785clib_error_t *
786vnet_ip_mroute_cmd (vlib_main_t * vm,
787 unformat_input_t * main_input, vlib_cli_command_t * cmd)
788{
789 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns097fa662018-05-01 05:17:55 -0700790 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000791 clib_error_t *error = NULL;
Neale Ranns097fa662018-05-01 05:17:55 -0700792 u32 table_id, is_del, payload_proto;
Neale Ranns32e1c012016-11-22 17:07:28 +0000793 mfib_prefix_t pfx;
794 u32 fib_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000795 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800796 u32 gcount, scount, ss, gg, incr;
797 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000798 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000799
Neale Ranns52456fc2017-02-15 00:38:27 -0800800 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000801 is_del = 0;
802 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400803 clib_memset (&pfx, 0, sizeof (pfx));
804 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000805 rpath.frp_sw_if_index = ~0;
806
807 /* Get a line of input. */
808 if (!unformat_user (main_input, unformat_line_input, line_input))
809 return 0;
810
811 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
812 {
813 if (unformat (line_input, "table %d", &table_id))
814 ;
815 else if (unformat (line_input, "del"))
816 is_del = 1;
817 else if (unformat (line_input, "add"))
818 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000819 else if (unformat (line_input, "rpf-id %d", &rpf_id))
820 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800821 else if (unformat (line_input, "scount %d", &scount))
822 ;
823 else if (unformat (line_input, "gcount %d", &gcount))
824 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000825 else if (unformat (line_input, "%U %U",
826 unformat_ip4_address,
827 &pfx.fp_src_addr.ip4,
828 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
829 {
830 pfx.fp_proto = FIB_PROTOCOL_IP4;
831 pfx.fp_len = 64;
832 }
833 else if (unformat (line_input, "%U %U",
834 unformat_ip6_address,
835 &pfx.fp_src_addr.ip6,
836 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
837 {
838 pfx.fp_proto = FIB_PROTOCOL_IP6;
839 pfx.fp_len = 256;
840 }
841 else if (unformat (line_input, "%U/%d",
842 unformat_ip4_address,
843 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
844 {
Dave Barachb7b92992018-10-17 10:38:51 -0400845 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000846 pfx.fp_proto = FIB_PROTOCOL_IP4;
847 }
848 else if (unformat (line_input, "%U/%d",
849 unformat_ip6_address,
850 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
851 {
Dave Barachb7b92992018-10-17 10:38:51 -0400852 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000853 pfx.fp_proto = FIB_PROTOCOL_IP6;
854 }
855 else if (unformat (line_input, "%U",
856 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
857 {
Dave Barachb7b92992018-10-17 10:38:51 -0400858 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000859 pfx.fp_proto = FIB_PROTOCOL_IP4;
860 pfx.fp_len = 32;
861 }
862 else if (unformat (line_input, "%U",
863 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
864 {
Dave Barachb7b92992018-10-17 10:38:51 -0400865 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000866 pfx.fp_proto = FIB_PROTOCOL_IP6;
867 pfx.fp_len = 128;
868 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000869 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700870 {
Dave Barachb7b92992018-10-17 10:38:51 -0400871 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700872 rpath.frp_sw_if_index = ~0;
873 rpath.frp_weight = 1;
874 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400875 /*
876 * set the path proto appropriately for the prefix
877 */
878 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns097fa662018-05-01 05:17:55 -0700879 rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
Neale Rannseacc8c52019-10-01 09:49:53 -0700880
881 vec_add1 (rpaths, rpath);
Neale Ranns32e1c012016-11-22 17:07:28 +0000882 }
Neale Ranns097fa662018-05-01 05:17:55 -0700883 else if (unformat (line_input, "via %U",
884 unformat_fib_route_path, &rpath, &payload_proto))
885 {
886 vec_add1 (rpaths, rpath);
887 }
888 else if (unformat (line_input, "%U",
Neale Ranns32e1c012016-11-22 17:07:28 +0000889 unformat_mfib_entry_flags, &eflags))
890 ;
891 else
892 {
893 error = unformat_parse_error (line_input);
894 goto done;
895 }
896 }
897
Neale Ranns32e1c012016-11-22 17:07:28 +0000898 if (~0 == table_id)
899 {
900 /*
901 * if no table_id is passed we will manipulate the default
902 */
903 fib_index = 0;
904 }
905 else
906 {
907 fib_index = mfib_table_find (pfx.fp_proto, table_id);
908
909 if (~0 == fib_index)
910 {
911 error = clib_error_return (0, "Nonexistent table id %d", table_id);
912 goto done;
913 }
914 }
915
Neale Ranns52456fc2017-02-15 00:38:27 -0800916 timet[0] = vlib_time_now (vm);
917
918 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000919 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800920 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000921 }
922 else
923 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800924 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000925 }
926
Neale Ranns52456fc2017-02-15 00:38:27 -0800927 for (ss = 0; ss < scount; ss++)
928 {
929 for (gg = 0; gg < gcount; gg++)
930 {
Neale Ranns097fa662018-05-01 05:17:55 -0700931 if (is_del && 0 == vec_len (rpaths))
Neale Ranns52456fc2017-02-15 00:38:27 -0800932 {
933 /* no path provided => route delete */
934 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
935 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000936 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800937 {
938 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000939 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800940 }
941 else
942 {
943 if (is_del)
944 mfib_table_entry_path_remove (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700945 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800946 else
947 mfib_table_entry_path_update (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700948 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800949 }
950
951 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
952 {
953 pfx.fp_grp_addr.ip4.as_u32 =
954 clib_host_to_net_u32 (incr +
955 clib_net_to_host_u32 (pfx.
956 fp_grp_addr.ip4.
957 as_u32));
958 }
959 else
960 {
961 int bucket = (incr < 64 ? 0 : 1);
962 pfx.fp_grp_addr.ip6.as_u64[bucket] =
963 clib_host_to_net_u64 (incr +
964 clib_net_to_host_u64 (pfx.
965 fp_grp_addr.ip6.as_u64
966 [bucket]));
967
968 }
969 }
970 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
971 {
972 pfx.fp_src_addr.ip4.as_u32 =
973 clib_host_to_net_u32 (1 +
974 clib_net_to_host_u32 (pfx.fp_src_addr.
975 ip4.as_u32));
976 }
977 else
978 {
979 pfx.fp_src_addr.ip6.as_u64[1] =
980 clib_host_to_net_u64 (1 +
981 clib_net_to_host_u64 (pfx.fp_src_addr.
982 ip6.as_u64[1]));
983 }
984 }
985
986 timet[1] = vlib_time_now (vm);
987
988 if (scount > 1 || gcount > 1)
989 vlib_cli_output (vm, "%.6e routes/sec",
990 (scount * gcount) / (timet[1] - timet[0]));
991
Neale Ranns32e1c012016-11-22 17:07:28 +0000992done:
Neale Ranns097fa662018-05-01 05:17:55 -0700993 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500994 unformat_free (line_input);
995
Neale Ranns32e1c012016-11-22 17:07:28 +0000996 return error;
997}
998
999/*?
Paul Vinciguerra5b755e22019-10-26 19:34:40 -04001000 * This command is used to add or delete IPv4 or IPv6 multicast routes. All
Neale Ranns32e1c012016-11-22 17:07:28 +00001001 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1002 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1003 * can be IPv4 or IPv6, but all must be of the same form in a single
1004 * command. To display the current set of routes, use the commands
1005 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1006 * The full set of support flags for interfaces and route is shown via;
1007 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1008 * respectively.
1009 * @cliexpar
1010 * Example of how to add a forwarding 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/0 Forward}
1013 * Example of how to add an accepting interface to a route (and create the
1014 * route if it does not exist)
1015 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1016 * Example of changing the route's flags to send signals via the API
1017 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1018
1019 ?*/
1020/* *INDENT-OFF* */
1021VLIB_CLI_COMMAND (ip_mroute_command, static) =
1022{
1023 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +00001024 .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 +00001025 .function = vnet_ip_mroute_cmd,
1026 .is_mp_safe = 1,
1027};
1028/* *INDENT-ON* */
1029
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001030clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001031vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1032{
1033 u32 fib_index;
1034
1035 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1036 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1037 "invalid sw_if_index");
1038
1039 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1040 args->sw_if_index);
1041 if (args->is_add)
1042 {
1043 dpo_id_t proxy_dpo = DPO_INVALID;
1044 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1045 args->sw_if_index, &proxy_dpo);
1046 fib_table_entry_special_dpo_add (fib_index,
1047 &args->prefix,
1048 FIB_SOURCE_PROXY,
1049 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1050 dpo_reset (&proxy_dpo);
1051 }
1052 else
1053 {
1054 fib_table_entry_special_remove (fib_index, &args->prefix,
1055 FIB_SOURCE_PROXY);
1056 }
1057 return 0;
1058}
1059
1060u8
1061ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1062{
1063 u32 fib_index;
1064 fib_node_index_t fei;
1065 const dpo_id_t *dpo;
1066 l3_proxy_dpo_t *l3p;
1067 load_balance_t *lb0;
1068
1069 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1070 sw_if_index);
1071 if (fib_index == ~0)
1072 return 0;
1073
1074 fei = fib_table_lookup_exact_match (fib_index, pfx);
1075 if (fei == FIB_NODE_INDEX_INVALID)
1076 return 0;
1077
1078 dpo = fib_entry_contribute_ip_forwarding (fei);
1079 lb0 = load_balance_get (dpo->dpoi_index);
1080 dpo = load_balance_get_bucket_i (lb0, 0);
1081 if (dpo->dpoi_type != DPO_L3_PROXY)
1082 return 0;
1083
1084 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1085 return (l3p->l3p_sw_if_index == sw_if_index);
1086}
1087
Matus Fabian75b9f452018-10-02 23:27:21 -07001088typedef struct ip_container_proxy_walk_ctx_t_
1089{
1090 ip_container_proxy_cb_t cb;
1091 void *ctx;
1092} ip_container_proxy_walk_ctx_t;
1093
1094static fib_table_walk_rc_t
1095ip_container_proxy_fib_table_walk (fib_node_index_t fei, void *arg)
1096{
1097 ip_container_proxy_walk_ctx_t *ctx = arg;
1098 const fib_prefix_t *pfx;
1099 const dpo_id_t *dpo;
1100 load_balance_t *lb;
1101 l3_proxy_dpo_t *l3p;
1102
1103 pfx = fib_entry_get_prefix (fei);
1104 if (fib_entry_is_sourced (fei, FIB_SOURCE_PROXY))
1105 {
1106 dpo = fib_entry_contribute_ip_forwarding (fei);
1107 lb = load_balance_get (dpo->dpoi_index);
1108 dpo = load_balance_get_bucket_i (lb, 0);
1109 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1110 ctx->cb (pfx, l3p->l3p_sw_if_index, ctx->ctx);
1111 }
1112
1113 return FIB_TABLE_WALK_CONTINUE;
1114}
1115
1116void
1117ip_container_proxy_walk (ip_container_proxy_cb_t cb, void *ctx)
1118{
1119 fib_table_t *fib_table;
1120 ip_container_proxy_walk_ctx_t wctx = {
1121 .cb = cb,
1122 .ctx = ctx,
1123 };
1124
1125 /* *INDENT-OFF* */
1126 pool_foreach (fib_table, ip4_main.fibs,
1127 ({
1128 fib_table_walk(fib_table->ft_index,
1129 FIB_PROTOCOL_IP4,
1130 ip_container_proxy_fib_table_walk,
1131 &wctx);
1132 }));
1133 pool_foreach (fib_table, ip6_main.fibs,
1134 ({
1135 fib_table_walk(fib_table->ft_index,
1136 FIB_PROTOCOL_IP6,
1137 ip_container_proxy_fib_table_walk,
1138 &wctx);
1139 }));
1140 /* *INDENT-ON* */
1141}
1142
Florin Coras595992c2017-11-06 17:17:08 -08001143clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001144ip_container_cmd (vlib_main_t * vm,
1145 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1146{
1147 unformat_input_t _line_input, *line_input = &_line_input;
1148 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001149 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001150 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001151 u32 sw_if_index;
1152
1153 vnm = vnet_get_main ();
1154 is_del = 0;
1155 sw_if_index = ~0;
Dave Barachb7b92992018-10-17 10:38:51 -04001156 clib_memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001157
1158 /* Get a line of input. */
1159 if (!unformat_user (main_input, unformat_line_input, line_input))
1160 return 0;
1161
1162 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1163 {
1164 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1165 {
1166 pfx.fp_proto = FIB_PROTOCOL_IP4;
1167 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001168 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001169 }
1170 else if (unformat (line_input, "%U",
1171 unformat_ip6_address, &pfx.fp_addr.ip6))
1172 {
1173 pfx.fp_proto = FIB_PROTOCOL_IP6;
1174 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001175 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001176 }
1177 else if (unformat (line_input, "%U",
1178 unformat_vnet_sw_interface, vnm, &sw_if_index))
1179 ;
1180 else if (unformat (line_input, "del"))
1181 is_del = 1;
1182 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301183 {
1184 unformat_free (line_input);
1185 return (clib_error_return (0, "unknown input '%U'",
1186 format_unformat_error, line_input));
1187 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001188 }
1189
Florin Corase1682c42017-11-07 17:06:36 -08001190 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001191 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301192 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001193 vlib_cli_output (vm, "interface and address must be set");
1194 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001195 }
1196
Florin Coras595992c2017-11-06 17:17:08 -08001197 vnet_ip_container_proxy_args_t args = {
1198 .prefix = pfx,
1199 .sw_if_index = sw_if_index,
1200 .is_add = !is_del,
1201 };
1202 vnet_ip_container_proxy_add_del (&args);
1203 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001204 return (NULL);
1205}
1206
1207/* *INDENT-OFF* */
1208VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1209 .path = "ip container",
1210 .function = ip_container_cmd,
1211 .short_help = "ip container <address> <interface>",
1212 .is_mp_safe = 1,
1213};
1214/* *INDENT-ON* */
1215
Florin Coras595992c2017-11-06 17:17:08 -08001216clib_error_t *
1217show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1218 vlib_cli_command_t * cmd)
1219{
1220 unformat_input_t _line_input, *line_input = &_line_input;
1221 vnet_main_t *vnm = vnet_get_main ();
1222 fib_prefix_t pfx;
1223 u32 sw_if_index = ~0;
1224 u8 has_proxy;
1225
1226 if (!unformat_user (main_input, unformat_line_input, line_input))
1227 return 0;
1228 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1229 {
1230 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1231 {
1232 pfx.fp_proto = FIB_PROTOCOL_IP4;
1233 pfx.fp_len = 32;
1234 }
1235 else if (unformat (line_input, "%U",
1236 unformat_ip6_address, &pfx.fp_addr.ip6))
1237 {
1238 pfx.fp_proto = FIB_PROTOCOL_IP6;
1239 pfx.fp_len = 128;
1240 }
1241 else if (unformat (line_input, "%U",
1242 unformat_vnet_sw_interface, vnm, &sw_if_index))
1243 ;
1244 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301245 {
1246 unformat_free (line_input);
1247 return (clib_error_return (0, "unknown input '%U'",
1248 format_unformat_error, line_input));
1249 }
Florin Coras595992c2017-11-06 17:17:08 -08001250 }
1251
1252 if (~0 == sw_if_index)
1253 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301254 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001255 vlib_cli_output (vm, "no interface");
1256 return (clib_error_return (0, "no interface"));
1257 }
1258
1259 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1260 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1261
1262 unformat_free (line_input);
1263 return 0;
1264}
1265
1266/* *INDENT-OFF* */
1267VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1268 .path = "show ip container",
1269 .function = show_ip_container_cmd_fn,
1270 .short_help = "show ip container <address> <interface>",
1271 .is_mp_safe = 1,
1272};
1273/* *INDENT-ON* */
1274
Dave Barachd7cb1b52016-12-09 09:52:16 -05001275/*
1276 * fd.io coding-style-patch-verification: ON
1277 *
1278 * Local Variables:
1279 * eval: (c-set-style "gnu")
1280 * End:
1281 */