blob: 60cedac57d8c34cac4d10d562c17467fee06429a [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>
Neale Ranns37029302018-08-10 05:30:06 -070054#include <vnet/ethernet/arp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Billy McFall0683c9c2016-10-13 08:27:31 -040056/**
57 * @file
58 * @brief IPv4 and IPv6 adjacency and lookup table managment.
59 *
60 */
61
Ed Warnickecb9cada2015-12-08 15:45:58 -070062clib_error_t *
63ip_interface_address_add_del (ip_lookup_main_t * lm,
64 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068{
Dave Barachd7cb1b52016-12-09 09:52:16 -050069 vnet_main_t *vnm = vnet_get_main ();
70 ip_interface_address_t *a, *prev, *next;
71 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Dave Barachd7cb1b52016-12-09 09:52:16 -050073 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
74 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
76
77 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080078 if ((a && (address_length != a->address_length)) ||
79 (address_length == 0) ||
80 (lm->is_ip6 && address_length > 128) ||
81 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 {
83 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050084 return clib_error_create
85 ("%U wrong length (expected %d) for interface %U",
86 lm->format_address_and_length, addr_fib,
87 address_length, a ? a->address_length : -1,
88 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 }
90
91 if (is_del)
92 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 if (!a)
94 {
95 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
96 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
97 return clib_error_create ("%U not found for interface %U",
98 lm->format_address_and_length,
99 addr_fib, address_length,
100 format_vnet_sw_interface_name, vnm, si);
101 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
103 if (a->prev_this_sw_interface != ~0)
104 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105 prev =
106 pool_elt_at_index (lm->if_address_pool,
107 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 prev->next_this_sw_interface = a->next_this_sw_interface;
109 }
110 if (a->next_this_sw_interface != ~0)
111 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112 next =
113 pool_elt_at_index (lm->if_address_pool,
114 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 next->prev_this_sw_interface = a->prev_this_sw_interface;
116
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117 if (a->prev_this_sw_interface == ~0)
118 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
119 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 }
121
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 if ((a->next_this_sw_interface == ~0)
123 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
125
126 mhash_unset (&lm->address_to_if_address_index, addr_fib,
127 /* old_value */ 0);
128 pool_put (lm->if_address_pool, a);
129
130 if (result_if_address_index)
131 *result_if_address_index = ~0;
132 }
133
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500136 u32 pi; /* previous index */
137 u32 ai;
138 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
140 pool_get (lm->if_address_pool, a);
Dave Barachb7b92992018-10-17 10:38:51 -0400141 clib_memset (a, ~0, sizeof (a[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 ai = a - lm->if_address_pool;
143
144 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
145 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500146 while (pi != (u32) ~ 0)
147 {
148 prev = pool_elt_at_index (lm->if_address_pool, pi);
149 pi = prev->next_this_sw_interface;
150 }
151 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 a->address_key = mhash_set (&lm->address_to_if_address_index,
154 addr_fib, ai, /* old_value */ 0);
155 a->address_length = address_length;
156 a->sw_if_index = sw_if_index;
157 a->flags = 0;
158 a->prev_this_sw_interface = pi;
159 a->next_this_sw_interface = ~0;
160 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Dave Barachd7cb1b52016-12-09 09:52:16 -0500163 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
164 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 if (result_if_address_index)
166 *result_if_address_index = ai;
167 }
168 else
169 {
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500170 if (sw_if_index != a->sw_if_index)
171 {
172 if (result_if_address_index)
173 *result_if_address_index = ~0;
174 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
175 return clib_error_create
176 ("Prefix %U already found on interface %U",
177 lm->format_address_and_length, addr_fib, address_length,
178 format_vnet_sw_if_index_name, vnm, a->sw_if_index);
179 }
180
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 if (result_if_address_index)
182 *result_if_address_index = a - lm->if_address_pool;
183 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 return /* no error */ 0;
186}
187
Neale Rannsd96bad82017-03-08 01:12:54 -0800188static clib_error_t *
189ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
190{
191 vec_validate_init_empty (ip4_main.
192 lookup_main.if_address_pool_index_by_sw_if_index,
193 sw_if_index, ~0);
194 vec_validate_init_empty (ip6_main.
195 lookup_main.if_address_pool_index_by_sw_if_index,
196 sw_if_index, ~0);
197
198 return (NULL);
199}
200
201VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
202
Dave Barachd7cb1b52016-12-09 09:52:16 -0500203void
204ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 lm->fib_result_n_bytes = sizeof (uword);
208
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 lm->is_ip6 = is_ip6;
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500210 mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword),
211 sizeof (ip_interface_prefix_key_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 if (is_ip6)
213 {
214 lm->format_address_and_length = format_ip6_address_and_length;
215 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
216 sizeof (ip6_address_fib_t));
217 }
218 else
219 {
220 lm->format_address_and_length = format_ip4_address_and_length;
221 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
222 sizeof (ip4_address_fib_t));
223 }
224
225 {
226 int i;
227
228 /* Setup all IP protocols to be punted and builtin-unknown. */
229 for (i = 0; i < 256; i++)
230 {
231 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
232 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
233 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
235 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
237 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
238 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
239 IP_BUILTIN_PROTOCOL_UDP;
240 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
241 IP_PROTOCOL_ICMP] =
242 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
244}
245
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246u8 *
247format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100249 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500250
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
252 foreach_flow_hash_bit;
253#undef _
254
255 return s;
256}
257
Dave Barachd7cb1b52016-12-09 09:52:16 -0500258u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500262 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500264 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
266 switch (adj->lookup_next_index)
267 {
268 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400269 case IP_LOOKUP_NEXT_MCAST:
270 s =
271 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 break;
273
274 default:
275 break;
276 }
277
278 return s;
279}
280
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281static uword
282unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100284 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
285 fib_protocol_t fp = va_arg (*args, int);
286 dpo_proto_t proto;
287
Dave Barachd7cb1b52016-12-09 09:52:16 -0500288 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
290 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100296 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500297 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100298 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100300 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303 {
304 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100306 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500307 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100308 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100310 }
311
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 dpo_set (dpo, DPO_CLASSIFY, proto,
313 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100314 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 else
316 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100317
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318 return 1;
319}
320
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 .as_u64 = {
323 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100324};
325
Neale Ranns039cbfe2018-02-27 03:45:38 -0800326static clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100327vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800331 u32 table_id, is_del, fib_index, payload_proto;
Neale Ranns948e00f2016-10-20 13:39:34 +0100332 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800333 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100334 fib_prefix_t *prefixs = NULL, pfx;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
339 is_del = 0;
340 table_id = 0;
341 count = 1;
Dave Barachb7b92992018-10-17 10:38:51 -0400342 clib_memset (&pfx, 0, sizeof (pfx));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
344 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500345 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 return 0;
347
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
349 {
Dave Barachb7b92992018-10-17 10:38:51 -0400350 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100351
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 if (unformat (line_input, "table %d", &table_id))
353 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 else if (unformat (line_input, "count %f", &count))
355 ;
356
357 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
359 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800360 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 vec_add1 (prefixs, pfx);
362 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
365 {
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800366 payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367 vec_add1 (prefixs, pfx);
368 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 else if (unformat (line_input, "via %U",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800370 unformat_fib_route_path, &rpath, &payload_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371 {
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000372 vec_add1 (rpaths, rpath);
373 }
374 else if (vec_len (prefixs) > 0 &&
375 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500377 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100378 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500379 }
pragash352829f2017-08-17 22:53:24 -0400380 else if (unformat (line_input, "del"))
381 is_del = 1;
382 else if (unformat (line_input, "add"))
383 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 error = unformat_parse_error (line_input);
387 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100391 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392 {
393 error =
394 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 goto done;
396 }
397
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100398 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100400 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 goto done;
402 }
403
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100406 /*
407 * if no table_id is passed we will manipulate the default
408 */
409 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100411 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700413 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100415 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500416 {
417 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100418 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419 }
420 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100422 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100424 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500425 {
426 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
427 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100428 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429 {
430 fib_table_entry_special_dpo_add (fib_index,
431 &prefixs[i],
432 FIB_SOURCE_CLI,
433 FIB_ENTRY_FLAG_EXCLUSIVE,
434 &dpos[0]);
435 dpo_reset (&dpos[0]);
436 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100437 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500438 {
439 error =
440 clib_error_return (0,
441 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100444 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500445 {
Neale Ranns097fa662018-05-01 05:17:55 -0700446 u32 k, n, incr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447 ip46_address_t dst = prefixs[i].fp_addr;
448 f64 t[2];
449 n = count;
450 t[0] = vlib_time_now (vm);
451 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
452 prefixs[i].fp_len);
453
454 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455 {
Neale Ranns097fa662018-05-01 05:17:55 -0700456 fib_prefix_t rpfx = {
457 .fp_len = prefixs[i].fp_len,
458 .fp_proto = prefixs[i].fp_proto,
459 .fp_addr = dst,
460 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100461
Neale Ranns097fa662018-05-01 05:17:55 -0700462 if (is_del)
463 fib_table_entry_path_remove2 (fib_index,
464 &rpfx, FIB_SOURCE_CLI, rpaths);
465 else
466 fib_table_entry_path_add2 (fib_index,
467 &rpfx,
468 FIB_SOURCE_CLI,
469 FIB_ENTRY_FLAG_NONE, rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100470
471 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100473 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 clib_host_to_net_u32 (incr +
475 clib_net_to_host_u32 (dst.
476 ip4.as_u32));
477 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100480 int bucket = (incr < 64 ? 0 : 1);
481 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500482 clib_host_to_net_u64 (incr +
483 clib_net_to_host_u64 (dst.ip6.as_u64
484 [bucket]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 }
486 }
Neale Ranns097fa662018-05-01 05:17:55 -0700487
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 t[1] = vlib_time_now (vm);
489 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
491 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100492 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 {
494 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100495 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 }
497 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498
Dave Barachd7cb1b52016-12-09 09:52:16 -0500499done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100500 vec_free (dpos);
501 vec_free (prefixs);
502 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500503 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504 return error;
505}
506
Neale Ranns15002542017-09-10 04:39:11 -0700507clib_error_t *
508vnet_ip_table_cmd (vlib_main_t * vm,
509 unformat_input_t * main_input,
510 vlib_cli_command_t * cmd, fib_protocol_t fproto)
511{
512 unformat_input_t _line_input, *line_input = &_line_input;
513 clib_error_t *error = NULL;
514 u32 table_id, is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700515 u8 *name = NULL;
Neale Ranns15002542017-09-10 04:39:11 -0700516
517 is_add = 1;
518 table_id = ~0;
519
520 /* Get a line of input. */
521 if (!unformat_user (main_input, unformat_line_input, line_input))
522 return 0;
523
524 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
525 {
526 if (unformat (line_input, "%d", &table_id))
527 ;
528 else if (unformat (line_input, "del"))
529 is_add = 0;
530 else if (unformat (line_input, "add"))
531 is_add = 1;
Neale Ranns2297af02017-09-12 09:45:04 -0700532 else if (unformat (line_input, "name %s", &name))
533 ;
Neale Ranns15002542017-09-10 04:39:11 -0700534 else
535 {
536 error = unformat_parse_error (line_input);
537 goto done;
538 }
539 }
540
541 if (~0 == table_id)
542 {
543 error = clib_error_return (0, "No table id");
544 goto done;
545 }
546 else if (0 == table_id)
547 {
548 error = clib_error_return (0, "Can't change the default table");
549 goto done;
550 }
551 else
552 {
553 if (is_add)
554 {
Neale Ranns2297af02017-09-12 09:45:04 -0700555 ip_table_create (fproto, table_id, 0, name);
Neale Ranns15002542017-09-10 04:39:11 -0700556 }
557 else
558 {
559 ip_table_delete (fproto, table_id, 0);
560 }
561 }
562
563done:
564 unformat_free (line_input);
565 return error;
566}
567
568clib_error_t *
569vnet_ip4_table_cmd (vlib_main_t * vm,
570 unformat_input_t * main_input, vlib_cli_command_t * cmd)
571{
572 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
573}
574
575clib_error_t *
576vnet_ip6_table_cmd (vlib_main_t * vm,
577 unformat_input_t * main_input, vlib_cli_command_t * cmd)
578{
579 return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
580}
581
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
584 .path = "ip",
585 .short_help = "Internet protocol (IP) commands",
586};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500587/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Dave Barachd7cb1b52016-12-09 09:52:16 -0500589/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400590VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
591 .path = "ip6",
592 .short_help = "Internet protocol version 6 (IPv6) commands",
593};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400595
Dave Barachd7cb1b52016-12-09 09:52:16 -0500596/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
598 .path = "show ip",
599 .short_help = "Internet protocol (IP) show commands",
600};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Dave Barachd7cb1b52016-12-09 09:52:16 -0500603/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
605 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400606 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700610/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400611 * This command is used to add or delete IPv4 or IPv6 routes. All
612 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
613 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
614 * can be IPv4 or IPv6, but all must be of the same form in a single
615 * command. To display the current set of routes, use the commands
616 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
617 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700618 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400619 * Example of how to add a straight forward static route:
620 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
621 * Example of how to delete a straight forward static route:
622 * @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 -0700623 * Mainly for route add/del performance testing, one can add or delete
624 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400625 * @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 -0700626 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400627 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
628 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
629 * For unequal-cost multipath, specify the desired weights. This
630 * combination of weights results in 3/4 of the traffic following the
631 * second path, 1/4 following the first path:
632 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
633 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
634 * To add a route to a particular FIB table (VRF), use:
635 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700636 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400637/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638VLIB_CLI_COMMAND (ip_route_command, static) = {
639 .path = "ip route",
Neale Ranns70ed8ae2017-11-15 12:54:46 -0800640 .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 -0700641 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400642 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643};
Neale Ranns15002542017-09-10 04:39:11 -0700644
645/* *INDENT-ON* */
646/*?
647 * This command is used to add or delete IPv4 Tables. All
648 * Tables must be explicitly added before that can be used. Creating a
649 * table will add both unicast and multicast FIBs
650 *
651 ?*/
652/* *INDENT-OFF* */
653VLIB_CLI_COMMAND (ip4_table_command, static) = {
654 .path = "ip table",
655 .short_help = "ip table [add|del] <table-id>",
656 .function = vnet_ip4_table_cmd,
657 .is_mp_safe = 1,
658};
659/* *INDENT-ON* */
660
661/* *INDENT-ON* */
662/*?
663 * This command is used to add or delete IPv4 Tables. All
664 * Tables must be explicitly added before that can be used. Creating a
665 * table will add both unicast and multicast FIBs
666 *
667 ?*/
668/* *INDENT-OFF* */
669VLIB_CLI_COMMAND (ip6_table_command, static) = {
670 .path = "ip6 table",
671 .short_help = "ip6 table [add|del] <table-id>",
672 .function = vnet_ip6_table_cmd,
673 .is_mp_safe = 1,
674};
675
676static clib_error_t *
677ip_table_bind_cmd (vlib_main_t * vm,
678 unformat_input_t * input,
679 vlib_cli_command_t * cmd,
680 fib_protocol_t fproto)
681{
682 vnet_main_t *vnm = vnet_get_main ();
683 clib_error_t *error = 0;
684 u32 sw_if_index, table_id;
685 int rv;
686
687 sw_if_index = ~0;
688
689 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
690 {
691 error = clib_error_return (0, "unknown interface `%U'",
692 format_unformat_error, input);
693 goto done;
694 }
695
696 if (unformat (input, "%d", &table_id))
697 ;
698 else
699 {
700 error = clib_error_return (0, "expected table id `%U'",
701 format_unformat_error, input);
702 goto done;
703 }
704
705 rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
706
707 if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
708 {
709 error = clib_error_return (0, "IP addresses are still present on %U",
710 format_vnet_sw_if_index_name,
711 vnet_get_main(),
712 sw_if_index);
713 }
714 else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
715 {
716 error = clib_error_return (0, "no such table %d", table_id);
717 }
718 else if (0 != rv)
719 {
720 error = clib_error_return (0, "unknown error");
721 }
722
723 done:
724 return error;
725}
726
727static clib_error_t *
728ip4_table_bind_cmd (vlib_main_t * vm,
729 unformat_input_t * input,
730 vlib_cli_command_t * cmd)
731{
732 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
733}
734
735static clib_error_t *
736ip6_table_bind_cmd (vlib_main_t * vm,
737 unformat_input_t * input,
738 vlib_cli_command_t * cmd)
739{
740 return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
741}
742
743/*?
744 * Place the indicated interface into the supplied IPv4 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700745 * as a VRF). The FIB table must be created using "ip table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700746 * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
747 * FIB table will only be displayed if a route has been added to the table, or
748 * an IP Address is assigned to an interface in the table (which adds a route
749 * automatically).
750 *
751 * @note IP addresses added after setting the interface IP table are added to
752 * the indicated FIB table. If an IP address is added prior to changing the
753 * table then this is an error. The control plane must remove these addresses
754 * first and then change the table. VPP will not automatically move the
755 * addresses from the old to the new table as it does not know the validity
756 * of such a change.
757 *
758 * @cliexpar
759 * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
760 * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
761 ?*/
762/* *INDENT-OFF* */
763VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
764{
765 .path = "set interface ip table",
766 .function = ip4_table_bind_cmd,
767 .short_help = "set interface ip table <interface> <table-id>",
768};
769/* *INDENT-ON* */
770
771/*?
772 * Place the indicated interface into the supplied IPv6 FIB table (also known
Yichen Wang5c482a92018-08-02 17:12:01 -0700773 * as a VRF). The FIB table must be created using "ip6 table add" already. To
Neale Ranns15002542017-09-10 04:39:11 -0700774 * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
775 * FIB table will only be displayed if a route has been added to the table, or
776 * an IP Address is assigned to an interface in the table (which adds a route
777 * automatically).
778 *
779 * @note IP addresses added after setting the interface IP table are added to
780 * the indicated FIB table. If an IP address is added prior to changing the
781 * table then this is an error. The control plane must remove these addresses
782 * first and then change the table. VPP will not automatically move the
783 * addresses from the old to the new table as it does not know the validity
784 * of such a change.
785 *
786 * @cliexpar
787 * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
788 * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
789 ?*/
790/* *INDENT-OFF* */
791VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
792{
793 .path = "set interface ip6 table",
794 .function = ip6_table_bind_cmd,
795 .short_help = "set interface ip6 table <interface> <table-id>"
796};
Billy McFall0683c9c2016-10-13 08:27:31 -0400797/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798
Neale Ranns32e1c012016-11-22 17:07:28 +0000799clib_error_t *
800vnet_ip_mroute_cmd (vlib_main_t * vm,
801 unformat_input_t * main_input, vlib_cli_command_t * cmd)
802{
803 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns097fa662018-05-01 05:17:55 -0700804 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000805 clib_error_t *error = NULL;
Neale Ranns097fa662018-05-01 05:17:55 -0700806 u32 table_id, is_del, payload_proto;
Neale Ranns32e1c012016-11-22 17:07:28 +0000807 mfib_prefix_t pfx;
808 u32 fib_index;
Neale Ranns32e1c012016-11-22 17:07:28 +0000809 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800810 u32 gcount, scount, ss, gg, incr;
811 f64 timet[2];
Neale Rannsad69c1f2018-12-05 16:39:45 +0000812 u32 rpf_id = MFIB_RPF_ID_NONE;
Neale Ranns32e1c012016-11-22 17:07:28 +0000813
Neale Ranns52456fc2017-02-15 00:38:27 -0800814 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000815 is_del = 0;
816 table_id = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400817 clib_memset (&pfx, 0, sizeof (pfx));
818 clib_memset (&rpath, 0, sizeof (rpath));
Neale Ranns32e1c012016-11-22 17:07:28 +0000819 rpath.frp_sw_if_index = ~0;
820
821 /* Get a line of input. */
822 if (!unformat_user (main_input, unformat_line_input, line_input))
823 return 0;
824
825 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
826 {
827 if (unformat (line_input, "table %d", &table_id))
828 ;
829 else if (unformat (line_input, "del"))
830 is_del = 1;
831 else if (unformat (line_input, "add"))
832 is_del = 0;
Neale Rannsad69c1f2018-12-05 16:39:45 +0000833 else if (unformat (line_input, "rpf-id %d", &rpf_id))
834 ;
Neale Ranns52456fc2017-02-15 00:38:27 -0800835 else if (unformat (line_input, "scount %d", &scount))
836 ;
837 else if (unformat (line_input, "gcount %d", &gcount))
838 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000839 else if (unformat (line_input, "%U %U",
840 unformat_ip4_address,
841 &pfx.fp_src_addr.ip4,
842 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
843 {
844 pfx.fp_proto = FIB_PROTOCOL_IP4;
845 pfx.fp_len = 64;
846 }
847 else if (unformat (line_input, "%U %U",
848 unformat_ip6_address,
849 &pfx.fp_src_addr.ip6,
850 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
851 {
852 pfx.fp_proto = FIB_PROTOCOL_IP6;
853 pfx.fp_len = 256;
854 }
855 else if (unformat (line_input, "%U/%d",
856 unformat_ip4_address,
857 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
858 {
Dave Barachb7b92992018-10-17 10:38:51 -0400859 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000860 pfx.fp_proto = FIB_PROTOCOL_IP4;
861 }
862 else if (unformat (line_input, "%U/%d",
863 unformat_ip6_address,
864 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
865 {
Dave Barachb7b92992018-10-17 10:38:51 -0400866 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000867 pfx.fp_proto = FIB_PROTOCOL_IP6;
868 }
869 else if (unformat (line_input, "%U",
870 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
871 {
Dave Barachb7b92992018-10-17 10:38:51 -0400872 clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000873 pfx.fp_proto = FIB_PROTOCOL_IP4;
874 pfx.fp_len = 32;
875 }
876 else if (unformat (line_input, "%U",
877 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
878 {
Dave Barachb7b92992018-10-17 10:38:51 -0400879 clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000880 pfx.fp_proto = FIB_PROTOCOL_IP6;
881 pfx.fp_len = 128;
882 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000883 else if (unformat (line_input, "via local Forward"))
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700884 {
Dave Barachb7b92992018-10-17 10:38:51 -0400885 clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700886 rpath.frp_sw_if_index = ~0;
887 rpath.frp_weight = 1;
888 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns37439992018-05-30 02:08:32 -0400889 /*
890 * set the path proto appropriately for the prefix
891 */
892 rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
Neale Ranns097fa662018-05-01 05:17:55 -0700893 rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
Neale Ranns32e1c012016-11-22 17:07:28 +0000894 }
Neale Ranns097fa662018-05-01 05:17:55 -0700895 else if (unformat (line_input, "via %U",
896 unformat_fib_route_path, &rpath, &payload_proto))
897 {
898 vec_add1 (rpaths, rpath);
899 }
900 else if (unformat (line_input, "%U",
901 unformat_mfib_itf_flags, &rpath.frp_mitf_flags))
902 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000903 else if (unformat (line_input, "%U",
904 unformat_mfib_entry_flags, &eflags))
905 ;
906 else
907 {
908 error = unformat_parse_error (line_input);
909 goto done;
910 }
911 }
912
Neale Ranns32e1c012016-11-22 17:07:28 +0000913 if (~0 == table_id)
914 {
915 /*
916 * if no table_id is passed we will manipulate the default
917 */
918 fib_index = 0;
919 }
920 else
921 {
922 fib_index = mfib_table_find (pfx.fp_proto, table_id);
923
924 if (~0 == fib_index)
925 {
926 error = clib_error_return (0, "Nonexistent table id %d", table_id);
927 goto done;
928 }
929 }
930
Neale Ranns52456fc2017-02-15 00:38:27 -0800931 timet[0] = vlib_time_now (vm);
932
933 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000934 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800935 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000936 }
937 else
938 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800939 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000940 }
941
Neale Ranns52456fc2017-02-15 00:38:27 -0800942 for (ss = 0; ss < scount; ss++)
943 {
944 for (gg = 0; gg < gcount; gg++)
945 {
Neale Ranns097fa662018-05-01 05:17:55 -0700946 if (is_del && 0 == vec_len (rpaths))
Neale Ranns52456fc2017-02-15 00:38:27 -0800947 {
948 /* no path provided => route delete */
949 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
950 }
Neale Rannsad69c1f2018-12-05 16:39:45 +0000951 else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
Neale Ranns52456fc2017-02-15 00:38:27 -0800952 {
953 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Rannsad69c1f2018-12-05 16:39:45 +0000954 rpf_id, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800955 }
956 else
957 {
958 if (is_del)
959 mfib_table_entry_path_remove (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700960 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800961 else
962 mfib_table_entry_path_update (fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700963 &pfx, MFIB_SOURCE_CLI, rpaths);
Neale Ranns52456fc2017-02-15 00:38:27 -0800964 }
965
966 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
967 {
968 pfx.fp_grp_addr.ip4.as_u32 =
969 clib_host_to_net_u32 (incr +
970 clib_net_to_host_u32 (pfx.
971 fp_grp_addr.ip4.
972 as_u32));
973 }
974 else
975 {
976 int bucket = (incr < 64 ? 0 : 1);
977 pfx.fp_grp_addr.ip6.as_u64[bucket] =
978 clib_host_to_net_u64 (incr +
979 clib_net_to_host_u64 (pfx.
980 fp_grp_addr.ip6.as_u64
981 [bucket]));
982
983 }
984 }
985 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
986 {
987 pfx.fp_src_addr.ip4.as_u32 =
988 clib_host_to_net_u32 (1 +
989 clib_net_to_host_u32 (pfx.fp_src_addr.
990 ip4.as_u32));
991 }
992 else
993 {
994 pfx.fp_src_addr.ip6.as_u64[1] =
995 clib_host_to_net_u64 (1 +
996 clib_net_to_host_u64 (pfx.fp_src_addr.
997 ip6.as_u64[1]));
998 }
999 }
1000
1001 timet[1] = vlib_time_now (vm);
1002
1003 if (scount > 1 || gcount > 1)
1004 vlib_cli_output (vm, "%.6e routes/sec",
1005 (scount * gcount) / (timet[1] - timet[0]));
1006
Neale Ranns32e1c012016-11-22 17:07:28 +00001007done:
Neale Ranns097fa662018-05-01 05:17:55 -07001008 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -05001009 unformat_free (line_input);
1010
Neale Ranns32e1c012016-11-22 17:07:28 +00001011 return error;
1012}
1013
1014/*?
1015 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
1016 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1017 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1018 * can be IPv4 or IPv6, but all must be of the same form in a single
1019 * command. To display the current set of routes, use the commands
1020 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1021 * The full set of support flags for interfaces and route is shown via;
1022 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1023 * respectively.
1024 * @cliexpar
1025 * Example of how to add a forwarding interface to a route (and create the
1026 * route if it does not exist)
1027 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1028 * Example of how to add an accepting interface to a route (and create the
1029 * route if it does not exist)
1030 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1031 * Example of changing the route's flags to send signals via the API
1032 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1033
1034 ?*/
1035/* *INDENT-OFF* */
1036VLIB_CLI_COMMAND (ip_mroute_command, static) =
1037{
1038 .path = "ip mroute",
Neale Rannsad69c1f2018-12-05 16:39:45 +00001039 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [rpf-id <ID>] [via <next-hop-ip-addr> [<interface>],",
Neale Ranns32e1c012016-11-22 17:07:28 +00001040 .function = vnet_ip_mroute_cmd,
1041 .is_mp_safe = 1,
1042};
1043/* *INDENT-ON* */
1044
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001045/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046 * The next two routines address a longstanding script hemorrhoid.
1047 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1048 * or dependent route-adds will simply fail.
1049 */
1050static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001051ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001052 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001054 vnet_main_t *vnm = vnet_get_main ();
1055 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056 int i;
1057 int resolved = 0;
1058 uword event_type;
1059 uword *event_data = 0;
1060
Dave Barachd7cb1b52016-12-09 09:52:16 -05001061 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062
1063 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001064 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001066 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067
1068 for (i = 0; i < retry_count; i++)
1069 {
1070 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001071 e = ip6_probe_neighbor (vm, a, sw_if_index, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001072
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001074 return e;
1075
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 vlib_process_wait_for_event_or_clock (vm, 1.0);
1077 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001078 switch (event_type)
1079 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001080 case 1: /* resolved... */
1081 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1082 resolved = 1;
1083 goto done;
1084
1085 case ~0: /* timeout */
1086 break;
1087
1088 default:
1089 clib_warning ("unknown event_type %d", event_type);
1090 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001091 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001092 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001093
1094done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001095
1096 if (!resolved)
1097 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001098 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099 return 0;
1100}
1101
1102static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001103ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1104 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001106 vnet_main_t *vnm = vnet_get_main ();
1107 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108 int i;
1109 int resolved = 0;
1110 uword event_type;
1111 uword *event_data = 0;
1112
Dave Barachd7cb1b52016-12-09 09:52:16 -05001113 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114
1115 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001116 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001118 1 /* event */ , 0 /* data */ );
1119
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120 for (i = 0; i < retry_count; i++)
1121 {
1122 /* The interface may be down, etc. */
John Lo86376342018-06-11 20:14:49 -04001123 e = ip4_probe_neighbor (vm, a, sw_if_index, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001124
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001126 return e;
1127
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128 vlib_process_wait_for_event_or_clock (vm, 1.0);
1129 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001130 switch (event_type)
1131 {
1132 case 1: /* resolved... */
1133 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1134 resolved = 1;
1135 goto done;
1136
1137 case ~0: /* timeout */
1138 break;
1139
1140 default:
1141 clib_warning ("unknown event_type %d", event_type);
1142 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001143 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001145
1146done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147
1148 vec_reset_length (event_data);
1149
1150 if (!resolved)
1151 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001152 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 return 0;
1154}
1155
1156static clib_error_t *
1157probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001158 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001160 vnet_main_t *vnm = vnet_get_main ();
1161 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162 ip4_address_t a4;
1163 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001164 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165 u32 sw_if_index = ~0;
1166 int retry_count = 3;
1167 int is_ip4 = 1;
1168 int address_set = 0;
1169
1170 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001171 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172 return 0;
1173
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001176 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1177 &sw_if_index))
1178 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001179 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001180 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181
1182 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001183 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001185 {
1186 address_set++;
1187 is_ip4 = 0;
1188 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001190 {
1191 error = clib_error_return (0, "unknown input '%U'",
1192 format_unformat_error, line_input);
1193 goto done;
1194 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195 }
1196
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001198 {
1199 error = clib_error_return (0, "Interface required, not set.");
1200 goto done;
1201 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001203 {
1204 error = clib_error_return (0, "ip address required, not set.");
1205 goto done;
1206 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001208 {
1209 error = clib_error_return (0, "Multiple ip addresses not supported.");
1210 goto done;
1211 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001212
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213 if (is_ip4)
1214 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001215 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1217
Billy McFalla9a20e72017-02-15 11:39:12 -05001218done:
1219 unformat_free (line_input);
1220
Ed Warnickecb9cada2015-12-08 15:45:58 -07001221 return error;
1222}
1223
Billy McFall0683c9c2016-10-13 08:27:31 -04001224/*?
1225 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1226 * attempts IPv6 neighbor discovery depending on the supplied IP address
1227 * format.
1228 *
1229 * @note This command will not immediately affect the indicated FIB; it
1230 * is not suitable for use in establishing a FIB entry prior to adding
1231 * recursive FIB entries. As in: don't use it in a script to probe a
1232 * gateway prior to adding a default route. It won't work. Instead,
1233 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1234 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1235 *
1236 * @cliexpar
1237 * Example of probe for an IPv4 address:
1238 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1239?*/
1240/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1242 .path = "ip probe-neighbor",
1243 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001244 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001245 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246};
Billy McFall0683c9c2016-10-13 08:27:31 -04001247/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001248
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001249clib_error_t *
Florin Coras595992c2017-11-06 17:17:08 -08001250vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1251{
1252 u32 fib_index;
1253
1254 if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1255 return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1256 "invalid sw_if_index");
1257
1258 fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1259 args->sw_if_index);
1260 if (args->is_add)
1261 {
1262 dpo_id_t proxy_dpo = DPO_INVALID;
1263 l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1264 args->sw_if_index, &proxy_dpo);
1265 fib_table_entry_special_dpo_add (fib_index,
1266 &args->prefix,
1267 FIB_SOURCE_PROXY,
1268 FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1269 dpo_reset (&proxy_dpo);
1270 }
1271 else
1272 {
1273 fib_table_entry_special_remove (fib_index, &args->prefix,
1274 FIB_SOURCE_PROXY);
1275 }
1276 return 0;
1277}
1278
1279u8
1280ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1281{
1282 u32 fib_index;
1283 fib_node_index_t fei;
1284 const dpo_id_t *dpo;
1285 l3_proxy_dpo_t *l3p;
1286 load_balance_t *lb0;
1287
1288 fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1289 sw_if_index);
1290 if (fib_index == ~0)
1291 return 0;
1292
1293 fei = fib_table_lookup_exact_match (fib_index, pfx);
1294 if (fei == FIB_NODE_INDEX_INVALID)
1295 return 0;
1296
1297 dpo = fib_entry_contribute_ip_forwarding (fei);
1298 lb0 = load_balance_get (dpo->dpoi_index);
1299 dpo = load_balance_get_bucket_i (lb0, 0);
1300 if (dpo->dpoi_type != DPO_L3_PROXY)
1301 return 0;
1302
1303 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1304 return (l3p->l3p_sw_if_index == sw_if_index);
1305}
1306
Matus Fabian75b9f452018-10-02 23:27:21 -07001307typedef struct ip_container_proxy_walk_ctx_t_
1308{
1309 ip_container_proxy_cb_t cb;
1310 void *ctx;
1311} ip_container_proxy_walk_ctx_t;
1312
1313static fib_table_walk_rc_t
1314ip_container_proxy_fib_table_walk (fib_node_index_t fei, void *arg)
1315{
1316 ip_container_proxy_walk_ctx_t *ctx = arg;
1317 const fib_prefix_t *pfx;
1318 const dpo_id_t *dpo;
1319 load_balance_t *lb;
1320 l3_proxy_dpo_t *l3p;
1321
1322 pfx = fib_entry_get_prefix (fei);
1323 if (fib_entry_is_sourced (fei, FIB_SOURCE_PROXY))
1324 {
1325 dpo = fib_entry_contribute_ip_forwarding (fei);
1326 lb = load_balance_get (dpo->dpoi_index);
1327 dpo = load_balance_get_bucket_i (lb, 0);
1328 l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1329 ctx->cb (pfx, l3p->l3p_sw_if_index, ctx->ctx);
1330 }
1331
1332 return FIB_TABLE_WALK_CONTINUE;
1333}
1334
1335void
1336ip_container_proxy_walk (ip_container_proxy_cb_t cb, void *ctx)
1337{
1338 fib_table_t *fib_table;
1339 ip_container_proxy_walk_ctx_t wctx = {
1340 .cb = cb,
1341 .ctx = ctx,
1342 };
1343
1344 /* *INDENT-OFF* */
1345 pool_foreach (fib_table, ip4_main.fibs,
1346 ({
1347 fib_table_walk(fib_table->ft_index,
1348 FIB_PROTOCOL_IP4,
1349 ip_container_proxy_fib_table_walk,
1350 &wctx);
1351 }));
1352 pool_foreach (fib_table, ip6_main.fibs,
1353 ({
1354 fib_table_walk(fib_table->ft_index,
1355 FIB_PROTOCOL_IP6,
1356 ip_container_proxy_fib_table_walk,
1357 &wctx);
1358 }));
1359 /* *INDENT-ON* */
1360}
1361
Florin Coras595992c2017-11-06 17:17:08 -08001362clib_error_t *
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001363ip_container_cmd (vlib_main_t * vm,
1364 unformat_input_t * main_input, vlib_cli_command_t * cmd)
1365{
1366 unformat_input_t _line_input, *line_input = &_line_input;
1367 fib_prefix_t pfx;
Florin Corase1682c42017-11-07 17:06:36 -08001368 u32 is_del, addr_set = 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001369 vnet_main_t *vnm;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001370 u32 sw_if_index;
1371
1372 vnm = vnet_get_main ();
1373 is_del = 0;
1374 sw_if_index = ~0;
Dave Barachb7b92992018-10-17 10:38:51 -04001375 clib_memset (&pfx, 0, sizeof (pfx));
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001376
1377 /* Get a line of input. */
1378 if (!unformat_user (main_input, unformat_line_input, line_input))
1379 return 0;
1380
1381 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1382 {
1383 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1384 {
1385 pfx.fp_proto = FIB_PROTOCOL_IP4;
1386 pfx.fp_len = 32;
Florin Corase1682c42017-11-07 17:06:36 -08001387 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001388 }
1389 else if (unformat (line_input, "%U",
1390 unformat_ip6_address, &pfx.fp_addr.ip6))
1391 {
1392 pfx.fp_proto = FIB_PROTOCOL_IP6;
1393 pfx.fp_len = 128;
Florin Corase1682c42017-11-07 17:06:36 -08001394 addr_set = 1;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001395 }
1396 else if (unformat (line_input, "%U",
1397 unformat_vnet_sw_interface, vnm, &sw_if_index))
1398 ;
1399 else if (unformat (line_input, "del"))
1400 is_del = 1;
1401 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301402 {
1403 unformat_free (line_input);
1404 return (clib_error_return (0, "unknown input '%U'",
1405 format_unformat_error, line_input));
1406 }
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001407 }
1408
Florin Corase1682c42017-11-07 17:06:36 -08001409 if (~0 == sw_if_index || !addr_set)
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001410 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301411 unformat_free (line_input);
Florin Corase1682c42017-11-07 17:06:36 -08001412 vlib_cli_output (vm, "interface and address must be set");
1413 return 0;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001414 }
1415
Florin Coras595992c2017-11-06 17:17:08 -08001416 vnet_ip_container_proxy_args_t args = {
1417 .prefix = pfx,
1418 .sw_if_index = sw_if_index,
1419 .is_add = !is_del,
1420 };
1421 vnet_ip_container_proxy_add_del (&args);
1422 unformat_free (line_input);
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001423 return (NULL);
1424}
1425
1426/* *INDENT-OFF* */
1427VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1428 .path = "ip container",
1429 .function = ip_container_cmd,
1430 .short_help = "ip container <address> <interface>",
1431 .is_mp_safe = 1,
1432};
1433/* *INDENT-ON* */
1434
Florin Coras595992c2017-11-06 17:17:08 -08001435clib_error_t *
1436show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1437 vlib_cli_command_t * cmd)
1438{
1439 unformat_input_t _line_input, *line_input = &_line_input;
1440 vnet_main_t *vnm = vnet_get_main ();
1441 fib_prefix_t pfx;
1442 u32 sw_if_index = ~0;
1443 u8 has_proxy;
1444
1445 if (!unformat_user (main_input, unformat_line_input, line_input))
1446 return 0;
1447 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1448 {
1449 if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1450 {
1451 pfx.fp_proto = FIB_PROTOCOL_IP4;
1452 pfx.fp_len = 32;
1453 }
1454 else if (unformat (line_input, "%U",
1455 unformat_ip6_address, &pfx.fp_addr.ip6))
1456 {
1457 pfx.fp_proto = FIB_PROTOCOL_IP6;
1458 pfx.fp_len = 128;
1459 }
1460 else if (unformat (line_input, "%U",
1461 unformat_vnet_sw_interface, vnm, &sw_if_index))
1462 ;
1463 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301464 {
1465 unformat_free (line_input);
1466 return (clib_error_return (0, "unknown input '%U'",
1467 format_unformat_error, line_input));
1468 }
Florin Coras595992c2017-11-06 17:17:08 -08001469 }
1470
1471 if (~0 == sw_if_index)
1472 {
Swarup Nayak76dc22c2017-12-05 09:46:17 +05301473 unformat_free (line_input);
Florin Coras595992c2017-11-06 17:17:08 -08001474 vlib_cli_output (vm, "no interface");
1475 return (clib_error_return (0, "no interface"));
1476 }
1477
1478 has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1479 vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1480
1481 unformat_free (line_input);
1482 return 0;
1483}
1484
1485/* *INDENT-OFF* */
1486VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1487 .path = "show ip container",
1488 .function = show_ip_container_cmd_fn,
1489 .short_help = "show ip container <address> <interface>",
1490 .is_mp_safe = 1,
1491};
1492/* *INDENT-ON* */
1493
Dave Barachd7cb1b52016-12-09 09:52:16 -05001494/*
1495 * fd.io coding-style-patch-verification: ON
1496 *
1497 * Local Variables:
1498 * eval: (c-set-style "gnu")
1499 * End:
1500 */