blob: d9922f464532c50eec8bfdffa0db8087b88a2b42 [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>
Neale Ranns3f844d02017-02-18 00:03:54 -080052#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Billy McFall0683c9c2016-10-13 08:27:31 -040054/**
55 * @file
56 * @brief IPv4 and IPv6 adjacency and lookup table managment.
57 *
58 */
59
Ed Warnickecb9cada2015-12-08 15:45:58 -070060clib_error_t *
61ip_interface_address_add_del (ip_lookup_main_t * lm,
62 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066{
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 vnet_main_t *vnm = vnet_get_main ();
68 ip_interface_address_t *a, *prev, *next;
69 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Dave Barachd7cb1b52016-12-09 09:52:16 -050071 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
72 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
74
75 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080076 if ((a && (address_length != a->address_length)) ||
77 (address_length == 0) ||
78 (lm->is_ip6 && address_length > 128) ||
79 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 {
81 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 return clib_error_create
83 ("%U wrong length (expected %d) for interface %U",
84 lm->format_address_and_length, addr_fib,
85 address_length, a ? a->address_length : -1,
86 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 }
88
89 if (is_del)
90 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050091 if (!a)
92 {
93 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
94 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
95 return clib_error_create ("%U not found for interface %U",
96 lm->format_address_and_length,
97 addr_fib, address_length,
98 format_vnet_sw_interface_name, vnm, si);
99 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101 if (a->prev_this_sw_interface != ~0)
102 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 prev =
104 pool_elt_at_index (lm->if_address_pool,
105 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 prev->next_this_sw_interface = a->next_this_sw_interface;
107 }
108 if (a->next_this_sw_interface != ~0)
109 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 next =
111 pool_elt_at_index (lm->if_address_pool,
112 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 next->prev_this_sw_interface = a->prev_this_sw_interface;
114
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 if (a->prev_this_sw_interface == ~0)
116 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
117 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 }
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 if ((a->next_this_sw_interface == ~0)
121 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
123
124 mhash_unset (&lm->address_to_if_address_index, addr_fib,
125 /* old_value */ 0);
126 pool_put (lm->if_address_pool, a);
127
128 if (result_if_address_index)
129 *result_if_address_index = ~0;
130 }
131
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 u32 pi; /* previous index */
135 u32 ai;
136 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
138 pool_get (lm->if_address_pool, a);
139 memset (a, ~0, sizeof (a[0]));
140 ai = a - lm->if_address_pool;
141
142 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
143 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 while (pi != (u32) ~ 0)
145 {
146 prev = pool_elt_at_index (lm->if_address_pool, pi);
147 pi = prev->next_this_sw_interface;
148 }
149 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 a->address_key = mhash_set (&lm->address_to_if_address_index,
152 addr_fib, ai, /* old_value */ 0);
153 a->address_length = address_length;
154 a->sw_if_index = sw_if_index;
155 a->flags = 0;
156 a->prev_this_sw_interface = pi;
157 a->next_this_sw_interface = ~0;
158 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
162 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 if (result_if_address_index)
164 *result_if_address_index = ai;
165 }
166 else
167 {
168 if (result_if_address_index)
169 *result_if_address_index = a - lm->if_address_pool;
170 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500171
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173 return /* no error */ 0;
174}
175
Neale Rannsd96bad82017-03-08 01:12:54 -0800176static clib_error_t *
177ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
178{
179 vec_validate_init_empty (ip4_main.
180 lookup_main.if_address_pool_index_by_sw_if_index,
181 sw_if_index, ~0);
182 vec_validate_init_empty (ip6_main.
183 lookup_main.if_address_pool_index_by_sw_if_index,
184 sw_if_index, ~0);
185
186 return (NULL);
187}
188
189VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
190
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191void
192ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500194 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 lm->fib_result_n_bytes = sizeof (uword);
196
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 lm->is_ip6 = is_ip6;
198 if (is_ip6)
199 {
200 lm->format_address_and_length = format_ip6_address_and_length;
201 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
202 sizeof (ip6_address_fib_t));
203 }
204 else
205 {
206 lm->format_address_and_length = format_ip4_address_and_length;
207 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
208 sizeof (ip4_address_fib_t));
209 }
210
211 {
212 int i;
213
214 /* Setup all IP protocols to be punted and builtin-unknown. */
215 for (i = 0; i < 256; i++)
216 {
217 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
218 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
219 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
223 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
224 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
225 IP_BUILTIN_PROTOCOL_UDP;
226 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
227 IP_PROTOCOL_ICMP] =
228 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 }
230}
231
Dave Barachd7cb1b52016-12-09 09:52:16 -0500232u8 *
233format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100235 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
238 foreach_flow_hash_bit;
239#undef _
240
241 return s;
242}
243
Dave Barachd7cb1b52016-12-09 09:52:16 -0500244u8 *
245format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Neale Rannsfa5d1982017-02-20 14:19:51 -0800247 /* int promotion of ip_lookup_next_t */
248 ip_lookup_next_t n = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500249 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 switch (n)
252 {
253 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 return s;
256
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257 case IP_LOOKUP_NEXT_DROP:
258 t = "drop";
259 break;
260 case IP_LOOKUP_NEXT_PUNT:
261 t = "punt";
262 break;
263 case IP_LOOKUP_NEXT_ARP:
264 t = "arp";
265 break;
266 case IP_LOOKUP_NEXT_MIDCHAIN:
267 t = "midchain";
268 break;
269 case IP_LOOKUP_NEXT_GLEAN:
270 t = "glean";
271 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000272 case IP_LOOKUP_NEXT_MCAST:
273 t = "mcast";
274 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 case IP_LOOKUP_NEXT_REWRITE:
276 break;
277 }
278
279 if (t)
280 vec_add (s, t, strlen (t));
281
282 return s;
283}
284
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285u8 *
286format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
293 switch (adj->lookup_next_index)
294 {
295 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400296 case IP_LOOKUP_NEXT_MCAST:
297 s =
298 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 break;
300
301 default:
302 break;
303 }
304
305 return s;
306}
307
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308static uword
309unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100311 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
312 fib_protocol_t fp = va_arg (*args, int);
313 dpo_proto_t proto;
314
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
317 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100323 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100325 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100327 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100330 {
331 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500334 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100335 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 }
338
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 dpo_set (dpo, DPO_CLASSIFY, proto,
340 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 else
343 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 return 1;
346}
347
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 .as_u64 = {
350 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100351};
352
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100354vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100358 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100359 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000361 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362 clib_error_t *error = NULL;
Neale Ranns57b58602017-07-15 07:37:25 -0700363 u32 weight, preference;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100364 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100366 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 is_del = 0;
372 table_id = 0;
373 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000375 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
377 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 return 0;
380
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
382 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100384
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 if (unformat (line_input, "table %d", &table_id))
386 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100387 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 {
389 if (vec_len (rpaths) == 0)
390 {
391 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100392 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393 }
394 rpaths[vec_len (rpaths) - 1].frp_flags |=
395 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
396 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397 else if (unformat (line_input, "resolve-via-attached"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 {
399 if (vec_len (rpaths) == 0)
400 {
401 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100402 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403 }
404 rpaths[vec_len (rpaths) - 1].frp_flags |=
405 FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
406 }
Neale Rannsf73d0e22017-08-08 13:07:16 -0700407 else if (unformat (line_input, "out-labels"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500408 {
409 if (vec_len (rpaths) == 0)
410 {
411 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100412 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413 }
Neale Rannsf73d0e22017-08-08 13:07:16 -0700414 else
415 {
416 while (unformat (line_input, "%U",
417 unformat_mpls_unicast_label, &out_label))
418 {
419 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack,
420 out_label);
421 }
422 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000424 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500425 unformat_mpls_unicast_label, &rpath.frp_local_label))
426 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000427 rpath.frp_weight = 1;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800428 rpath.frp_eos = MPLS_NON_EOS;
Neale Rannsda78f952017-05-24 09:15:43 -0700429 rpath.frp_proto = DPO_PROTO_MPLS;
Neale Rannsad422ed2016-11-02 14:20:04 +0000430 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 vec_add1 (rpaths, rpath);
432 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 else if (unformat (line_input, "count %f", &count))
434 ;
435
436 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500437 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
438 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100439 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500440 vec_add1 (prefixs, pfx);
441 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
444 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100445 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446 vec_add1 (prefixs, pfx);
447 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100451 unformat_vnet_sw_interface, vnm,
452 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500453 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100454 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700455 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500456 vec_add1 (rpaths, rpath);
457 }
458
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100462 unformat_vnet_sw_interface, vnm,
463 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500464 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100465 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700466 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500467 vec_add1 (rpaths, rpath);
468 }
Neale Ranns57b58602017-07-15 07:37:25 -0700469 else if (unformat (line_input, "weight %u", &weight))
470 {
471 ASSERT (vec_len (rpaths));
472 rpaths[vec_len (rpaths) - 1].frp_weight = weight;
473 }
474 else if (unformat (line_input, "preference %u", &preference))
475 {
476 ASSERT (vec_len (rpaths));
477 rpaths[vec_len (rpaths) - 1].frp_preference = preference;
478 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100479 else if (unformat (line_input, "via %U next-hop-table %d",
480 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
482 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483 rpath.frp_weight = 1;
484 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700485 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500486 vec_add1 (rpaths, rpath);
487 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 else if (unformat (line_input, "via %U next-hop-table %d",
489 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
491 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100492 rpath.frp_weight = 1;
493 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700494 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495 vec_add1 (rpaths, rpath);
496 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500498 unformat_ip4_address, &rpath.frp_addr.ip4))
499 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100500 /*
501 * the recursive next-hops are by default in the same table
502 * as the prefix
503 */
504 rpath.frp_fib_index = table_id;
505 rpath.frp_weight = 1;
506 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700507 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500508 vec_add1 (rpaths, rpath);
509 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500511 unformat_ip6_address, &rpath.frp_addr.ip6))
512 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513 rpath.frp_fib_index = table_id;
514 rpath.frp_weight = 1;
515 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700516 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500517 vec_add1 (rpaths, rpath);
518 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500520 "lookup in table %d", &rpath.frp_fib_index))
521 {
Neale Rannsda78f952017-05-24 09:15:43 -0700522 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100523 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500524 vec_add1 (rpaths, rpath);
525 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100526 else if (vec_len (prefixs) > 0 &&
527 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000528 unformat_vnet_sw_interface, vnm,
529 &rpath.frp_sw_if_index))
530 {
531 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700532 rpath.frp_proto = fib_proto_to_dpo (prefixs[0].fp_proto);
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000533 vec_add1 (rpaths, rpath);
534 }
535 else if (vec_len (prefixs) > 0 &&
536 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100537 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500538 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500540 }
pragash352829f2017-08-17 22:53:24 -0400541 else if (unformat (line_input, "del"))
542 is_del = 1;
543 else if (unformat (line_input, "add"))
544 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500546 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 error = unformat_parse_error (line_input);
548 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500551
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100552 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500553 {
554 error =
555 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 goto done;
557 }
558
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100559 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100561 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 goto done;
563 }
564
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100565 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100567 /*
568 * if no table_id is passed we will manipulate the default
569 */
570 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500571 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100572 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500573 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700574 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100576 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500577 {
578 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100579 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500580 }
581 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100583 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500584 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586 {
587 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
588 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100589 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500590 {
591 fib_table_entry_special_dpo_add (fib_index,
592 &prefixs[i],
593 FIB_SOURCE_CLI,
594 FIB_ENTRY_FLAG_EXCLUSIVE,
595 &dpos[0]);
596 dpo_reset (&dpos[0]);
597 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100598 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500599 {
600 error =
601 clib_error_return (0,
602 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100603 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500604 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100605 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100607 u32 k, j, n, incr;
608 ip46_address_t dst = prefixs[i].fp_addr;
609 f64 t[2];
610 n = count;
611 t[0] = vlib_time_now (vm);
612 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
613 prefixs[i].fp_len);
614
615 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500616 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100617 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500618 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100619 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100620 /*
621 * the CLI parsing stored table Ids, swap to FIB indicies
622 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700623 fi = fib_table_find (prefixs[i].fp_proto,
624 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100625
626 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500627 {
628 error =
629 clib_error_return (0, "Via table %d does not exist",
630 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100631 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500632 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100633 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100634
635 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500636 .fp_len = prefixs[i].fp_len,
637 .fp_proto = prefixs[i].fp_proto,
638 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100639 };
640
Dave Barachd7cb1b52016-12-09 09:52:16 -0500641 if (is_del)
642 fib_table_entry_path_remove2 (fib_index,
643 &rpfx,
644 FIB_SOURCE_CLI, &rpaths[j]);
645 else
646 fib_table_entry_path_add2 (fib_index,
647 &rpfx,
648 FIB_SOURCE_CLI,
649 FIB_ENTRY_FLAG_NONE,
650 &rpaths[j]);
651 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652
653 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500654 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100655 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500656 clib_host_to_net_u32 (incr +
657 clib_net_to_host_u32 (dst.
658 ip4.as_u32));
659 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100660 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500661 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100662 int bucket = (incr < 64 ? 0 : 1);
663 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500664 clib_host_to_net_u64 (incr +
665 clib_net_to_host_u64 (dst.ip6.as_u64
666 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100667
Dave Barachd7cb1b52016-12-09 09:52:16 -0500668 }
669 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100670 t[1] = vlib_time_now (vm);
671 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500672 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
673 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100674 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500675 {
676 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100677 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500678 }
679 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100680
681
Dave Barachd7cb1b52016-12-09 09:52:16 -0500682done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100683 vec_free (dpos);
684 vec_free (prefixs);
685 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500686 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 return error;
688}
689
Neale Ranns15002542017-09-10 04:39:11 -0700690clib_error_t *
691vnet_ip_table_cmd (vlib_main_t * vm,
692 unformat_input_t * main_input,
693 vlib_cli_command_t * cmd, fib_protocol_t fproto)
694{
695 unformat_input_t _line_input, *line_input = &_line_input;
696 clib_error_t *error = NULL;
697 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700698 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700699
700 is_add = 1;
701 table_id = ~0;
702
703 /* Get a line of input. */
704 if (!unformat_user (main_input, unformat_line_input, line_input))
705 return 0;
706
707 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
708 {
709 if (unformat (line_input, "%d", &table_id))
710 ;
711 else if (unformat (line_input, "del"))
712 is_add = 0;
713 else if (unformat (line_input, "add"))
714 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700715 else if (unformat (line_input, "name %s", &name))
716 ;
Neale Ranns15002542017-09-10 04:39:11 -0700717 else
718 {
719 error = unformat_parse_error (line_input);
720 goto done;
721 }
722 }
723
724 if (~0 == table_id)
725 {
726 error = clib_error_return (0, "No table id");
727 goto done;
728 }
729 else if (0 == table_id)
730 {
731 error = clib_error_return (0, "Can't change the default table");
732 goto done;
733 }
734 else
735 {
736 if (is_add)
737 {
Neale Ranns2297af02017-09-12 09:45:04 -0700738 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700739 }
740 else
741 {
742 ip_table_delete (fproto, table_id, 0);
743 }
744 }
745
746done:
747 unformat_free (line_input);
748 return error;
749}
750
751clib_error_t *
752vnet_ip4_table_cmd (vlib_main_t * vm,
753 unformat_input_t * main_input, vlib_cli_command_t * cmd)
754{
755 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
756}
757
758clib_error_t *
759vnet_ip6_table_cmd (vlib_main_t * vm,
760 unformat_input_t * main_input, vlib_cli_command_t * cmd)
761{
762 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
763}
764
Dave Barachd7cb1b52016-12-09 09:52:16 -0500765/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
767 .path = "ip",
768 .short_help = "Internet protocol (IP) commands",
769};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500770/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
Dave Barachd7cb1b52016-12-09 09:52:16 -0500772/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400773VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
774 .path = "ip6",
775 .short_help = "Internet protocol version 6 (IPv6) commands",
776};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500777/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400778
Dave Barachd7cb1b52016-12-09 09:52:16 -0500779/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
781 .path = "show ip",
782 .short_help = "Internet protocol (IP) show commands",
783};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500784/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785
Dave Barachd7cb1b52016-12-09 09:52:16 -0500786/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
788 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400789 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500791/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700793/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400794 * This command is used to add or delete IPv4 or IPv6 routes. All
795 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
796 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
797 * can be IPv4 or IPv6, but all must be of the same form in a single
798 * command. To display the current set of routes, use the commands
799 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
800 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700801 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400802 * Example of how to add a straight forward static route:
803 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
804 * Example of how to delete a straight forward static route:
805 * @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 -0700806 * Mainly for route add/del performance testing, one can add or delete
807 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400808 * @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 -0700809 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400810 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
811 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
812 * For unequal-cost multipath, specify the desired weights. This
813 * combination of weights results in 3/4 of the traffic following the
814 * second path, 1/4 following the first path:
815 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
816 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
817 * To add a route to a particular FIB table (VRF), use:
818 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700819 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400820/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821VLIB_CLI_COMMAND (ip_route_command, static) = {
822 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400823 .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>] [weight <weight>]] | [via arp <interface> <adj-hop-ip-addr>] | [via drop|punt|local<id>|arp|classify <classify-idx>] [lookup in table <out-table-id>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400825 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826};
Neale Ranns15002542017-09-10 04:39:11 -0700827
828/* *INDENT-ON* */
829/*?
830 * This command is used to add or delete IPv4 Tables. All
831 * Tables must be explicitly added before that can be used. Creating a
832 * table will add both unicast and multicast FIBs
833 *
834 ?*/
835/* *INDENT-OFF* */
836VLIB_CLI_COMMAND (ip4_table_command, static) = {
837 .path = "ip table",
838 .short_help = "ip table [add|del] <table-id>",
839 .function = vnet_ip4_table_cmd,
840 .is_mp_safe = 1,
841};
842/* *INDENT-ON* */
843
844/* *INDENT-ON* */
845/*?
846 * This command is used to add or delete IPv4 Tables. All
847 * Tables must be explicitly added before that can be used. Creating a
848 * table will add both unicast and multicast FIBs
849 *
850 ?*/
851/* *INDENT-OFF* */
852VLIB_CLI_COMMAND (ip6_table_command, static) = {
853 .path = "ip6 table",
854 .short_help = "ip6 table [add|del] <table-id>",
855 .function = vnet_ip6_table_cmd,
856 .is_mp_safe = 1,
857};
858
859static clib_error_t *
860ip_table_bind_cmd (vlib_main_t * vm,
861 unformat_input_t * input,
862 vlib_cli_command_t * cmd,
863 fib_protocol_t fproto)
864{
865 vnet_main_t *vnm = vnet_get_main ();
866 clib_error_t *error = 0;
867 u32 sw_if_index, table_id;
868 int rv;
869
870 sw_if_index = ~0;
871
872 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
873 {
874 error = clib_error_return (0, "unknown interface `%U'",
875 format_unformat_error, input);
876 goto done;
877 }
878
879 if (unformat (input, "%d", &table_id))
880 ;
881 else
882 {
883 error = clib_error_return (0, "expected table id `%U'",
884 format_unformat_error, input);
885 goto done;
886 }
887
888 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
889
890 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
891 {
892 error = clib_error_return (0, "IP addresses are still present on %U",
893 format_vnet_sw_if_index_name,
894 vnet_get_main(),
895 sw_if_index);
896 }
897 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
898 {
899 error = clib_error_return (0, "no such table %d", table_id);
900 }
901 else if (0 != rv)
902 {
903 error = clib_error_return (0, "unknown error");
904 }
905
906 done:
907 return error;
908}
909
910static clib_error_t *
911ip4_table_bind_cmd (vlib_main_t * vm,
912 unformat_input_t * input,
913 vlib_cli_command_t * cmd)
914{
915 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
916}
917
918static clib_error_t *
919ip6_table_bind_cmd (vlib_main_t * vm,
920 unformat_input_t * input,
921 vlib_cli_command_t * cmd)
922{
923 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
924}
925
926/*?
927 * Place the indicated interface into the supplied IPv4 FIB table (also known
928 * as a VRF). If the FIB table does not exist, this command creates it. To
929 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
930 * FIB table will only be displayed if a route has been added to the table, or
931 * an IP Address is assigned to an interface in the table (which adds a route
932 * automatically).
933 *
934 * @note IP addresses added after setting the interface IP table are added to
935 * the indicated FIB table. If an IP address is added prior to changing the
936 * table then this is an error. The control plane must remove these addresses
937 * first and then change the table. VPP will not automatically move the
938 * addresses from the old to the new table as it does not know the validity
939 * of such a change.
940 *
941 * @cliexpar
942 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
943 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
944 ?*/
945/* *INDENT-OFF* */
946VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
947{
948 .path = "set interface ip table",
949 .function = ip4_table_bind_cmd,
950 .short_help = "set interface ip table <interface> <table-id>",
951};
952/* *INDENT-ON* */
953
954/*?
955 * Place the indicated interface into the supplied IPv6 FIB table (also known
956 * as a VRF). If the FIB table does not exist, this command creates it. To
957 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
958 * FIB table will only be displayed if a route has been added to the table, or
959 * an IP Address is assigned to an interface in the table (which adds a route
960 * automatically).
961 *
962 * @note IP addresses added after setting the interface IP table are added to
963 * the indicated FIB table. If an IP address is added prior to changing the
964 * table then this is an error. The control plane must remove these addresses
965 * first and then change the table. VPP will not automatically move the
966 * addresses from the old to the new table as it does not know the validity
967 * of such a change.
968 *
969 * @cliexpar
970 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
971 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
972 ?*/
973/* *INDENT-OFF* */
974VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
975{
976 .path = "set interface ip6 table",
977 .function = ip6_table_bind_cmd,
978 .short_help = "set interface ip6 table <interface> <table-id>"
979};
Billy McFall0683c9c2016-10-13 08:27:31 -0400980/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981
Neale Ranns32e1c012016-11-22 17:07:28 +0000982clib_error_t *
983vnet_ip_mroute_cmd (vlib_main_t * vm,
984 unformat_input_t * main_input, vlib_cli_command_t * cmd)
985{
986 unformat_input_t _line_input, *line_input = &_line_input;
987 clib_error_t *error = NULL;
988 fib_route_path_t rpath;
989 u32 table_id, is_del;
990 vnet_main_t *vnm;
991 mfib_prefix_t pfx;
992 u32 fib_index;
993 mfib_itf_flags_t iflags = 0;
994 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800995 u32 gcount, scount, ss, gg, incr;
996 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000997
Neale Ranns52456fc2017-02-15 00:38:27 -0800998 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000999 vnm = vnet_get_main ();
1000 is_del = 0;
1001 table_id = 0;
1002 memset (&pfx, 0, sizeof (pfx));
1003 memset (&rpath, 0, sizeof (rpath));
1004 rpath.frp_sw_if_index = ~0;
1005
1006 /* Get a line of input. */
1007 if (!unformat_user (main_input, unformat_line_input, line_input))
1008 return 0;
1009
1010 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1011 {
1012 if (unformat (line_input, "table %d", &table_id))
1013 ;
1014 else if (unformat (line_input, "del"))
1015 is_del = 1;
1016 else if (unformat (line_input, "add"))
1017 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -08001018 else if (unformat (line_input, "scount %d", &scount))
1019 ;
1020 else if (unformat (line_input, "gcount %d", &gcount))
1021 ;
Neale Ranns32e1c012016-11-22 17:07:28 +00001022 else if (unformat (line_input, "%U %U",
1023 unformat_ip4_address,
1024 &pfx.fp_src_addr.ip4,
1025 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1026 {
1027 pfx.fp_proto = FIB_PROTOCOL_IP4;
1028 pfx.fp_len = 64;
1029 }
1030 else if (unformat (line_input, "%U %U",
1031 unformat_ip6_address,
1032 &pfx.fp_src_addr.ip6,
1033 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1034 {
1035 pfx.fp_proto = FIB_PROTOCOL_IP6;
1036 pfx.fp_len = 256;
1037 }
1038 else if (unformat (line_input, "%U/%d",
1039 unformat_ip4_address,
1040 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
1041 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001042 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +00001043 pfx.fp_proto = FIB_PROTOCOL_IP4;
1044 }
1045 else if (unformat (line_input, "%U/%d",
1046 unformat_ip6_address,
1047 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
1048 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001049 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +00001050 pfx.fp_proto = FIB_PROTOCOL_IP6;
1051 }
1052 else if (unformat (line_input, "%U",
1053 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1054 {
1055 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
1056 pfx.fp_proto = FIB_PROTOCOL_IP4;
1057 pfx.fp_len = 32;
1058 }
1059 else if (unformat (line_input, "%U",
1060 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1061 {
1062 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
1063 pfx.fp_proto = FIB_PROTOCOL_IP6;
1064 pfx.fp_len = 128;
1065 }
1066 else if (unformat (line_input, "via %U",
1067 unformat_vnet_sw_interface, vnm,
1068 &rpath.frp_sw_if_index))
1069 {
1070 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -07001071 }
1072 else if (unformat (line_input, "via local"))
1073 {
1074 rpath.frp_sw_if_index = ~0;
1075 rpath.frp_weight = 1;
1076 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns32e1c012016-11-22 17:07:28 +00001077 }
1078 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
1079 ;
1080 else if (unformat (line_input, "%U",
1081 unformat_mfib_entry_flags, &eflags))
1082 ;
1083 else
1084 {
1085 error = unformat_parse_error (line_input);
1086 goto done;
1087 }
1088 }
1089
Neale Ranns32e1c012016-11-22 17:07:28 +00001090 if (~0 == table_id)
1091 {
1092 /*
1093 * if no table_id is passed we will manipulate the default
1094 */
1095 fib_index = 0;
1096 }
1097 else
1098 {
1099 fib_index = mfib_table_find (pfx.fp_proto, table_id);
1100
1101 if (~0 == fib_index)
1102 {
1103 error = clib_error_return (0, "Nonexistent table id %d", table_id);
1104 goto done;
1105 }
1106 }
1107
Neale Ranns52456fc2017-02-15 00:38:27 -08001108 timet[0] = vlib_time_now (vm);
1109
1110 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +00001111 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001112 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +00001113 }
1114 else
1115 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001116 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +00001117 }
1118
Neale Ranns52456fc2017-02-15 00:38:27 -08001119 for (ss = 0; ss < scount; ss++)
1120 {
1121 for (gg = 0; gg < gcount; gg++)
1122 {
1123 if (is_del && 0 == rpath.frp_weight)
1124 {
1125 /* no path provided => route delete */
1126 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
1127 }
1128 else if (eflags)
1129 {
1130 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001131 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -08001132 }
1133 else
1134 {
1135 if (is_del)
1136 mfib_table_entry_path_remove (fib_index,
1137 &pfx, MFIB_SOURCE_CLI, &rpath);
1138 else
1139 mfib_table_entry_path_update (fib_index,
1140 &pfx, MFIB_SOURCE_CLI, &rpath,
1141 iflags);
1142 }
1143
1144 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1145 {
1146 pfx.fp_grp_addr.ip4.as_u32 =
1147 clib_host_to_net_u32 (incr +
1148 clib_net_to_host_u32 (pfx.
1149 fp_grp_addr.ip4.
1150 as_u32));
1151 }
1152 else
1153 {
1154 int bucket = (incr < 64 ? 0 : 1);
1155 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1156 clib_host_to_net_u64 (incr +
1157 clib_net_to_host_u64 (pfx.
1158 fp_grp_addr.ip6.as_u64
1159 [bucket]));
1160
1161 }
1162 }
1163 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1164 {
1165 pfx.fp_src_addr.ip4.as_u32 =
1166 clib_host_to_net_u32 (1 +
1167 clib_net_to_host_u32 (pfx.fp_src_addr.
1168 ip4.as_u32));
1169 }
1170 else
1171 {
1172 pfx.fp_src_addr.ip6.as_u64[1] =
1173 clib_host_to_net_u64 (1 +
1174 clib_net_to_host_u64 (pfx.fp_src_addr.
1175 ip6.as_u64[1]));
1176 }
1177 }
1178
1179 timet[1] = vlib_time_now (vm);
1180
1181 if (scount > 1 || gcount > 1)
1182 vlib_cli_output (vm, "%.6e routes/sec",
1183 (scount * gcount) / (timet[1] - timet[0]));
1184
Neale Ranns32e1c012016-11-22 17:07:28 +00001185done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001186 unformat_free (line_input);
1187
Neale Ranns32e1c012016-11-22 17:07:28 +00001188 return error;
1189}
1190
1191/*?
1192 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1193 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1194 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1195 * can be IPv4 or IPv6, but all must be of the same form in a single
1196 * command. To display the current set of routes, use the commands
1197 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1198 * The full set of support flags for interfaces and route is shown via;
1199 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1200 * respectively.
1201 * @cliexpar
1202 * Example of how to add a forwarding interface to a route (and create the
1203 * route if it does not exist)
1204 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1205 * Example of how to add an accepting interface to a route (and create the
1206 * route if it does not exist)
1207 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1208 * Example of changing the route's flags to send signals via the API
1209 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1210
1211 ?*/
1212/* *INDENT-OFF* */
1213VLIB_CLI_COMMAND (ip_mroute_command, static) =
1214{
1215 .path = "ip mroute",
1216 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1217 .function = vnet_ip_mroute_cmd,
1218 .is_mp_safe = 1,
1219};
1220/* *INDENT-ON* */
1221
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001222/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001223 * The next two routines address a longstanding script hemorrhoid.
1224 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1225 * or dependent route-adds will simply fail.
1226 */
1227static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001228ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001229 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001231 vnet_main_t *vnm = vnet_get_main ();
1232 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 int i;
1234 int resolved = 0;
1235 uword event_type;
1236 uword *event_data = 0;
1237
Dave Barachd7cb1b52016-12-09 09:52:16 -05001238 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239
1240 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001241 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001243 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244
1245 for (i = 0; i < retry_count; i++)
1246 {
1247 /* The interface may be down, etc. */
1248 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001249
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001251 return e;
1252
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 vlib_process_wait_for_event_or_clock (vm, 1.0);
1254 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001255 switch (event_type)
1256 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001257 case 1: /* resolved... */
1258 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1259 resolved = 1;
1260 goto done;
1261
1262 case ~0: /* timeout */
1263 break;
1264
1265 default:
1266 clib_warning ("unknown event_type %d", event_type);
1267 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001268 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001270
1271done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272
1273 if (!resolved)
1274 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001275 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276 return 0;
1277}
1278
1279static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001280ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1281 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001283 vnet_main_t *vnm = vnet_get_main ();
1284 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285 int i;
1286 int resolved = 0;
1287 uword event_type;
1288 uword *event_data = 0;
1289
Dave Barachd7cb1b52016-12-09 09:52:16 -05001290 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
1292 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001293 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001295 1 /* event */ , 0 /* data */ );
1296
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297 for (i = 0; i < retry_count; i++)
1298 {
1299 /* The interface may be down, etc. */
1300 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001301
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001303 return e;
1304
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305 vlib_process_wait_for_event_or_clock (vm, 1.0);
1306 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001307 switch (event_type)
1308 {
1309 case 1: /* resolved... */
1310 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1311 resolved = 1;
1312 goto done;
1313
1314 case ~0: /* timeout */
1315 break;
1316
1317 default:
1318 clib_warning ("unknown event_type %d", event_type);
1319 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001320 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001322
1323done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001324
1325 vec_reset_length (event_data);
1326
1327 if (!resolved)
1328 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001329 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001330 return 0;
1331}
1332
1333static clib_error_t *
1334probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001335 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001336{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001337 vnet_main_t *vnm = vnet_get_main ();
1338 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339 ip4_address_t a4;
1340 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001341 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342 u32 sw_if_index = ~0;
1343 int retry_count = 3;
1344 int is_ip4 = 1;
1345 int address_set = 0;
1346
1347 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001348 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001349 return 0;
1350
Dave Barachd7cb1b52016-12-09 09:52:16 -05001351 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001353 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1354 &sw_if_index))
1355 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001357 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358
1359 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001360 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001362 {
1363 address_set++;
1364 is_ip4 = 0;
1365 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001367 {
1368 error = clib_error_return (0, "unknown input '%U'",
1369 format_unformat_error, line_input);
1370 goto done;
1371 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372 }
1373
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001375 {
1376 error = clib_error_return (0, "Interface required, not set.");
1377 goto done;
1378 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001380 {
1381 error = clib_error_return (0, "ip address required, not set.");
1382 goto done;
1383 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001385 {
1386 error = clib_error_return (0, "Multiple ip addresses not supported.");
1387 goto done;
1388 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001389
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 if (is_ip4)
1391 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001392 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001393 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1394
Billy McFalla9a20e72017-02-15 11:39:12 -05001395done:
1396 unformat_free (line_input);
1397
Ed Warnickecb9cada2015-12-08 15:45:58 -07001398 return error;
1399}
1400
Billy McFall0683c9c2016-10-13 08:27:31 -04001401/*?
1402 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1403 * attempts IPv6 neighbor discovery depending on the supplied IP address
1404 * format.
1405 *
1406 * @note This command will not immediately affect the indicated FIB; it
1407 * is not suitable for use in establishing a FIB entry prior to adding
1408 * recursive FIB entries. As in: don't use it in a script to probe a
1409 * gateway prior to adding a default route. It won't work. Instead,
1410 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1411 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1412 *
1413 * @cliexpar
1414 * Example of probe for an IPv4 address:
1415 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1416?*/
1417/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1419 .path = "ip probe-neighbor",
1420 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001421 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001422 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001423};
Billy McFall0683c9c2016-10-13 08:27:31 -04001424/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001425
1426/*
1427 * fd.io coding-style-patch-verification: ON
1428 *
1429 * Local Variables:
1430 * eval: (c-set-style "gnu")
1431 * End:
1432 */