blob: 9bb53f5e8c0980ecfb49a179c3cfb155af27b3f7 [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 Ranns810086d2017-11-05 16:26:46 -0800371 u32 table_id, is_del, udp_encap_id;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100372 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000373 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 clib_error_t *error = NULL;
Neale Ranns57b58602017-07-15 07:37:25 -0700375 u32 weight, preference;
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 Ranns810086d2017-11-05 16:26:46 -0800530 else if (unformat (line_input, "via udp-encap %d", &udp_encap_id))
531 {
532 rpath.frp_udp_encap_id = udp_encap_id;
533 rpath.frp_flags |= FIB_ROUTE_PATH_UDP_ENCAP;
534 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
535 vec_add1 (rpaths, rpath);
536 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100537 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500538 "lookup in table %d", &rpath.frp_fib_index))
539 {
Neale Rannsda78f952017-05-24 09:15:43 -0700540 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100541 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500542 vec_add1 (rpaths, rpath);
543 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100544 else if (vec_len (prefixs) > 0 &&
545 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000546 unformat_vnet_sw_interface, vnm,
547 &rpath.frp_sw_if_index))
548 {
549 rpath.frp_weight = 1;
Neale Rannsda78f952017-05-24 09:15:43 -0700550 rpath.frp_proto = fib_proto_to_dpo (prefixs[0].fp_proto);
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000551 vec_add1 (rpaths, rpath);
552 }
553 else if (vec_len (prefixs) > 0 &&
554 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100555 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500556 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500558 }
pragash352829f2017-08-17 22:53:24 -0400559 else if (unformat (line_input, "del"))
560 is_del = 1;
561 else if (unformat (line_input, "add"))
562 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 error = unformat_parse_error (line_input);
566 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500567 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500569
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100570 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500571 {
572 error =
573 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574 goto done;
575 }
576
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100577 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100579 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 goto done;
581 }
582
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100583 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500584 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585 /*
586 * if no table_id is passed we will manipulate the default
587 */
588 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500589 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100590 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500591 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700592 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100594 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500595 {
596 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100597 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500598 }
599 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100601 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500602 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100603 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500604 {
605 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
606 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100607 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608 {
609 fib_table_entry_special_dpo_add (fib_index,
610 &prefixs[i],
611 FIB_SOURCE_CLI,
612 FIB_ENTRY_FLAG_EXCLUSIVE,
613 &dpos[0]);
614 dpo_reset (&dpos[0]);
615 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100616 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500617 {
618 error =
619 clib_error_return (0,
620 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100621 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500622 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100623 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500624 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625 u32 k, j, n, incr;
626 ip46_address_t dst = prefixs[i].fp_addr;
627 f64 t[2];
628 n = count;
629 t[0] = vlib_time_now (vm);
630 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
631 prefixs[i].fp_len);
632
633 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500634 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100635 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500636 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100637 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100638 /*
639 * the CLI parsing stored table Ids, swap to FIB indicies
640 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700641 fi = fib_table_find (prefixs[i].fp_proto,
642 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100643
644 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500645 {
646 error =
647 clib_error_return (0, "Via table %d does not exist",
648 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100649 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500650 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100651 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652
653 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500654 .fp_len = prefixs[i].fp_len,
655 .fp_proto = prefixs[i].fp_proto,
656 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100657 };
658
Dave Barachd7cb1b52016-12-09 09:52:16 -0500659 if (is_del)
660 fib_table_entry_path_remove2 (fib_index,
661 &rpfx,
662 FIB_SOURCE_CLI, &rpaths[j]);
663 else
664 fib_table_entry_path_add2 (fib_index,
665 &rpfx,
666 FIB_SOURCE_CLI,
667 FIB_ENTRY_FLAG_NONE,
668 &rpaths[j]);
669 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100670
671 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500672 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100673 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500674 clib_host_to_net_u32 (incr +
675 clib_net_to_host_u32 (dst.
676 ip4.as_u32));
677 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100678 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500679 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100680 int bucket = (incr < 64 ? 0 : 1);
681 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500682 clib_host_to_net_u64 (incr +
683 clib_net_to_host_u64 (dst.ip6.as_u64
684 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100685
Dave Barachd7cb1b52016-12-09 09:52:16 -0500686 }
687 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100688 t[1] = vlib_time_now (vm);
689 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500690 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
691 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100692 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500693 {
694 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100695 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500696 }
697 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100698
699
Dave Barachd7cb1b52016-12-09 09:52:16 -0500700done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100701 vec_free (dpos);
702 vec_free (prefixs);
703 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500704 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705 return error;
706}
707
Neale Ranns15002542017-09-10 04:39:11 -0700708clib_error_t *
709vnet_ip_table_cmd (vlib_main_t * vm,
710 unformat_input_t * main_input,
711 vlib_cli_command_t * cmd, fib_protocol_t fproto)
712{
713 unformat_input_t _line_input, *line_input = &_line_input;
714 clib_error_t *error = NULL;
715 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700716 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700717
718 is_add = 1;
719 table_id = ~0;
720
721 /* Get a line of input. */
722 if (!unformat_user (main_input, unformat_line_input, line_input))
723 return 0;
724
725 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
726 {
727 if (unformat (line_input, "%d", &table_id))
728 ;
729 else if (unformat (line_input, "del"))
730 is_add = 0;
731 else if (unformat (line_input, "add"))
732 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700733 else if (unformat (line_input, "name %s", &name))
734 ;
Neale Ranns15002542017-09-10 04:39:11 -0700735 else
736 {
737 error = unformat_parse_error (line_input);
738 goto done;
739 }
740 }
741
742 if (~0 == table_id)
743 {
744 error = clib_error_return (0, "No table id");
745 goto done;
746 }
747 else if (0 == table_id)
748 {
749 error = clib_error_return (0, "Can't change the default table");
750 goto done;
751 }
752 else
753 {
754 if (is_add)
755 {
Neale Ranns2297af02017-09-12 09:45:04 -0700756 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700757 }
758 else
759 {
760 ip_table_delete (fproto, table_id, 0);
761 }
762 }
763
764done:
765 unformat_free (line_input);
766 return error;
767}
768
769clib_error_t *
770vnet_ip4_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_IP4));
774}
775
776clib_error_t *
777vnet_ip6_table_cmd (vlib_main_t * vm,
778 unformat_input_t * main_input, vlib_cli_command_t * cmd)
779{
780 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
781}
782
Dave Barachd7cb1b52016-12-09 09:52:16 -0500783/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
785 .path = "ip",
786 .short_help = "Internet protocol (IP) commands",
787};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500788/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
Dave Barachd7cb1b52016-12-09 09:52:16 -0500790/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400791VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
792 .path = "ip6",
793 .short_help = "Internet protocol version 6 (IPv6) commands",
794};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500795/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400796
Dave Barachd7cb1b52016-12-09 09:52:16 -0500797/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
799 .path = "show ip",
800 .short_help = "Internet protocol (IP) show commands",
801};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500802/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803
Dave Barachd7cb1b52016-12-09 09:52:16 -0500804/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
806 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400807 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500809/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700811/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400812 * This command is used to add or delete IPv4 or IPv6 routes. All
813 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
814 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
815 * can be IPv4 or IPv6, but all must be of the same form in a single
816 * command. To display the current set of routes, use the commands
817 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
818 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700819 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400820 * Example of how to add a straight forward static route:
821 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
822 * Example of how to delete a straight forward static route:
823 * @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 -0700824 * Mainly for route add/del performance testing, one can add or delete
825 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400826 * @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 -0700827 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400828 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
829 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
830 * For unequal-cost multipath, specify the desired weights. This
831 * combination of weights results in 3/4 of the traffic following the
832 * second path, 1/4 following the first path:
833 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
834 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
835 * To add a route to a particular FIB table (VRF), use:
836 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700837 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400838/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839VLIB_CLI_COMMAND (ip_route_command, static) = {
840 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400841 .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 -0700842 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400843 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844};
Neale Ranns15002542017-09-10 04:39:11 -0700845
846/* *INDENT-ON* */
847/*?
848 * This command is used to add or delete IPv4 Tables. All
849 * Tables must be explicitly added before that can be used. Creating a
850 * table will add both unicast and multicast FIBs
851 *
852 ?*/
853/* *INDENT-OFF* */
854VLIB_CLI_COMMAND (ip4_table_command, static) = {
855 .path = "ip table",
856 .short_help = "ip table [add|del] <table-id>",
857 .function = vnet_ip4_table_cmd,
858 .is_mp_safe = 1,
859};
860/* *INDENT-ON* */
861
862/* *INDENT-ON* */
863/*?
864 * This command is used to add or delete IPv4 Tables. All
865 * Tables must be explicitly added before that can be used. Creating a
866 * table will add both unicast and multicast FIBs
867 *
868 ?*/
869/* *INDENT-OFF* */
870VLIB_CLI_COMMAND (ip6_table_command, static) = {
871 .path = "ip6 table",
872 .short_help = "ip6 table [add|del] <table-id>",
873 .function = vnet_ip6_table_cmd,
874 .is_mp_safe = 1,
875};
876
877static clib_error_t *
878ip_table_bind_cmd (vlib_main_t * vm,
879 unformat_input_t * input,
880 vlib_cli_command_t * cmd,
881 fib_protocol_t fproto)
882{
883 vnet_main_t *vnm = vnet_get_main ();
884 clib_error_t *error = 0;
885 u32 sw_if_index, table_id;
886 int rv;
887
888 sw_if_index = ~0;
889
890 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
891 {
892 error = clib_error_return (0, "unknown interface `%U'",
893 format_unformat_error, input);
894 goto done;
895 }
896
897 if (unformat (input, "%d", &table_id))
898 ;
899 else
900 {
901 error = clib_error_return (0, "expected table id `%U'",
902 format_unformat_error, input);
903 goto done;
904 }
905
906 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
907
908 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
909 {
910 error = clib_error_return (0, "IP addresses are still present on %U",
911 format_vnet_sw_if_index_name,
912 vnet_get_main(),
913 sw_if_index);
914 }
915 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
916 {
917 error = clib_error_return (0, "no such table %d", table_id);
918 }
919 else if (0 != rv)
920 {
921 error = clib_error_return (0, "unknown error");
922 }
923
924 done:
925 return error;
926}
927
928static clib_error_t *
929ip4_table_bind_cmd (vlib_main_t * vm,
930 unformat_input_t * input,
931 vlib_cli_command_t * cmd)
932{
933 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
934}
935
936static clib_error_t *
937ip6_table_bind_cmd (vlib_main_t * vm,
938 unformat_input_t * input,
939 vlib_cli_command_t * cmd)
940{
941 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
942}
943
944/*?
945 * Place the indicated interface into the supplied IPv4 FIB table (also known
946 * as a VRF). If the FIB table does not exist, this command creates it. To
947 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
948 * FIB table will only be displayed if a route has been added to the table, or
949 * an IP Address is assigned to an interface in the table (which adds a route
950 * automatically).
951 *
952 * @note IP addresses added after setting the interface IP table are added to
953 * the indicated FIB table. If an IP address is added prior to changing the
954 * table then this is an error. The control plane must remove these addresses
955 * first and then change the table. VPP will not automatically move the
956 * addresses from the old to the new table as it does not know the validity
957 * of such a change.
958 *
959 * @cliexpar
960 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
961 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
962 ?*/
963/* *INDENT-OFF* */
964VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
965{
966 .path = "set interface ip table",
967 .function = ip4_table_bind_cmd,
968 .short_help = "set interface ip table <interface> <table-id>",
969};
970/* *INDENT-ON* */
971
972/*?
973 * Place the indicated interface into the supplied IPv6 FIB table (also known
974 * as a VRF). If the FIB table does not exist, this command creates it. To
975 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
976 * FIB table will only be displayed if a route has been added to the table, or
977 * an IP Address is assigned to an interface in the table (which adds a route
978 * automatically).
979 *
980 * @note IP addresses added after setting the interface IP table are added to
981 * the indicated FIB table. If an IP address is added prior to changing the
982 * table then this is an error. The control plane must remove these addresses
983 * first and then change the table. VPP will not automatically move the
984 * addresses from the old to the new table as it does not know the validity
985 * of such a change.
986 *
987 * @cliexpar
988 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
989 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
990 ?*/
991/* *INDENT-OFF* */
992VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
993{
994 .path = "set interface ip6 table",
995 .function = ip6_table_bind_cmd,
996 .short_help = "set interface ip6 table <interface> <table-id>"
997};
Billy McFall0683c9c2016-10-13 08:27:31 -0400998/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999
Neale Ranns32e1c012016-11-22 17:07:28 +00001000clib_error_t *
1001vnet_ip_mroute_cmd (vlib_main_t * vm,
1002 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1003{
1004 unformat_input_t _line_input, *line_input = &_line_input;
1005 clib_error_t *error = NULL;
1006 fib_route_path_t rpath;
1007 u32 table_id, is_del;
1008 vnet_main_t *vnm;
1009 mfib_prefix_t pfx;
1010 u32 fib_index;
1011 mfib_itf_flags_t iflags = 0;
1012 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -08001013 u32 gcount, scount, ss, gg, incr;
1014 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +00001015
Neale Ranns52456fc2017-02-15 00:38:27 -08001016 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +00001017 vnm = vnet_get_main ();
1018 is_del = 0;
1019 table_id = 0;
1020 memset (&pfx, 0, sizeof (pfx));
1021 memset (&rpath, 0, sizeof (rpath));
1022 rpath.frp_sw_if_index = ~0;
1023
1024 /* Get a line of input. */
1025 if (!unformat_user (main_input, unformat_line_input, line_input))
1026 return 0;
1027
1028 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1029 {
1030 if (unformat (line_input, "table %d", &table_id))
1031 ;
1032 else if (unformat (line_input, "del"))
1033 is_del = 1;
1034 else if (unformat (line_input, "add"))
1035 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -08001036 else if (unformat (line_input, "scount %d", &scount))
1037 ;
1038 else if (unformat (line_input, "gcount %d", &gcount))
1039 ;
Neale Ranns32e1c012016-11-22 17:07:28 +00001040 else if (unformat (line_input, "%U %U",
1041 unformat_ip4_address,
1042 &pfx.fp_src_addr.ip4,
1043 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1044 {
1045 pfx.fp_proto = FIB_PROTOCOL_IP4;
1046 pfx.fp_len = 64;
1047 }
1048 else if (unformat (line_input, "%U %U",
1049 unformat_ip6_address,
1050 &pfx.fp_src_addr.ip6,
1051 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1052 {
1053 pfx.fp_proto = FIB_PROTOCOL_IP6;
1054 pfx.fp_len = 256;
1055 }
1056 else if (unformat (line_input, "%U/%d",
1057 unformat_ip4_address,
1058 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
1059 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001060 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +00001061 pfx.fp_proto = FIB_PROTOCOL_IP4;
1062 }
1063 else if (unformat (line_input, "%U/%d",
1064 unformat_ip6_address,
1065 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
1066 {
Neale Rannsc7409dc2017-05-19 02:54:32 -07001067 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +00001068 pfx.fp_proto = FIB_PROTOCOL_IP6;
1069 }
1070 else if (unformat (line_input, "%U",
1071 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1072 {
1073 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
1074 pfx.fp_proto = FIB_PROTOCOL_IP4;
1075 pfx.fp_len = 32;
1076 }
1077 else if (unformat (line_input, "%U",
1078 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1079 {
1080 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
1081 pfx.fp_proto = FIB_PROTOCOL_IP6;
1082 pfx.fp_len = 128;
1083 }
1084 else if (unformat (line_input, "via %U",
1085 unformat_vnet_sw_interface, vnm,
1086 &rpath.frp_sw_if_index))
1087 {
1088 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -07001089 }
1090 else if (unformat (line_input, "via local"))
1091 {
1092 rpath.frp_sw_if_index = ~0;
1093 rpath.frp_weight = 1;
1094 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns32e1c012016-11-22 17:07:28 +00001095 }
1096 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
1097 ;
1098 else if (unformat (line_input, "%U",
1099 unformat_mfib_entry_flags, &eflags))
1100 ;
1101 else
1102 {
1103 error = unformat_parse_error (line_input);
1104 goto done;
1105 }
1106 }
1107
Neale Ranns32e1c012016-11-22 17:07:28 +00001108 if (~0 == table_id)
1109 {
1110 /*
1111 * if no table_id is passed we will manipulate the default
1112 */
1113 fib_index = 0;
1114 }
1115 else
1116 {
1117 fib_index = mfib_table_find (pfx.fp_proto, table_id);
1118
1119 if (~0 == fib_index)
1120 {
1121 error = clib_error_return (0, "Nonexistent table id %d", table_id);
1122 goto done;
1123 }
1124 }
1125
Neale Ranns52456fc2017-02-15 00:38:27 -08001126 timet[0] = vlib_time_now (vm);
1127
1128 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +00001129 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001130 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +00001131 }
1132 else
1133 {
Neale Ranns52456fc2017-02-15 00:38:27 -08001134 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +00001135 }
1136
Neale Ranns52456fc2017-02-15 00:38:27 -08001137 for (ss = 0; ss < scount; ss++)
1138 {
1139 for (gg = 0; gg < gcount; gg++)
1140 {
1141 if (is_del && 0 == rpath.frp_weight)
1142 {
1143 /* no path provided => route delete */
1144 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
1145 }
1146 else if (eflags)
1147 {
1148 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001149 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -08001150 }
1151 else
1152 {
1153 if (is_del)
1154 mfib_table_entry_path_remove (fib_index,
1155 &pfx, MFIB_SOURCE_CLI, &rpath);
1156 else
1157 mfib_table_entry_path_update (fib_index,
1158 &pfx, MFIB_SOURCE_CLI, &rpath,
1159 iflags);
1160 }
1161
1162 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1163 {
1164 pfx.fp_grp_addr.ip4.as_u32 =
1165 clib_host_to_net_u32 (incr +
1166 clib_net_to_host_u32 (pfx.
1167 fp_grp_addr.ip4.
1168 as_u32));
1169 }
1170 else
1171 {
1172 int bucket = (incr < 64 ? 0 : 1);
1173 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1174 clib_host_to_net_u64 (incr +
1175 clib_net_to_host_u64 (pfx.
1176 fp_grp_addr.ip6.as_u64
1177 [bucket]));
1178
1179 }
1180 }
1181 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1182 {
1183 pfx.fp_src_addr.ip4.as_u32 =
1184 clib_host_to_net_u32 (1 +
1185 clib_net_to_host_u32 (pfx.fp_src_addr.
1186 ip4.as_u32));
1187 }
1188 else
1189 {
1190 pfx.fp_src_addr.ip6.as_u64[1] =
1191 clib_host_to_net_u64 (1 +
1192 clib_net_to_host_u64 (pfx.fp_src_addr.
1193 ip6.as_u64[1]));
1194 }
1195 }
1196
1197 timet[1] = vlib_time_now (vm);
1198
1199 if (scount > 1 || gcount > 1)
1200 vlib_cli_output (vm, "%.6e routes/sec",
1201 (scount * gcount) / (timet[1] - timet[0]));
1202
Neale Ranns32e1c012016-11-22 17:07:28 +00001203done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001204 unformat_free (line_input);
1205
Neale Ranns32e1c012016-11-22 17:07:28 +00001206 return error;
1207}
1208
1209/*?
1210 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1211 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1212 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1213 * can be IPv4 or IPv6, but all must be of the same form in a single
1214 * command. To display the current set of routes, use the commands
1215 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1216 * The full set of support flags for interfaces and route is shown via;
1217 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1218 * respectively.
1219 * @cliexpar
1220 * Example of how to add a forwarding interface to a route (and create the
1221 * route if it does not exist)
1222 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1223 * Example of how to add an accepting interface to a route (and create the
1224 * route if it does not exist)
1225 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1226 * Example of changing the route's flags to send signals via the API
1227 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1228
1229 ?*/
1230/* *INDENT-OFF* */
1231VLIB_CLI_COMMAND (ip_mroute_command, static) =
1232{
1233 .path = "ip mroute",
1234 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1235 .function = vnet_ip_mroute_cmd,
1236 .is_mp_safe = 1,
1237};
1238/* *INDENT-ON* */
1239
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001240/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241 * The next two routines address a longstanding script hemorrhoid.
1242 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1243 * or dependent route-adds will simply fail.
1244 */
1245static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001246ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001247 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001249 vnet_main_t *vnm = vnet_get_main ();
1250 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 int i;
1252 int resolved = 0;
1253 uword event_type;
1254 uword *event_data = 0;
1255
Dave Barachd7cb1b52016-12-09 09:52:16 -05001256 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257
1258 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001259 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001261 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262
1263 for (i = 0; i < retry_count; i++)
1264 {
1265 /* The interface may be down, etc. */
1266 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001267
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001269 return e;
1270
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271 vlib_process_wait_for_event_or_clock (vm, 1.0);
1272 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001273 switch (event_type)
1274 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001275 case 1: /* resolved... */
1276 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1277 resolved = 1;
1278 goto done;
1279
1280 case ~0: /* timeout */
1281 break;
1282
1283 default:
1284 clib_warning ("unknown event_type %d", event_type);
1285 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001286 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001288
1289done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290
1291 if (!resolved)
1292 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001293 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294 return 0;
1295}
1296
1297static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001298ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1299 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001301 vnet_main_t *vnm = vnet_get_main ();
1302 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303 int i;
1304 int resolved = 0;
1305 uword event_type;
1306 uword *event_data = 0;
1307
Dave Barachd7cb1b52016-12-09 09:52:16 -05001308 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309
1310 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001311 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001313 1 /* event */ , 0 /* data */ );
1314
Ed Warnickecb9cada2015-12-08 15:45:58 -07001315 for (i = 0; i < retry_count; i++)
1316 {
1317 /* The interface may be down, etc. */
1318 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001319
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001321 return e;
1322
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 vlib_process_wait_for_event_or_clock (vm, 1.0);
1324 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001325 switch (event_type)
1326 {
1327 case 1: /* resolved... */
1328 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1329 resolved = 1;
1330 goto done;
1331
1332 case ~0: /* timeout */
1333 break;
1334
1335 default:
1336 clib_warning ("unknown event_type %d", event_type);
1337 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001338 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001340
1341done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342
1343 vec_reset_length (event_data);
1344
1345 if (!resolved)
1346 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001347 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 return 0;
1349}
1350
1351static clib_error_t *
1352probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001353 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001355 vnet_main_t *vnm = vnet_get_main ();
1356 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 ip4_address_t a4;
1358 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001359 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360 u32 sw_if_index = ~0;
1361 int retry_count = 3;
1362 int is_ip4 = 1;
1363 int address_set = 0;
1364
1365 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001366 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 return 0;
1368
Dave Barachd7cb1b52016-12-09 09:52:16 -05001369 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001371 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1372 &sw_if_index))
1373 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001375 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001376
1377 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001378 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001380 {
1381 address_set++;
1382 is_ip4 = 0;
1383 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001385 {
1386 error = clib_error_return (0, "unknown input '%U'",
1387 format_unformat_error, line_input);
1388 goto done;
1389 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 }
1391
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001393 {
1394 error = clib_error_return (0, "Interface required, not set.");
1395 goto done;
1396 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001398 {
1399 error = clib_error_return (0, "ip address required, not set.");
1400 goto done;
1401 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001402 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001403 {
1404 error = clib_error_return (0, "Multiple ip addresses not supported.");
1405 goto done;
1406 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001407
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 if (is_ip4)
1409 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001410 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001411 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1412
Billy McFalla9a20e72017-02-15 11:39:12 -05001413done:
1414 unformat_free (line_input);
1415
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416 return error;
1417}
1418
Billy McFall0683c9c2016-10-13 08:27:31 -04001419/*?
1420 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1421 * attempts IPv6 neighbor discovery depending on the supplied IP address
1422 * format.
1423 *
1424 * @note This command will not immediately affect the indicated FIB; it
1425 * is not suitable for use in establishing a FIB entry prior to adding
1426 * recursive FIB entries. As in: don't use it in a script to probe a
1427 * gateway prior to adding a default route. It won't work. Instead,
1428 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1429 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1430 *
1431 * @cliexpar
1432 * Example of probe for an IPv4 address:
1433 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1434?*/
1435/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1437 .path = "ip probe-neighbor",
1438 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001439 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001440 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001441};
Billy McFall0683c9c2016-10-13 08:27:31 -04001442/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001443
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001444clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001445vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1446{
1447 u32 fib_index;
1448
1449 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1450 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1451 "invalid sw_if_index");
1452
1453 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1454 args->sw_if_index);
1455 if (args->is_add)
1456 {
1457 dpo_id_t proxy_dpo = DPO_INVALID;
1458 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1459 args->sw_if_index, &proxy_dpo);
1460 fib_table_entry_special_dpo_add (fib_index,
1461 &args->prefix,
1462 FIB_SOURCE_PROXY,
1463 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1464 dpo_reset (&proxy_dpo);
1465 }
1466 else
1467 {
1468 fib_table_entry_special_remove (fib_index, &args->prefix,
1469 FIB_SOURCE_PROXY);
1470 }
1471 return 0;
1472}
1473
1474u8
1475ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1476{
1477 u32 fib_index;
1478 fib_node_index_t fei;
1479 const dpo_id_t *dpo;
1480 l3_proxy_dpo_t *l3p;
1481 load_balance_t *lb0;
1482
1483 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1484 sw_if_index);
1485 if (fib_index == ~0)
1486 return 0;
1487
1488 fei = fib_table_lookup_exact_match (fib_index, pfx);
1489 if (fei == FIB_NODE_INDEX_INVALID)
1490 return 0;
1491
1492 dpo = fib_entry_contribute_ip_forwarding (fei);
1493 lb0 = load_balance_get (dpo->dpoi_index);
1494 dpo = load_balance_get_bucket_i (lb0, 0);
1495 if (dpo->dpoi_type != DPO_L3_PROXY)
1496 return 0;
1497
1498 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1499 return (l3p->l3p_sw_if_index == sw_if_index);
1500}
1501
1502clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001503ip_container_cmd (vlib_main_t * vm,
1504 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1505{
1506 unformat_input_t _line_input, *line_input = &_line_input;
1507 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001508 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001509 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001510 u32 sw_if_index;
1511
1512 vnm = vnet_get_main ();
1513 is_del = 0;
1514 sw_if_index = ~0;
Florin Corase1682c42017-11-07 17:06:36 -08001515 memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001516
1517 /* Get a line of input. */
1518 if (!unformat_user (main_input, unformat_line_input, line_input))
1519 return 0;
1520
1521 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1522 {
1523 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1524 {
1525 pfx.fp_proto = FIB_PROTOCOL_IP4;
1526 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001527 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001528 }
1529 else if (unformat (line_input, "%U",
1530 unformat_ip6_address, &pfx.fp_addr.ip6))
1531 {
1532 pfx.fp_proto = FIB_PROTOCOL_IP6;
1533 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001534 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001535 }
1536 else if (unformat (line_input, "%U",
1537 unformat_vnet_sw_interface, vnm, &sw_if_index))
1538 ;
1539 else if (unformat (line_input, "del"))
1540 is_del = 1;
1541 else
1542 return (clib_error_return (0, "unknown input '%U'",
1543 format_unformat_error, line_input));
1544 }
1545
Florin Corase1682c42017-11-07 17:06:36 -08001546 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001547 {
Florin Corase1682c42017-11-07 17:06:36 -08001548 vlib_cli_output (vm, "interface and address must be set");
1549 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001550 }
1551
Florin Coras595992c2017-11-06 17:17:08 -08001552 vnet_ip_container_proxy_args_t args = {
1553 .prefix = pfx,
1554 .sw_if_index = sw_if_index,
1555 .is_add = !is_del,
1556 };
1557 vnet_ip_container_proxy_add_del (&args);
1558 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001559 return (NULL);
1560}
1561
1562/* *INDENT-OFF* */
1563VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1564 .path = "ip container",
1565 .function = ip_container_cmd,
1566 .short_help = "ip container <address> <interface>",
1567 .is_mp_safe = 1,
1568};
1569/* *INDENT-ON* */
1570
Florin Coras595992c2017-11-06 17:17:08 -08001571clib_error_t *
1572show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1573 vlib_cli_command_t * cmd)
1574{
1575 unformat_input_t _line_input, *line_input = &_line_input;
1576 vnet_main_t *vnm = vnet_get_main ();
1577 fib_prefix_t pfx;
1578 u32 sw_if_index = ~0;
1579 u8 has_proxy;
1580
1581 if (!unformat_user (main_input, unformat_line_input, line_input))
1582 return 0;
1583 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1584 {
1585 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1586 {
1587 pfx.fp_proto = FIB_PROTOCOL_IP4;
1588 pfx.fp_len = 32;
1589 }
1590 else if (unformat (line_input, "%U",
1591 unformat_ip6_address, &pfx.fp_addr.ip6))
1592 {
1593 pfx.fp_proto = FIB_PROTOCOL_IP6;
1594 pfx.fp_len = 128;
1595 }
1596 else if (unformat (line_input, "%U",
1597 unformat_vnet_sw_interface, vnm, &sw_if_index))
1598 ;
1599 else
1600 return (clib_error_return (0, "unknown input '%U'",
1601 format_unformat_error, line_input));
1602 }
1603
1604 if (~0 == sw_if_index)
1605 {
1606 vlib_cli_output (vm, "no interface");
1607 return (clib_error_return (0, "no interface"));
1608 }
1609
1610 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1611 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1612
1613 unformat_free (line_input);
1614 return 0;
1615}
1616
1617/* *INDENT-OFF* */
1618VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1619 .path = "show ip container",
1620 .function = show_ip_container_cmd_fn,
1621 .short_help = "show ip container <address> <interface>",
1622 .is_mp_safe = 1,
1623};
1624/* *INDENT-ON* */
1625
Dave Barachd7cb1b52016-12-09 09:52:16 -05001626/*
1627 * fd.io coding-style-patch-verification: ON
1628 *
1629 * Local Variables:
1630 * eval: (c-set-style "gnu")
1631 * End:
1632 */