blob: 43d61d39ee046d97a24f63f8be46344819f657a2 [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/*
16 * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
Ed 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>
Neale Ranns3f844d02017-02-18 00:03:54 -080053#include <vnet/ip/ip6_neighbor.h>
Neale Ranns37029302018-08-10 05:30:06 -070054#include <vnet/ethernet/arp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Billy McFall0683c9c2016-10-13 08:27:31 -040056/**
57 * @file
58 * @brief IPv4 and IPv6 adjacency and lookup table managment.
59 *
60 */
61
Ed Warnickecb9cada2015-12-08 15:45:58 -070062clib_error_t *
63ip_interface_address_add_del (ip_lookup_main_t * lm,
64 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068{
Dave Barachd7cb1b52016-12-09 09:52:16 -050069 vnet_main_t *vnm = vnet_get_main ();
70 ip_interface_address_t *a, *prev, *next;
71 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Dave Barachd7cb1b52016-12-09 09:52:16 -050073 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
74 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
76
77 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080078 if ((a && (address_length != a->address_length)) ||
79 (address_length == 0) ||
80 (lm->is_ip6 && address_length > 128) ||
81 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 {
83 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050084 return clib_error_create
85 ("%U wrong length (expected %d) for interface %U",
86 lm->format_address_and_length, addr_fib,
87 address_length, a ? a->address_length : -1,
88 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 }
90
91 if (is_del)
92 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 if (!a)
94 {
95 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
96 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
97 return clib_error_create ("%U not found for interface %U",
98 lm->format_address_and_length,
99 addr_fib, address_length,
100 format_vnet_sw_interface_name, vnm, si);
101 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
103 if (a->prev_this_sw_interface != ~0)
104 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105 prev =
106 pool_elt_at_index (lm->if_address_pool,
107 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 prev->next_this_sw_interface = a->next_this_sw_interface;
109 }
110 if (a->next_this_sw_interface != ~0)
111 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112 next =
113 pool_elt_at_index (lm->if_address_pool,
114 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 next->prev_this_sw_interface = a->prev_this_sw_interface;
116
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117 if (a->prev_this_sw_interface == ~0)
118 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
119 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 }
121
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 if ((a->next_this_sw_interface == ~0)
123 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
125
126 mhash_unset (&lm->address_to_if_address_index, addr_fib,
127 /* old_value */ 0);
128 pool_put (lm->if_address_pool, a);
129
130 if (result_if_address_index)
131 *result_if_address_index = ~0;
132 }
133
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500136 u32 pi; /* previous index */
137 u32 ai;
138 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
140 pool_get (lm->if_address_pool, a);
Dave Barachb7b92992018-10-17 10:38:51 -0400141 clib_memset (a, ~0, sizeof (a[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 ai = a - lm->if_address_pool;
143
144 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
145 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500146 while (pi != (u32) ~ 0)
147 {
148 prev = pool_elt_at_index (lm->if_address_pool, pi);
149 pi = prev->next_this_sw_interface;
150 }
151 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 a->address_key = mhash_set (&lm->address_to_if_address_index,
154 addr_fib, ai, /* old_value */ 0);
155 a->address_length = address_length;
156 a->sw_if_index = sw_if_index;
157 a->flags = 0;
158 a->prev_this_sw_interface = pi;
159 a->next_this_sw_interface = ~0;
160 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Dave Barachd7cb1b52016-12-09 09:52:16 -0500163 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
164 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 if (result_if_address_index)
166 *result_if_address_index = ai;
167 }
168 else
169 {
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500170 if (sw_if_index != a->sw_if_index)
171 {
172 if (result_if_address_index)
173 *result_if_address_index = ~0;
174 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
175 return clib_error_create
176 ("Prefix %U already found on interface %U",
177 lm->format_address_and_length, addr_fib, address_length,
178 format_vnet_sw_if_index_name, vnm, a->sw_if_index);
179 }
180
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 if (result_if_address_index)
182 *result_if_address_index = a - lm->if_address_pool;
183 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 return /* no error */ 0;
186}
187
Neale Rannsd96bad82017-03-08 01:12:54 -0800188static clib_error_t *
189ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
190{
191 vec_validate_init_empty (ip4_main.
192 lookup_main.if_address_pool_index_by_sw_if_index,
193 sw_if_index, ~0);
194 vec_validate_init_empty (ip6_main.
195 lookup_main.if_address_pool_index_by_sw_if_index,
196 sw_if_index, ~0);
197
198 return (NULL);
199}
200
201VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
202
Dave Barachd7cb1b52016-12-09 09:52:16 -0500203void
204ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 lm->fib_result_n_bytes = sizeof (uword);
208
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 lm->is_ip6 = is_ip6;
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500210 mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword),
211 sizeof (ip_interface_prefix_key_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 if (is_ip6)
213 {
214 lm->format_address_and_length = format_ip6_address_and_length;
215 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
216 sizeof (ip6_address_fib_t));
217 }
218 else
219 {
220 lm->format_address_and_length = format_ip4_address_and_length;
221 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
222 sizeof (ip4_address_fib_t));
223 }
224
225 {
226 int i;
227
228 /* Setup all IP protocols to be punted and builtin-unknown. */
229 for (i = 0; i < 256; i++)
230 {
231 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
232 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
233 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
235 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
237 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
238 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
239 IP_BUILTIN_PROTOCOL_UDP;
240 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
241 IP_PROTOCOL_ICMP] =
242 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
244}
245
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246u8 *
247format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100249 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500250
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
252 foreach_flow_hash_bit;
253#undef _
254
255 return s;
256}
257
Dave Barachd7cb1b52016-12-09 09:52:16 -0500258u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500262 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 u32 n_packet_data_bytes = va_arg (*args, u32);
Benoît Ganne138c37a2019-07-18 17:34:28 +0200264 ip_adjacency_t *adj;
265
266 if (!adj_is_valid (adj_index))
267 return format (s, "<invalid adjacency>");
268
269 adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271 switch (adj->lookup_next_index)
272 {
273 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400274 case IP_LOOKUP_NEXT_MCAST:
275 s =
276 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 break;
278
279 default:
280 break;
281 }
282
283 return s;
284}
285
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286static uword
287unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100289 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
290 fib_protocol_t fp = va_arg (*args, int);
291 dpo_proto_t proto;
292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500298 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500300 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100301 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100303 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500304 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100305 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100308 {
309 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100311 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100313 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100315 }
316
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 dpo_set (dpo, DPO_CLASSIFY, proto,
318 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100319 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 else
321 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 return 1;
324}
325
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100326const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 .as_u64 = {
328 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100329};
330
Neale Ranns039cbfe2018-02-27 03:45:38 -0800331static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100332vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800336 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100337 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800338 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500340 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100342 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
344 is_del = 0;
345 table_id = 0;
346 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400347 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
349 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500350 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 return 0;
352
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
354 {
Dave Barachb7b92992018-10-17 10:38:51 -0400355 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357 if (unformat (line_input, "table %d", &table_id))
358 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 else if (unformat (line_input, "count %f", &count))
360 ;
361
362 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500363 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
364 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800365 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500366 vec_add1 (prefixs, pfx);
367 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
370 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800371 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500372 vec_add1 (prefixs, pfx);
373 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800375 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000377 vec_add1 (rpaths, rpath);
378 }
379 else if (vec_len (prefixs) > 0 &&
380 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500384 }
pragash352829f2017-08-17 22:53:24 -0400385 else if (unformat (line_input, "del"))
386 is_del = 1;
387 else if (unformat (line_input, "add"))
388 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 error = unformat_parse_error (line_input);
392 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500395
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100396 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500397 {
398 error =
399 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 goto done;
401 }
402
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100403 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100405 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 goto done;
407 }
408
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100409 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100411 /*
412 * if no table_id is passed we will manipulate the default
413 */
414 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100416 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700418 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100420 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421 {
422 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500424 }
425 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100427 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500428 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100429 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500430 {
431 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
432 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100433 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500434 {
435 fib_table_entry_special_dpo_add (fib_index,
436 &prefixs[i],
437 FIB_SOURCE_CLI,
438 FIB_ENTRY_FLAG_EXCLUSIVE,
439 &dpos[0]);
440 dpo_reset (&dpos[0]);
441 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 {
444 error =
445 clib_error_return (0,
446 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 {
Neale Ranns097fa662018-05-01 05:17:55 -0700451 u32 k, n, incr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100452 ip46_address_t dst = prefixs[i].fp_addr;
453 f64 t[2];
454 n = count;
455 t[0] = vlib_time_now (vm);
456 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
457 prefixs[i].fp_len);
458
459 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460 {
Neale Ranns097fa662018-05-01 05:17:55 -0700461 fib_prefix_t rpfx = {
462 .fp_len = prefixs[i].fp_len,
463 .fp_proto = prefixs[i].fp_proto,
464 .fp_addr = dst,
465 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466
Neale Ranns097fa662018-05-01 05:17:55 -0700467 if (is_del)
468 fib_table_entry_path_remove2 (fib_index,
469 &rpfx, FIB_SOURCE_CLI, rpaths);
470 else
471 fib_table_entry_path_add2 (fib_index,
472 &rpfx,
473 FIB_SOURCE_CLI,
474 FIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100475
476 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 clib_host_to_net_u32 (incr +
480 clib_net_to_host_u32 (dst.
481 ip4.as_u32));
482 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500484 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100485 int bucket = (incr < 64 ? 0 : 1);
486 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 clib_host_to_net_u64 (incr +
488 clib_net_to_host_u64 (dst.ip6.as_u64
489 [bucket]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 }
491 }
Neale Ranns097fa662018-05-01 05:17:55 -0700492
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100493 t[1] = vlib_time_now (vm);
494 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
496 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100497 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500498 {
499 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100500 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500501 }
502 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100503
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100505 vec_free (dpos);
506 vec_free (prefixs);
507 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500508 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 return error;
510}
511
Neale Ranns15002542017-09-10 04:39:11 -0700512clib_error_t *
513vnet_ip_table_cmd (vlib_main_t * vm,
514 unformat_input_t * main_input,
515 vlib_cli_command_t * cmd, fib_protocol_t fproto)
516{
517 unformat_input_t _line_input, *line_input = &_line_input;
518 clib_error_t *error = NULL;
519 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700520 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700521
522 is_add = 1;
523 table_id = ~0;
524
525 /* Get a line of input. */
526 if (!unformat_user (main_input, unformat_line_input, line_input))
527 return 0;
528
529 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
530 {
531 if (unformat (line_input, "%d", &table_id))
532 ;
533 else if (unformat (line_input, "del"))
534 is_add = 0;
535 else if (unformat (line_input, "add"))
536 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700537 else if (unformat (line_input, "name %s", &name))
538 ;
Neale Ranns15002542017-09-10 04:39:11 -0700539 else
540 {
541 error = unformat_parse_error (line_input);
542 goto done;
543 }
544 }
545
546 if (~0 == table_id)
547 {
548 error = clib_error_return (0, "No table id");
549 goto done;
550 }
551 else if (0 == table_id)
552 {
553 error = clib_error_return (0, "Can't change the default table");
554 goto done;
555 }
556 else
557 {
558 if (is_add)
559 {
Neale Ranns2297af02017-09-12 09:45:04 -0700560 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700561 }
562 else
563 {
564 ip_table_delete (fproto, table_id, 0);
565 }
566 }
567
568done:
569 unformat_free (line_input);
570 return error;
571}
572
573clib_error_t *
574vnet_ip4_table_cmd (vlib_main_t * vm,
575 unformat_input_t * main_input, vlib_cli_command_t * cmd)
576{
577 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
578}
579
580clib_error_t *
581vnet_ip6_table_cmd (vlib_main_t * vm,
582 unformat_input_t * main_input, vlib_cli_command_t * cmd)
583{
584 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
585}
586
Dave Barachd7cb1b52016-12-09 09:52:16 -0500587/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
589 .path = "ip",
590 .short_help = "Internet protocol (IP) commands",
591};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500592/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400595VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
596 .path = "ip6",
597 .short_help = "Internet protocol version 6 (IPv6) commands",
598};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500599/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400600
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
603 .path = "show ip",
604 .short_help = "Internet protocol (IP) show commands",
605};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
610 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400611 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500613/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700615/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400616 * This command is used to add or delete IPv4 or IPv6 routes. All
617 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
618 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
619 * can be IPv4 or IPv6, but all must be of the same form in a single
620 * command. To display the current set of routes, use the commands
621 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
622 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700623 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400624 * Example of how to add a straight forward static route:
625 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
626 * Example of how to delete a straight forward static route:
627 * @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 -0700628 * Mainly for route add/del performance testing, one can add or delete
629 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400630 * @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 -0700631 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400632 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
633 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
634 * For unequal-cost multipath, specify the desired weights. This
635 * combination of weights results in 3/4 of the traffic following the
636 * second path, 1/4 following the first path:
637 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
638 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
639 * To add a route to a particular FIB table (VRF), use:
640 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700641 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400642/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643VLIB_CLI_COMMAND (ip_route_command, static) = {
644 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800645 .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 -0700646 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400647 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648};
Neale Ranns15002542017-09-10 04:39:11 -0700649
650/* *INDENT-ON* */
651/*?
652 * This command is used to add or delete IPv4 Tables. All
653 * Tables must be explicitly added before that can be used. Creating a
654 * table will add both unicast and multicast FIBs
655 *
656 ?*/
657/* *INDENT-OFF* */
658VLIB_CLI_COMMAND (ip4_table_command, static) = {
659 .path = "ip table",
660 .short_help = "ip table [add|del] <table-id>",
661 .function = vnet_ip4_table_cmd,
662 .is_mp_safe = 1,
663};
664/* *INDENT-ON* */
665
666/* *INDENT-ON* */
667/*?
668 * This command is used to add or delete IPv4 Tables. All
669 * Tables must be explicitly added before that can be used. Creating a
670 * table will add both unicast and multicast FIBs
671 *
672 ?*/
673/* *INDENT-OFF* */
674VLIB_CLI_COMMAND (ip6_table_command, static) = {
675 .path = "ip6 table",
676 .short_help = "ip6 table [add|del] <table-id>",
677 .function = vnet_ip6_table_cmd,
678 .is_mp_safe = 1,
679};
680
681static clib_error_t *
682ip_table_bind_cmd (vlib_main_t * vm,
683 unformat_input_t * input,
684 vlib_cli_command_t * cmd,
685 fib_protocol_t fproto)
686{
687 vnet_main_t *vnm = vnet_get_main ();
688 clib_error_t *error = 0;
689 u32 sw_if_index, table_id;
690 int rv;
691
692 sw_if_index = ~0;
693
694 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
695 {
696 error = clib_error_return (0, "unknown interface `%U'",
697 format_unformat_error, input);
698 goto done;
699 }
700
701 if (unformat (input, "%d", &table_id))
702 ;
703 else
704 {
705 error = clib_error_return (0, "expected table id `%U'",
706 format_unformat_error, input);
707 goto done;
708 }
709
710 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
711
712 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
713 {
714 error = clib_error_return (0, "IP addresses are still present on %U",
715 format_vnet_sw_if_index_name,
716 vnet_get_main(),
717 sw_if_index);
718 }
719 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
720 {
721 error = clib_error_return (0, "no such table %d", table_id);
722 }
723 else if (0 != rv)
724 {
725 error = clib_error_return (0, "unknown error");
726 }
727
728 done:
729 return error;
730}
731
732static clib_error_t *
733ip4_table_bind_cmd (vlib_main_t * vm,
734 unformat_input_t * input,
735 vlib_cli_command_t * cmd)
736{
737 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
738}
739
740static clib_error_t *
741ip6_table_bind_cmd (vlib_main_t * vm,
742 unformat_input_t * input,
743 vlib_cli_command_t * cmd)
744{
745 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
746}
747
748/*?
749 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700750 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700751 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
752 * FIB table will only be displayed if a route has been added to the table, or
753 * an IP Address is assigned to an interface in the table (which adds a route
754 * automatically).
755 *
756 * @note IP addresses added after setting the interface IP table are added to
757 * the indicated FIB table. If an IP address is added prior to changing the
758 * table then this is an error. The control plane must remove these addresses
759 * first and then change the table. VPP will not automatically move the
760 * addresses from the old to the new table as it does not know the validity
761 * of such a change.
762 *
763 * @cliexpar
764 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
765 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
766 ?*/
767/* *INDENT-OFF* */
768VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
769{
770 .path = "set interface ip table",
771 .function = ip4_table_bind_cmd,
772 .short_help = "set interface ip table <interface> <table-id>",
773};
774/* *INDENT-ON* */
775
776/*?
777 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700778 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700779 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
780 * FIB table will only be displayed if a route has been added to the table, or
781 * an IP Address is assigned to an interface in the table (which adds a route
782 * automatically).
783 *
784 * @note IP addresses added after setting the interface IP table are added to
785 * the indicated FIB table. If an IP address is added prior to changing the
786 * table then this is an error. The control plane must remove these addresses
787 * first and then change the table. VPP will not automatically move the
788 * addresses from the old to the new table as it does not know the validity
789 * of such a change.
790 *
791 * @cliexpar
792 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
793 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
794 ?*/
795/* *INDENT-OFF* */
796VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
797{
798 .path = "set interface ip6 table",
799 .function = ip6_table_bind_cmd,
800 .short_help = "set interface ip6 table <interface> <table-id>"
801};
Billy McFall0683c9c2016-10-13 08:27:31 -0400802/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803
Neale Ranns32e1c012016-11-22 17:07:28 +0000804clib_error_t *
805vnet_ip_mroute_cmd (vlib_main_t * vm,
806 unformat_input_t * main_input, vlib_cli_command_t * cmd)
807{
808 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns097fa662018-05-01 05:17:55 -0700809 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000810 clib_error_t *error = NULL;
Neale Ranns097fa662018-05-01 05:17:55 -0700811 u32 table_id, is_del, payload_proto;
Neale Ranns32e1c012016-11-22 17:07:28 +0000812 mfib_prefix_t pfx;
813 u32 fib_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000814 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800815 u32 gcount, scount, ss, gg, incr;
816 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000817 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000818
Neale Ranns52456fc2017-02-15 00:38:27 -0800819 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000820 is_del = 0;
821 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400822 clib_memset (&pfx, 0, sizeof (pfx));
823 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000824 rpath.frp_sw_if_index = ~0;
825
826 /* Get a line of input. */
827 if (!unformat_user (main_input, unformat_line_input, line_input))
828 return 0;
829
830 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
831 {
832 if (unformat (line_input, "table %d", &table_id))
833 ;
834 else if (unformat (line_input, "del"))
835 is_del = 1;
836 else if (unformat (line_input, "add"))
837 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000838 else if (unformat (line_input, "rpf-id %d", &rpf_id))
839 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800840 else if (unformat (line_input, "scount %d", &scount))
841 ;
842 else if (unformat (line_input, "gcount %d", &gcount))
843 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000844 else if (unformat (line_input, "%U %U",
845 unformat_ip4_address,
846 &pfx.fp_src_addr.ip4,
847 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
848 {
849 pfx.fp_proto = FIB_PROTOCOL_IP4;
850 pfx.fp_len = 64;
851 }
852 else if (unformat (line_input, "%U %U",
853 unformat_ip6_address,
854 &pfx.fp_src_addr.ip6,
855 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
856 {
857 pfx.fp_proto = FIB_PROTOCOL_IP6;
858 pfx.fp_len = 256;
859 }
860 else if (unformat (line_input, "%U/%d",
861 unformat_ip4_address,
862 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
863 {
Dave Barachb7b92992018-10-17 10:38:51 -0400864 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000865 pfx.fp_proto = FIB_PROTOCOL_IP4;
866 }
867 else if (unformat (line_input, "%U/%d",
868 unformat_ip6_address,
869 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
870 {
Dave Barachb7b92992018-10-17 10:38:51 -0400871 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000872 pfx.fp_proto = FIB_PROTOCOL_IP6;
873 }
874 else if (unformat (line_input, "%U",
875 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
876 {
Dave Barachb7b92992018-10-17 10:38:51 -0400877 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000878 pfx.fp_proto = FIB_PROTOCOL_IP4;
879 pfx.fp_len = 32;
880 }
881 else if (unformat (line_input, "%U",
882 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
883 {
Dave Barachb7b92992018-10-17 10:38:51 -0400884 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000885 pfx.fp_proto = FIB_PROTOCOL_IP6;
886 pfx.fp_len = 128;
887 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000888 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700889 {
Dave Barachb7b92992018-10-17 10:38:51 -0400890 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700891 rpath.frp_sw_if_index = ~0;
892 rpath.frp_weight = 1;
893 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400894 /*
895 * set the path proto appropriately for the prefix
896 */
897 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns097fa662018-05-01 05:17:55 -0700898 rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
Neale Ranns32e1c012016-11-22 17:07:28 +0000899 }
Neale Ranns097fa662018-05-01 05:17:55 -0700900 else if (unformat (line_input, "via %U",
901 unformat_fib_route_path, &rpath, &payload_proto))
902 {
903 vec_add1 (rpaths, rpath);
904 }
905 else if (unformat (line_input, "%U",
906 unformat_mfib_itf_flags, &rpath.frp_mitf_flags))
907 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000908 else if (unformat (line_input, "%U",
909 unformat_mfib_entry_flags, &eflags))
910 ;
911 else
912 {
913 error = unformat_parse_error (line_input);
914 goto done;
915 }
916 }
917
Neale Ranns32e1c012016-11-22 17:07:28 +0000918 if (~0 == table_id)
919 {
920 /*
921 * if no table_id is passed we will manipulate the default
922 */
923 fib_index = 0;
924 }
925 else
926 {
927 fib_index = mfib_table_find (pfx.fp_proto, table_id);
928
929 if (~0 == fib_index)
930 {
931 error = clib_error_return (0, "Nonexistent table id %d", table_id);
932 goto done;
933 }
934 }
935
Neale Ranns52456fc2017-02-15 00:38:27 -0800936 timet[0] = vlib_time_now (vm);
937
938 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000939 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800940 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000941 }
942 else
943 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800944 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000945 }
946
Neale Ranns52456fc2017-02-15 00:38:27 -0800947 for (ss = 0; ss < scount; ss++)
948 {
949 for (gg = 0; gg < gcount; gg++)
950 {
Neale Ranns097fa662018-05-01 05:17:55 -0700951 if (is_del && 0 == vec_len (rpaths))
Neale Ranns52456fc2017-02-15 00:38:27 -0800952 {
953 /* no path provided => route delete */
954 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
955 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000956 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800957 {
958 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000959 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800960 }
961 else
962 {
963 if (is_del)
964 mfib_table_entry_path_remove (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700965 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800966 else
967 mfib_table_entry_path_update (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700968 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800969 }
970
971 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
972 {
973 pfx.fp_grp_addr.ip4.as_u32 =
974 clib_host_to_net_u32 (incr +
975 clib_net_to_host_u32 (pfx.
976 fp_grp_addr.ip4.
977 as_u32));
978 }
979 else
980 {
981 int bucket = (incr < 64 ? 0 : 1);
982 pfx.fp_grp_addr.ip6.as_u64[bucket] =
983 clib_host_to_net_u64 (incr +
984 clib_net_to_host_u64 (pfx.
985 fp_grp_addr.ip6.as_u64
986 [bucket]));
987
988 }
989 }
990 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
991 {
992 pfx.fp_src_addr.ip4.as_u32 =
993 clib_host_to_net_u32 (1 +
994 clib_net_to_host_u32 (pfx.fp_src_addr.
995 ip4.as_u32));
996 }
997 else
998 {
999 pfx.fp_src_addr.ip6.as_u64[1] =
1000 clib_host_to_net_u64 (1 +
1001 clib_net_to_host_u64 (pfx.fp_src_addr.
1002 ip6.as_u64[1]));
1003 }
1004 }
1005
1006 timet[1] = vlib_time_now (vm);
1007
1008 if (scount > 1 || gcount > 1)
1009 vlib_cli_output (vm, "%.6e routes/sec",
1010 (scount * gcount) / (timet[1] - timet[0]));
1011
Neale Ranns32e1c012016-11-22 17:07:28 +00001012done:
Neale Ranns097fa662018-05-01 05:17:55 -07001013 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -05001014 unformat_free (line_input);
1015
Neale Ranns32e1c012016-11-22 17:07:28 +00001016 return error;
1017}
1018
1019/*?
1020 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1021 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1022 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1023 * can be IPv4 or IPv6, but all must be of the same form in a single
1024 * command. To display the current set of routes, use the commands
1025 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1026 * The full set of support flags for interfaces and route is shown via;
1027 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1028 * respectively.
1029 * @cliexpar
1030 * Example of how to add a forwarding interface to a route (and create the
1031 * route if it does not exist)
1032 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1033 * Example of how to add an accepting interface to a route (and create the
1034 * route if it does not exist)
1035 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1036 * Example of changing the route's flags to send signals via the API
1037 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1038
1039 ?*/
1040/* *INDENT-OFF* */
1041VLIB_CLI_COMMAND (ip_mroute_command, static) =
1042{
1043 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +00001044 .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 +00001045 .function = vnet_ip_mroute_cmd,
1046 .is_mp_safe = 1,
1047};
1048/* *INDENT-ON* */
1049
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001050/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051 * The next two routines address a longstanding script hemorrhoid.
1052 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1053 * or dependent route-adds will simply fail.
1054 */
1055static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001056ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001057 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001059 vnet_main_t *vnm = vnet_get_main ();
1060 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 int i;
1062 int resolved = 0;
1063 uword event_type;
1064 uword *event_data = 0;
1065
Dave Barachd7cb1b52016-12-09 09:52:16 -05001066 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067
1068 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001069 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001071 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072
1073 for (i = 0; i < retry_count; i++)
1074 {
1075 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001076 e = ip6_probe_neighbor (vm, a, sw_if_index, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001077
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001079 return e;
1080
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 vlib_process_wait_for_event_or_clock (vm, 1.0);
1082 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001083 switch (event_type)
1084 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001085 case 1: /* resolved... */
1086 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1087 resolved = 1;
1088 goto done;
1089
1090 case ~0: /* timeout */
1091 break;
1092
1093 default:
1094 clib_warning ("unknown event_type %d", event_type);
1095 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001096 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001098
1099done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
1101 if (!resolved)
1102 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001103 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 return 0;
1105}
1106
1107static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001108ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1109 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001111 vnet_main_t *vnm = vnet_get_main ();
1112 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 int i;
1114 int resolved = 0;
1115 uword event_type;
1116 uword *event_data = 0;
1117
Dave Barachd7cb1b52016-12-09 09:52:16 -05001118 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119
1120 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001121 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001123 1 /* event */ , 0 /* data */ );
1124
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 for (i = 0; i < retry_count; i++)
1126 {
1127 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001128 e = ip4_probe_neighbor (vm, a, sw_if_index, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001129
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001131 return e;
1132
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133 vlib_process_wait_for_event_or_clock (vm, 1.0);
1134 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001135 switch (event_type)
1136 {
1137 case 1: /* resolved... */
1138 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1139 resolved = 1;
1140 goto done;
1141
1142 case ~0: /* timeout */
1143 break;
1144
1145 default:
1146 clib_warning ("unknown event_type %d", event_type);
1147 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001148 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001149 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001150
1151done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152
1153 vec_reset_length (event_data);
1154
1155 if (!resolved)
1156 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001157 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158 return 0;
1159}
1160
1161static clib_error_t *
1162probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001163 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001165 vnet_main_t *vnm = vnet_get_main ();
1166 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 ip4_address_t a4;
1168 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001169 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170 u32 sw_if_index = ~0;
1171 int retry_count = 3;
1172 int is_ip4 = 1;
1173 int address_set = 0;
1174
1175 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001176 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177 return 0;
1178
Dave Barachd7cb1b52016-12-09 09:52:16 -05001179 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001181 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1182 &sw_if_index))
1183 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001185 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186
1187 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001188 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001190 {
1191 address_set++;
1192 is_ip4 = 0;
1193 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001195 {
1196 error = clib_error_return (0, "unknown input '%U'",
1197 format_unformat_error, line_input);
1198 goto done;
1199 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200 }
1201
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001203 {
1204 error = clib_error_return (0, "Interface required, not set.");
1205 goto done;
1206 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001208 {
1209 error = clib_error_return (0, "ip address required, not set.");
1210 goto done;
1211 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001213 {
1214 error = clib_error_return (0, "Multiple ip addresses not supported.");
1215 goto done;
1216 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001217
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218 if (is_ip4)
1219 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001220 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001221 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1222
Billy McFalla9a20e72017-02-15 11:39:12 -05001223done:
1224 unformat_free (line_input);
1225
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226 return error;
1227}
1228
Billy McFall0683c9c2016-10-13 08:27:31 -04001229/*?
1230 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1231 * attempts IPv6 neighbor discovery depending on the supplied IP address
1232 * format.
1233 *
1234 * @note This command will not immediately affect the indicated FIB; it
1235 * is not suitable for use in establishing a FIB entry prior to adding
1236 * recursive FIB entries. As in: don't use it in a script to probe a
1237 * gateway prior to adding a default route. It won't work. Instead,
1238 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1239 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1240 *
1241 * @cliexpar
1242 * Example of probe for an IPv4 address:
1243 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1244?*/
1245/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1247 .path = "ip probe-neighbor",
1248 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001249 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001250 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251};
Billy McFall0683c9c2016-10-13 08:27:31 -04001252/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001253
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001254clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001255vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1256{
1257 u32 fib_index;
1258
1259 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1260 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1261 "invalid sw_if_index");
1262
1263 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1264 args->sw_if_index);
1265 if (args->is_add)
1266 {
1267 dpo_id_t proxy_dpo = DPO_INVALID;
1268 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1269 args->sw_if_index, &proxy_dpo);
1270 fib_table_entry_special_dpo_add (fib_index,
1271 &args->prefix,
1272 FIB_SOURCE_PROXY,
1273 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1274 dpo_reset (&proxy_dpo);
1275 }
1276 else
1277 {
1278 fib_table_entry_special_remove (fib_index, &args->prefix,
1279 FIB_SOURCE_PROXY);
1280 }
1281 return 0;
1282}
1283
1284u8
1285ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1286{
1287 u32 fib_index;
1288 fib_node_index_t fei;
1289 const dpo_id_t *dpo;
1290 l3_proxy_dpo_t *l3p;
1291 load_balance_t *lb0;
1292
1293 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1294 sw_if_index);
1295 if (fib_index == ~0)
1296 return 0;
1297
1298 fei = fib_table_lookup_exact_match (fib_index, pfx);
1299 if (fei == FIB_NODE_INDEX_INVALID)
1300 return 0;
1301
1302 dpo = fib_entry_contribute_ip_forwarding (fei);
1303 lb0 = load_balance_get (dpo->dpoi_index);
1304 dpo = load_balance_get_bucket_i (lb0, 0);
1305 if (dpo->dpoi_type != DPO_L3_PROXY)
1306 return 0;
1307
1308 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1309 return (l3p->l3p_sw_if_index == sw_if_index);
1310}
1311
Matus Fabian75b9f452018-10-02 23:27:21 -07001312typedef struct ip_container_proxy_walk_ctx_t_
1313{
1314 ip_container_proxy_cb_t cb;
1315 void *ctx;
1316} ip_container_proxy_walk_ctx_t;
1317
1318static fib_table_walk_rc_t
1319ip_container_proxy_fib_table_walk (fib_node_index_t fei, void *arg)
1320{
1321 ip_container_proxy_walk_ctx_t *ctx = arg;
1322 const fib_prefix_t *pfx;
1323 const dpo_id_t *dpo;
1324 load_balance_t *lb;
1325 l3_proxy_dpo_t *l3p;
1326
1327 pfx = fib_entry_get_prefix (fei);
1328 if (fib_entry_is_sourced (fei, FIB_SOURCE_PROXY))
1329 {
1330 dpo = fib_entry_contribute_ip_forwarding (fei);
1331 lb = load_balance_get (dpo->dpoi_index);
1332 dpo = load_balance_get_bucket_i (lb, 0);
1333 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1334 ctx->cb (pfx, l3p->l3p_sw_if_index, ctx->ctx);
1335 }
1336
1337 return FIB_TABLE_WALK_CONTINUE;
1338}
1339
1340void
1341ip_container_proxy_walk (ip_container_proxy_cb_t cb, void *ctx)
1342{
1343 fib_table_t *fib_table;
1344 ip_container_proxy_walk_ctx_t wctx = {
1345 .cb = cb,
1346 .ctx = ctx,
1347 };
1348
1349 /* *INDENT-OFF* */
1350 pool_foreach (fib_table, ip4_main.fibs,
1351 ({
1352 fib_table_walk(fib_table->ft_index,
1353 FIB_PROTOCOL_IP4,
1354 ip_container_proxy_fib_table_walk,
1355 &wctx);
1356 }));
1357 pool_foreach (fib_table, ip6_main.fibs,
1358 ({
1359 fib_table_walk(fib_table->ft_index,
1360 FIB_PROTOCOL_IP6,
1361 ip_container_proxy_fib_table_walk,
1362 &wctx);
1363 }));
1364 /* *INDENT-ON* */
1365}
1366
Florin Coras595992c2017-11-06 17:17:08 -08001367clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001368ip_container_cmd (vlib_main_t * vm,
1369 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1370{
1371 unformat_input_t _line_input, *line_input = &_line_input;
1372 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001373 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001374 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001375 u32 sw_if_index;
1376
1377 vnm = vnet_get_main ();
1378 is_del = 0;
1379 sw_if_index = ~0;
Dave Barachb7b92992018-10-17 10:38:51 -04001380 clib_memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001381
1382 /* Get a line of input. */
1383 if (!unformat_user (main_input, unformat_line_input, line_input))
1384 return 0;
1385
1386 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1387 {
1388 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1389 {
1390 pfx.fp_proto = FIB_PROTOCOL_IP4;
1391 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001392 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001393 }
1394 else if (unformat (line_input, "%U",
1395 unformat_ip6_address, &pfx.fp_addr.ip6))
1396 {
1397 pfx.fp_proto = FIB_PROTOCOL_IP6;
1398 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001399 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001400 }
1401 else if (unformat (line_input, "%U",
1402 unformat_vnet_sw_interface, vnm, &sw_if_index))
1403 ;
1404 else if (unformat (line_input, "del"))
1405 is_del = 1;
1406 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301407 {
1408 unformat_free (line_input);
1409 return (clib_error_return (0, "unknown input '%U'",
1410 format_unformat_error, line_input));
1411 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001412 }
1413
Florin Corase1682c42017-11-07 17:06:36 -08001414 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001415 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301416 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001417 vlib_cli_output (vm, "interface and address must be set");
1418 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001419 }
1420
Florin Coras595992c2017-11-06 17:17:08 -08001421 vnet_ip_container_proxy_args_t args = {
1422 .prefix = pfx,
1423 .sw_if_index = sw_if_index,
1424 .is_add = !is_del,
1425 };
1426 vnet_ip_container_proxy_add_del (&args);
1427 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001428 return (NULL);
1429}
1430
1431/* *INDENT-OFF* */
1432VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1433 .path = "ip container",
1434 .function = ip_container_cmd,
1435 .short_help = "ip container <address> <interface>",
1436 .is_mp_safe = 1,
1437};
1438/* *INDENT-ON* */
1439
Florin Coras595992c2017-11-06 17:17:08 -08001440clib_error_t *
1441show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1442 vlib_cli_command_t * cmd)
1443{
1444 unformat_input_t _line_input, *line_input = &_line_input;
1445 vnet_main_t *vnm = vnet_get_main ();
1446 fib_prefix_t pfx;
1447 u32 sw_if_index = ~0;
1448 u8 has_proxy;
1449
1450 if (!unformat_user (main_input, unformat_line_input, line_input))
1451 return 0;
1452 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1453 {
1454 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1455 {
1456 pfx.fp_proto = FIB_PROTOCOL_IP4;
1457 pfx.fp_len = 32;
1458 }
1459 else if (unformat (line_input, "%U",
1460 unformat_ip6_address, &pfx.fp_addr.ip6))
1461 {
1462 pfx.fp_proto = FIB_PROTOCOL_IP6;
1463 pfx.fp_len = 128;
1464 }
1465 else if (unformat (line_input, "%U",
1466 unformat_vnet_sw_interface, vnm, &sw_if_index))
1467 ;
1468 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301469 {
1470 unformat_free (line_input);
1471 return (clib_error_return (0, "unknown input '%U'",
1472 format_unformat_error, line_input));
1473 }
Florin Coras595992c2017-11-06 17:17:08 -08001474 }
1475
1476 if (~0 == sw_if_index)
1477 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301478 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001479 vlib_cli_output (vm, "no interface");
1480 return (clib_error_return (0, "no interface"));
1481 }
1482
1483 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1484 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1485
1486 unformat_free (line_input);
1487 return 0;
1488}
1489
1490/* *INDENT-OFF* */
1491VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1492 .path = "show ip container",
1493 .function = show_ip_container_cmd_fn,
1494 .short_help = "show ip container <address> <interface>",
1495 .is_mp_safe = 1,
1496};
1497/* *INDENT-ON* */
1498
Dave Barachd7cb1b52016-12-09 09:52:16 -05001499/*
1500 * fd.io coding-style-patch-verification: ON
1501 *
1502 * Local Variables:
1503 * eval: (c-set-style "gnu")
1504 * End:
1505 */