blob: 67e46bd8cfa69e6a0e31a1d7966bcb81e2ed0aca [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 Ranns70ed8ae2017-11-15 12:54:46 -0800369 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100370 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800371 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100372 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500373 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100375 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
377 is_del = 0;
378 table_id = 0;
379 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500380 memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
382 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 return 0;
385
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
387 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 if (unformat (line_input, "table %d", &table_id))
391 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 else if (unformat (line_input, "count %f", &count))
393 ;
394
395 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
397 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800398 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500399 vec_add1 (prefixs, pfx);
400 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500402 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
403 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800404 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 vec_add1 (prefixs, pfx);
406 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800408 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000410 vec_add1 (rpaths, rpath);
411 }
412 else if (vec_len (prefixs) > 0 &&
413 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100414 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100416 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417 }
pragash352829f2017-08-17 22:53:24 -0400418 else if (unformat (line_input, "del"))
419 is_del = 1;
420 else if (unformat (line_input, "add"))
421 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 error = unformat_parse_error (line_input);
425 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500426 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500428
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100429 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500430 {
431 error =
432 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 goto done;
434 }
435
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100436 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100438 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439 goto done;
440 }
441
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100444 /*
445 * if no table_id is passed we will manipulate the default
446 */
447 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700451 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 {
455 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 }
458 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100462 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463 {
464 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
465 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500467 {
468 fib_table_entry_special_dpo_add (fib_index,
469 &prefixs[i],
470 FIB_SOURCE_CLI,
471 FIB_ENTRY_FLAG_EXCLUSIVE,
472 &dpos[0]);
473 dpo_reset (&dpos[0]);
474 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100475 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 {
477 error =
478 clib_error_return (0,
479 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100480 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100482 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500483 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100484 u32 k, j, n, incr;
485 ip46_address_t dst = prefixs[i].fp_addr;
486 f64 t[2];
487 n = count;
488 t[0] = vlib_time_now (vm);
489 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
490 prefixs[i].fp_len);
491
492 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100496 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100497 /*
498 * the CLI parsing stored table Ids, swap to FIB indicies
499 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700500 fi = fib_table_find (prefixs[i].fp_proto,
501 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100502
503 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 {
505 error =
506 clib_error_return (0, "Via table %d does not exist",
507 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100508 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500509 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100510 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511
512 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500513 .fp_len = prefixs[i].fp_len,
514 .fp_proto = prefixs[i].fp_proto,
515 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100516 };
517
Dave Barachd7cb1b52016-12-09 09:52:16 -0500518 if (is_del)
519 fib_table_entry_path_remove2 (fib_index,
520 &rpfx,
521 FIB_SOURCE_CLI, &rpaths[j]);
522 else
523 fib_table_entry_path_add2 (fib_index,
524 &rpfx,
525 FIB_SOURCE_CLI,
526 FIB_ENTRY_FLAG_NONE,
527 &rpaths[j]);
528 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100529
530 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500531 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100532 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500533 clib_host_to_net_u32 (incr +
534 clib_net_to_host_u32 (dst.
535 ip4.as_u32));
536 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100537 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500538 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 int bucket = (incr < 64 ? 0 : 1);
540 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500541 clib_host_to_net_u64 (incr +
542 clib_net_to_host_u64 (dst.ip6.as_u64
543 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100544
Dave Barachd7cb1b52016-12-09 09:52:16 -0500545 }
546 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100547 t[1] = vlib_time_now (vm);
548 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
550 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100551 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500552 {
553 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100554 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500555 }
556 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557
558
Dave Barachd7cb1b52016-12-09 09:52:16 -0500559done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100560 vec_free (dpos);
561 vec_free (prefixs);
562 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500563 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 return error;
565}
566
Neale Ranns15002542017-09-10 04:39:11 -0700567clib_error_t *
568vnet_ip_table_cmd (vlib_main_t * vm,
569 unformat_input_t * main_input,
570 vlib_cli_command_t * cmd, fib_protocol_t fproto)
571{
572 unformat_input_t _line_input, *line_input = &_line_input;
573 clib_error_t *error = NULL;
574 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700575 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700576
577 is_add = 1;
578 table_id = ~0;
579
580 /* Get a line of input. */
581 if (!unformat_user (main_input, unformat_line_input, line_input))
582 return 0;
583
584 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
585 {
586 if (unformat (line_input, "%d", &table_id))
587 ;
588 else if (unformat (line_input, "del"))
589 is_add = 0;
590 else if (unformat (line_input, "add"))
591 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700592 else if (unformat (line_input, "name %s", &name))
593 ;
Neale Ranns15002542017-09-10 04:39:11 -0700594 else
595 {
596 error = unformat_parse_error (line_input);
597 goto done;
598 }
599 }
600
601 if (~0 == table_id)
602 {
603 error = clib_error_return (0, "No table id");
604 goto done;
605 }
606 else if (0 == table_id)
607 {
608 error = clib_error_return (0, "Can't change the default table");
609 goto done;
610 }
611 else
612 {
613 if (is_add)
614 {
Neale Ranns2297af02017-09-12 09:45:04 -0700615 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700616 }
617 else
618 {
619 ip_table_delete (fproto, table_id, 0);
620 }
621 }
622
623done:
624 unformat_free (line_input);
625 return error;
626}
627
628clib_error_t *
629vnet_ip4_table_cmd (vlib_main_t * vm,
630 unformat_input_t * main_input, vlib_cli_command_t * cmd)
631{
632 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
633}
634
635clib_error_t *
636vnet_ip6_table_cmd (vlib_main_t * vm,
637 unformat_input_t * main_input, vlib_cli_command_t * cmd)
638{
639 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
640}
641
Dave Barachd7cb1b52016-12-09 09:52:16 -0500642/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
644 .path = "ip",
645 .short_help = "Internet protocol (IP) commands",
646};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500647/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Dave Barachd7cb1b52016-12-09 09:52:16 -0500649/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400650VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
651 .path = "ip6",
652 .short_help = "Internet protocol version 6 (IPv6) commands",
653};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500654/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400655
Dave Barachd7cb1b52016-12-09 09:52:16 -0500656/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
658 .path = "show ip",
659 .short_help = "Internet protocol (IP) show commands",
660};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500661/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662
Dave Barachd7cb1b52016-12-09 09:52:16 -0500663/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
665 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400666 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500668/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700670/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400671 * This command is used to add or delete IPv4 or IPv6 routes. All
672 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
673 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
674 * can be IPv4 or IPv6, but all must be of the same form in a single
675 * command. To display the current set of routes, use the commands
676 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
677 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700678 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400679 * Example of how to add a straight forward static route:
680 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
681 * Example of how to delete a straight forward static route:
682 * @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 -0700683 * Mainly for route add/del performance testing, one can add or delete
684 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400685 * @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 -0700686 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400687 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
688 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
689 * For unequal-cost multipath, specify the desired weights. This
690 * combination of weights results in 3/4 of the traffic following the
691 * second path, 1/4 following the first path:
692 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
693 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
694 * To add a route to a particular FIB table (VRF), use:
695 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700696 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400697/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698VLIB_CLI_COMMAND (ip_route_command, static) = {
699 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800700 .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400702 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703};
Neale Ranns15002542017-09-10 04:39:11 -0700704
705/* *INDENT-ON* */
706/*?
707 * This command is used to add or delete IPv4 Tables. All
708 * Tables must be explicitly added before that can be used. Creating a
709 * table will add both unicast and multicast FIBs
710 *
711 ?*/
712/* *INDENT-OFF* */
713VLIB_CLI_COMMAND (ip4_table_command, static) = {
714 .path = "ip table",
715 .short_help = "ip table [add|del] <table-id>",
716 .function = vnet_ip4_table_cmd,
717 .is_mp_safe = 1,
718};
719/* *INDENT-ON* */
720
721/* *INDENT-ON* */
722/*?
723 * This command is used to add or delete IPv4 Tables. All
724 * Tables must be explicitly added before that can be used. Creating a
725 * table will add both unicast and multicast FIBs
726 *
727 ?*/
728/* *INDENT-OFF* */
729VLIB_CLI_COMMAND (ip6_table_command, static) = {
730 .path = "ip6 table",
731 .short_help = "ip6 table [add|del] <table-id>",
732 .function = vnet_ip6_table_cmd,
733 .is_mp_safe = 1,
734};
735
736static clib_error_t *
737ip_table_bind_cmd (vlib_main_t * vm,
738 unformat_input_t * input,
739 vlib_cli_command_t * cmd,
740 fib_protocol_t fproto)
741{
742 vnet_main_t *vnm = vnet_get_main ();
743 clib_error_t *error = 0;
744 u32 sw_if_index, table_id;
745 int rv;
746
747 sw_if_index = ~0;
748
749 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
750 {
751 error = clib_error_return (0, "unknown interface `%U'",
752 format_unformat_error, input);
753 goto done;
754 }
755
756 if (unformat (input, "%d", &table_id))
757 ;
758 else
759 {
760 error = clib_error_return (0, "expected table id `%U'",
761 format_unformat_error, input);
762 goto done;
763 }
764
765 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
766
767 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
768 {
769 error = clib_error_return (0, "IP addresses are still present on %U",
770 format_vnet_sw_if_index_name,
771 vnet_get_main(),
772 sw_if_index);
773 }
774 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
775 {
776 error = clib_error_return (0, "no such table %d", table_id);
777 }
778 else if (0 != rv)
779 {
780 error = clib_error_return (0, "unknown error");
781 }
782
783 done:
784 return error;
785}
786
787static clib_error_t *
788ip4_table_bind_cmd (vlib_main_t * vm,
789 unformat_input_t * input,
790 vlib_cli_command_t * cmd)
791{
792 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
793}
794
795static clib_error_t *
796ip6_table_bind_cmd (vlib_main_t * vm,
797 unformat_input_t * input,
798 vlib_cli_command_t * cmd)
799{
800 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
801}
802
803/*?
804 * Place the indicated interface into the supplied IPv4 FIB table (also known
805 * as a VRF). If the FIB table does not exist, this command creates it. To
806 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
807 * FIB table will only be displayed if a route has been added to the table, or
808 * an IP Address is assigned to an interface in the table (which adds a route
809 * automatically).
810 *
811 * @note IP addresses added after setting the interface IP table are added to
812 * the indicated FIB table. If an IP address is added prior to changing the
813 * table then this is an error. The control plane must remove these addresses
814 * first and then change the table. VPP will not automatically move the
815 * addresses from the old to the new table as it does not know the validity
816 * of such a change.
817 *
818 * @cliexpar
819 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
820 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
821 ?*/
822/* *INDENT-OFF* */
823VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
824{
825 .path = "set interface ip table",
826 .function = ip4_table_bind_cmd,
827 .short_help = "set interface ip table <interface> <table-id>",
828};
829/* *INDENT-ON* */
830
831/*?
832 * Place the indicated interface into the supplied IPv6 FIB table (also known
833 * as a VRF). If the FIB table does not exist, this command creates it. To
834 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
835 * FIB table will only be displayed if a route has been added to the table, or
836 * an IP Address is assigned to an interface in the table (which adds a route
837 * automatically).
838 *
839 * @note IP addresses added after setting the interface IP table are added to
840 * the indicated FIB table. If an IP address is added prior to changing the
841 * table then this is an error. The control plane must remove these addresses
842 * first and then change the table. VPP will not automatically move the
843 * addresses from the old to the new table as it does not know the validity
844 * of such a change.
845 *
846 * @cliexpar
847 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
848 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
849 ?*/
850/* *INDENT-OFF* */
851VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
852{
853 .path = "set interface ip6 table",
854 .function = ip6_table_bind_cmd,
855 .short_help = "set interface ip6 table <interface> <table-id>"
856};
Billy McFall0683c9c2016-10-13 08:27:31 -0400857/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
Neale Ranns32e1c012016-11-22 17:07:28 +0000859clib_error_t *
860vnet_ip_mroute_cmd (vlib_main_t * vm,
861 unformat_input_t * main_input, vlib_cli_command_t * cmd)
862{
863 unformat_input_t _line_input, *line_input = &_line_input;
864 clib_error_t *error = NULL;
865 fib_route_path_t rpath;
866 u32 table_id, is_del;
867 vnet_main_t *vnm;
868 mfib_prefix_t pfx;
869 u32 fib_index;
870 mfib_itf_flags_t iflags = 0;
871 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800872 u32 gcount, scount, ss, gg, incr;
873 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000874
Neale Ranns52456fc2017-02-15 00:38:27 -0800875 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000876 vnm = vnet_get_main ();
877 is_del = 0;
878 table_id = 0;
879 memset (&pfx, 0, sizeof (pfx));
880 memset (&rpath, 0, sizeof (rpath));
881 rpath.frp_sw_if_index = ~0;
882
883 /* Get a line of input. */
884 if (!unformat_user (main_input, unformat_line_input, line_input))
885 return 0;
886
887 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
888 {
889 if (unformat (line_input, "table %d", &table_id))
890 ;
891 else if (unformat (line_input, "del"))
892 is_del = 1;
893 else if (unformat (line_input, "add"))
894 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800895 else if (unformat (line_input, "scount %d", &scount))
896 ;
897 else if (unformat (line_input, "gcount %d", &gcount))
898 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000899 else if (unformat (line_input, "%U %U",
900 unformat_ip4_address,
901 &pfx.fp_src_addr.ip4,
902 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
903 {
904 pfx.fp_proto = FIB_PROTOCOL_IP4;
905 pfx.fp_len = 64;
906 }
907 else if (unformat (line_input, "%U %U",
908 unformat_ip6_address,
909 &pfx.fp_src_addr.ip6,
910 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
911 {
912 pfx.fp_proto = FIB_PROTOCOL_IP6;
913 pfx.fp_len = 256;
914 }
915 else if (unformat (line_input, "%U/%d",
916 unformat_ip4_address,
917 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
918 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700919 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000920 pfx.fp_proto = FIB_PROTOCOL_IP4;
921 }
922 else if (unformat (line_input, "%U/%d",
923 unformat_ip6_address,
924 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
925 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700926 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000927 pfx.fp_proto = FIB_PROTOCOL_IP6;
928 }
929 else if (unformat (line_input, "%U",
930 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
931 {
932 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
933 pfx.fp_proto = FIB_PROTOCOL_IP4;
934 pfx.fp_len = 32;
935 }
936 else if (unformat (line_input, "%U",
937 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
938 {
939 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
940 pfx.fp_proto = FIB_PROTOCOL_IP6;
941 pfx.fp_len = 128;
942 }
943 else if (unformat (line_input, "via %U",
944 unformat_vnet_sw_interface, vnm,
945 &rpath.frp_sw_if_index))
946 {
947 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700948 }
949 else if (unformat (line_input, "via local"))
950 {
951 rpath.frp_sw_if_index = ~0;
952 rpath.frp_weight = 1;
953 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000954 }
955 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
956 ;
957 else if (unformat (line_input, "%U",
958 unformat_mfib_entry_flags, &eflags))
959 ;
960 else
961 {
962 error = unformat_parse_error (line_input);
963 goto done;
964 }
965 }
966
Neale Ranns32e1c012016-11-22 17:07:28 +0000967 if (~0 == table_id)
968 {
969 /*
970 * if no table_id is passed we will manipulate the default
971 */
972 fib_index = 0;
973 }
974 else
975 {
976 fib_index = mfib_table_find (pfx.fp_proto, table_id);
977
978 if (~0 == fib_index)
979 {
980 error = clib_error_return (0, "Nonexistent table id %d", table_id);
981 goto done;
982 }
983 }
984
Neale Ranns52456fc2017-02-15 00:38:27 -0800985 timet[0] = vlib_time_now (vm);
986
987 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000988 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800989 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000990 }
991 else
992 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800993 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000994 }
995
Neale Ranns52456fc2017-02-15 00:38:27 -0800996 for (ss = 0; ss < scount; ss++)
997 {
998 for (gg = 0; gg < gcount; gg++)
999 {
1000 if (is_del && 0 == rpath.frp_weight)
1001 {
1002 /* no path provided => route delete */
1003 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
1004 }
1005 else if (eflags)
1006 {
1007 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001008 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -08001009 }
1010 else
1011 {
1012 if (is_del)
1013 mfib_table_entry_path_remove (fib_index,
1014 &pfx, MFIB_SOURCE_CLI, &rpath);
1015 else
1016 mfib_table_entry_path_update (fib_index,
1017 &pfx, MFIB_SOURCE_CLI, &rpath,
1018 iflags);
1019 }
1020
1021 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1022 {
1023 pfx.fp_grp_addr.ip4.as_u32 =
1024 clib_host_to_net_u32 (incr +
1025 clib_net_to_host_u32 (pfx.
1026 fp_grp_addr.ip4.
1027 as_u32));
1028 }
1029 else
1030 {
1031 int bucket = (incr < 64 ? 0 : 1);
1032 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1033 clib_host_to_net_u64 (incr +
1034 clib_net_to_host_u64 (pfx.
1035 fp_grp_addr.ip6.as_u64
1036 [bucket]));
1037
1038 }
1039 }
1040 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1041 {
1042 pfx.fp_src_addr.ip4.as_u32 =
1043 clib_host_to_net_u32 (1 +
1044 clib_net_to_host_u32 (pfx.fp_src_addr.
1045 ip4.as_u32));
1046 }
1047 else
1048 {
1049 pfx.fp_src_addr.ip6.as_u64[1] =
1050 clib_host_to_net_u64 (1 +
1051 clib_net_to_host_u64 (pfx.fp_src_addr.
1052 ip6.as_u64[1]));
1053 }
1054 }
1055
1056 timet[1] = vlib_time_now (vm);
1057
1058 if (scount > 1 || gcount > 1)
1059 vlib_cli_output (vm, "%.6e routes/sec",
1060 (scount * gcount) / (timet[1] - timet[0]));
1061
Neale Ranns32e1c012016-11-22 17:07:28 +00001062done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001063 unformat_free (line_input);
1064
Neale Ranns32e1c012016-11-22 17:07:28 +00001065 return error;
1066}
1067
1068/*?
1069 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1070 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1071 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1072 * can be IPv4 or IPv6, but all must be of the same form in a single
1073 * command. To display the current set of routes, use the commands
1074 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1075 * The full set of support flags for interfaces and route is shown via;
1076 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1077 * respectively.
1078 * @cliexpar
1079 * Example of how to add a forwarding interface to a route (and create the
1080 * route if it does not exist)
1081 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1082 * Example of how to add an accepting interface to a route (and create the
1083 * route if it does not exist)
1084 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1085 * Example of changing the route's flags to send signals via the API
1086 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1087
1088 ?*/
1089/* *INDENT-OFF* */
1090VLIB_CLI_COMMAND (ip_mroute_command, static) =
1091{
1092 .path = "ip mroute",
1093 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1094 .function = vnet_ip_mroute_cmd,
1095 .is_mp_safe = 1,
1096};
1097/* *INDENT-ON* */
1098
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001099/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100 * The next two routines address a longstanding script hemorrhoid.
1101 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1102 * or dependent route-adds will simply fail.
1103 */
1104static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001105ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001106 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001108 vnet_main_t *vnm = vnet_get_main ();
1109 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110 int i;
1111 int resolved = 0;
1112 uword event_type;
1113 uword *event_data = 0;
1114
Dave Barachd7cb1b52016-12-09 09:52:16 -05001115 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116
1117 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001118 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001120 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121
1122 for (i = 0; i < retry_count; i++)
1123 {
1124 /* The interface may be down, etc. */
1125 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001126
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001128 return e;
1129
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 vlib_process_wait_for_event_or_clock (vm, 1.0);
1131 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001132 switch (event_type)
1133 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001134 case 1: /* resolved... */
1135 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1136 resolved = 1;
1137 goto done;
1138
1139 case ~0: /* timeout */
1140 break;
1141
1142 default:
1143 clib_warning ("unknown event_type %d", event_type);
1144 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001145 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001147
1148done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001149
1150 if (!resolved)
1151 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001152 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 return 0;
1154}
1155
1156static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001157ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1158 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001160 vnet_main_t *vnm = vnet_get_main ();
1161 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162 int i;
1163 int resolved = 0;
1164 uword event_type;
1165 uword *event_data = 0;
1166
Dave Barachd7cb1b52016-12-09 09:52:16 -05001167 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001168
1169 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001170 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001172 1 /* event */ , 0 /* data */ );
1173
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 for (i = 0; i < retry_count; i++)
1175 {
1176 /* The interface may be down, etc. */
1177 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001178
Ed Warnickecb9cada2015-12-08 15:45:58 -07001179 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001180 return e;
1181
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 vlib_process_wait_for_event_or_clock (vm, 1.0);
1183 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001184 switch (event_type)
1185 {
1186 case 1: /* resolved... */
1187 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1188 resolved = 1;
1189 goto done;
1190
1191 case ~0: /* timeout */
1192 break;
1193
1194 default:
1195 clib_warning ("unknown event_type %d", event_type);
1196 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001197 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001199
1200done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201
1202 vec_reset_length (event_data);
1203
1204 if (!resolved)
1205 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001206 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207 return 0;
1208}
1209
1210static clib_error_t *
1211probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001212 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001214 vnet_main_t *vnm = vnet_get_main ();
1215 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216 ip4_address_t a4;
1217 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001218 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219 u32 sw_if_index = ~0;
1220 int retry_count = 3;
1221 int is_ip4 = 1;
1222 int address_set = 0;
1223
1224 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001225 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226 return 0;
1227
Dave Barachd7cb1b52016-12-09 09:52:16 -05001228 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001230 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1231 &sw_if_index))
1232 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001234 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235
1236 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001237 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001238 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001239 {
1240 address_set++;
1241 is_ip4 = 0;
1242 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001244 {
1245 error = clib_error_return (0, "unknown input '%U'",
1246 format_unformat_error, line_input);
1247 goto done;
1248 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 }
1250
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001252 {
1253 error = clib_error_return (0, "Interface required, not set.");
1254 goto done;
1255 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001257 {
1258 error = clib_error_return (0, "ip address required, not set.");
1259 goto done;
1260 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001262 {
1263 error = clib_error_return (0, "Multiple ip addresses not supported.");
1264 goto done;
1265 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001266
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267 if (is_ip4)
1268 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001269 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1271
Billy McFalla9a20e72017-02-15 11:39:12 -05001272done:
1273 unformat_free (line_input);
1274
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275 return error;
1276}
1277
Billy McFall0683c9c2016-10-13 08:27:31 -04001278/*?
1279 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1280 * attempts IPv6 neighbor discovery depending on the supplied IP address
1281 * format.
1282 *
1283 * @note This command will not immediately affect the indicated FIB; it
1284 * is not suitable for use in establishing a FIB entry prior to adding
1285 * recursive FIB entries. As in: don't use it in a script to probe a
1286 * gateway prior to adding a default route. It won't work. Instead,
1287 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1288 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1289 *
1290 * @cliexpar
1291 * Example of probe for an IPv4 address:
1292 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1293?*/
1294/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1296 .path = "ip probe-neighbor",
1297 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001298 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001299 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300};
Billy McFall0683c9c2016-10-13 08:27:31 -04001301/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001302
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001303clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001304vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1305{
1306 u32 fib_index;
1307
1308 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1309 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1310 "invalid sw_if_index");
1311
1312 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1313 args->sw_if_index);
1314 if (args->is_add)
1315 {
1316 dpo_id_t proxy_dpo = DPO_INVALID;
1317 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1318 args->sw_if_index, &proxy_dpo);
1319 fib_table_entry_special_dpo_add (fib_index,
1320 &args->prefix,
1321 FIB_SOURCE_PROXY,
1322 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1323 dpo_reset (&proxy_dpo);
1324 }
1325 else
1326 {
1327 fib_table_entry_special_remove (fib_index, &args->prefix,
1328 FIB_SOURCE_PROXY);
1329 }
1330 return 0;
1331}
1332
1333u8
1334ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1335{
1336 u32 fib_index;
1337 fib_node_index_t fei;
1338 const dpo_id_t *dpo;
1339 l3_proxy_dpo_t *l3p;
1340 load_balance_t *lb0;
1341
1342 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1343 sw_if_index);
1344 if (fib_index == ~0)
1345 return 0;
1346
1347 fei = fib_table_lookup_exact_match (fib_index, pfx);
1348 if (fei == FIB_NODE_INDEX_INVALID)
1349 return 0;
1350
1351 dpo = fib_entry_contribute_ip_forwarding (fei);
1352 lb0 = load_balance_get (dpo->dpoi_index);
1353 dpo = load_balance_get_bucket_i (lb0, 0);
1354 if (dpo->dpoi_type != DPO_L3_PROXY)
1355 return 0;
1356
1357 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1358 return (l3p->l3p_sw_if_index == sw_if_index);
1359}
1360
1361clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001362ip_container_cmd (vlib_main_t * vm,
1363 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1364{
1365 unformat_input_t _line_input, *line_input = &_line_input;
1366 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001367 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001368 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001369 u32 sw_if_index;
1370
1371 vnm = vnet_get_main ();
1372 is_del = 0;
1373 sw_if_index = ~0;
Florin Corase1682c42017-11-07 17:06:36 -08001374 memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001375
1376 /* Get a line of input. */
1377 if (!unformat_user (main_input, unformat_line_input, line_input))
1378 return 0;
1379
1380 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1381 {
1382 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1383 {
1384 pfx.fp_proto = FIB_PROTOCOL_IP4;
1385 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001386 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001387 }
1388 else if (unformat (line_input, "%U",
1389 unformat_ip6_address, &pfx.fp_addr.ip6))
1390 {
1391 pfx.fp_proto = FIB_PROTOCOL_IP6;
1392 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001393 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001394 }
1395 else if (unformat (line_input, "%U",
1396 unformat_vnet_sw_interface, vnm, &sw_if_index))
1397 ;
1398 else if (unformat (line_input, "del"))
1399 is_del = 1;
1400 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301401 {
1402 unformat_free (line_input);
1403 return (clib_error_return (0, "unknown input '%U'",
1404 format_unformat_error, line_input));
1405 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001406 }
1407
Florin Corase1682c42017-11-07 17:06:36 -08001408 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001409 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301410 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001411 vlib_cli_output (vm, "interface and address must be set");
1412 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001413 }
1414
Florin Coras595992c2017-11-06 17:17:08 -08001415 vnet_ip_container_proxy_args_t args = {
1416 .prefix = pfx,
1417 .sw_if_index = sw_if_index,
1418 .is_add = !is_del,
1419 };
1420 vnet_ip_container_proxy_add_del (&args);
1421 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001422 return (NULL);
1423}
1424
1425/* *INDENT-OFF* */
1426VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1427 .path = "ip container",
1428 .function = ip_container_cmd,
1429 .short_help = "ip container <address> <interface>",
1430 .is_mp_safe = 1,
1431};
1432/* *INDENT-ON* */
1433
Florin Coras595992c2017-11-06 17:17:08 -08001434clib_error_t *
1435show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1436 vlib_cli_command_t * cmd)
1437{
1438 unformat_input_t _line_input, *line_input = &_line_input;
1439 vnet_main_t *vnm = vnet_get_main ();
1440 fib_prefix_t pfx;
1441 u32 sw_if_index = ~0;
1442 u8 has_proxy;
1443
1444 if (!unformat_user (main_input, unformat_line_input, line_input))
1445 return 0;
1446 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1447 {
1448 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1449 {
1450 pfx.fp_proto = FIB_PROTOCOL_IP4;
1451 pfx.fp_len = 32;
1452 }
1453 else if (unformat (line_input, "%U",
1454 unformat_ip6_address, &pfx.fp_addr.ip6))
1455 {
1456 pfx.fp_proto = FIB_PROTOCOL_IP6;
1457 pfx.fp_len = 128;
1458 }
1459 else if (unformat (line_input, "%U",
1460 unformat_vnet_sw_interface, vnm, &sw_if_index))
1461 ;
1462 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301463 {
1464 unformat_free (line_input);
1465 return (clib_error_return (0, "unknown input '%U'",
1466 format_unformat_error, line_input));
1467 }
Florin Coras595992c2017-11-06 17:17:08 -08001468 }
1469
1470 if (~0 == sw_if_index)
1471 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301472 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001473 vlib_cli_output (vm, "no interface");
1474 return (clib_error_return (0, "no interface"));
1475 }
1476
1477 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1478 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1479
1480 unformat_free (line_input);
1481 return 0;
1482}
1483
1484/* *INDENT-OFF* */
1485VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1486 .path = "show ip container",
1487 .function = show_ip_container_cmd_fn,
1488 .short_help = "show ip container <address> <interface>",
1489 .is_mp_safe = 1,
1490};
1491/* *INDENT-ON* */
1492
Dave Barachd7cb1b52016-12-09 09:52:16 -05001493/*
1494 * fd.io coding-style-patch-verification: ON
1495 *
1496 * Local Variables:
1497 * eval: (c-set-style "gnu")
1498 * End:
1499 */