blob: e0d1ac06dfbcfe259243997c602d0198a662bdc0 [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 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500256format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500261 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
263 switch (adj->lookup_next_index)
264 {
265 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400266 case IP_LOOKUP_NEXT_MCAST:
267 s =
268 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 break;
270
271 default:
272 break;
273 }
274
275 return s;
276}
277
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278static uword
279unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100281 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
282 fib_protocol_t fp = va_arg (*args, int);
283 dpo_proto_t proto;
284
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
287 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500288 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500292 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100293 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500294 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100295 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100297 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500298 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100300 {
301 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500304 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100305 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100307 }
308
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 dpo_set (dpo, DPO_CLASSIFY, proto,
310 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100311 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 else
313 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100314
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 return 1;
316}
317
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319 .as_u64 = {
320 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321};
322
Neale Ranns039cbfe2018-02-27 03:45:38 -0800323static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100324vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500325 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800328 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100329 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800330 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500332 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100334 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
336 is_del = 0;
337 table_id = 0;
338 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500342 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 return 0;
344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
346 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349 if (unformat (line_input, "table %d", &table_id))
350 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 else if (unformat (line_input, "count %f", &count))
352 ;
353
354 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
356 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800357 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 vec_add1 (prefixs, pfx);
359 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
362 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800363 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 vec_add1 (prefixs, pfx);
365 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800367 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000369 vec_add1 (rpaths, rpath);
370 }
371 else if (vec_len (prefixs) > 0 &&
372 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100375 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 }
pragash352829f2017-08-17 22:53:24 -0400377 else if (unformat (line_input, "del"))
378 is_del = 1;
379 else if (unformat (line_input, "add"))
380 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 error = unformat_parse_error (line_input);
384 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500387
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100388 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500389 {
390 error =
391 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 goto done;
393 }
394
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 goto done;
399 }
400
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100401 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500402 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100403 /*
404 * if no table_id is passed we will manipulate the default
405 */
406 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500407 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100408 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700410 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100412 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413 {
414 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100415 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500416 }
417 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100419 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500420 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100421 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500422 {
423 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
424 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100425 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500426 {
427 fib_table_entry_special_dpo_add (fib_index,
428 &prefixs[i],
429 FIB_SOURCE_CLI,
430 FIB_ENTRY_FLAG_EXCLUSIVE,
431 &dpos[0]);
432 dpo_reset (&dpos[0]);
433 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435 {
436 error =
437 clib_error_return (0,
438 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100439 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500440 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100441 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500442 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100443 u32 k, j, n, incr;
444 ip46_address_t dst = prefixs[i].fp_addr;
445 f64 t[2];
446 n = count;
447 t[0] = vlib_time_now (vm);
448 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
449 prefixs[i].fp_len);
450
451 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500452 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100455 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456 /*
457 * the CLI parsing stored table Ids, swap to FIB indicies
458 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700459 fi = fib_table_find (prefixs[i].fp_proto,
460 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100461
462 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463 {
464 error =
465 clib_error_return (0, "Via table %d does not exist",
466 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100467 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100469 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100470
471 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 .fp_len = prefixs[i].fp_len,
473 .fp_proto = prefixs[i].fp_proto,
474 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100475 };
476
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 if (is_del)
478 fib_table_entry_path_remove2 (fib_index,
479 &rpfx,
480 FIB_SOURCE_CLI, &rpaths[j]);
481 else
482 fib_table_entry_path_add2 (fib_index,
483 &rpfx,
484 FIB_SOURCE_CLI,
485 FIB_ENTRY_FLAG_NONE,
486 &rpaths[j]);
487 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488
489 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100491 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 clib_host_to_net_u32 (incr +
493 clib_net_to_host_u32 (dst.
494 ip4.as_u32));
495 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100496 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 int bucket = (incr < 64 ? 0 : 1);
499 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500 clib_host_to_net_u64 (incr +
501 clib_net_to_host_u64 (dst.ip6.as_u64
502 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100503
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 }
505 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100506 t[1] = vlib_time_now (vm);
507 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500508 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
509 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100510 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500511 {
512 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 }
515 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100516
517
Dave Barachd7cb1b52016-12-09 09:52:16 -0500518done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 vec_free (dpos);
520 vec_free (prefixs);
521 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500522 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523 return error;
524}
525
Neale Ranns15002542017-09-10 04:39:11 -0700526clib_error_t *
527vnet_ip_table_cmd (vlib_main_t * vm,
528 unformat_input_t * main_input,
529 vlib_cli_command_t * cmd, fib_protocol_t fproto)
530{
531 unformat_input_t _line_input, *line_input = &_line_input;
532 clib_error_t *error = NULL;
533 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700534 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700535
536 is_add = 1;
537 table_id = ~0;
538
539 /* Get a line of input. */
540 if (!unformat_user (main_input, unformat_line_input, line_input))
541 return 0;
542
543 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
544 {
545 if (unformat (line_input, "%d", &table_id))
546 ;
547 else if (unformat (line_input, "del"))
548 is_add = 0;
549 else if (unformat (line_input, "add"))
550 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700551 else if (unformat (line_input, "name %s", &name))
552 ;
Neale Ranns15002542017-09-10 04:39:11 -0700553 else
554 {
555 error = unformat_parse_error (line_input);
556 goto done;
557 }
558 }
559
560 if (~0 == table_id)
561 {
562 error = clib_error_return (0, "No table id");
563 goto done;
564 }
565 else if (0 == table_id)
566 {
567 error = clib_error_return (0, "Can't change the default table");
568 goto done;
569 }
570 else
571 {
572 if (is_add)
573 {
Neale Ranns2297af02017-09-12 09:45:04 -0700574 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700575 }
576 else
577 {
578 ip_table_delete (fproto, table_id, 0);
579 }
580 }
581
582done:
583 unformat_free (line_input);
584 return error;
585}
586
587clib_error_t *
588vnet_ip4_table_cmd (vlib_main_t * vm,
589 unformat_input_t * main_input, vlib_cli_command_t * cmd)
590{
591 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
592}
593
594clib_error_t *
595vnet_ip6_table_cmd (vlib_main_t * vm,
596 unformat_input_t * main_input, vlib_cli_command_t * cmd)
597{
598 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
599}
600
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
603 .path = "ip",
604 .short_help = "Internet protocol (IP) commands",
605};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400609VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
610 .path = "ip6",
611 .short_help = "Internet protocol version 6 (IPv6) commands",
612};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500613/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400614
Dave Barachd7cb1b52016-12-09 09:52:16 -0500615/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
617 .path = "show ip",
618 .short_help = "Internet protocol (IP) show commands",
619};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500620/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
Dave Barachd7cb1b52016-12-09 09:52:16 -0500622/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
624 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400625 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500627/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700629/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400630 * This command is used to add or delete IPv4 or IPv6 routes. All
631 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
632 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
633 * can be IPv4 or IPv6, but all must be of the same form in a single
634 * command. To display the current set of routes, use the commands
635 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
636 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700637 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400638 * Example of how to add a straight forward static route:
639 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
640 * Example of how to delete a straight forward static route:
641 * @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 -0700642 * Mainly for route add/del performance testing, one can add or delete
643 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400644 * @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 -0700645 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400646 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
647 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
648 * For unequal-cost multipath, specify the desired weights. This
649 * combination of weights results in 3/4 of the traffic following the
650 * second path, 1/4 following the first path:
651 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
652 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
653 * To add a route to a particular FIB table (VRF), use:
654 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700655 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400656/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657VLIB_CLI_COMMAND (ip_route_command, static) = {
658 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800659 .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 -0700660 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400661 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662};
Neale Ranns15002542017-09-10 04:39:11 -0700663
664/* *INDENT-ON* */
665/*?
666 * This command is used to add or delete IPv4 Tables. All
667 * Tables must be explicitly added before that can be used. Creating a
668 * table will add both unicast and multicast FIBs
669 *
670 ?*/
671/* *INDENT-OFF* */
672VLIB_CLI_COMMAND (ip4_table_command, static) = {
673 .path = "ip table",
674 .short_help = "ip table [add|del] <table-id>",
675 .function = vnet_ip4_table_cmd,
676 .is_mp_safe = 1,
677};
678/* *INDENT-ON* */
679
680/* *INDENT-ON* */
681/*?
682 * This command is used to add or delete IPv4 Tables. All
683 * Tables must be explicitly added before that can be used. Creating a
684 * table will add both unicast and multicast FIBs
685 *
686 ?*/
687/* *INDENT-OFF* */
688VLIB_CLI_COMMAND (ip6_table_command, static) = {
689 .path = "ip6 table",
690 .short_help = "ip6 table [add|del] <table-id>",
691 .function = vnet_ip6_table_cmd,
692 .is_mp_safe = 1,
693};
694
695static clib_error_t *
696ip_table_bind_cmd (vlib_main_t * vm,
697 unformat_input_t * input,
698 vlib_cli_command_t * cmd,
699 fib_protocol_t fproto)
700{
701 vnet_main_t *vnm = vnet_get_main ();
702 clib_error_t *error = 0;
703 u32 sw_if_index, table_id;
704 int rv;
705
706 sw_if_index = ~0;
707
708 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
709 {
710 error = clib_error_return (0, "unknown interface `%U'",
711 format_unformat_error, input);
712 goto done;
713 }
714
715 if (unformat (input, "%d", &table_id))
716 ;
717 else
718 {
719 error = clib_error_return (0, "expected table id `%U'",
720 format_unformat_error, input);
721 goto done;
722 }
723
724 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
725
726 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
727 {
728 error = clib_error_return (0, "IP addresses are still present on %U",
729 format_vnet_sw_if_index_name,
730 vnet_get_main(),
731 sw_if_index);
732 }
733 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
734 {
735 error = clib_error_return (0, "no such table %d", table_id);
736 }
737 else if (0 != rv)
738 {
739 error = clib_error_return (0, "unknown error");
740 }
741
742 done:
743 return error;
744}
745
746static clib_error_t *
747ip4_table_bind_cmd (vlib_main_t * vm,
748 unformat_input_t * input,
749 vlib_cli_command_t * cmd)
750{
751 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
752}
753
754static clib_error_t *
755ip6_table_bind_cmd (vlib_main_t * vm,
756 unformat_input_t * input,
757 vlib_cli_command_t * cmd)
758{
759 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
760}
761
762/*?
763 * Place the indicated interface into the supplied IPv4 FIB table (also known
764 * as a VRF). If the FIB table does not exist, this command creates it. To
765 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
766 * FIB table will only be displayed if a route has been added to the table, or
767 * an IP Address is assigned to an interface in the table (which adds a route
768 * automatically).
769 *
770 * @note IP addresses added after setting the interface IP table are added to
771 * the indicated FIB table. If an IP address is added prior to changing the
772 * table then this is an error. The control plane must remove these addresses
773 * first and then change the table. VPP will not automatically move the
774 * addresses from the old to the new table as it does not know the validity
775 * of such a change.
776 *
777 * @cliexpar
778 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
779 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
780 ?*/
781/* *INDENT-OFF* */
782VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
783{
784 .path = "set interface ip table",
785 .function = ip4_table_bind_cmd,
786 .short_help = "set interface ip table <interface> <table-id>",
787};
788/* *INDENT-ON* */
789
790/*?
791 * Place the indicated interface into the supplied IPv6 FIB table (also known
792 * as a VRF). If the FIB table does not exist, this command creates it. To
793 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
794 * FIB table will only be displayed if a route has been added to the table, or
795 * an IP Address is assigned to an interface in the table (which adds a route
796 * automatically).
797 *
798 * @note IP addresses added after setting the interface IP table are added to
799 * the indicated FIB table. If an IP address is added prior to changing the
800 * table then this is an error. The control plane must remove these addresses
801 * first and then change the table. VPP will not automatically move the
802 * addresses from the old to the new table as it does not know the validity
803 * of such a change.
804 *
805 * @cliexpar
806 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
807 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
808 ?*/
809/* *INDENT-OFF* */
810VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
811{
812 .path = "set interface ip6 table",
813 .function = ip6_table_bind_cmd,
814 .short_help = "set interface ip6 table <interface> <table-id>"
815};
Billy McFall0683c9c2016-10-13 08:27:31 -0400816/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817
Neale Ranns32e1c012016-11-22 17:07:28 +0000818clib_error_t *
819vnet_ip_mroute_cmd (vlib_main_t * vm,
820 unformat_input_t * main_input, vlib_cli_command_t * cmd)
821{
822 unformat_input_t _line_input, *line_input = &_line_input;
823 clib_error_t *error = NULL;
824 fib_route_path_t rpath;
825 u32 table_id, is_del;
826 vnet_main_t *vnm;
827 mfib_prefix_t pfx;
828 u32 fib_index;
829 mfib_itf_flags_t iflags = 0;
830 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800831 u32 gcount, scount, ss, gg, incr;
832 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000833
Neale Ranns52456fc2017-02-15 00:38:27 -0800834 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000835 vnm = vnet_get_main ();
836 is_del = 0;
837 table_id = 0;
838 memset (&pfx, 0, sizeof (pfx));
839 memset (&rpath, 0, sizeof (rpath));
840 rpath.frp_sw_if_index = ~0;
841
842 /* Get a line of input. */
843 if (!unformat_user (main_input, unformat_line_input, line_input))
844 return 0;
845
846 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
847 {
848 if (unformat (line_input, "table %d", &table_id))
849 ;
850 else if (unformat (line_input, "del"))
851 is_del = 1;
852 else if (unformat (line_input, "add"))
853 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800854 else if (unformat (line_input, "scount %d", &scount))
855 ;
856 else if (unformat (line_input, "gcount %d", &gcount))
857 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000858 else if (unformat (line_input, "%U %U",
859 unformat_ip4_address,
860 &pfx.fp_src_addr.ip4,
861 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
862 {
863 pfx.fp_proto = FIB_PROTOCOL_IP4;
864 pfx.fp_len = 64;
865 }
866 else if (unformat (line_input, "%U %U",
867 unformat_ip6_address,
868 &pfx.fp_src_addr.ip6,
869 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
870 {
871 pfx.fp_proto = FIB_PROTOCOL_IP6;
872 pfx.fp_len = 256;
873 }
874 else if (unformat (line_input, "%U/%d",
875 unformat_ip4_address,
876 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
877 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700878 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000879 pfx.fp_proto = FIB_PROTOCOL_IP4;
880 }
881 else if (unformat (line_input, "%U/%d",
882 unformat_ip6_address,
883 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
884 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700885 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000886 pfx.fp_proto = FIB_PROTOCOL_IP6;
887 }
888 else if (unformat (line_input, "%U",
889 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
890 {
891 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
892 pfx.fp_proto = FIB_PROTOCOL_IP4;
893 pfx.fp_len = 32;
894 }
895 else if (unformat (line_input, "%U",
896 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
897 {
898 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
899 pfx.fp_proto = FIB_PROTOCOL_IP6;
900 pfx.fp_len = 128;
901 }
Neale Rannse821ab12017-06-01 07:45:05 -0700902 else if (unformat (line_input, "via %U %U",
903 unformat_ip4_address, &rpath.frp_addr.ip4,
Neale Ranns32e1c012016-11-22 17:07:28 +0000904 unformat_vnet_sw_interface, vnm,
905 &rpath.frp_sw_if_index))
906 {
907 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700908 }
Neale Rannse821ab12017-06-01 07:45:05 -0700909 else if (unformat (line_input, "via %U %U",
910 unformat_ip6_address, &rpath.frp_addr.ip6,
911 unformat_vnet_sw_interface, vnm,
912 &rpath.frp_sw_if_index))
913 {
914 rpath.frp_weight = 1;
915 }
916 else if (unformat (line_input, "via %U",
917 unformat_vnet_sw_interface, vnm,
918 &rpath.frp_sw_if_index))
919 {
920 memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
921 rpath.frp_weight = 1;
922 }
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700923 else if (unformat (line_input, "via local"))
924 {
Neale Rannse821ab12017-06-01 07:45:05 -0700925 memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700926 rpath.frp_sw_if_index = ~0;
927 rpath.frp_weight = 1;
928 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400929 /*
930 * set the path proto appropriately for the prefix
931 */
932 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns32e1c012016-11-22 17:07:28 +0000933 }
934 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
935 ;
936 else if (unformat (line_input, "%U",
937 unformat_mfib_entry_flags, &eflags))
938 ;
939 else
940 {
941 error = unformat_parse_error (line_input);
942 goto done;
943 }
944 }
945
Neale Ranns32e1c012016-11-22 17:07:28 +0000946 if (~0 == table_id)
947 {
948 /*
949 * if no table_id is passed we will manipulate the default
950 */
951 fib_index = 0;
952 }
953 else
954 {
955 fib_index = mfib_table_find (pfx.fp_proto, table_id);
956
957 if (~0 == fib_index)
958 {
959 error = clib_error_return (0, "Nonexistent table id %d", table_id);
960 goto done;
961 }
962 }
963
Neale Ranns52456fc2017-02-15 00:38:27 -0800964 timet[0] = vlib_time_now (vm);
965
966 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000967 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800968 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000969 }
970 else
971 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800972 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000973 }
974
Neale Ranns52456fc2017-02-15 00:38:27 -0800975 for (ss = 0; ss < scount; ss++)
976 {
977 for (gg = 0; gg < gcount; gg++)
978 {
979 if (is_del && 0 == rpath.frp_weight)
980 {
981 /* no path provided => route delete */
982 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
983 }
984 else if (eflags)
985 {
986 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800987 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800988 }
989 else
990 {
991 if (is_del)
992 mfib_table_entry_path_remove (fib_index,
993 &pfx, MFIB_SOURCE_CLI, &rpath);
994 else
995 mfib_table_entry_path_update (fib_index,
996 &pfx, MFIB_SOURCE_CLI, &rpath,
997 iflags);
998 }
999
1000 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1001 {
1002 pfx.fp_grp_addr.ip4.as_u32 =
1003 clib_host_to_net_u32 (incr +
1004 clib_net_to_host_u32 (pfx.
1005 fp_grp_addr.ip4.
1006 as_u32));
1007 }
1008 else
1009 {
1010 int bucket = (incr < 64 ? 0 : 1);
1011 pfx.fp_grp_addr.ip6.as_u64[bucket] =
1012 clib_host_to_net_u64 (incr +
1013 clib_net_to_host_u64 (pfx.
1014 fp_grp_addr.ip6.as_u64
1015 [bucket]));
1016
1017 }
1018 }
1019 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1020 {
1021 pfx.fp_src_addr.ip4.as_u32 =
1022 clib_host_to_net_u32 (1 +
1023 clib_net_to_host_u32 (pfx.fp_src_addr.
1024 ip4.as_u32));
1025 }
1026 else
1027 {
1028 pfx.fp_src_addr.ip6.as_u64[1] =
1029 clib_host_to_net_u64 (1 +
1030 clib_net_to_host_u64 (pfx.fp_src_addr.
1031 ip6.as_u64[1]));
1032 }
1033 }
1034
1035 timet[1] = vlib_time_now (vm);
1036
1037 if (scount > 1 || gcount > 1)
1038 vlib_cli_output (vm, "%.6e routes/sec",
1039 (scount * gcount) / (timet[1] - timet[0]));
1040
Neale Ranns32e1c012016-11-22 17:07:28 +00001041done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001042 unformat_free (line_input);
1043
Neale Ranns32e1c012016-11-22 17:07:28 +00001044 return error;
1045}
1046
1047/*?
1048 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1049 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1050 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1051 * can be IPv4 or IPv6, but all must be of the same form in a single
1052 * command. To display the current set of routes, use the commands
1053 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1054 * The full set of support flags for interfaces and route is shown via;
1055 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1056 * respectively.
1057 * @cliexpar
1058 * Example of how to add a forwarding interface to a route (and create the
1059 * route if it does not exist)
1060 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1061 * Example of how to add an accepting interface to a route (and create the
1062 * route if it does not exist)
1063 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1064 * Example of changing the route's flags to send signals via the API
1065 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1066
1067 ?*/
1068/* *INDENT-OFF* */
1069VLIB_CLI_COMMAND (ip_mroute_command, static) =
1070{
1071 .path = "ip mroute",
1072 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1073 .function = vnet_ip_mroute_cmd,
1074 .is_mp_safe = 1,
1075};
1076/* *INDENT-ON* */
1077
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001078/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 * The next two routines address a longstanding script hemorrhoid.
1080 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1081 * or dependent route-adds will simply fail.
1082 */
1083static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001084ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001085 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001087 vnet_main_t *vnm = vnet_get_main ();
1088 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 int i;
1090 int resolved = 0;
1091 uword event_type;
1092 uword *event_data = 0;
1093
Dave Barachd7cb1b52016-12-09 09:52:16 -05001094 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001095
1096 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001097 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001099 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
1101 for (i = 0; i < retry_count; i++)
1102 {
1103 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001104 e = ip6_probe_neighbor (vm, a, sw_if_index, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001105
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001107 return e;
1108
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109 vlib_process_wait_for_event_or_clock (vm, 1.0);
1110 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001111 switch (event_type)
1112 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001113 case 1: /* resolved... */
1114 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1115 resolved = 1;
1116 goto done;
1117
1118 case ~0: /* timeout */
1119 break;
1120
1121 default:
1122 clib_warning ("unknown event_type %d", event_type);
1123 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001124 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001126
1127done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128
1129 if (!resolved)
1130 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001131 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132 return 0;
1133}
1134
1135static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001136ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1137 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001139 vnet_main_t *vnm = vnet_get_main ();
1140 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 int i;
1142 int resolved = 0;
1143 uword event_type;
1144 uword *event_data = 0;
1145
Dave Barachd7cb1b52016-12-09 09:52:16 -05001146 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147
1148 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001149 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001151 1 /* event */ , 0 /* data */ );
1152
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 for (i = 0; i < retry_count; i++)
1154 {
1155 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001156 e = ip4_probe_neighbor (vm, a, sw_if_index, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001157
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001159 return e;
1160
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161 vlib_process_wait_for_event_or_clock (vm, 1.0);
1162 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001163 switch (event_type)
1164 {
1165 case 1: /* resolved... */
1166 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1167 resolved = 1;
1168 goto done;
1169
1170 case ~0: /* timeout */
1171 break;
1172
1173 default:
1174 clib_warning ("unknown event_type %d", event_type);
1175 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001176 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001178
1179done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180
1181 vec_reset_length (event_data);
1182
1183 if (!resolved)
1184 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001185 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186 return 0;
1187}
1188
1189static clib_error_t *
1190probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001191 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001193 vnet_main_t *vnm = vnet_get_main ();
1194 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195 ip4_address_t a4;
1196 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001197 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 u32 sw_if_index = ~0;
1199 int retry_count = 3;
1200 int is_ip4 = 1;
1201 int address_set = 0;
1202
1203 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001204 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 return 0;
1206
Dave Barachd7cb1b52016-12-09 09:52:16 -05001207 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001208 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001209 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1210 &sw_if_index))
1211 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001213 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214
1215 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001216 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001218 {
1219 address_set++;
1220 is_ip4 = 0;
1221 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001223 {
1224 error = clib_error_return (0, "unknown input '%U'",
1225 format_unformat_error, line_input);
1226 goto done;
1227 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 }
1229
Ed Warnickecb9cada2015-12-08 15:45:58 -07001230 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001231 {
1232 error = clib_error_return (0, "Interface required, not set.");
1233 goto done;
1234 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001236 {
1237 error = clib_error_return (0, "ip address required, not set.");
1238 goto done;
1239 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001241 {
1242 error = clib_error_return (0, "Multiple ip addresses not supported.");
1243 goto done;
1244 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001245
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 if (is_ip4)
1247 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001248 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1250
Billy McFalla9a20e72017-02-15 11:39:12 -05001251done:
1252 unformat_free (line_input);
1253
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254 return error;
1255}
1256
Billy McFall0683c9c2016-10-13 08:27:31 -04001257/*?
1258 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1259 * attempts IPv6 neighbor discovery depending on the supplied IP address
1260 * format.
1261 *
1262 * @note This command will not immediately affect the indicated FIB; it
1263 * is not suitable for use in establishing a FIB entry prior to adding
1264 * recursive FIB entries. As in: don't use it in a script to probe a
1265 * gateway prior to adding a default route. It won't work. Instead,
1266 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1267 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1268 *
1269 * @cliexpar
1270 * Example of probe for an IPv4 address:
1271 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1272?*/
1273/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1275 .path = "ip probe-neighbor",
1276 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001277 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001278 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279};
Billy McFall0683c9c2016-10-13 08:27:31 -04001280/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001281
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001282clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001283vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1284{
1285 u32 fib_index;
1286
1287 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1288 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1289 "invalid sw_if_index");
1290
1291 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1292 args->sw_if_index);
1293 if (args->is_add)
1294 {
1295 dpo_id_t proxy_dpo = DPO_INVALID;
1296 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1297 args->sw_if_index, &proxy_dpo);
1298 fib_table_entry_special_dpo_add (fib_index,
1299 &args->prefix,
1300 FIB_SOURCE_PROXY,
1301 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1302 dpo_reset (&proxy_dpo);
1303 }
1304 else
1305 {
1306 fib_table_entry_special_remove (fib_index, &args->prefix,
1307 FIB_SOURCE_PROXY);
1308 }
1309 return 0;
1310}
1311
1312u8
1313ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1314{
1315 u32 fib_index;
1316 fib_node_index_t fei;
1317 const dpo_id_t *dpo;
1318 l3_proxy_dpo_t *l3p;
1319 load_balance_t *lb0;
1320
1321 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1322 sw_if_index);
1323 if (fib_index == ~0)
1324 return 0;
1325
1326 fei = fib_table_lookup_exact_match (fib_index, pfx);
1327 if (fei == FIB_NODE_INDEX_INVALID)
1328 return 0;
1329
1330 dpo = fib_entry_contribute_ip_forwarding (fei);
1331 lb0 = load_balance_get (dpo->dpoi_index);
1332 dpo = load_balance_get_bucket_i (lb0, 0);
1333 if (dpo->dpoi_type != DPO_L3_PROXY)
1334 return 0;
1335
1336 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1337 return (l3p->l3p_sw_if_index == sw_if_index);
1338}
1339
1340clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001341ip_container_cmd (vlib_main_t * vm,
1342 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1343{
1344 unformat_input_t _line_input, *line_input = &_line_input;
1345 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001346 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001347 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001348 u32 sw_if_index;
1349
1350 vnm = vnet_get_main ();
1351 is_del = 0;
1352 sw_if_index = ~0;
Florin Corase1682c42017-11-07 17:06:36 -08001353 memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001354
1355 /* Get a line of input. */
1356 if (!unformat_user (main_input, unformat_line_input, line_input))
1357 return 0;
1358
1359 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1360 {
1361 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1362 {
1363 pfx.fp_proto = FIB_PROTOCOL_IP4;
1364 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001365 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001366 }
1367 else if (unformat (line_input, "%U",
1368 unformat_ip6_address, &pfx.fp_addr.ip6))
1369 {
1370 pfx.fp_proto = FIB_PROTOCOL_IP6;
1371 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001372 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001373 }
1374 else if (unformat (line_input, "%U",
1375 unformat_vnet_sw_interface, vnm, &sw_if_index))
1376 ;
1377 else if (unformat (line_input, "del"))
1378 is_del = 1;
1379 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301380 {
1381 unformat_free (line_input);
1382 return (clib_error_return (0, "unknown input '%U'",
1383 format_unformat_error, line_input));
1384 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001385 }
1386
Florin Corase1682c42017-11-07 17:06:36 -08001387 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001388 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301389 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001390 vlib_cli_output (vm, "interface and address must be set");
1391 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001392 }
1393
Florin Coras595992c2017-11-06 17:17:08 -08001394 vnet_ip_container_proxy_args_t args = {
1395 .prefix = pfx,
1396 .sw_if_index = sw_if_index,
1397 .is_add = !is_del,
1398 };
1399 vnet_ip_container_proxy_add_del (&args);
1400 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001401 return (NULL);
1402}
1403
1404/* *INDENT-OFF* */
1405VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1406 .path = "ip container",
1407 .function = ip_container_cmd,
1408 .short_help = "ip container <address> <interface>",
1409 .is_mp_safe = 1,
1410};
1411/* *INDENT-ON* */
1412
Florin Coras595992c2017-11-06 17:17:08 -08001413clib_error_t *
1414show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1415 vlib_cli_command_t * cmd)
1416{
1417 unformat_input_t _line_input, *line_input = &_line_input;
1418 vnet_main_t *vnm = vnet_get_main ();
1419 fib_prefix_t pfx;
1420 u32 sw_if_index = ~0;
1421 u8 has_proxy;
1422
1423 if (!unformat_user (main_input, unformat_line_input, line_input))
1424 return 0;
1425 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1426 {
1427 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1428 {
1429 pfx.fp_proto = FIB_PROTOCOL_IP4;
1430 pfx.fp_len = 32;
1431 }
1432 else if (unformat (line_input, "%U",
1433 unformat_ip6_address, &pfx.fp_addr.ip6))
1434 {
1435 pfx.fp_proto = FIB_PROTOCOL_IP6;
1436 pfx.fp_len = 128;
1437 }
1438 else if (unformat (line_input, "%U",
1439 unformat_vnet_sw_interface, vnm, &sw_if_index))
1440 ;
1441 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301442 {
1443 unformat_free (line_input);
1444 return (clib_error_return (0, "unknown input '%U'",
1445 format_unformat_error, line_input));
1446 }
Florin Coras595992c2017-11-06 17:17:08 -08001447 }
1448
1449 if (~0 == sw_if_index)
1450 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301451 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001452 vlib_cli_output (vm, "no interface");
1453 return (clib_error_return (0, "no interface"));
1454 }
1455
1456 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1457 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1458
1459 unformat_free (line_input);
1460 return 0;
1461}
1462
1463/* *INDENT-OFF* */
1464VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1465 .path = "show ip container",
1466 .function = show_ip_container_cmd_fn,
1467 .short_help = "show ip container <address> <interface>",
1468 .is_mp_safe = 1,
1469};
1470/* *INDENT-ON* */
1471
Dave Barachd7cb1b52016-12-09 09:52:16 -05001472/*
1473 * fd.io coding-style-patch-verification: ON
1474 *
1475 * Local Variables:
1476 * eval: (c-set-style "gnu")
1477 * End:
1478 */