blob: 61350b4f0d83657f374d81185ba539f8e69e668d [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#include <vnet/ip/ip.h>
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010041#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042#include <vnet/fib/fib_table.h>
43#include <vnet/fib/ip4_fib.h>
44#include <vnet/fib/ip6_fib.h>
45#include <vnet/mpls/mpls.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000046#include <vnet/mfib/mfib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047#include <vnet/dpo/drop_dpo.h>
48#include <vnet/dpo/classify_dpo.h>
49#include <vnet/dpo/punt_dpo.h>
50#include <vnet/dpo/receive_dpo.h>
Neale Ranns948e00f2016-10-20 13:39:34 +010051#include <vnet/dpo/ip_null_dpo.h>
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -070052#include <vnet/dpo/l3_proxy_dpo.h>
Neale Ranns3f844d02017-02-18 00:03:54 -080053#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Billy McFall0683c9c2016-10-13 08:27:31 -040055/**
56 * @file
57 * @brief IPv4 and IPv6 adjacency and lookup table managment.
58 *
59 */
60
Ed Warnickecb9cada2015-12-08 15:45:58 -070061clib_error_t *
62ip_interface_address_add_del (ip_lookup_main_t * lm,
63 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050064 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050066 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067{
Dave Barachd7cb1b52016-12-09 09:52:16 -050068 vnet_main_t *vnm = vnet_get_main ();
69 ip_interface_address_t *a, *prev, *next;
70 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Dave Barachd7cb1b52016-12-09 09:52:16 -050072 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
73 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
75
76 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080077 if ((a && (address_length != a->address_length)) ||
78 (address_length == 0) ||
79 (lm->is_ip6 && address_length > 128) ||
80 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 {
82 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050083 return clib_error_create
84 ("%U wrong length (expected %d) for interface %U",
85 lm->format_address_and_length, addr_fib,
86 address_length, a ? a->address_length : -1,
87 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070088 }
89
90 if (is_del)
91 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050092 if (!a)
93 {
94 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
95 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
96 return clib_error_create ("%U not found for interface %U",
97 lm->format_address_and_length,
98 addr_fib, address_length,
99 format_vnet_sw_interface_name, vnm, si);
100 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 if (a->prev_this_sw_interface != ~0)
103 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500104 prev =
105 pool_elt_at_index (lm->if_address_pool,
106 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 prev->next_this_sw_interface = a->next_this_sw_interface;
108 }
109 if (a->next_this_sw_interface != ~0)
110 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 next =
112 pool_elt_at_index (lm->if_address_pool,
113 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 next->prev_this_sw_interface = a->prev_this_sw_interface;
115
Dave Barachd7cb1b52016-12-09 09:52:16 -0500116 if (a->prev_this_sw_interface == ~0)
117 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
118 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 }
120
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121 if ((a->next_this_sw_interface == ~0)
122 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
124
125 mhash_unset (&lm->address_to_if_address_index, addr_fib,
126 /* old_value */ 0);
127 pool_put (lm->if_address_pool, a);
128
129 if (result_if_address_index)
130 *result_if_address_index = ~0;
131 }
132
Dave Barachd7cb1b52016-12-09 09:52:16 -0500133 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500135 u32 pi; /* previous index */
136 u32 ai;
137 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 pool_get (lm->if_address_pool, a);
140 memset (a, ~0, sizeof (a[0]));
141 ai = a - lm->if_address_pool;
142
143 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
144 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500145 while (pi != (u32) ~ 0)
146 {
147 prev = pool_elt_at_index (lm->if_address_pool, pi);
148 pi = prev->next_this_sw_interface;
149 }
150 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 a->address_key = mhash_set (&lm->address_to_if_address_index,
153 addr_fib, ai, /* old_value */ 0);
154 a->address_length = address_length;
155 a->sw_if_index = sw_if_index;
156 a->flags = 0;
157 a->prev_this_sw_interface = pi;
158 a->next_this_sw_interface = ~0;
159 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500160 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Dave Barachd7cb1b52016-12-09 09:52:16 -0500162 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
163 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 if (result_if_address_index)
165 *result_if_address_index = ai;
166 }
167 else
168 {
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500169 if (sw_if_index != a->sw_if_index)
170 {
171 if (result_if_address_index)
172 *result_if_address_index = ~0;
173 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
174 return clib_error_create
175 ("Prefix %U already found on interface %U",
176 lm->format_address_and_length, addr_fib, address_length,
177 format_vnet_sw_if_index_name, vnm, a->sw_if_index);
178 }
179
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180 if (result_if_address_index)
181 *result_if_address_index = a - lm->if_address_pool;
182 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 return /* no error */ 0;
185}
186
Neale Rannsd96bad82017-03-08 01:12:54 -0800187static clib_error_t *
188ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
189{
190 vec_validate_init_empty (ip4_main.
191 lookup_main.if_address_pool_index_by_sw_if_index,
192 sw_if_index, ~0);
193 vec_validate_init_empty (ip6_main.
194 lookup_main.if_address_pool_index_by_sw_if_index,
195 sw_if_index, ~0);
196
197 return (NULL);
198}
199
200VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
201
Dave Barachd7cb1b52016-12-09 09:52:16 -0500202void
203ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500205 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 lm->fib_result_n_bytes = sizeof (uword);
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 lm->is_ip6 = is_ip6;
209 if (is_ip6)
210 {
211 lm->format_address_and_length = format_ip6_address_and_length;
212 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
213 sizeof (ip6_address_fib_t));
214 }
215 else
216 {
217 lm->format_address_and_length = format_ip4_address_and_length;
218 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
219 sizeof (ip4_address_fib_t));
220 }
221
222 {
223 int i;
224
225 /* Setup all IP protocols to be punted and builtin-unknown. */
226 for (i = 0; i < 256; i++)
227 {
228 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
229 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
230 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
232 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500233 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
234 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
235 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
236 IP_BUILTIN_PROTOCOL_UDP;
237 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
238 IP_PROTOCOL_ICMP] =
239 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 }
241}
242
Dave Barachd7cb1b52016-12-09 09:52:16 -0500243u8 *
244format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100246 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500247
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
249 foreach_flow_hash_bit;
250#undef _
251
252 return s;
253}
254
Dave Barachd7cb1b52016-12-09 09:52:16 -0500255u8 *
256format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257{
Neale Rannsfa5d1982017-02-20 14:19:51 -0800258 /* int promotion of ip_lookup_next_t */
259 ip_lookup_next_t n = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500260 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
262 switch (n)
263 {
264 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100265 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 return s;
267
Dave Barachd7cb1b52016-12-09 09:52:16 -0500268 case IP_LOOKUP_NEXT_DROP:
269 t = "drop";
270 break;
271 case IP_LOOKUP_NEXT_PUNT:
272 t = "punt";
273 break;
274 case IP_LOOKUP_NEXT_ARP:
275 t = "arp";
276 break;
277 case IP_LOOKUP_NEXT_MIDCHAIN:
278 t = "midchain";
279 break;
280 case IP_LOOKUP_NEXT_GLEAN:
281 t = "glean";
282 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000283 case IP_LOOKUP_NEXT_MCAST:
284 t = "mcast";
285 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 case IP_LOOKUP_NEXT_REWRITE:
287 break;
288 }
289
290 if (t)
291 vec_add (s, t, strlen (t));
292
293 return s;
294}
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296u8 *
297format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500300 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 switch (adj->lookup_next_index)
305 {
306 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400307 case IP_LOOKUP_NEXT_MCAST:
308 s =
309 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310 break;
311
312 default:
313 break;
314 }
315
316 return s;
317}
318
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319static uword
320unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
323 fib_protocol_t fp = va_arg (*args, int);
324 dpo_proto_t proto;
325
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
328 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500329 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500331 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100334 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100336 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500337 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100338 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 {
342 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500345 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100346 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348 }
349
Dave Barachd7cb1b52016-12-09 09:52:16 -0500350 dpo_set (dpo, DPO_CLASSIFY, proto,
351 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100352 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 else
354 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100355
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 return 1;
357}
358
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100359const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360 .as_u64 = {
361 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100362};
363
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100365vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500366 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100369 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100370 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100371 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000372 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500373 clib_error_t *error = NULL;
Neale Ranns57b58602017-07-15 07:37:25 -0700374 u32 weight, preference;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100375 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
Dave Barachd7cb1b52016-12-09 09:52:16 -0500381 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 is_del = 0;
383 table_id = 0;
384 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000386 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
388 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500389 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 return 0;
391
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
393 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500394 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 if (unformat (line_input, "table %d", &table_id))
397 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100398 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500399 {
400 if (vec_len (rpaths) == 0)
401 {
402 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100403 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500404 }
405 rpaths[vec_len (rpaths) - 1].frp_flags |=
406 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
407 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100408 else if (unformat (line_input, "resolve-via-attached"))
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_ATTACHED;
417 }
Neale Rannsf73d0e22017-08-08 13:07:16 -0700418 else if (unformat (line_input, "out-labels"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419 {
420 if (vec_len (rpaths) == 0)
421 {
422 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500424 }
Neale Rannsf73d0e22017-08-08 13:07:16 -0700425 else
426 {
427 while (unformat (line_input, "%U",
428 unformat_mpls_unicast_label, &out_label))
429 {
430 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack,
431 out_label);
432 }
433 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500434 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000435 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 unformat_mpls_unicast_label, &rpath.frp_local_label))
437 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000438 rpath.frp_weight = 1;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800439 rpath.frp_eos = MPLS_NON_EOS;
Neale Rannsda78f952017-05-24 09:15:43 -0700440 rpath.frp_proto = DPO_PROTO_MPLS;
Neale Rannsad422ed2016-11-02 14:20:04 +0000441 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500442 vec_add1 (rpaths, rpath);
443 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 else if (unformat (line_input, "count %f", &count))
445 ;
446
447 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
449 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100450 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500451 vec_add1 (prefixs, pfx);
452 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
455 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 vec_add1 (prefixs, pfx);
458 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100462 unformat_vnet_sw_interface, vnm,
463 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500464 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100465 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700466 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500467 vec_add1 (rpaths, rpath);
468 }
469
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100471 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100473 unformat_vnet_sw_interface, vnm,
474 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500475 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700477 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478 vec_add1 (rpaths, rpath);
479 }
Neale Ranns57b58602017-07-15 07:37:25 -0700480 else if (unformat (line_input, "weight %u", &weight))
481 {
482 ASSERT (vec_len (rpaths));
483 rpaths[vec_len (rpaths) - 1].frp_weight = weight;
484 }
485 else if (unformat (line_input, "preference %u", &preference))
486 {
487 ASSERT (vec_len (rpaths));
488 rpaths[vec_len (rpaths) - 1].frp_preference = preference;
489 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100490 else if (unformat (line_input, "via %U next-hop-table %d",
491 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
493 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 rpath.frp_weight = 1;
495 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700496 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497 vec_add1 (rpaths, rpath);
498 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100499 else if (unformat (line_input, "via %U next-hop-table %d",
500 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500501 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
502 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100503 rpath.frp_weight = 1;
504 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700505 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500506 vec_add1 (rpaths, rpath);
507 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500509 unformat_ip4_address, &rpath.frp_addr.ip4))
510 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511 /*
512 * the recursive next-hops are by default in the same table
513 * as the prefix
514 */
515 rpath.frp_fib_index = table_id;
516 rpath.frp_weight = 1;
517 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700518 rpath.frp_proto = DPO_PROTO_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500519 vec_add1 (rpaths, rpath);
520 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500522 unformat_ip6_address, &rpath.frp_addr.ip6))
523 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524 rpath.frp_fib_index = table_id;
525 rpath.frp_weight = 1;
526 rpath.frp_sw_if_index = ~0;
Neale Rannsda78f952017-05-24 09:15:43 -0700527 rpath.frp_proto = DPO_PROTO_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500528 vec_add1 (rpaths, rpath);
529 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100530 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500531 "lookup in table %d", &rpath.frp_fib_index))
532 {
Neale Rannsda78f952017-05-24 09:15:43 -0700533 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100534 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500535 vec_add1 (rpaths, rpath);
536 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100537 else if (vec_len (prefixs) > 0 &&
538 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000539 unformat_vnet_sw_interface, vnm,
540 &rpath.frp_sw_if_index))
541 {
542 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700543 rpath.frp_proto = fib_proto_to_dpo (prefixs[0].fp_proto);
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000544 vec_add1 (rpaths, rpath);
545 }
546 else if (vec_len (prefixs) > 0 &&
547 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100548 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100550 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500551 }
pragash352829f2017-08-17 22:53:24 -0400552 else if (unformat (line_input, "del"))
553 is_del = 1;
554 else if (unformat (line_input, "add"))
555 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500557 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 error = unformat_parse_error (line_input);
559 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500560 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500562
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100563 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564 {
565 error =
566 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 goto done;
568 }
569
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100570 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100572 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 goto done;
574 }
575
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100576 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500577 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100578 /*
579 * if no table_id is passed we will manipulate the default
580 */
581 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100583 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500584 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700585 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100587 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500588 {
589 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100590 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500591 }
592 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100594 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500595 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100596 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500597 {
598 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
599 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100600 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601 {
602 fib_table_entry_special_dpo_add (fib_index,
603 &prefixs[i],
604 FIB_SOURCE_CLI,
605 FIB_ENTRY_FLAG_EXCLUSIVE,
606 &dpos[0]);
607 dpo_reset (&dpos[0]);
608 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500610 {
611 error =
612 clib_error_return (0,
613 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100614 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500615 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100616 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500617 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100618 u32 k, j, n, incr;
619 ip46_address_t dst = prefixs[i].fp_addr;
620 f64 t[2];
621 n = count;
622 t[0] = vlib_time_now (vm);
623 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
624 prefixs[i].fp_len);
625
626 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500627 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100628 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500629 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100630 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100631 /*
632 * the CLI parsing stored table Ids, swap to FIB indicies
633 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700634 fi = fib_table_find (prefixs[i].fp_proto,
635 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100636
637 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500638 {
639 error =
640 clib_error_return (0, "Via table %d does not exist",
641 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100642 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500643 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100644 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100645
646 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500647 .fp_len = prefixs[i].fp_len,
648 .fp_proto = prefixs[i].fp_proto,
649 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100650 };
651
Dave Barachd7cb1b52016-12-09 09:52:16 -0500652 if (is_del)
653 fib_table_entry_path_remove2 (fib_index,
654 &rpfx,
655 FIB_SOURCE_CLI, &rpaths[j]);
656 else
657 fib_table_entry_path_add2 (fib_index,
658 &rpfx,
659 FIB_SOURCE_CLI,
660 FIB_ENTRY_FLAG_NONE,
661 &rpaths[j]);
662 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100663
664 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500665 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100666 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500667 clib_host_to_net_u32 (incr +
668 clib_net_to_host_u32 (dst.
669 ip4.as_u32));
670 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100671 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500672 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100673 int bucket = (incr < 64 ? 0 : 1);
674 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500675 clib_host_to_net_u64 (incr +
676 clib_net_to_host_u64 (dst.ip6.as_u64
677 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100678
Dave Barachd7cb1b52016-12-09 09:52:16 -0500679 }
680 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100681 t[1] = vlib_time_now (vm);
682 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500683 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
684 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100685 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500686 {
687 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100688 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500689 }
690 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691
692
Dave Barachd7cb1b52016-12-09 09:52:16 -0500693done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100694 vec_free (dpos);
695 vec_free (prefixs);
696 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500697 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 return error;
699}
700
Neale Ranns15002542017-09-10 04:39:11 -0700701clib_error_t *
702vnet_ip_table_cmd (vlib_main_t * vm,
703 unformat_input_t * main_input,
704 vlib_cli_command_t * cmd, fib_protocol_t fproto)
705{
706 unformat_input_t _line_input, *line_input = &_line_input;
707 clib_error_t *error = NULL;
708 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700709 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700710
711 is_add = 1;
712 table_id = ~0;
713
714 /* Get a line of input. */
715 if (!unformat_user (main_input, unformat_line_input, line_input))
716 return 0;
717
718 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
719 {
720 if (unformat (line_input, "%d", &table_id))
721 ;
722 else if (unformat (line_input, "del"))
723 is_add = 0;
724 else if (unformat (line_input, "add"))
725 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700726 else if (unformat (line_input, "name %s", &name))
727 ;
Neale Ranns15002542017-09-10 04:39:11 -0700728 else
729 {
730 error = unformat_parse_error (line_input);
731 goto done;
732 }
733 }
734
735 if (~0 == table_id)
736 {
737 error = clib_error_return (0, "No table id");
738 goto done;
739 }
740 else if (0 == table_id)
741 {
742 error = clib_error_return (0, "Can't change the default table");
743 goto done;
744 }
745 else
746 {
747 if (is_add)
748 {
Neale Ranns2297af02017-09-12 09:45:04 -0700749 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700750 }
751 else
752 {
753 ip_table_delete (fproto, table_id, 0);
754 }
755 }
756
757done:
758 unformat_free (line_input);
759 return error;
760}
761
762clib_error_t *
763vnet_ip4_table_cmd (vlib_main_t * vm,
764 unformat_input_t * main_input, vlib_cli_command_t * cmd)
765{
766 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
767}
768
769clib_error_t *
770vnet_ip6_table_cmd (vlib_main_t * vm,
771 unformat_input_t * main_input, vlib_cli_command_t * cmd)
772{
773 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
774}
775
Dave Barachd7cb1b52016-12-09 09:52:16 -0500776/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
778 .path = "ip",
779 .short_help = "Internet protocol (IP) commands",
780};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500781/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
Dave Barachd7cb1b52016-12-09 09:52:16 -0500783/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400784VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
785 .path = "ip6",
786 .short_help = "Internet protocol version 6 (IPv6) commands",
787};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500788/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400789
Dave Barachd7cb1b52016-12-09 09:52:16 -0500790/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
792 .path = "show ip",
793 .short_help = "Internet protocol (IP) show commands",
794};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500795/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Dave Barachd7cb1b52016-12-09 09:52:16 -0500797/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
799 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400800 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500802/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700804/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400805 * This command is used to add or delete IPv4 or IPv6 routes. All
806 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
807 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
808 * can be IPv4 or IPv6, but all must be of the same form in a single
809 * command. To display the current set of routes, use the commands
810 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
811 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700812 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400813 * Example of how to add a straight forward static route:
814 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
815 * Example of how to delete a straight forward static route:
816 * @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 -0700817 * Mainly for route add/del performance testing, one can add or delete
818 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400819 * @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 -0700820 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400821 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
822 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
823 * For unequal-cost multipath, specify the desired weights. This
824 * combination of weights results in 3/4 of the traffic following the
825 * second path, 1/4 following the first path:
826 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
827 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
828 * To add a route to a particular FIB table (VRF), use:
829 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700830 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400831/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832VLIB_CLI_COMMAND (ip_route_command, static) = {
833 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400834 .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 -0700835 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400836 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837};
Neale Ranns15002542017-09-10 04:39:11 -0700838
839/* *INDENT-ON* */
840/*?
841 * This command is used to add or delete IPv4 Tables. All
842 * Tables must be explicitly added before that can be used. Creating a
843 * table will add both unicast and multicast FIBs
844 *
845 ?*/
846/* *INDENT-OFF* */
847VLIB_CLI_COMMAND (ip4_table_command, static) = {
848 .path = "ip table",
849 .short_help = "ip table [add|del] <table-id>",
850 .function = vnet_ip4_table_cmd,
851 .is_mp_safe = 1,
852};
853/* *INDENT-ON* */
854
855/* *INDENT-ON* */
856/*?
857 * This command is used to add or delete IPv4 Tables. All
858 * Tables must be explicitly added before that can be used. Creating a
859 * table will add both unicast and multicast FIBs
860 *
861 ?*/
862/* *INDENT-OFF* */
863VLIB_CLI_COMMAND (ip6_table_command, static) = {
864 .path = "ip6 table",
865 .short_help = "ip6 table [add|del] <table-id>",
866 .function = vnet_ip6_table_cmd,
867 .is_mp_safe = 1,
868};
869
870static clib_error_t *
871ip_table_bind_cmd (vlib_main_t * vm,
872 unformat_input_t * input,
873 vlib_cli_command_t * cmd,
874 fib_protocol_t fproto)
875{
876 vnet_main_t *vnm = vnet_get_main ();
877 clib_error_t *error = 0;
878 u32 sw_if_index, table_id;
879 int rv;
880
881 sw_if_index = ~0;
882
883 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
884 {
885 error = clib_error_return (0, "unknown interface `%U'",
886 format_unformat_error, input);
887 goto done;
888 }
889
890 if (unformat (input, "%d", &table_id))
891 ;
892 else
893 {
894 error = clib_error_return (0, "expected table id `%U'",
895 format_unformat_error, input);
896 goto done;
897 }
898
899 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
900
901 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
902 {
903 error = clib_error_return (0, "IP addresses are still present on %U",
904 format_vnet_sw_if_index_name,
905 vnet_get_main(),
906 sw_if_index);
907 }
908 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
909 {
910 error = clib_error_return (0, "no such table %d", table_id);
911 }
912 else if (0 != rv)
913 {
914 error = clib_error_return (0, "unknown error");
915 }
916
917 done:
918 return error;
919}
920
921static clib_error_t *
922ip4_table_bind_cmd (vlib_main_t * vm,
923 unformat_input_t * input,
924 vlib_cli_command_t * cmd)
925{
926 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
927}
928
929static clib_error_t *
930ip6_table_bind_cmd (vlib_main_t * vm,
931 unformat_input_t * input,
932 vlib_cli_command_t * cmd)
933{
934 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
935}
936
937/*?
938 * Place the indicated interface into the supplied IPv4 FIB table (also known
939 * as a VRF). If the FIB table does not exist, this command creates it. To
940 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
941 * FIB table will only be displayed if a route has been added to the table, or
942 * an IP Address is assigned to an interface in the table (which adds a route
943 * automatically).
944 *
945 * @note IP addresses added after setting the interface IP table are added to
946 * the indicated FIB table. If an IP address is added prior to changing the
947 * table then this is an error. The control plane must remove these addresses
948 * first and then change the table. VPP will not automatically move the
949 * addresses from the old to the new table as it does not know the validity
950 * of such a change.
951 *
952 * @cliexpar
953 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
954 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
955 ?*/
956/* *INDENT-OFF* */
957VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
958{
959 .path = "set interface ip table",
960 .function = ip4_table_bind_cmd,
961 .short_help = "set interface ip table <interface> <table-id>",
962};
963/* *INDENT-ON* */
964
965/*?
966 * Place the indicated interface into the supplied IPv6 FIB table (also known
967 * as a VRF). If the FIB table does not exist, this command creates it. To
968 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
969 * FIB table will only be displayed if a route has been added to the table, or
970 * an IP Address is assigned to an interface in the table (which adds a route
971 * automatically).
972 *
973 * @note IP addresses added after setting the interface IP table are added to
974 * the indicated FIB table. If an IP address is added prior to changing the
975 * table then this is an error. The control plane must remove these addresses
976 * first and then change the table. VPP will not automatically move the
977 * addresses from the old to the new table as it does not know the validity
978 * of such a change.
979 *
980 * @cliexpar
981 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
982 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
983 ?*/
984/* *INDENT-OFF* */
985VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
986{
987 .path = "set interface ip6 table",
988 .function = ip6_table_bind_cmd,
989 .short_help = "set interface ip6 table <interface> <table-id>"
990};
Billy McFall0683c9c2016-10-13 08:27:31 -0400991/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992
Neale Ranns32e1c012016-11-22 17:07:28 +0000993clib_error_t *
994vnet_ip_mroute_cmd (vlib_main_t * vm,
995 unformat_input_t * main_input, vlib_cli_command_t * cmd)
996{
997 unformat_input_t _line_input, *line_input = &_line_input;
998 clib_error_t *error = NULL;
999 fib_route_path_t rpath;
1000 u32 table_id, is_del;
1001 vnet_main_t *vnm;
1002 mfib_prefix_t pfx;
1003 u32 fib_index;
1004 mfib_itf_flags_t iflags = 0;
1005 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -08001006 u32 gcount, scount, ss, gg, incr;
1007 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +00001008
Neale Ranns52456fc2017-02-15 00:38:27 -08001009 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +00001010 vnm = vnet_get_main ();
1011 is_del = 0;
1012 table_id = 0;
1013 memset (&pfx, 0, sizeof (pfx));
1014 memset (&rpath, 0, sizeof (rpath));
1015 rpath.frp_sw_if_index = ~0;
1016
1017 /* Get a line of input. */
1018 if (!unformat_user (main_input, unformat_line_input, line_input))
1019 return 0;
1020
1021 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1022 {
1023 if (unformat (line_input, "table %d", &table_id))
1024 ;
1025 else if (unformat (line_input, "del"))
1026 is_del = 1;
1027 else if (unformat (line_input, "add"))
1028 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -08001029 else if (unformat (line_input, "scount %d", &scount))
1030 ;
1031 else if (unformat (line_input, "gcount %d", &gcount))
1032 ;
Neale Ranns32e1c012016-11-22 17:07:28 +00001033 else if (unformat (line_input, "%U %U",
1034 unformat_ip4_address,
1035 &pfx.fp_src_addr.ip4,
1036 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1037 {
1038 pfx.fp_proto = FIB_PROTOCOL_IP4;
1039 pfx.fp_len = 64;
1040 }
1041 else if (unformat (line_input, "%U %U",
1042 unformat_ip6_address,
1043 &pfx.fp_src_addr.ip6,
1044 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1045 {
1046 pfx.fp_proto = FIB_PROTOCOL_IP6;
1047 pfx.fp_len = 256;
1048 }
1049 else if (unformat (line_input, "%U/%d",
1050 unformat_ip4_address,
1051 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
1052 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001053 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +00001054 pfx.fp_proto = FIB_PROTOCOL_IP4;
1055 }
1056 else if (unformat (line_input, "%U/%d",
1057 unformat_ip6_address,
1058 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
1059 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001060 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +00001061 pfx.fp_proto = FIB_PROTOCOL_IP6;
1062 }
1063 else if (unformat (line_input, "%U",
1064 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1065 {
1066 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
1067 pfx.fp_proto = FIB_PROTOCOL_IP4;
1068 pfx.fp_len = 32;
1069 }
1070 else if (unformat (line_input, "%U",
1071 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1072 {
1073 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
1074 pfx.fp_proto = FIB_PROTOCOL_IP6;
1075 pfx.fp_len = 128;
1076 }
1077 else if (unformat (line_input, "via %U",
1078 unformat_vnet_sw_interface, vnm,
1079 &rpath.frp_sw_if_index))
1080 {
1081 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -07001082 }
1083 else if (unformat (line_input, "via local"))
1084 {
1085 rpath.frp_sw_if_index = ~0;
1086 rpath.frp_weight = 1;
1087 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns32e1c012016-11-22 17:07:28 +00001088 }
1089 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
1090 ;
1091 else if (unformat (line_input, "%U",
1092 unformat_mfib_entry_flags, &eflags))
1093 ;
1094 else
1095 {
1096 error = unformat_parse_error (line_input);
1097 goto done;
1098 }
1099 }
1100
Neale Ranns32e1c012016-11-22 17:07:28 +00001101 if (~0 == table_id)
1102 {
1103 /*
1104 * if no table_id is passed we will manipulate the default
1105 */
1106 fib_index = 0;
1107 }
1108 else
1109 {
1110 fib_index = mfib_table_find (pfx.fp_proto, table_id);
1111
1112 if (~0 == fib_index)
1113 {
1114 error = clib_error_return (0, "Nonexistent table id %d", table_id);
1115 goto done;
1116 }
1117 }
1118
Neale Ranns52456fc2017-02-15 00:38:27 -08001119 timet[0] = vlib_time_now (vm);
1120
1121 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +00001122 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001123 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +00001124 }
1125 else
1126 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001127 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +00001128 }
1129
Neale Ranns52456fc2017-02-15 00:38:27 -08001130 for (ss = 0; ss < scount; ss++)
1131 {
1132 for (gg = 0; gg < gcount; gg++)
1133 {
1134 if (is_del && 0 == rpath.frp_weight)
1135 {
1136 /* no path provided => route delete */
1137 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
1138 }
1139 else if (eflags)
1140 {
1141 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001142 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -08001143 }
1144 else
1145 {
1146 if (is_del)
1147 mfib_table_entry_path_remove (fib_index,
1148 &pfx, MFIB_SOURCE_CLI, &rpath);
1149 else
1150 mfib_table_entry_path_update (fib_index,
1151 &pfx, MFIB_SOURCE_CLI, &rpath,
1152 iflags);
1153 }
1154
1155 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1156 {
1157 pfx.fp_grp_addr.ip4.as_u32 =
1158 clib_host_to_net_u32 (incr +
1159 clib_net_to_host_u32 (pfx.
1160 fp_grp_addr.ip4.
1161 as_u32));
1162 }
1163 else
1164 {
1165 int bucket = (incr < 64 ? 0 : 1);
1166 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1167 clib_host_to_net_u64 (incr +
1168 clib_net_to_host_u64 (pfx.
1169 fp_grp_addr.ip6.as_u64
1170 [bucket]));
1171
1172 }
1173 }
1174 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1175 {
1176 pfx.fp_src_addr.ip4.as_u32 =
1177 clib_host_to_net_u32 (1 +
1178 clib_net_to_host_u32 (pfx.fp_src_addr.
1179 ip4.as_u32));
1180 }
1181 else
1182 {
1183 pfx.fp_src_addr.ip6.as_u64[1] =
1184 clib_host_to_net_u64 (1 +
1185 clib_net_to_host_u64 (pfx.fp_src_addr.
1186 ip6.as_u64[1]));
1187 }
1188 }
1189
1190 timet[1] = vlib_time_now (vm);
1191
1192 if (scount > 1 || gcount > 1)
1193 vlib_cli_output (vm, "%.6e routes/sec",
1194 (scount * gcount) / (timet[1] - timet[0]));
1195
Neale Ranns32e1c012016-11-22 17:07:28 +00001196done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001197 unformat_free (line_input);
1198
Neale Ranns32e1c012016-11-22 17:07:28 +00001199 return error;
1200}
1201
1202/*?
1203 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1204 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1205 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1206 * can be IPv4 or IPv6, but all must be of the same form in a single
1207 * command. To display the current set of routes, use the commands
1208 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1209 * The full set of support flags for interfaces and route is shown via;
1210 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1211 * respectively.
1212 * @cliexpar
1213 * Example of how to add a forwarding interface to a route (and create the
1214 * route if it does not exist)
1215 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1216 * Example of how to add an accepting interface to a route (and create the
1217 * route if it does not exist)
1218 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1219 * Example of changing the route's flags to send signals via the API
1220 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1221
1222 ?*/
1223/* *INDENT-OFF* */
1224VLIB_CLI_COMMAND (ip_mroute_command, static) =
1225{
1226 .path = "ip mroute",
1227 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1228 .function = vnet_ip_mroute_cmd,
1229 .is_mp_safe = 1,
1230};
1231/* *INDENT-ON* */
1232
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001233/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 * The next two routines address a longstanding script hemorrhoid.
1235 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1236 * or dependent route-adds will simply fail.
1237 */
1238static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001239ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001240 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001242 vnet_main_t *vnm = vnet_get_main ();
1243 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244 int i;
1245 int resolved = 0;
1246 uword event_type;
1247 uword *event_data = 0;
1248
Dave Barachd7cb1b52016-12-09 09:52:16 -05001249 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250
1251 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001252 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001254 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001255
1256 for (i = 0; i < retry_count; i++)
1257 {
1258 /* The interface may be down, etc. */
1259 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001260
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001262 return e;
1263
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 vlib_process_wait_for_event_or_clock (vm, 1.0);
1265 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001266 switch (event_type)
1267 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001268 case 1: /* resolved... */
1269 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1270 resolved = 1;
1271 goto done;
1272
1273 case ~0: /* timeout */
1274 break;
1275
1276 default:
1277 clib_warning ("unknown event_type %d", event_type);
1278 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001279 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001281
1282done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001283
1284 if (!resolved)
1285 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001286 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287 return 0;
1288}
1289
1290static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001291ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1292 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001294 vnet_main_t *vnm = vnet_get_main ();
1295 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001296 int i;
1297 int resolved = 0;
1298 uword event_type;
1299 uword *event_data = 0;
1300
Dave Barachd7cb1b52016-12-09 09:52:16 -05001301 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001304 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001306 1 /* event */ , 0 /* data */ );
1307
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308 for (i = 0; i < retry_count; i++)
1309 {
1310 /* The interface may be down, etc. */
1311 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001312
Ed Warnickecb9cada2015-12-08 15:45:58 -07001313 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001314 return e;
1315
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316 vlib_process_wait_for_event_or_clock (vm, 1.0);
1317 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001318 switch (event_type)
1319 {
1320 case 1: /* resolved... */
1321 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1322 resolved = 1;
1323 goto done;
1324
1325 case ~0: /* timeout */
1326 break;
1327
1328 default:
1329 clib_warning ("unknown event_type %d", event_type);
1330 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001331 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001333
1334done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335
1336 vec_reset_length (event_data);
1337
1338 if (!resolved)
1339 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001340 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341 return 0;
1342}
1343
1344static clib_error_t *
1345probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001346 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001348 vnet_main_t *vnm = vnet_get_main ();
1349 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350 ip4_address_t a4;
1351 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001352 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353 u32 sw_if_index = ~0;
1354 int retry_count = 3;
1355 int is_ip4 = 1;
1356 int address_set = 0;
1357
1358 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001359 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360 return 0;
1361
Dave Barachd7cb1b52016-12-09 09:52:16 -05001362 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001363 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001364 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1365 &sw_if_index))
1366 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001368 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369
1370 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001371 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001373 {
1374 address_set++;
1375 is_ip4 = 0;
1376 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001377 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001378 {
1379 error = clib_error_return (0, "unknown input '%U'",
1380 format_unformat_error, line_input);
1381 goto done;
1382 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001383 }
1384
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001386 {
1387 error = clib_error_return (0, "Interface required, not set.");
1388 goto done;
1389 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001391 {
1392 error = clib_error_return (0, "ip address required, not set.");
1393 goto done;
1394 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001396 {
1397 error = clib_error_return (0, "Multiple ip addresses not supported.");
1398 goto done;
1399 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001400
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401 if (is_ip4)
1402 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001403 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001404 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1405
Billy McFalla9a20e72017-02-15 11:39:12 -05001406done:
1407 unformat_free (line_input);
1408
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409 return error;
1410}
1411
Billy McFall0683c9c2016-10-13 08:27:31 -04001412/*?
1413 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1414 * attempts IPv6 neighbor discovery depending on the supplied IP address
1415 * format.
1416 *
1417 * @note This command will not immediately affect the indicated FIB; it
1418 * is not suitable for use in establishing a FIB entry prior to adding
1419 * recursive FIB entries. As in: don't use it in a script to probe a
1420 * gateway prior to adding a default route. It won't work. Instead,
1421 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1422 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1423 *
1424 * @cliexpar
1425 * Example of probe for an IPv4 address:
1426 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1427?*/
1428/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001429VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1430 .path = "ip probe-neighbor",
1431 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001432 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001433 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001434};
Billy McFall0683c9c2016-10-13 08:27:31 -04001435/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001436
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001437clib_error_t *
1438ip_container_cmd (vlib_main_t * vm,
1439 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1440{
1441 unformat_input_t _line_input, *line_input = &_line_input;
1442 fib_prefix_t pfx;
1443
1444 u32 is_del;
1445 vnet_main_t *vnm;
1446 u32 fib_index;
1447 u32 sw_if_index;
1448
1449 vnm = vnet_get_main ();
1450 is_del = 0;
1451 sw_if_index = ~0;
1452
1453 /* Get a line of input. */
1454 if (!unformat_user (main_input, unformat_line_input, line_input))
1455 return 0;
1456
1457 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1458 {
1459 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1460 {
1461 pfx.fp_proto = FIB_PROTOCOL_IP4;
1462 pfx.fp_len = 32;
1463 }
1464 else if (unformat (line_input, "%U",
1465 unformat_ip6_address, &pfx.fp_addr.ip6))
1466 {
1467 pfx.fp_proto = FIB_PROTOCOL_IP6;
1468 pfx.fp_len = 128;
1469 }
1470 else if (unformat (line_input, "%U",
1471 unformat_vnet_sw_interface, vnm, &sw_if_index))
1472 ;
1473 else if (unformat (line_input, "del"))
1474 is_del = 1;
1475 else
1476 return (clib_error_return (0, "unknown input '%U'",
1477 format_unformat_error, line_input));
1478 }
1479
1480 if (~0 == sw_if_index)
1481 {
1482 return (clib_error_return (0, "no interface"));
1483 }
1484
1485 fib_index = fib_table_get_table_id_for_sw_if_index (pfx.fp_proto,
1486 sw_if_index);
1487
1488 if (is_del)
1489 fib_table_entry_special_remove (fib_index, &pfx, FIB_SOURCE_PROXY);
1490 else
1491 {
1492 dpo_id_t proxy_dpo = DPO_INVALID;
1493
1494 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (pfx.fp_proto),
1495 sw_if_index, &proxy_dpo);
1496
1497 fib_table_entry_special_dpo_add (fib_index,
1498 &pfx,
1499 FIB_SOURCE_PROXY,
1500 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1501 }
1502
1503 return (NULL);
1504}
1505
1506/* *INDENT-OFF* */
1507VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1508 .path = "ip container",
1509 .function = ip_container_cmd,
1510 .short_help = "ip container <address> <interface>",
1511 .is_mp_safe = 1,
1512};
1513/* *INDENT-ON* */
1514
Dave Barachd7cb1b52016-12-09 09:52:16 -05001515/*
1516 * fd.io coding-style-patch-verification: ON
1517 *
1518 * Local Variables:
1519 * eval: (c-set-style "gnu")
1520 * End:
1521 */