blob: 5c6fec1810b0bae55c1aebcad5fd1dc92e8b535c [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;
210 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{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500260 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500262 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
264 switch (adj->lookup_next_index)
265 {
266 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400267 case IP_LOOKUP_NEXT_MCAST:
268 s =
269 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 break;
271
272 default:
273 break;
274 }
275
276 return s;
277}
278
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279static uword
280unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100282 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
283 fib_protocol_t fp = va_arg (*args, int);
284 dpo_proto_t proto;
285
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287
288 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100294 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100296 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500297 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100298 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100301 {
302 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100304 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500305 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100306 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500307 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100308 }
309
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 dpo_set (dpo, DPO_CLASSIFY, proto,
311 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100312 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313 else
314 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100315
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 return 1;
317}
318
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100319const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 .as_u64 = {
321 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322};
323
Neale Ranns039cbfe2018-02-27 03:45:38 -0800324static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800329 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100330 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800331 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100332 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100335 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337 is_del = 0;
338 table_id = 0;
339 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400340 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
342 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500343 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344 return 0;
345
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
347 {
Dave Barachb7b92992018-10-17 10:38:51 -0400348 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100349
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 if (unformat (line_input, "table %d", &table_id))
351 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 else if (unformat (line_input, "count %f", &count))
353 ;
354
355 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
357 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800358 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500359 vec_add1 (prefixs, pfx);
360 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
363 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800364 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 vec_add1 (prefixs, pfx);
366 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800368 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000370 vec_add1 (rpaths, rpath);
371 }
372 else if (vec_len (prefixs) > 0 &&
373 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100374 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500375 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500377 }
pragash352829f2017-08-17 22:53:24 -0400378 else if (unformat (line_input, "del"))
379 is_del = 1;
380 else if (unformat (line_input, "add"))
381 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 error = unformat_parse_error (line_input);
385 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500386 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390 {
391 error =
392 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 goto done;
394 }
395
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100396 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100398 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 goto done;
400 }
401
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100402 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404 /*
405 * if no table_id is passed we will manipulate the default
406 */
407 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500408 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100409 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700411 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100413 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500414 {
415 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100416 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417 }
418 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100420 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100422 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 {
424 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
425 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100426 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427 {
428 fib_table_entry_special_dpo_add (fib_index,
429 &prefixs[i],
430 FIB_SOURCE_CLI,
431 FIB_ENTRY_FLAG_EXCLUSIVE,
432 &dpos[0]);
433 dpo_reset (&dpos[0]);
434 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100435 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 {
437 error =
438 clib_error_return (0,
439 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100440 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500441 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100444 u32 k, j, n, incr;
445 ip46_address_t dst = prefixs[i].fp_addr;
446 f64 t[2];
447 n = count;
448 t[0] = vlib_time_now (vm);
449 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
450 prefixs[i].fp_len);
451
452 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500453 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100454 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 .fp_len = prefixs[i].fp_len,
458 .fp_proto = prefixs[i].fp_proto,
459 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 };
461
Dave Barachd7cb1b52016-12-09 09:52:16 -0500462 if (is_del)
463 fib_table_entry_path_remove2 (fib_index,
464 &rpfx,
465 FIB_SOURCE_CLI, &rpaths[j]);
466 else
467 fib_table_entry_path_add2 (fib_index,
468 &rpfx,
469 FIB_SOURCE_CLI,
470 FIB_ENTRY_FLAG_NONE,
471 &rpaths[j]);
472 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100473
474 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500475 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 clib_host_to_net_u32 (incr +
478 clib_net_to_host_u32 (dst.
479 ip4.as_u32));
480 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500482 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483 int bucket = (incr < 64 ? 0 : 1);
484 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 clib_host_to_net_u64 (incr +
486 clib_net_to_host_u64 (dst.ip6.as_u64
487 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 }
490 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100491 t[1] = vlib_time_now (vm);
492 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
494 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100495 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 {
497 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500499 }
500 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100501
502
Dave Barachd7cb1b52016-12-09 09:52:16 -0500503done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100504 vec_free (dpos);
505 vec_free (prefixs);
506 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500507 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 return error;
509}
510
Neale Ranns15002542017-09-10 04:39:11 -0700511clib_error_t *
512vnet_ip_table_cmd (vlib_main_t * vm,
513 unformat_input_t * main_input,
514 vlib_cli_command_t * cmd, fib_protocol_t fproto)
515{
516 unformat_input_t _line_input, *line_input = &_line_input;
517 clib_error_t *error = NULL;
518 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700519 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700520
521 is_add = 1;
522 table_id = ~0;
523
524 /* Get a line of input. */
525 if (!unformat_user (main_input, unformat_line_input, line_input))
526 return 0;
527
528 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
529 {
530 if (unformat (line_input, "%d", &table_id))
531 ;
532 else if (unformat (line_input, "del"))
533 is_add = 0;
534 else if (unformat (line_input, "add"))
535 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700536 else if (unformat (line_input, "name %s", &name))
537 ;
Neale Ranns15002542017-09-10 04:39:11 -0700538 else
539 {
540 error = unformat_parse_error (line_input);
541 goto done;
542 }
543 }
544
545 if (~0 == table_id)
546 {
547 error = clib_error_return (0, "No table id");
548 goto done;
549 }
550 else if (0 == table_id)
551 {
552 error = clib_error_return (0, "Can't change the default table");
553 goto done;
554 }
555 else
556 {
557 if (is_add)
558 {
Neale Ranns2297af02017-09-12 09:45:04 -0700559 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700560 }
561 else
562 {
563 ip_table_delete (fproto, table_id, 0);
564 }
565 }
566
567done:
568 unformat_free (line_input);
569 return error;
570}
571
572clib_error_t *
573vnet_ip4_table_cmd (vlib_main_t * vm,
574 unformat_input_t * main_input, vlib_cli_command_t * cmd)
575{
576 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
577}
578
579clib_error_t *
580vnet_ip6_table_cmd (vlib_main_t * vm,
581 unformat_input_t * main_input, vlib_cli_command_t * cmd)
582{
583 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
584}
585
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
588 .path = "ip",
589 .short_help = "Internet protocol (IP) commands",
590};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500591/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Dave Barachd7cb1b52016-12-09 09:52:16 -0500593/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400594VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
595 .path = "ip6",
596 .short_help = "Internet protocol version 6 (IPv6) commands",
597};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500598/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400599
Dave Barachd7cb1b52016-12-09 09:52:16 -0500600/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
602 .path = "show ip",
603 .short_help = "Internet protocol (IP) show commands",
604};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500605/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
Dave Barachd7cb1b52016-12-09 09:52:16 -0500607/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
609 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400610 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500612/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700614/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400615 * This command is used to add or delete IPv4 or IPv6 routes. All
616 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
617 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
618 * can be IPv4 or IPv6, but all must be of the same form in a single
619 * command. To display the current set of routes, use the commands
620 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
621 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700622 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400623 * Example of how to add a straight forward static route:
624 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
625 * Example of how to delete a straight forward static route:
626 * @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 -0700627 * Mainly for route add/del performance testing, one can add or delete
628 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400629 * @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 -0700630 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400631 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
632 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
633 * For unequal-cost multipath, specify the desired weights. This
634 * combination of weights results in 3/4 of the traffic following the
635 * second path, 1/4 following the first path:
636 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
637 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
638 * To add a route to a particular FIB table (VRF), use:
639 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700640 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400641/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642VLIB_CLI_COMMAND (ip_route_command, static) = {
643 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800644 .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 -0700645 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400646 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647};
Neale Ranns15002542017-09-10 04:39:11 -0700648
649/* *INDENT-ON* */
650/*?
651 * This command is used to add or delete IPv4 Tables. All
652 * Tables must be explicitly added before that can be used. Creating a
653 * table will add both unicast and multicast FIBs
654 *
655 ?*/
656/* *INDENT-OFF* */
657VLIB_CLI_COMMAND (ip4_table_command, static) = {
658 .path = "ip table",
659 .short_help = "ip table [add|del] <table-id>",
660 .function = vnet_ip4_table_cmd,
661 .is_mp_safe = 1,
662};
663/* *INDENT-ON* */
664
665/* *INDENT-ON* */
666/*?
667 * This command is used to add or delete IPv4 Tables. All
668 * Tables must be explicitly added before that can be used. Creating a
669 * table will add both unicast and multicast FIBs
670 *
671 ?*/
672/* *INDENT-OFF* */
673VLIB_CLI_COMMAND (ip6_table_command, static) = {
674 .path = "ip6 table",
675 .short_help = "ip6 table [add|del] <table-id>",
676 .function = vnet_ip6_table_cmd,
677 .is_mp_safe = 1,
678};
679
680static clib_error_t *
681ip_table_bind_cmd (vlib_main_t * vm,
682 unformat_input_t * input,
683 vlib_cli_command_t * cmd,
684 fib_protocol_t fproto)
685{
686 vnet_main_t *vnm = vnet_get_main ();
687 clib_error_t *error = 0;
688 u32 sw_if_index, table_id;
689 int rv;
690
691 sw_if_index = ~0;
692
693 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
694 {
695 error = clib_error_return (0, "unknown interface `%U'",
696 format_unformat_error, input);
697 goto done;
698 }
699
700 if (unformat (input, "%d", &table_id))
701 ;
702 else
703 {
704 error = clib_error_return (0, "expected table id `%U'",
705 format_unformat_error, input);
706 goto done;
707 }
708
709 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
710
711 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
712 {
713 error = clib_error_return (0, "IP addresses are still present on %U",
714 format_vnet_sw_if_index_name,
715 vnet_get_main(),
716 sw_if_index);
717 }
718 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
719 {
720 error = clib_error_return (0, "no such table %d", table_id);
721 }
722 else if (0 != rv)
723 {
724 error = clib_error_return (0, "unknown error");
725 }
726
727 done:
728 return error;
729}
730
731static clib_error_t *
732ip4_table_bind_cmd (vlib_main_t * vm,
733 unformat_input_t * input,
734 vlib_cli_command_t * cmd)
735{
736 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
737}
738
739static clib_error_t *
740ip6_table_bind_cmd (vlib_main_t * vm,
741 unformat_input_t * input,
742 vlib_cli_command_t * cmd)
743{
744 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
745}
746
747/*?
748 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700749 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700750 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
751 * FIB table will only be displayed if a route has been added to the table, or
752 * an IP Address is assigned to an interface in the table (which adds a route
753 * automatically).
754 *
755 * @note IP addresses added after setting the interface IP table are added to
756 * the indicated FIB table. If an IP address is added prior to changing the
757 * table then this is an error. The control plane must remove these addresses
758 * first and then change the table. VPP will not automatically move the
759 * addresses from the old to the new table as it does not know the validity
760 * of such a change.
761 *
762 * @cliexpar
763 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
764 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
765 ?*/
766/* *INDENT-OFF* */
767VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
768{
769 .path = "set interface ip table",
770 .function = ip4_table_bind_cmd,
771 .short_help = "set interface ip table <interface> <table-id>",
772};
773/* *INDENT-ON* */
774
775/*?
776 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700777 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700778 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
779 * FIB table will only be displayed if a route has been added to the table, or
780 * an IP Address is assigned to an interface in the table (which adds a route
781 * automatically).
782 *
783 * @note IP addresses added after setting the interface IP table are added to
784 * the indicated FIB table. If an IP address is added prior to changing the
785 * table then this is an error. The control plane must remove these addresses
786 * first and then change the table. VPP will not automatically move the
787 * addresses from the old to the new table as it does not know the validity
788 * of such a change.
789 *
790 * @cliexpar
791 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
792 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
793 ?*/
794/* *INDENT-OFF* */
795VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
796{
797 .path = "set interface ip6 table",
798 .function = ip6_table_bind_cmd,
799 .short_help = "set interface ip6 table <interface> <table-id>"
800};
Billy McFall0683c9c2016-10-13 08:27:31 -0400801/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802
Neale Ranns32e1c012016-11-22 17:07:28 +0000803clib_error_t *
804vnet_ip_mroute_cmd (vlib_main_t * vm,
805 unformat_input_t * main_input, vlib_cli_command_t * cmd)
806{
807 unformat_input_t _line_input, *line_input = &_line_input;
808 clib_error_t *error = NULL;
809 fib_route_path_t rpath;
810 u32 table_id, is_del;
811 vnet_main_t *vnm;
812 mfib_prefix_t pfx;
813 u32 fib_index;
814 mfib_itf_flags_t iflags = 0;
815 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800816 u32 gcount, scount, ss, gg, incr;
817 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000818 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000819
Neale Ranns52456fc2017-02-15 00:38:27 -0800820 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000821 vnm = vnet_get_main ();
822 is_del = 0;
823 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400824 clib_memset (&pfx, 0, sizeof (pfx));
825 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000826 rpath.frp_sw_if_index = ~0;
827
828 /* Get a line of input. */
829 if (!unformat_user (main_input, unformat_line_input, line_input))
830 return 0;
831
832 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
833 {
834 if (unformat (line_input, "table %d", &table_id))
835 ;
836 else if (unformat (line_input, "del"))
837 is_del = 1;
838 else if (unformat (line_input, "add"))
839 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000840 else if (unformat (line_input, "rpf-id %d", &rpf_id))
841 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800842 else if (unformat (line_input, "scount %d", &scount))
843 ;
844 else if (unformat (line_input, "gcount %d", &gcount))
845 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000846 else if (unformat (line_input, "%U %U",
847 unformat_ip4_address,
848 &pfx.fp_src_addr.ip4,
849 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
850 {
851 pfx.fp_proto = FIB_PROTOCOL_IP4;
852 pfx.fp_len = 64;
853 }
854 else if (unformat (line_input, "%U %U",
855 unformat_ip6_address,
856 &pfx.fp_src_addr.ip6,
857 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
858 {
859 pfx.fp_proto = FIB_PROTOCOL_IP6;
860 pfx.fp_len = 256;
861 }
862 else if (unformat (line_input, "%U/%d",
863 unformat_ip4_address,
864 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
865 {
Dave Barachb7b92992018-10-17 10:38:51 -0400866 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000867 pfx.fp_proto = FIB_PROTOCOL_IP4;
868 }
869 else if (unformat (line_input, "%U/%d",
870 unformat_ip6_address,
871 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
872 {
Dave Barachb7b92992018-10-17 10:38:51 -0400873 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000874 pfx.fp_proto = FIB_PROTOCOL_IP6;
875 }
876 else if (unformat (line_input, "%U",
877 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
878 {
Dave Barachb7b92992018-10-17 10:38:51 -0400879 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000880 pfx.fp_proto = FIB_PROTOCOL_IP4;
881 pfx.fp_len = 32;
882 }
883 else if (unformat (line_input, "%U",
884 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
885 {
Dave Barachb7b92992018-10-17 10:38:51 -0400886 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000887 pfx.fp_proto = FIB_PROTOCOL_IP6;
888 pfx.fp_len = 128;
889 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000890 else if (unformat (line_input, "via %U %U %U",
891 unformat_ip4_address, &rpath.frp_addr.ip4,
892 unformat_vnet_sw_interface, vnm,
893 &rpath.frp_sw_if_index,
894 unformat_mfib_itf_flags, &iflags))
895 {
896 rpath.frp_weight = 1;
897 }
898 else if (unformat (line_input, "via %U %U %U",
899 unformat_ip6_address, &rpath.frp_addr.ip6,
900 unformat_vnet_sw_interface, vnm,
901 &rpath.frp_sw_if_index,
902 unformat_mfib_itf_flags, &iflags))
903 {
904 rpath.frp_weight = 1;
905 }
906 else if (unformat (line_input, "via %U %U",
907 unformat_vnet_sw_interface, vnm,
908 &rpath.frp_sw_if_index,
909 unformat_mfib_itf_flags, &iflags))
910 {
911 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
912 rpath.frp_weight = 1;
913 }
Neale Rannse821ab12017-06-01 07:45:05 -0700914 else if (unformat (line_input, "via %U %U",
915 unformat_ip4_address, &rpath.frp_addr.ip4,
Neale Ranns32e1c012016-11-22 17:07:28 +0000916 unformat_vnet_sw_interface, vnm,
917 &rpath.frp_sw_if_index))
918 {
919 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700920 }
Neale Rannse821ab12017-06-01 07:45:05 -0700921 else if (unformat (line_input, "via %U %U",
922 unformat_ip6_address, &rpath.frp_addr.ip6,
923 unformat_vnet_sw_interface, vnm,
924 &rpath.frp_sw_if_index))
925 {
926 rpath.frp_weight = 1;
927 }
928 else if (unformat (line_input, "via %U",
929 unformat_vnet_sw_interface, vnm,
930 &rpath.frp_sw_if_index))
931 {
Dave Barachb7b92992018-10-17 10:38:51 -0400932 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Rannse821ab12017-06-01 07:45:05 -0700933 rpath.frp_weight = 1;
934 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000935 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700936 {
Dave Barachb7b92992018-10-17 10:38:51 -0400937 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700938 rpath.frp_sw_if_index = ~0;
939 rpath.frp_weight = 1;
940 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400941 /*
942 * set the path proto appropriately for the prefix
943 */
944 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Rannsad69c1f2018-12-05 16:39:45 +0000945 iflags = MFIB_ITF_FLAG_FORWARD;
Neale Ranns32e1c012016-11-22 17:07:28 +0000946 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000947 else if (unformat (line_input, "%U",
948 unformat_mfib_entry_flags, &eflags))
949 ;
950 else
951 {
952 error = unformat_parse_error (line_input);
953 goto done;
954 }
955 }
956
Neale Ranns32e1c012016-11-22 17:07:28 +0000957 if (~0 == table_id)
958 {
959 /*
960 * if no table_id is passed we will manipulate the default
961 */
962 fib_index = 0;
963 }
964 else
965 {
966 fib_index = mfib_table_find (pfx.fp_proto, table_id);
967
968 if (~0 == fib_index)
969 {
970 error = clib_error_return (0, "Nonexistent table id %d", table_id);
971 goto done;
972 }
973 }
974
Neale Ranns52456fc2017-02-15 00:38:27 -0800975 timet[0] = vlib_time_now (vm);
976
977 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000978 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800979 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000980 }
981 else
982 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800983 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000984 }
985
Neale Ranns52456fc2017-02-15 00:38:27 -0800986 for (ss = 0; ss < scount; ss++)
987 {
988 for (gg = 0; gg < gcount; gg++)
989 {
990 if (is_del && 0 == rpath.frp_weight)
991 {
992 /* no path provided => route delete */
993 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
994 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000995 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800996 {
997 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000998 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800999 }
1000 else
1001 {
1002 if (is_del)
1003 mfib_table_entry_path_remove (fib_index,
1004 &pfx, MFIB_SOURCE_CLI, &rpath);
1005 else
1006 mfib_table_entry_path_update (fib_index,
1007 &pfx, MFIB_SOURCE_CLI, &rpath,
1008 iflags);
1009 }
1010
1011 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1012 {
1013 pfx.fp_grp_addr.ip4.as_u32 =
1014 clib_host_to_net_u32 (incr +
1015 clib_net_to_host_u32 (pfx.
1016 fp_grp_addr.ip4.
1017 as_u32));
1018 }
1019 else
1020 {
1021 int bucket = (incr < 64 ? 0 : 1);
1022 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1023 clib_host_to_net_u64 (incr +
1024 clib_net_to_host_u64 (pfx.
1025 fp_grp_addr.ip6.as_u64
1026 [bucket]));
1027
1028 }
1029 }
1030 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1031 {
1032 pfx.fp_src_addr.ip4.as_u32 =
1033 clib_host_to_net_u32 (1 +
1034 clib_net_to_host_u32 (pfx.fp_src_addr.
1035 ip4.as_u32));
1036 }
1037 else
1038 {
1039 pfx.fp_src_addr.ip6.as_u64[1] =
1040 clib_host_to_net_u64 (1 +
1041 clib_net_to_host_u64 (pfx.fp_src_addr.
1042 ip6.as_u64[1]));
1043 }
1044 }
1045
1046 timet[1] = vlib_time_now (vm);
1047
1048 if (scount > 1 || gcount > 1)
1049 vlib_cli_output (vm, "%.6e routes/sec",
1050 (scount * gcount) / (timet[1] - timet[0]));
1051
Neale Ranns32e1c012016-11-22 17:07:28 +00001052done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001053 unformat_free (line_input);
1054
Neale Ranns32e1c012016-11-22 17:07:28 +00001055 return error;
1056}
1057
1058/*?
1059 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1060 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1061 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1062 * can be IPv4 or IPv6, but all must be of the same form in a single
1063 * command. To display the current set of routes, use the commands
1064 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1065 * The full set of support flags for interfaces and route is shown via;
1066 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1067 * respectively.
1068 * @cliexpar
1069 * Example of how to add a forwarding interface to a route (and create the
1070 * route if it does not exist)
1071 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1072 * Example of how to add an accepting interface to a route (and create the
1073 * route if it does not exist)
1074 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1075 * Example of changing the route's flags to send signals via the API
1076 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1077
1078 ?*/
1079/* *INDENT-OFF* */
1080VLIB_CLI_COMMAND (ip_mroute_command, static) =
1081{
1082 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +00001083 .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 +00001084 .function = vnet_ip_mroute_cmd,
1085 .is_mp_safe = 1,
1086};
1087/* *INDENT-ON* */
1088
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001089/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 * The next two routines address a longstanding script hemorrhoid.
1091 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1092 * or dependent route-adds will simply fail.
1093 */
1094static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001095ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001096 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001098 vnet_main_t *vnm = vnet_get_main ();
1099 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100 int i;
1101 int resolved = 0;
1102 uword event_type;
1103 uword *event_data = 0;
1104
Dave Barachd7cb1b52016-12-09 09:52:16 -05001105 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106
1107 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001108 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001110 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112 for (i = 0; i < retry_count; i++)
1113 {
1114 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001115 e = ip6_probe_neighbor (vm, a, sw_if_index, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001116
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001118 return e;
1119
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120 vlib_process_wait_for_event_or_clock (vm, 1.0);
1121 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001122 switch (event_type)
1123 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001124 case 1: /* resolved... */
1125 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1126 resolved = 1;
1127 goto done;
1128
1129 case ~0: /* timeout */
1130 break;
1131
1132 default:
1133 clib_warning ("unknown event_type %d", event_type);
1134 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001135 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001137
1138done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139
1140 if (!resolved)
1141 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001142 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 return 0;
1144}
1145
1146static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001147ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1148 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001149{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001150 vnet_main_t *vnm = vnet_get_main ();
1151 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 int i;
1153 int resolved = 0;
1154 uword event_type;
1155 uword *event_data = 0;
1156
Dave Barachd7cb1b52016-12-09 09:52:16 -05001157 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158
1159 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001160 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001162 1 /* event */ , 0 /* data */ );
1163
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 for (i = 0; i < retry_count; i++)
1165 {
1166 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001167 e = ip4_probe_neighbor (vm, a, sw_if_index, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001168
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001170 return e;
1171
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172 vlib_process_wait_for_event_or_clock (vm, 1.0);
1173 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174 switch (event_type)
1175 {
1176 case 1: /* resolved... */
1177 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1178 resolved = 1;
1179 goto done;
1180
1181 case ~0: /* timeout */
1182 break;
1183
1184 default:
1185 clib_warning ("unknown event_type %d", event_type);
1186 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001187 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001189
1190done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191
1192 vec_reset_length (event_data);
1193
1194 if (!resolved)
1195 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001196 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197 return 0;
1198}
1199
1200static clib_error_t *
1201probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001202 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001204 vnet_main_t *vnm = vnet_get_main ();
1205 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001206 ip4_address_t a4;
1207 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001208 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001209 u32 sw_if_index = ~0;
1210 int retry_count = 3;
1211 int is_ip4 = 1;
1212 int address_set = 0;
1213
1214 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001215 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216 return 0;
1217
Dave Barachd7cb1b52016-12-09 09:52:16 -05001218 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001220 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1221 &sw_if_index))
1222 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001223 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001224 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225
1226 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001227 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001229 {
1230 address_set++;
1231 is_ip4 = 0;
1232 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001234 {
1235 error = clib_error_return (0, "unknown input '%U'",
1236 format_unformat_error, line_input);
1237 goto done;
1238 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239 }
1240
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001242 {
1243 error = clib_error_return (0, "Interface required, not set.");
1244 goto done;
1245 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001247 {
1248 error = clib_error_return (0, "ip address required, not set.");
1249 goto done;
1250 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001252 {
1253 error = clib_error_return (0, "Multiple ip addresses not supported.");
1254 goto done;
1255 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001256
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 if (is_ip4)
1258 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001259 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1261
Billy McFalla9a20e72017-02-15 11:39:12 -05001262done:
1263 unformat_free (line_input);
1264
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265 return error;
1266}
1267
Billy McFall0683c9c2016-10-13 08:27:31 -04001268/*?
1269 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1270 * attempts IPv6 neighbor discovery depending on the supplied IP address
1271 * format.
1272 *
1273 * @note This command will not immediately affect the indicated FIB; it
1274 * is not suitable for use in establishing a FIB entry prior to adding
1275 * recursive FIB entries. As in: don't use it in a script to probe a
1276 * gateway prior to adding a default route. It won't work. Instead,
1277 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1278 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1279 *
1280 * @cliexpar
1281 * Example of probe for an IPv4 address:
1282 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1283?*/
1284/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1286 .path = "ip probe-neighbor",
1287 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001288 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001289 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290};
Billy McFall0683c9c2016-10-13 08:27:31 -04001291/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001292
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001293clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001294vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1295{
1296 u32 fib_index;
1297
1298 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1299 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1300 "invalid sw_if_index");
1301
1302 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1303 args->sw_if_index);
1304 if (args->is_add)
1305 {
1306 dpo_id_t proxy_dpo = DPO_INVALID;
1307 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1308 args->sw_if_index, &proxy_dpo);
1309 fib_table_entry_special_dpo_add (fib_index,
1310 &args->prefix,
1311 FIB_SOURCE_PROXY,
1312 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1313 dpo_reset (&proxy_dpo);
1314 }
1315 else
1316 {
1317 fib_table_entry_special_remove (fib_index, &args->prefix,
1318 FIB_SOURCE_PROXY);
1319 }
1320 return 0;
1321}
1322
1323u8
1324ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1325{
1326 u32 fib_index;
1327 fib_node_index_t fei;
1328 const dpo_id_t *dpo;
1329 l3_proxy_dpo_t *l3p;
1330 load_balance_t *lb0;
1331
1332 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1333 sw_if_index);
1334 if (fib_index == ~0)
1335 return 0;
1336
1337 fei = fib_table_lookup_exact_match (fib_index, pfx);
1338 if (fei == FIB_NODE_INDEX_INVALID)
1339 return 0;
1340
1341 dpo = fib_entry_contribute_ip_forwarding (fei);
1342 lb0 = load_balance_get (dpo->dpoi_index);
1343 dpo = load_balance_get_bucket_i (lb0, 0);
1344 if (dpo->dpoi_type != DPO_L3_PROXY)
1345 return 0;
1346
1347 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1348 return (l3p->l3p_sw_if_index == sw_if_index);
1349}
1350
Matus Fabian75b9f452018-10-02 23:27:21 -07001351typedef struct ip_container_proxy_walk_ctx_t_
1352{
1353 ip_container_proxy_cb_t cb;
1354 void *ctx;
1355} ip_container_proxy_walk_ctx_t;
1356
1357static fib_table_walk_rc_t
1358ip_container_proxy_fib_table_walk (fib_node_index_t fei, void *arg)
1359{
1360 ip_container_proxy_walk_ctx_t *ctx = arg;
1361 const fib_prefix_t *pfx;
1362 const dpo_id_t *dpo;
1363 load_balance_t *lb;
1364 l3_proxy_dpo_t *l3p;
1365
1366 pfx = fib_entry_get_prefix (fei);
1367 if (fib_entry_is_sourced (fei, FIB_SOURCE_PROXY))
1368 {
1369 dpo = fib_entry_contribute_ip_forwarding (fei);
1370 lb = load_balance_get (dpo->dpoi_index);
1371 dpo = load_balance_get_bucket_i (lb, 0);
1372 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1373 ctx->cb (pfx, l3p->l3p_sw_if_index, ctx->ctx);
1374 }
1375
1376 return FIB_TABLE_WALK_CONTINUE;
1377}
1378
1379void
1380ip_container_proxy_walk (ip_container_proxy_cb_t cb, void *ctx)
1381{
1382 fib_table_t *fib_table;
1383 ip_container_proxy_walk_ctx_t wctx = {
1384 .cb = cb,
1385 .ctx = ctx,
1386 };
1387
1388 /* *INDENT-OFF* */
1389 pool_foreach (fib_table, ip4_main.fibs,
1390 ({
1391 fib_table_walk(fib_table->ft_index,
1392 FIB_PROTOCOL_IP4,
1393 ip_container_proxy_fib_table_walk,
1394 &wctx);
1395 }));
1396 pool_foreach (fib_table, ip6_main.fibs,
1397 ({
1398 fib_table_walk(fib_table->ft_index,
1399 FIB_PROTOCOL_IP6,
1400 ip_container_proxy_fib_table_walk,
1401 &wctx);
1402 }));
1403 /* *INDENT-ON* */
1404}
1405
Florin Coras595992c2017-11-06 17:17:08 -08001406clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001407ip_container_cmd (vlib_main_t * vm,
1408 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1409{
1410 unformat_input_t _line_input, *line_input = &_line_input;
1411 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001412 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001413 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001414 u32 sw_if_index;
1415
1416 vnm = vnet_get_main ();
1417 is_del = 0;
1418 sw_if_index = ~0;
Dave Barachb7b92992018-10-17 10:38:51 -04001419 clib_memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001420
1421 /* Get a line of input. */
1422 if (!unformat_user (main_input, unformat_line_input, line_input))
1423 return 0;
1424
1425 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1426 {
1427 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1428 {
1429 pfx.fp_proto = FIB_PROTOCOL_IP4;
1430 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001431 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001432 }
1433 else if (unformat (line_input, "%U",
1434 unformat_ip6_address, &pfx.fp_addr.ip6))
1435 {
1436 pfx.fp_proto = FIB_PROTOCOL_IP6;
1437 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001438 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001439 }
1440 else if (unformat (line_input, "%U",
1441 unformat_vnet_sw_interface, vnm, &sw_if_index))
1442 ;
1443 else if (unformat (line_input, "del"))
1444 is_del = 1;
1445 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301446 {
1447 unformat_free (line_input);
1448 return (clib_error_return (0, "unknown input '%U'",
1449 format_unformat_error, line_input));
1450 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001451 }
1452
Florin Corase1682c42017-11-07 17:06:36 -08001453 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001454 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301455 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001456 vlib_cli_output (vm, "interface and address must be set");
1457 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001458 }
1459
Florin Coras595992c2017-11-06 17:17:08 -08001460 vnet_ip_container_proxy_args_t args = {
1461 .prefix = pfx,
1462 .sw_if_index = sw_if_index,
1463 .is_add = !is_del,
1464 };
1465 vnet_ip_container_proxy_add_del (&args);
1466 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001467 return (NULL);
1468}
1469
1470/* *INDENT-OFF* */
1471VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1472 .path = "ip container",
1473 .function = ip_container_cmd,
1474 .short_help = "ip container <address> <interface>",
1475 .is_mp_safe = 1,
1476};
1477/* *INDENT-ON* */
1478
Florin Coras595992c2017-11-06 17:17:08 -08001479clib_error_t *
1480show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1481 vlib_cli_command_t * cmd)
1482{
1483 unformat_input_t _line_input, *line_input = &_line_input;
1484 vnet_main_t *vnm = vnet_get_main ();
1485 fib_prefix_t pfx;
1486 u32 sw_if_index = ~0;
1487 u8 has_proxy;
1488
1489 if (!unformat_user (main_input, unformat_line_input, line_input))
1490 return 0;
1491 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1492 {
1493 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1494 {
1495 pfx.fp_proto = FIB_PROTOCOL_IP4;
1496 pfx.fp_len = 32;
1497 }
1498 else if (unformat (line_input, "%U",
1499 unformat_ip6_address, &pfx.fp_addr.ip6))
1500 {
1501 pfx.fp_proto = FIB_PROTOCOL_IP6;
1502 pfx.fp_len = 128;
1503 }
1504 else if (unformat (line_input, "%U",
1505 unformat_vnet_sw_interface, vnm, &sw_if_index))
1506 ;
1507 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301508 {
1509 unformat_free (line_input);
1510 return (clib_error_return (0, "unknown input '%U'",
1511 format_unformat_error, line_input));
1512 }
Florin Coras595992c2017-11-06 17:17:08 -08001513 }
1514
1515 if (~0 == sw_if_index)
1516 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301517 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001518 vlib_cli_output (vm, "no interface");
1519 return (clib_error_return (0, "no interface"));
1520 }
1521
1522 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1523 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1524
1525 unformat_free (line_input);
1526 return 0;
1527}
1528
1529/* *INDENT-OFF* */
1530VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1531 .path = "show ip container",
1532 .function = show_ip_container_cmd_fn,
1533 .short_help = "show ip container <address> <interface>",
1534 .is_mp_safe = 1,
1535};
1536/* *INDENT-ON* */
1537
Dave Barachd7cb1b52016-12-09 09:52:16 -05001538/*
1539 * fd.io coding-style-patch-verification: ON
1540 *
1541 * Local Variables:
1542 * eval: (c-set-style "gnu")
1543 * End:
1544 */