blob: 807b87b6037e6272c2897ab62883486f22864f28 [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Billy McFall0683c9c2016-10-13 08:27:31 -040053/**
54 * @file
55 * @brief IPv4 and IPv6 adjacency and lookup table managment.
56 *
57 */
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059clib_error_t *
60ip_interface_address_add_del (ip_lookup_main_t * lm,
61 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050062 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050064 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070065{
Dave Barachd7cb1b52016-12-09 09:52:16 -050066 vnet_main_t *vnm = vnet_get_main ();
67 ip_interface_address_t *a, *prev, *next;
68 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Dave Barachd7cb1b52016-12-09 09:52:16 -050070 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
71 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
73
74 /* Verify given length. */
75 if ((a && (address_length != a->address_length)) || (address_length == 0))
76 {
77 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050078 return clib_error_create
79 ("%U wrong length (expected %d) for interface %U",
80 lm->format_address_and_length, addr_fib,
81 address_length, a ? a->address_length : -1,
82 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 }
84
85 if (is_del)
86 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050087 if (!a)
88 {
89 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
90 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
91 return clib_error_create ("%U not found for interface %U",
92 lm->format_address_and_length,
93 addr_fib, address_length,
94 format_vnet_sw_interface_name, vnm, si);
95 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 if (a->prev_this_sw_interface != ~0)
98 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050099 prev =
100 pool_elt_at_index (lm->if_address_pool,
101 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 prev->next_this_sw_interface = a->next_this_sw_interface;
103 }
104 if (a->next_this_sw_interface != ~0)
105 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106 next =
107 pool_elt_at_index (lm->if_address_pool,
108 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 next->prev_this_sw_interface = a->prev_this_sw_interface;
110
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 if (a->prev_this_sw_interface == ~0)
112 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
113 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 }
115
Dave Barachd7cb1b52016-12-09 09:52:16 -0500116 if ((a->next_this_sw_interface == ~0)
117 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
119
120 mhash_unset (&lm->address_to_if_address_index, addr_fib,
121 /* old_value */ 0);
122 pool_put (lm->if_address_pool, a);
123
124 if (result_if_address_index)
125 *result_if_address_index = ~0;
126 }
127
Dave Barachd7cb1b52016-12-09 09:52:16 -0500128 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500130 u32 pi; /* previous index */
131 u32 ai;
132 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
134 pool_get (lm->if_address_pool, a);
135 memset (a, ~0, sizeof (a[0]));
136 ai = a - lm->if_address_pool;
137
138 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
139 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 while (pi != (u32) ~ 0)
141 {
142 prev = pool_elt_at_index (lm->if_address_pool, pi);
143 pi = prev->next_this_sw_interface;
144 }
145 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147 a->address_key = mhash_set (&lm->address_to_if_address_index,
148 addr_fib, ai, /* old_value */ 0);
149 a->address_length = address_length;
150 a->sw_if_index = sw_if_index;
151 a->flags = 0;
152 a->prev_this_sw_interface = pi;
153 a->next_this_sw_interface = ~0;
154 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500155 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
Dave Barachd7cb1b52016-12-09 09:52:16 -0500157 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
158 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 if (result_if_address_index)
160 *result_if_address_index = ai;
161 }
162 else
163 {
164 if (result_if_address_index)
165 *result_if_address_index = a - lm->if_address_pool;
166 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169 return /* no error */ 0;
170}
171
Dave Barachd7cb1b52016-12-09 09:52:16 -0500172void
173ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174{
Dave Barachdbf19ca2016-03-15 10:21:54 +0100175 /* ensure that adjacency is cacheline aligned and sized */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500176 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline0) == 0,
177 "Cache line marker must be 1st element in struct");
178 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline1) ==
179 CLIB_CACHE_LINE_BYTES,
180 "Data in cache line 0 is bigger than cache line size");
Dave Barachdbf19ca2016-03-15 10:21:54 +0100181
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400182 /* Preallocate three "special" adjacencies */
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100183 lm->adjacency_heap = adj_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
Dave Barachd7cb1b52016-12-09 09:52:16 -0500185 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186 lm->fib_result_n_bytes = sizeof (uword);
187
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 lm->is_ip6 = is_ip6;
189 if (is_ip6)
190 {
191 lm->format_address_and_length = format_ip6_address_and_length;
192 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
193 sizeof (ip6_address_fib_t));
194 }
195 else
196 {
197 lm->format_address_and_length = format_ip4_address_and_length;
198 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
199 sizeof (ip4_address_fib_t));
200 }
201
202 {
203 int i;
204
205 /* Setup all IP protocols to be punted and builtin-unknown. */
206 for (i = 0; i < 256; i++)
207 {
208 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
209 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
210 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
212 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500213 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
214 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
215 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
216 IP_BUILTIN_PROTOCOL_UDP;
217 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
218 IP_PROTOCOL_ICMP] =
219 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 }
221}
222
Dave Barachd7cb1b52016-12-09 09:52:16 -0500223u8 *
224format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100226 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500227
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
229 foreach_flow_hash_bit;
230#undef _
231
232 return s;
233}
234
Dave Barachd7cb1b52016-12-09 09:52:16 -0500235u8 *
236format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100238 ip_lookup_next_t n = va_arg (*args, ip_lookup_next_t);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500239 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
241 switch (n)
242 {
243 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100244 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 return s;
246
Dave Barachd7cb1b52016-12-09 09:52:16 -0500247 case IP_LOOKUP_NEXT_DROP:
248 t = "drop";
249 break;
250 case IP_LOOKUP_NEXT_PUNT:
251 t = "punt";
252 break;
253 case IP_LOOKUP_NEXT_ARP:
254 t = "arp";
255 break;
256 case IP_LOOKUP_NEXT_MIDCHAIN:
257 t = "midchain";
258 break;
259 case IP_LOOKUP_NEXT_GLEAN:
260 t = "glean";
261 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000262 case IP_LOOKUP_NEXT_MCAST:
263 t = "mcast";
264 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 case IP_LOOKUP_NEXT_REWRITE:
266 break;
267 }
268
269 if (t)
270 vec_add (s, t, strlen (t));
271
272 return s;
273}
274
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275u8 *
276format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284 switch (adj->lookup_next_index)
285 {
286 case IP_LOOKUP_NEXT_REWRITE:
287 s = format (s, "%U",
288 format_vnet_rewrite_header,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 vnm->vlib_main, &adj->rewrite_header, packet_data,
290 n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 break;
292
293 default:
294 break;
295 }
296
297 return s;
298}
299
Dave Barachd7cb1b52016-12-09 09:52:16 -0500300static uword
301unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
304 fib_protocol_t fp = va_arg (*args, int);
305 dpo_proto_t proto;
306
Dave Barachd7cb1b52016-12-09 09:52:16 -0500307 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
309 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100315 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100317 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100319 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322 {
323 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100327 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100329 }
330
Dave Barachd7cb1b52016-12-09 09:52:16 -0500331 dpo_set (dpo, DPO_CLASSIFY, proto,
332 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 else
335 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 return 1;
338}
339
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100340const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 .as_u64 = {
342 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100343};
344
345u32
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346fib_table_id_find_fib_index (fib_protocol_t proto, u32 table_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 ip4_main_t *im4 = &ip4_main;
349 ip6_main_t *im6 = &ip6_main;
350 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 switch (proto)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100354 case FIB_PROTOCOL_IP4:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 p = hash_get (im4->fib_index_by_table_id, table_id);
356 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100357 case FIB_PROTOCOL_IP6:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 p = hash_get (im6->fib_index_by_table_id, table_id);
359 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360 default:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 p = NULL;
362 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 if (NULL != p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500366 return (p[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368 return (~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369}
370
371clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100372vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500373 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500375 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100377 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100378 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000379 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500380 clib_error_t *error = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100385 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Dave Barachd7cb1b52016-12-09 09:52:16 -0500387 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 is_del = 0;
389 table_id = 0;
390 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000392 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393
394 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500395 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 return 0;
397
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
399 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500400 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100401
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 if (unformat (line_input, "table %d", &table_id))
403 ;
404 else if (unformat (line_input, "del"))
405 is_del = 1;
406 else if (unformat (line_input, "add"))
407 is_del = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100408 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409 {
410 if (vec_len (rpaths) == 0)
411 {
412 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100413 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500414 }
415 rpaths[vec_len (rpaths) - 1].frp_flags |=
416 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
417 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100418 else if (unformat (line_input, "resolve-via-attached"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419 {
420 if (vec_len (rpaths) == 0)
421 {
422 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500424 }
425 rpaths[vec_len (rpaths) - 1].frp_flags |=
426 FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
427 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100428 else if (unformat (line_input, "out-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429 unformat_mpls_unicast_label, &out_label))
430 {
431 if (vec_len (rpaths) == 0)
432 {
433 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435 }
436 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label);
437 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000438 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500439 unformat_mpls_unicast_label, &rpath.frp_local_label))
440 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000441 rpath.frp_weight = 1;
442 rpath.frp_proto = FIB_PROTOCOL_MPLS;
443 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 vec_add1 (rpaths, rpath);
445 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 else if (unformat (line_input, "count %f", &count))
447 ;
448
449 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
451 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100452 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500453 vec_add1 (prefixs, pfx);
454 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500456 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
457 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100458 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500459 vec_add1 (prefixs, pfx);
460 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100461 else if (unformat (line_input, "via %U %U weight %u",
462 unformat_ip4_address,
463 &rpath.frp_addr.ip4,
464 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500465 &rpath.frp_sw_if_index, &rpath.frp_weight))
466 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100467 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 vec_add1 (rpaths, rpath);
469 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470
471 else if (unformat (line_input, "via %U %U weight %u",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100472 unformat_ip6_address,
473 &rpath.frp_addr.ip6,
474 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500475 &rpath.frp_sw_if_index, &rpath.frp_weight))
476 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100477 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478 vec_add1 (rpaths, rpath);
479 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
481 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100482 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500483 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100484 unformat_vnet_sw_interface, vnm,
485 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500486 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100487 rpath.frp_weight = 1;
488 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 vec_add1 (rpaths, rpath);
490 }
491
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100493 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500494 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100495 unformat_vnet_sw_interface, vnm,
496 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 rpath.frp_weight = 1;
499 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500 vec_add1 (rpaths, rpath);
501 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100502 else if (unformat (line_input, "via %U next-hop-table %d",
503 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
505 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100506 rpath.frp_weight = 1;
507 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100508 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500509 vec_add1 (rpaths, rpath);
510 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511 else if (unformat (line_input, "via %U next-hop-table %d",
512 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500513 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
514 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100515 rpath.frp_weight = 1;
516 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100517 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500518 vec_add1 (rpaths, rpath);
519 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500521 unformat_ip4_address, &rpath.frp_addr.ip4))
522 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100523 /*
524 * the recursive next-hops are by default in the same table
525 * as the prefix
526 */
527 rpath.frp_fib_index = table_id;
528 rpath.frp_weight = 1;
529 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100530 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500531 vec_add1 (rpaths, rpath);
532 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500534 unformat_ip6_address, &rpath.frp_addr.ip6))
535 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100536 rpath.frp_fib_index = table_id;
537 rpath.frp_weight = 1;
538 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500540 vec_add1 (rpaths, rpath);
541 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100542 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500543 "lookup in table %d", &rpath.frp_fib_index))
544 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 rpath.frp_proto = pfx.fp_proto;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100546 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500547 vec_add1 (rpaths, rpath);
548 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100549 else if (vec_len (prefixs) > 0 &&
550 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000551 unformat_vnet_sw_interface, vnm,
552 &rpath.frp_sw_if_index))
553 {
554 rpath.frp_weight = 1;
555 rpath.frp_proto = prefixs[0].fp_proto;
556 vec_add1 (rpaths, rpath);
557 }
558 else if (vec_len (prefixs) > 0 &&
559 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100560 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500561 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100562 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500563 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500565 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 error = unformat_parse_error (line_input);
567 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500568 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500570
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100571 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500572 {
573 error =
574 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 goto done;
576 }
577
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100578 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100580 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581 goto done;
582 }
583
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100584 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500585 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100586 /*
587 * if no table_id is passed we will manipulate the default
588 */
589 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500590 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100591 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500592 {
593 fib_index = fib_table_id_find_fib_index (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100595 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500596 {
597 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100598 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500599 }
600 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100602 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500603 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100604 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500605 {
606 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
607 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100608 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500609 {
610 fib_table_entry_special_dpo_add (fib_index,
611 &prefixs[i],
612 FIB_SOURCE_CLI,
613 FIB_ENTRY_FLAG_EXCLUSIVE,
614 &dpos[0]);
615 dpo_reset (&dpos[0]);
616 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100617 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500618 {
619 error =
620 clib_error_return (0,
621 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500623 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500625 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100626 u32 k, j, n, incr;
627 ip46_address_t dst = prefixs[i].fp_addr;
628 f64 t[2];
629 n = count;
630 t[0] = vlib_time_now (vm);
631 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
632 prefixs[i].fp_len);
633
634 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500635 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100636 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500637 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100638 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100639 /*
640 * the CLI parsing stored table Ids, swap to FIB indicies
641 */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500642 fi = fib_table_id_find_fib_index (prefixs[i].fp_proto,
643 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100644
645 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500646 {
647 error =
648 clib_error_return (0, "Via table %d does not exist",
649 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100650 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500651 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100652 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100653
654 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500655 .fp_len = prefixs[i].fp_len,
656 .fp_proto = prefixs[i].fp_proto,
657 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100658 };
659
Dave Barachd7cb1b52016-12-09 09:52:16 -0500660 if (is_del)
661 fib_table_entry_path_remove2 (fib_index,
662 &rpfx,
663 FIB_SOURCE_CLI, &rpaths[j]);
664 else
665 fib_table_entry_path_add2 (fib_index,
666 &rpfx,
667 FIB_SOURCE_CLI,
668 FIB_ENTRY_FLAG_NONE,
669 &rpaths[j]);
670 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100671
672 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500673 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100674 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500675 clib_host_to_net_u32 (incr +
676 clib_net_to_host_u32 (dst.
677 ip4.as_u32));
678 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100679 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500680 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100681 int bucket = (incr < 64 ? 0 : 1);
682 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500683 clib_host_to_net_u64 (incr +
684 clib_net_to_host_u64 (dst.ip6.as_u64
685 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100686
Dave Barachd7cb1b52016-12-09 09:52:16 -0500687 }
688 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100689 t[1] = vlib_time_now (vm);
690 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500691 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
692 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100693 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500694 {
695 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100696 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500697 }
698 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100699
700
Dave Barachd7cb1b52016-12-09 09:52:16 -0500701done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100702 vec_free (dpos);
703 vec_free (prefixs);
704 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500705 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 return error;
707}
708
Dave Barachd7cb1b52016-12-09 09:52:16 -0500709/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
711 .path = "ip",
712 .short_help = "Internet protocol (IP) commands",
713};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500714/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715
Dave Barachd7cb1b52016-12-09 09:52:16 -0500716/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400717VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
718 .path = "ip6",
719 .short_help = "Internet protocol version 6 (IPv6) commands",
720};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500721/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400722
Dave Barachd7cb1b52016-12-09 09:52:16 -0500723/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
725 .path = "show ip",
726 .short_help = "Internet protocol (IP) show commands",
727};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500728/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729
Dave Barachd7cb1b52016-12-09 09:52:16 -0500730/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
732 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400733 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500735/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700737/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400738 * This command is used to add or delete IPv4 or IPv6 routes. All
739 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
740 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
741 * can be IPv4 or IPv6, but all must be of the same form in a single
742 * command. To display the current set of routes, use the commands
743 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
744 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700745 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400746 * Example of how to add a straight forward static route:
747 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
748 * Example of how to delete a straight forward static route:
749 * @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 -0700750 * Mainly for route add/del performance testing, one can add or delete
751 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400752 * @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 -0700753 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400754 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
755 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
756 * For unequal-cost multipath, specify the desired weights. This
757 * combination of weights results in 3/4 of the traffic following the
758 * second path, 1/4 following the first path:
759 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
760 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
761 * To add a route to a particular FIB table (VRF), use:
762 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700763 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400764/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765VLIB_CLI_COMMAND (ip_route_command, static) = {
766 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400767 .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 -0700768 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400769 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770};
Billy McFall0683c9c2016-10-13 08:27:31 -0400771/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
Neale Ranns32e1c012016-11-22 17:07:28 +0000773clib_error_t *
774vnet_ip_mroute_cmd (vlib_main_t * vm,
775 unformat_input_t * main_input, vlib_cli_command_t * cmd)
776{
777 unformat_input_t _line_input, *line_input = &_line_input;
778 clib_error_t *error = NULL;
779 fib_route_path_t rpath;
780 u32 table_id, is_del;
781 vnet_main_t *vnm;
782 mfib_prefix_t pfx;
783 u32 fib_index;
784 mfib_itf_flags_t iflags = 0;
785 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800786 u32 gcount, scount, ss, gg, incr;
787 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000788
Neale Ranns52456fc2017-02-15 00:38:27 -0800789 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000790 vnm = vnet_get_main ();
791 is_del = 0;
792 table_id = 0;
793 memset (&pfx, 0, sizeof (pfx));
794 memset (&rpath, 0, sizeof (rpath));
795 rpath.frp_sw_if_index = ~0;
796
797 /* Get a line of input. */
798 if (!unformat_user (main_input, unformat_line_input, line_input))
799 return 0;
800
801 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
802 {
803 if (unformat (line_input, "table %d", &table_id))
804 ;
805 else if (unformat (line_input, "del"))
806 is_del = 1;
807 else if (unformat (line_input, "add"))
808 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800809 else if (unformat (line_input, "scount %d", &scount))
810 ;
811 else if (unformat (line_input, "gcount %d", &gcount))
812 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000813 else if (unformat (line_input, "%U %U",
814 unformat_ip4_address,
815 &pfx.fp_src_addr.ip4,
816 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
817 {
818 pfx.fp_proto = FIB_PROTOCOL_IP4;
819 pfx.fp_len = 64;
820 }
821 else if (unformat (line_input, "%U %U",
822 unformat_ip6_address,
823 &pfx.fp_src_addr.ip6,
824 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
825 {
826 pfx.fp_proto = FIB_PROTOCOL_IP6;
827 pfx.fp_len = 256;
828 }
829 else if (unformat (line_input, "%U/%d",
830 unformat_ip4_address,
831 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
832 {
833 pfx.fp_proto = FIB_PROTOCOL_IP4;
834 }
835 else if (unformat (line_input, "%U/%d",
836 unformat_ip6_address,
837 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
838 {
839 pfx.fp_proto = FIB_PROTOCOL_IP6;
840 }
841 else if (unformat (line_input, "%U",
842 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
843 {
844 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
845 pfx.fp_proto = FIB_PROTOCOL_IP4;
846 pfx.fp_len = 32;
847 }
848 else if (unformat (line_input, "%U",
849 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
850 {
851 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
852 pfx.fp_proto = FIB_PROTOCOL_IP6;
853 pfx.fp_len = 128;
854 }
855 else if (unformat (line_input, "via %U",
856 unformat_vnet_sw_interface, vnm,
857 &rpath.frp_sw_if_index))
858 {
859 rpath.frp_weight = 1;
860 rpath.frp_proto = FIB_PROTOCOL_IP4;
861 }
862 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
863 ;
864 else if (unformat (line_input, "%U",
865 unformat_mfib_entry_flags, &eflags))
866 ;
867 else
868 {
869 error = unformat_parse_error (line_input);
870 goto done;
871 }
872 }
873
Neale Ranns32e1c012016-11-22 17:07:28 +0000874 if (~0 == table_id)
875 {
876 /*
877 * if no table_id is passed we will manipulate the default
878 */
879 fib_index = 0;
880 }
881 else
882 {
883 fib_index = mfib_table_find (pfx.fp_proto, table_id);
884
885 if (~0 == fib_index)
886 {
887 error = clib_error_return (0, "Nonexistent table id %d", table_id);
888 goto done;
889 }
890 }
891
Neale Ranns52456fc2017-02-15 00:38:27 -0800892 timet[0] = vlib_time_now (vm);
893
894 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000895 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800896 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000897 }
898 else
899 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800900 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000901 }
902
Neale Ranns52456fc2017-02-15 00:38:27 -0800903 for (ss = 0; ss < scount; ss++)
904 {
905 for (gg = 0; gg < gcount; gg++)
906 {
907 if (is_del && 0 == rpath.frp_weight)
908 {
909 /* no path provided => route delete */
910 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
911 }
912 else if (eflags)
913 {
914 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
915 eflags);
916 }
917 else
918 {
919 if (is_del)
920 mfib_table_entry_path_remove (fib_index,
921 &pfx, MFIB_SOURCE_CLI, &rpath);
922 else
923 mfib_table_entry_path_update (fib_index,
924 &pfx, MFIB_SOURCE_CLI, &rpath,
925 iflags);
926 }
927
928 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
929 {
930 pfx.fp_grp_addr.ip4.as_u32 =
931 clib_host_to_net_u32 (incr +
932 clib_net_to_host_u32 (pfx.
933 fp_grp_addr.ip4.
934 as_u32));
935 }
936 else
937 {
938 int bucket = (incr < 64 ? 0 : 1);
939 pfx.fp_grp_addr.ip6.as_u64[bucket] =
940 clib_host_to_net_u64 (incr +
941 clib_net_to_host_u64 (pfx.
942 fp_grp_addr.ip6.as_u64
943 [bucket]));
944
945 }
946 }
947 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
948 {
949 pfx.fp_src_addr.ip4.as_u32 =
950 clib_host_to_net_u32 (1 +
951 clib_net_to_host_u32 (pfx.fp_src_addr.
952 ip4.as_u32));
953 }
954 else
955 {
956 pfx.fp_src_addr.ip6.as_u64[1] =
957 clib_host_to_net_u64 (1 +
958 clib_net_to_host_u64 (pfx.fp_src_addr.
959 ip6.as_u64[1]));
960 }
961 }
962
963 timet[1] = vlib_time_now (vm);
964
965 if (scount > 1 || gcount > 1)
966 vlib_cli_output (vm, "%.6e routes/sec",
967 (scount * gcount) / (timet[1] - timet[0]));
968
Neale Ranns32e1c012016-11-22 17:07:28 +0000969done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500970 unformat_free (line_input);
971
Neale Ranns32e1c012016-11-22 17:07:28 +0000972 return error;
973}
974
975/*?
976 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
977 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
978 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
979 * can be IPv4 or IPv6, but all must be of the same form in a single
980 * command. To display the current set of routes, use the commands
981 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
982 * The full set of support flags for interfaces and route is shown via;
983 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
984 * respectively.
985 * @cliexpar
986 * Example of how to add a forwarding interface to a route (and create the
987 * route if it does not exist)
988 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
989 * Example of how to add an accepting interface to a route (and create the
990 * route if it does not exist)
991 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
992 * Example of changing the route's flags to send signals via the API
993 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
994
995 ?*/
996/* *INDENT-OFF* */
997VLIB_CLI_COMMAND (ip_mroute_command, static) =
998{
999 .path = "ip mroute",
1000 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1001 .function = vnet_ip_mroute_cmd,
1002 .is_mp_safe = 1,
1003};
1004/* *INDENT-ON* */
1005
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001006/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 * The next two routines address a longstanding script hemorrhoid.
1008 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1009 * or dependent route-adds will simply fail.
1010 */
1011static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001012ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001013 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001015 vnet_main_t *vnm = vnet_get_main ();
1016 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 int i;
1018 int resolved = 0;
1019 uword event_type;
1020 uword *event_data = 0;
1021
Dave Barachd7cb1b52016-12-09 09:52:16 -05001022 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023
1024 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001025 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001027 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
1029 for (i = 0; i < retry_count; i++)
1030 {
1031 /* The interface may be down, etc. */
1032 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001033
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001035 return e;
1036
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 vlib_process_wait_for_event_or_clock (vm, 1.0);
1038 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001039 switch (event_type)
1040 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001041 case 1: /* resolved... */
1042 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1043 resolved = 1;
1044 goto done;
1045
1046 case ~0: /* timeout */
1047 break;
1048
1049 default:
1050 clib_warning ("unknown event_type %d", event_type);
1051 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001052 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001054
1055done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056
1057 if (!resolved)
1058 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001059 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001060 return 0;
1061}
1062
1063static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001064ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1065 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001067 vnet_main_t *vnm = vnet_get_main ();
1068 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 int i;
1070 int resolved = 0;
1071 uword event_type;
1072 uword *event_data = 0;
1073
Dave Barachd7cb1b52016-12-09 09:52:16 -05001074 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075
1076 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001077 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001079 1 /* event */ , 0 /* data */ );
1080
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 for (i = 0; i < retry_count; i++)
1082 {
1083 /* The interface may be down, etc. */
1084 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001085
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001087 return e;
1088
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 vlib_process_wait_for_event_or_clock (vm, 1.0);
1090 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001091 switch (event_type)
1092 {
1093 case 1: /* resolved... */
1094 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1095 resolved = 1;
1096 goto done;
1097
1098 case ~0: /* timeout */
1099 break;
1100
1101 default:
1102 clib_warning ("unknown event_type %d", event_type);
1103 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001104 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001106
1107done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108
1109 vec_reset_length (event_data);
1110
1111 if (!resolved)
1112 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001113 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114 return 0;
1115}
1116
1117static clib_error_t *
1118probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001119 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001121 vnet_main_t *vnm = vnet_get_main ();
1122 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123 ip4_address_t a4;
1124 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001125 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 u32 sw_if_index = ~0;
1127 int retry_count = 3;
1128 int is_ip4 = 1;
1129 int address_set = 0;
1130
1131 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001132 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133 return 0;
1134
Dave Barachd7cb1b52016-12-09 09:52:16 -05001135 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001137 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1138 &sw_if_index))
1139 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001141 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142
1143 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001144 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001146 {
1147 address_set++;
1148 is_ip4 = 0;
1149 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001151 {
1152 error = clib_error_return (0, "unknown input '%U'",
1153 format_unformat_error, line_input);
1154 goto done;
1155 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156 }
1157
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001159 {
1160 error = clib_error_return (0, "Interface required, not set.");
1161 goto done;
1162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001164 {
1165 error = clib_error_return (0, "ip address required, not set.");
1166 goto done;
1167 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001168 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001169 {
1170 error = clib_error_return (0, "Multiple ip addresses not supported.");
1171 goto done;
1172 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001173
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 if (is_ip4)
1175 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001176 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1178
Billy McFalla9a20e72017-02-15 11:39:12 -05001179done:
1180 unformat_free (line_input);
1181
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 return error;
1183}
1184
Billy McFall0683c9c2016-10-13 08:27:31 -04001185/*?
1186 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1187 * attempts IPv6 neighbor discovery depending on the supplied IP address
1188 * format.
1189 *
1190 * @note This command will not immediately affect the indicated FIB; it
1191 * is not suitable for use in establishing a FIB entry prior to adding
1192 * recursive FIB entries. As in: don't use it in a script to probe a
1193 * gateway prior to adding a default route. It won't work. Instead,
1194 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1195 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1196 *
1197 * @cliexpar
1198 * Example of probe for an IPv4 address:
1199 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1200?*/
1201/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1203 .path = "ip probe-neighbor",
1204 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001205 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001206 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207};
Billy McFall0683c9c2016-10-13 08:27:31 -04001208/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001209
1210/*
1211 * fd.io coding-style-patch-verification: ON
1212 *
1213 * Local Variables:
1214 * eval: (c-set-style "gnu")
1215 * End:
1216 */