blob: 734a4cd7cfb207fd232653cddf5b31e8296c7130 [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>
46#include <vnet/dpo/drop_dpo.h>
47#include <vnet/dpo/classify_dpo.h>
48#include <vnet/dpo/punt_dpo.h>
49#include <vnet/dpo/receive_dpo.h>
Neale Ranns948e00f2016-10-20 13:39:34 +010050#include <vnet/dpo/ip_null_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Billy McFall0683c9c2016-10-13 08:27:31 -040052/**
53 * @file
54 * @brief IPv4 and IPv6 adjacency and lookup table managment.
55 *
56 */
57
Ed Warnickecb9cada2015-12-08 15:45:58 -070058clib_error_t *
59ip_interface_address_add_del (ip_lookup_main_t * lm,
60 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050061 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070064{
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 vnet_main_t *vnm = vnet_get_main ();
66 ip_interface_address_t *a, *prev, *next;
67 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Dave Barachd7cb1b52016-12-09 09:52:16 -050069 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
70 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
72
73 /* Verify given length. */
74 if ((a && (address_length != a->address_length)) || (address_length == 0))
75 {
76 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050077 return clib_error_create
78 ("%U wrong length (expected %d) for interface %U",
79 lm->format_address_and_length, addr_fib,
80 address_length, a ? a->address_length : -1,
81 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 }
83
84 if (is_del)
85 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050086 if (!a)
87 {
88 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
89 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
90 return clib_error_create ("%U not found for interface %U",
91 lm->format_address_and_length,
92 addr_fib, address_length,
93 format_vnet_sw_interface_name, vnm, si);
94 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96 if (a->prev_this_sw_interface != ~0)
97 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050098 prev =
99 pool_elt_at_index (lm->if_address_pool,
100 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 prev->next_this_sw_interface = a->next_this_sw_interface;
102 }
103 if (a->next_this_sw_interface != ~0)
104 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105 next =
106 pool_elt_at_index (lm->if_address_pool,
107 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 next->prev_this_sw_interface = a->prev_this_sw_interface;
109
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 if (a->prev_this_sw_interface == ~0)
111 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
112 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 }
114
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 if ((a->next_this_sw_interface == ~0)
116 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
118
119 mhash_unset (&lm->address_to_if_address_index, addr_fib,
120 /* old_value */ 0);
121 pool_put (lm->if_address_pool, a);
122
123 if (result_if_address_index)
124 *result_if_address_index = ~0;
125 }
126
Dave Barachd7cb1b52016-12-09 09:52:16 -0500127 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129 u32 pi; /* previous index */
130 u32 ai;
131 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
133 pool_get (lm->if_address_pool, a);
134 memset (a, ~0, sizeof (a[0]));
135 ai = a - lm->if_address_pool;
136
137 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
138 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500139 while (pi != (u32) ~ 0)
140 {
141 prev = pool_elt_at_index (lm->if_address_pool, pi);
142 pi = prev->next_this_sw_interface;
143 }
144 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
146 a->address_key = mhash_set (&lm->address_to_if_address_index,
147 addr_fib, ai, /* old_value */ 0);
148 a->address_length = address_length;
149 a->sw_if_index = sw_if_index;
150 a->flags = 0;
151 a->prev_this_sw_interface = pi;
152 a->next_this_sw_interface = ~0;
153 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500154 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Dave Barachd7cb1b52016-12-09 09:52:16 -0500156 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
157 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 if (result_if_address_index)
159 *result_if_address_index = ai;
160 }
161 else
162 {
163 if (result_if_address_index)
164 *result_if_address_index = a - lm->if_address_pool;
165 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500166
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 return /* no error */ 0;
169}
170
Dave Barachd7cb1b52016-12-09 09:52:16 -0500171void
172ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173{
Dave Barachdbf19ca2016-03-15 10:21:54 +0100174 /* ensure that adjacency is cacheline aligned and sized */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline0) == 0,
176 "Cache line marker must be 1st element in struct");
177 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline1) ==
178 CLIB_CACHE_LINE_BYTES,
179 "Data in cache line 0 is bigger than cache line size");
Dave Barachdbf19ca2016-03-15 10:21:54 +0100180
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400181 /* Preallocate three "special" adjacencies */
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100182 lm->adjacency_heap = adj_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 lm->fib_result_n_bytes = sizeof (uword);
186
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 lm->is_ip6 = is_ip6;
188 if (is_ip6)
189 {
190 lm->format_address_and_length = format_ip6_address_and_length;
191 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
192 sizeof (ip6_address_fib_t));
193 }
194 else
195 {
196 lm->format_address_and_length = format_ip4_address_and_length;
197 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
198 sizeof (ip4_address_fib_t));
199 }
200
201 {
202 int i;
203
204 /* Setup all IP protocols to be punted and builtin-unknown. */
205 for (i = 0; i < 256; i++)
206 {
207 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
208 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
209 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
211 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500212 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
213 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
214 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
215 IP_BUILTIN_PROTOCOL_UDP;
216 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
217 IP_PROTOCOL_ICMP] =
218 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 }
220}
221
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222u8 *
223format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100225 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500226
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
228 foreach_flow_hash_bit;
229#undef _
230
231 return s;
232}
233
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234u8 *
235format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100237 ip_lookup_next_t n = va_arg (*args, ip_lookup_next_t);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
240 switch (n)
241 {
242 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100243 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 return s;
245
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 case IP_LOOKUP_NEXT_DROP:
247 t = "drop";
248 break;
249 case IP_LOOKUP_NEXT_PUNT:
250 t = "punt";
251 break;
252 case IP_LOOKUP_NEXT_ARP:
253 t = "arp";
254 break;
255 case IP_LOOKUP_NEXT_MIDCHAIN:
256 t = "midchain";
257 break;
258 case IP_LOOKUP_NEXT_GLEAN:
259 t = "glean";
260 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 case IP_LOOKUP_NEXT_REWRITE:
262 break;
263 }
264
265 if (t)
266 vec_add (s, t, strlen (t));
267
268 return s;
269}
270
Dave Barachd7cb1b52016-12-09 09:52:16 -0500271u8 *
272format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500274 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
280 switch (adj->lookup_next_index)
281 {
282 case IP_LOOKUP_NEXT_REWRITE:
283 s = format (s, "%U",
284 format_vnet_rewrite_header,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285 vnm->vlib_main, &adj->rewrite_header, packet_data,
286 n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 break;
288
289 default:
290 break;
291 }
292
293 return s;
294}
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296static uword
297unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100299 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
300 fib_protocol_t fp = va_arg (*args, int);
301 dpo_proto_t proto;
302
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
305 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100311 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100313 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100315 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318 {
319 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100323 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325 }
326
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 dpo_set (dpo, DPO_CLASSIFY, proto,
328 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100329 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 else
331 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100332
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 return 1;
334}
335
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500337 .as_u64 = {
338 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339};
340
341u32
Dave Barachd7cb1b52016-12-09 09:52:16 -0500342fib_table_id_find_fib_index (fib_protocol_t proto, u32 table_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 ip4_main_t *im4 = &ip4_main;
345 ip6_main_t *im6 = &ip6_main;
346 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 switch (proto)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100350 case FIB_PROTOCOL_IP4:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 p = hash_get (im4->fib_index_by_table_id, table_id);
352 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100353 case FIB_PROTOCOL_IP6:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500354 p = hash_get (im6->fib_index_by_table_id, table_id);
355 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356 default:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 p = NULL;
358 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360 if (NULL != p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362 return (p[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 return (~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365}
366
367clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100372 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100373 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100374 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000375 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 clib_error_t *error = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 is_del = 0;
385 table_id = 0;
386 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500387 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000388 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389
390 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 return 0;
393
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
395 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 if (unformat (line_input, "table %d", &table_id))
399 ;
400 else if (unformat (line_input, "del"))
401 is_del = 1;
402 else if (unformat (line_input, "add"))
403 is_del = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 {
406 if (vec_len (rpaths) == 0)
407 {
408 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100409 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 }
411 rpaths[vec_len (rpaths) - 1].frp_flags |=
412 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
413 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100414 else if (unformat (line_input, "resolve-via-attached"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 {
416 if (vec_len (rpaths) == 0)
417 {
418 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100419 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500420 }
421 rpaths[vec_len (rpaths) - 1].frp_flags |=
422 FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
423 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100424 else if (unformat (line_input, "out-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500425 unformat_mpls_unicast_label, &out_label))
426 {
427 if (vec_len (rpaths) == 0)
428 {
429 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100430 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 }
432 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label);
433 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000434 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435 unformat_mpls_unicast_label, &rpath.frp_local_label))
436 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000437 rpath.frp_weight = 1;
438 rpath.frp_proto = FIB_PROTOCOL_MPLS;
439 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500440 vec_add1 (rpaths, rpath);
441 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 else if (unformat (line_input, "count %f", &count))
443 ;
444
445 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
447 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100448 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500449 vec_add1 (prefixs, pfx);
450 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500452 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
453 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100454 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455 vec_add1 (prefixs, pfx);
456 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100457 else if (unformat (line_input, "via %U %U weight %u",
458 unformat_ip4_address,
459 &rpath.frp_addr.ip4,
460 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461 &rpath.frp_sw_if_index, &rpath.frp_weight))
462 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500464 vec_add1 (rpaths, rpath);
465 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466
467 else if (unformat (line_input, "via %U %U weight %u",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100468 unformat_ip6_address,
469 &rpath.frp_addr.ip6,
470 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500471 &rpath.frp_sw_if_index, &rpath.frp_weight))
472 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100473 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 vec_add1 (rpaths, rpath);
475 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476
477 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100480 unformat_vnet_sw_interface, vnm,
481 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500482 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483 rpath.frp_weight = 1;
484 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 vec_add1 (rpaths, rpath);
486 }
487
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100489 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100491 unformat_vnet_sw_interface, vnm,
492 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 rpath.frp_weight = 1;
495 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 vec_add1 (rpaths, rpath);
497 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 else if (unformat (line_input, "via %U next-hop-table %d",
499 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
501 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100502 rpath.frp_weight = 1;
503 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100504 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500505 vec_add1 (rpaths, rpath);
506 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100507 else if (unformat (line_input, "via %U next-hop-table %d",
508 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500509 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
510 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511 rpath.frp_weight = 1;
512 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 vec_add1 (rpaths, rpath);
515 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500517 unformat_ip4_address, &rpath.frp_addr.ip4))
518 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 /*
520 * the recursive next-hops are by default in the same table
521 * as the prefix
522 */
523 rpath.frp_fib_index = table_id;
524 rpath.frp_weight = 1;
525 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100526 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500527 vec_add1 (rpaths, rpath);
528 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500530 unformat_ip6_address, &rpath.frp_addr.ip6))
531 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100532 rpath.frp_fib_index = table_id;
533 rpath.frp_weight = 1;
534 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100535 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500536 vec_add1 (rpaths, rpath);
537 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100538 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500539 "lookup in table %d", &rpath.frp_fib_index))
540 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100541 rpath.frp_proto = pfx.fp_proto;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100542 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500543 vec_add1 (rpaths, rpath);
544 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 else if (vec_len (prefixs) > 0 &&
546 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000547 unformat_vnet_sw_interface, vnm,
548 &rpath.frp_sw_if_index))
549 {
550 rpath.frp_weight = 1;
551 rpath.frp_proto = prefixs[0].fp_proto;
552 vec_add1 (rpaths, rpath);
553 }
554 else if (vec_len (prefixs) > 0 &&
555 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100556 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500557 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100558 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500559 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500561 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 error = unformat_parse_error (line_input);
563 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 unformat_free (line_input);
568
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100569 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500570 {
571 error =
572 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 goto done;
574 }
575
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100576 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100578 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 goto done;
580 }
581
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100582 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500583 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100584 /*
585 * if no table_id is passed we will manipulate the default
586 */
587 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500588 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100589 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500590 {
591 fib_index = fib_table_id_find_fib_index (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100593 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594 {
595 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100596 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500597 }
598 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100600 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100602 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500603 {
604 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
605 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100606 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500607 {
608 fib_table_entry_special_dpo_add (fib_index,
609 &prefixs[i],
610 FIB_SOURCE_CLI,
611 FIB_ENTRY_FLAG_EXCLUSIVE,
612 &dpos[0]);
613 dpo_reset (&dpos[0]);
614 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100615 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500616 {
617 error =
618 clib_error_return (0,
619 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100620 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500621 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500623 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 u32 k, j, n, incr;
625 ip46_address_t dst = prefixs[i].fp_addr;
626 f64 t[2];
627 n = count;
628 t[0] = vlib_time_now (vm);
629 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
630 prefixs[i].fp_len);
631
632 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500633 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100634 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500635 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100636 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100637 /*
638 * the CLI parsing stored table Ids, swap to FIB indicies
639 */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500640 fi = fib_table_id_find_fib_index (prefixs[i].fp_proto,
641 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100642
643 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500644 {
645 error =
646 clib_error_return (0, "Via table %d does not exist",
647 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100648 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500649 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100650 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100651
652 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500653 .fp_len = prefixs[i].fp_len,
654 .fp_proto = prefixs[i].fp_proto,
655 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100656 };
657
Dave Barachd7cb1b52016-12-09 09:52:16 -0500658 if (is_del)
659 fib_table_entry_path_remove2 (fib_index,
660 &rpfx,
661 FIB_SOURCE_CLI, &rpaths[j]);
662 else
663 fib_table_entry_path_add2 (fib_index,
664 &rpfx,
665 FIB_SOURCE_CLI,
666 FIB_ENTRY_FLAG_NONE,
667 &rpaths[j]);
668 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669
670 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500671 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100672 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500673 clib_host_to_net_u32 (incr +
674 clib_net_to_host_u32 (dst.
675 ip4.as_u32));
676 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100677 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500678 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100679 int bucket = (incr < 64 ? 0 : 1);
680 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500681 clib_host_to_net_u64 (incr +
682 clib_net_to_host_u64 (dst.ip6.as_u64
683 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100684
Dave Barachd7cb1b52016-12-09 09:52:16 -0500685 }
686 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100687 t[1] = vlib_time_now (vm);
688 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500689 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
690 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692 {
693 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100694 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500695 }
696 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100697
698
Dave Barachd7cb1b52016-12-09 09:52:16 -0500699done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100700 vec_free (dpos);
701 vec_free (prefixs);
702 vec_free (rpaths);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 return error;
704}
705
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
708 .path = "ip",
709 .short_help = "Internet protocol (IP) commands",
710};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500711/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Dave Barachd7cb1b52016-12-09 09:52:16 -0500713/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400714VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
715 .path = "ip6",
716 .short_help = "Internet protocol version 6 (IPv6) commands",
717};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500718/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400719
Dave Barachd7cb1b52016-12-09 09:52:16 -0500720/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
722 .path = "show ip",
723 .short_help = "Internet protocol (IP) show commands",
724};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500725/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726
Dave Barachd7cb1b52016-12-09 09:52:16 -0500727/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
729 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400730 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500732/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700734/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400735 * This command is used to add or delete IPv4 or IPv6 routes. All
736 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
737 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
738 * can be IPv4 or IPv6, but all must be of the same form in a single
739 * command. To display the current set of routes, use the commands
740 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
741 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700742 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400743 * Example of how to add a straight forward static route:
744 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
745 * Example of how to delete a straight forward static route:
746 * @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 -0700747 * Mainly for route add/del performance testing, one can add or delete
748 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400749 * @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 -0700750 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400751 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
752 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
753 * For unequal-cost multipath, specify the desired weights. This
754 * combination of weights results in 3/4 of the traffic following the
755 * second path, 1/4 following the first path:
756 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
757 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
758 * To add a route to a particular FIB table (VRF), use:
759 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700760 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400761/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762VLIB_CLI_COMMAND (ip_route_command, static) = {
763 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400764 .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 -0700765 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400766 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767};
Billy McFall0683c9c2016-10-13 08:27:31 -0400768/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100770/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 * The next two routines address a longstanding script hemorrhoid.
772 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
773 * or dependent route-adds will simply fail.
774 */
775static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500776ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100777 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500779 vnet_main_t *vnm = vnet_get_main ();
780 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 int i;
782 int resolved = 0;
783 uword event_type;
784 uword *event_data = 0;
785
Dave Barachd7cb1b52016-12-09 09:52:16 -0500786 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
788 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100789 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500791 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
793 for (i = 0; i < retry_count; i++)
794 {
795 /* The interface may be down, etc. */
796 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100797
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100799 return e;
800
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 vlib_process_wait_for_event_or_clock (vm, 1.0);
802 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100803 switch (event_type)
804 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500805 case 1: /* resolved... */
806 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
807 resolved = 1;
808 goto done;
809
810 case ~0: /* timeout */
811 break;
812
813 default:
814 clib_warning ("unknown event_type %d", event_type);
815 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400816 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500818
819done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820
821 if (!resolved)
822 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500823 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 return 0;
825}
826
827static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500828ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
829 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500831 vnet_main_t *vnm = vnet_get_main ();
832 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 int i;
834 int resolved = 0;
835 uword event_type;
836 uword *event_data = 0;
837
Dave Barachd7cb1b52016-12-09 09:52:16 -0500838 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839
840 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500841 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500843 1 /* event */ , 0 /* data */ );
844
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 for (i = 0; i < retry_count; i++)
846 {
847 /* The interface may be down, etc. */
848 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500849
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500851 return e;
852
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853 vlib_process_wait_for_event_or_clock (vm, 1.0);
854 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500855 switch (event_type)
856 {
857 case 1: /* resolved... */
858 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
859 resolved = 1;
860 goto done;
861
862 case ~0: /* timeout */
863 break;
864
865 default:
866 clib_warning ("unknown event_type %d", event_type);
867 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400868 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500870
871done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872
873 vec_reset_length (event_data);
874
875 if (!resolved)
876 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500877 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878 return 0;
879}
880
881static clib_error_t *
882probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500883 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500885 vnet_main_t *vnm = vnet_get_main ();
886 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887 ip4_address_t a4;
888 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500889 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890 u32 sw_if_index = ~0;
891 int retry_count = 3;
892 int is_ip4 = 1;
893 int address_set = 0;
894
895 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500896 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 return 0;
898
Dave Barachd7cb1b52016-12-09 09:52:16 -0500899 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500901 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
902 &sw_if_index))
903 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500905 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
907 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500908 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700909 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500910 {
911 address_set++;
912 is_ip4 = 0;
913 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500915 return clib_error_return (0, "unknown input '%U'",
916 format_unformat_error, line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917 }
918
919 unformat_free (line_input);
920
921 if (sw_if_index == ~0)
922 return clib_error_return (0, "Interface required, not set.");
923 if (address_set == 0)
924 return clib_error_return (0, "ip address required, not set.");
925 if (address_set > 1)
926 return clib_error_return (0, "Multiple ip addresses not supported.");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500927
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 if (is_ip4)
929 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500930 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
932
933 return error;
934}
935
Billy McFall0683c9c2016-10-13 08:27:31 -0400936/*?
937 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
938 * attempts IPv6 neighbor discovery depending on the supplied IP address
939 * format.
940 *
941 * @note This command will not immediately affect the indicated FIB; it
942 * is not suitable for use in establishing a FIB entry prior to adding
943 * recursive FIB entries. As in: don't use it in a script to probe a
944 * gateway prior to adding a default route. It won't work. Instead,
945 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
946 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
947 *
948 * @cliexpar
949 * Example of probe for an IPv4 address:
950 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
951?*/
952/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
954 .path = "ip probe-neighbor",
955 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -0400956 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400957 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958};
Billy McFall0683c9c2016-10-13 08:27:31 -0400959/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500960
961/*
962 * fd.io coding-style-patch-verification: ON
963 *
964 * Local Variables:
965 * eval: (c-set-style "gnu")
966 * End:
967 */