blob: f1f291da8a226ec4640b83211a49d7be0320aa58 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05302 * Copyright (c) 2016 Cisco and/or its affiliates.
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 * 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/ip6_forward.c: IP v6 forwarding
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
40#include <vnet/vnet.h>
41#include <vnet/ip/ip.h>
Ole Troan313f7e22018-04-10 16:02:51 +020042#include <vnet/ip/ip_frag.h>
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +020043#include <vnet/ip/ip6_neighbor.h>
Dave Barachd7cb1b52016-12-09 09:52:16 -050044#include <vnet/ethernet/ethernet.h> /* for ethernet_header_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#include <vnet/srp/srp.h> /* for srp_hw_interface_class */
46#include <vppinfra/cache.h>
AkshayaNadahalli0f438df2017-02-10 10:54:16 +053047#include <vnet/fib/fib_urpf_list.h> /* for FIB uRPF check */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010048#include <vnet/fib/ip6_fib.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000049#include <vnet/mfib/ip6_mfib.h>
Neale Rannsf12a83f2017-04-18 09:09:40 -070050#include <vnet/dpo/load_balance_map.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051#include <vnet/dpo/classify_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Damjan Marion38173502019-02-13 19:30:09 +010053#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -070054#include <vppinfra/bihash_template.c>
Damjan Marion38173502019-02-13 19:30:09 +010055#endif
Vijayabhaskar Katamreddyacbde662018-01-23 13:39:40 -080056#include <vnet/ip/ip6_forward.h>
Neale Ranns25edf142019-03-22 08:12:48 +000057#include <vnet/interface_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
AkshayaNadahallifdd81af2016-12-01 16:33:51 +053059/* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */
60#define OI_DECAP 0x80000000
61
Ed Warnickecb9cada2015-12-08 15:45:58 -070062static void
63ip6_add_interface_routes (vnet_main_t * vnm, u32 sw_if_index,
64 ip6_main_t * im, u32 fib_index,
65 ip_interface_address_t * a)
66{
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 ip_lookup_main_t *lm = &im->lookup_main;
68 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010069 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -050070 .fp_len = a->address_length,
71 .fp_proto = FIB_PROTOCOL_IP6,
72 .fp_addr.ip6 = *address,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010073 };
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 if (a->address_length < 128)
Dave Barachd7cb1b52016-12-09 09:52:16 -050076 {
Neale Ranns7a272742017-05-30 02:08:14 -070077 fib_table_entry_update_one_path (fib_index,
78 &pfx,
79 FIB_SOURCE_INTERFACE,
80 (FIB_ENTRY_FLAG_CONNECTED |
81 FIB_ENTRY_FLAG_ATTACHED),
Neale Rannsda78f952017-05-24 09:15:43 -070082 DPO_PROTO_IP6,
Neale Ranns7a272742017-05-30 02:08:14 -070083 /* No next-hop address */
84 NULL, sw_if_index,
85 /* invalid FIB index */
86 ~0, 1,
87 /* no label stack */
88 NULL, FIB_ROUTE_PATH_FLAG_NONE);
Dave Barachd7cb1b52016-12-09 09:52:16 -050089 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Neale Ranns0bfe5d82016-08-25 15:29:12 +010091 pfx.fp_len = 128;
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010094 u32 classify_table_index =
Dave Barachd7cb1b52016-12-09 09:52:16 -050095 lm->classify_table_index_by_sw_if_index[sw_if_index];
96 if (classify_table_index != (u32) ~ 0)
97 {
98 dpo_id_t dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010099
Dave Barachd7cb1b52016-12-09 09:52:16 -0500100 dpo_set (&dpo,
101 DPO_CLASSIFY,
102 DPO_PROTO_IP6,
103 classify_dpo_create (DPO_PROTO_IP6, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100104
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105 fib_table_entry_special_dpo_add (fib_index,
106 &pfx,
107 FIB_SOURCE_CLASSIFY,
108 FIB_ENTRY_FLAG_NONE, &dpo);
109 dpo_reset (&dpo);
110 }
111 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100112
Neale Rannsf12a83f2017-04-18 09:09:40 -0700113 fib_table_entry_update_one_path (fib_index, &pfx,
114 FIB_SOURCE_INTERFACE,
115 (FIB_ENTRY_FLAG_CONNECTED |
116 FIB_ENTRY_FLAG_LOCAL),
Neale Rannsda78f952017-05-24 09:15:43 -0700117 DPO_PROTO_IP6,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700118 &pfx.fp_addr,
119 sw_if_index, ~0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121}
122
123static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124ip6_del_interface_routes (ip6_main_t * im,
125 u32 fib_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126 ip6_address_t * address, u32 address_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500128 fib_prefix_t pfx = {
129 .fp_len = address_length,
130 .fp_proto = FIB_PROTOCOL_IP6,
131 .fp_addr.ip6 = *address,
132 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 if (pfx.fp_len < 128)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500136 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 }
139
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 pfx.fp_len = 128;
141 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142}
143
Damjan Marion38173502019-02-13 19:30:09 +0100144#ifndef CLIB_MARCH_VARIANT
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100145void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500146ip6_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100147{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500148 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100150 vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100152 /*
153 * enable/disable only on the 1<->0 transition
154 */
155 if (is_enable)
156 {
157 if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500158 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100159 }
160 else
161 {
Neale Ranns75152282017-01-09 01:00:45 -0800162 /* The ref count is 0 when an address is removed from an interface that has
163 * no address - this is not a ciritical error */
164 if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] ||
165 0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500166 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100167 }
168
Neale Ranns8269d3d2018-01-30 09:02:20 -0800169 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Neale Ranns630198f2017-05-22 09:20:20 -0400170 !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100171
Neale Ranns8269d3d2018-01-30 09:02:20 -0800172 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
173 sw_if_index, !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100174}
175
Neale Rannsdf089a82016-10-02 16:39:06 +0100176/* get first interface address */
177ip6_address_t *
Neale Ranns6cfc39c2017-02-14 01:44:25 -0800178ip6_interface_first_address (ip6_main_t * im, u32 sw_if_index)
Neale Rannsdf089a82016-10-02 16:39:06 +0100179{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500180 ip_lookup_main_t *lm = &im->lookup_main;
181 ip_interface_address_t *ia = 0;
182 ip6_address_t *result = 0;
Neale Rannsdf089a82016-10-02 16:39:06 +0100183
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 /* *INDENT-OFF* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100185 foreach_ip_interface_address (lm, ia, sw_if_index,
186 1 /* honor unnumbered */,
187 ({
188 ip6_address_t * a = ip_interface_address_get_address (lm, ia);
189 result = a;
190 break;
191 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 /* *INDENT-ON* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100193 return result;
194}
195
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100196clib_error_t *
197ip6_add_del_interface_address (vlib_main_t * vm,
198 u32 sw_if_index,
199 ip6_address_t * address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500200 u32 address_length, u32 is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500202 vnet_main_t *vnm = vnet_get_main ();
203 ip6_main_t *im = &ip6_main;
204 ip_lookup_main_t *lm = &im->lookup_main;
205 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 u32 if_address_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500207 ip6_address_fib_t ip6_af, *addr_fib = 0;
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200208 ip6_address_t ll_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Pavel Kotucek57808982017-08-02 08:20:19 +0200210 /* local0 interface doesn't support IP addressing */
211 if (sw_if_index == 0)
212 {
213 return
214 clib_error_create ("local0 interface doesn't support IP addressing");
215 }
216
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200217 if (ip6_address_is_link_local_unicast (address))
218 {
219 if (address_length != 128)
220 {
221 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
222 return
223 clib_error_create
224 ("prefix length of link-local address must be 128");
225 }
226 if (!is_del)
227 {
228 return ip6_neighbor_set_link_local_address (vm, sw_if_index,
229 address);
230 }
231 else
232 {
233 ll_addr = ip6_neighbor_get_link_local_address (sw_if_index);
234 if (ip6_address_is_equal (&ll_addr, address))
235 {
236 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_DELETABLE;
237 return clib_error_create ("address not deletable");
238 }
239 else
240 {
241 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
242 return clib_error_create ("address not found");
243 }
244 }
245 }
246
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000248 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
249
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 ip6_addr_fib_init (&ip6_af, address,
251 vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
252 vec_add1 (addr_fib, ip6_af);
253
Neale Ranns744902e2017-08-14 10:35:44 -0700254 /* *INDENT-OFF* */
255 if (!is_del)
256 {
257 /* When adding an address check that it does not conflict
258 with an existing address on any interface in this table. */
259 ip_interface_address_t *ia;
260 vnet_sw_interface_t *sif;
261
262 pool_foreach(sif, vnm->interface_main.sw_interfaces,
263 ({
264 if (im->fib_index_by_sw_if_index[sw_if_index] ==
265 im->fib_index_by_sw_if_index[sif->sw_if_index])
266 {
267 foreach_ip_interface_address
268 (&im->lookup_main, ia, sif->sw_if_index,
269 0 /* honor unnumbered */ ,
270 ({
271 ip6_address_t * x =
272 ip_interface_address_get_address
273 (&im->lookup_main, ia);
274 if (ip6_destination_matches_route
275 (im, address, x, ia->address_length) ||
276 ip6_destination_matches_route (im,
277 x,
278 address,
279 address_length))
280 {
281 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
282 return
283 clib_error_create
284 ("failed to add %U which conflicts with %U for interface %U",
285 format_ip6_address_and_length, address,
286 address_length,
287 format_ip6_address_and_length, x,
288 ia->address_length,
289 format_vnet_sw_if_index_name, vnm,
290 sif->sw_if_index);
291 }
292 }));
293 }
294 }));
295 }
296 /* *INDENT-ON* */
297
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 {
299 uword elts_before = pool_elts (lm->if_address_pool);
300
301 error = ip_interface_address_add_del
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 if (error)
304 goto done;
305
306 /* Pool did not grow: add duplicate address. */
307 if (elts_before == pool_elts (lm->if_address_pool))
308 goto done;
309 }
310
Dave Barachd7cb1b52016-12-09 09:52:16 -0500311 ip6_sw_interface_enable_disable (sw_if_index, !is_del);
Neale Ranns177bbdc2016-11-15 09:46:51 +0000312
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100313 if (is_del)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 ip6_del_interface_routes (im, ip6_af.fib_index, address, address_length);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100315 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 ip6_add_interface_routes (vnm, sw_if_index,
317 im, ip6_af.fib_index,
318 pool_elt_at_index (lm->if_address_pool,
319 if_address_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
321 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 ip6_add_del_interface_address_callback_t *cb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 vec_foreach (cb, im->add_del_interface_address_callbacks)
324 cb->function (im, cb->function_opaque, sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500325 address, address_length, if_address_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 }
327
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 vec_free (addr_fib);
330 return error;
331}
332
Damjan Marion38173502019-02-13 19:30:09 +0100333#endif
334
335static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336ip6_sw_interface_admin_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 ip6_main_t *im = &ip6_main;
339 ip_interface_address_t *ia;
340 ip6_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 u32 is_admin_up, fib_index;
342
343 /* Fill in lookup tables with default table (0). */
344 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
345
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 vec_validate_init_empty (im->
347 lookup_main.if_address_pool_index_by_sw_if_index,
348 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
350 is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
351
352 fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
353
Dave Barachd7cb1b52016-12-09 09:52:16 -0500354 /* *INDENT-OFF* */
Dave Barach75fc8542016-10-11 16:16:02 -0400355 foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 0 /* honor unnumbered */,
357 ({
358 a = ip_interface_address_get_address (&im->lookup_main, ia);
359 if (is_admin_up)
360 ip6_add_interface_routes (vnm, sw_if_index,
361 im, fib_index,
362 ia);
363 else
364 ip6_del_interface_routes (im, fib_index,
365 a, ia->address_length);
366 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369 return 0;
370}
371
372VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_sw_interface_admin_up_down);
373
Dave Barachd6534602016-06-14 18:38:02 -0400374/* Built-in ip6 unicast rx feature path definition */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500375/* *INDENT-OFF* */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100376VNET_FEATURE_ARC_INIT (ip6_unicast, static) =
377{
378 .arc_name = "ip6-unicast",
379 .start_nodes = VNET_FEATURES ("ip6-input"),
Dave Baracha25def72018-11-26 11:04:45 -0500380 .last_in_arc = "ip6-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100381 .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index,
382};
383
Dave Barachd7cb1b52016-12-09 09:52:16 -0500384VNET_FEATURE_INIT (ip6_flow_classify, static) =
385{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100386 .arc_name = "ip6-unicast",
Juraj Sloboda506b2452016-08-07 23:45:24 -0700387 .node_name = "ip6-flow-classify",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100388 .runs_before = VNET_FEATURES ("ip6-inacl"),
Juraj Sloboda506b2452016-08-07 23:45:24 -0700389};
390
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391VNET_FEATURE_INIT (ip6_inacl, static) =
392{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100393 .arc_name = "ip6-unicast",
Dave Barach75fc8542016-10-11 16:16:02 -0400394 .node_name = "ip6-inacl",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100395 .runs_before = VNET_FEATURES ("ip6-policer-classify"),
Dave Barachd6534602016-06-14 18:38:02 -0400396};
397
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398VNET_FEATURE_INIT (ip6_policer_classify, static) =
399{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100400 .arc_name = "ip6-unicast",
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700401 .node_name = "ip6-policer-classify",
Pierre Pfister057b3562018-12-10 17:01:01 +0100402 .runs_before = VNET_FEATURES ("ipsec6-input-feature"),
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700403};
404
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405VNET_FEATURE_INIT (ip6_ipsec, static) =
406{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100407 .arc_name = "ip6-unicast",
Pierre Pfister057b3562018-12-10 17:01:01 +0100408 .node_name = "ipsec6-input-feature",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100409 .runs_before = VNET_FEATURES ("l2tp-decap"),
Dave Barachd6534602016-06-14 18:38:02 -0400410};
411
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412VNET_FEATURE_INIT (ip6_l2tp, static) =
413{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100414 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400415 .node_name = "l2tp-decap",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100416 .runs_before = VNET_FEATURES ("vpath-input-ip6"),
Dave Barachd6534602016-06-14 18:38:02 -0400417};
418
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419VNET_FEATURE_INIT (ip6_vpath, static) =
420{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100421 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400422 .node_name = "vpath-input-ip6",
John Lo2b81eb82017-01-30 13:12:10 -0500423 .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"),
424};
425
426VNET_FEATURE_INIT (ip6_vxlan_bypass, static) =
427{
428 .arc_name = "ip6-unicast",
429 .node_name = "ip6-vxlan-bypass",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100430 .runs_before = VNET_FEATURES ("ip6-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400431};
432
Neale Ranns8269d3d2018-01-30 09:02:20 -0800433VNET_FEATURE_INIT (ip6_not_enabled, static) =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500434{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100435 .arc_name = "ip6-unicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800436 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400437 .runs_before = VNET_FEATURES ("ip6-lookup"),
438};
439
440VNET_FEATURE_INIT (ip6_lookup, static) =
441{
442 .arc_name = "ip6-unicast",
443 .node_name = "ip6-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100444 .runs_before = 0, /*last feature*/
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100445};
446
Dave Barachd6534602016-06-14 18:38:02 -0400447/* Built-in ip6 multicast rx feature path definition (none now) */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100448VNET_FEATURE_ARC_INIT (ip6_multicast, static) =
449{
450 .arc_name = "ip6-multicast",
451 .start_nodes = VNET_FEATURES ("ip6-input"),
Dave Baracha25def72018-11-26 11:04:45 -0500452 .last_in_arc = "ip6-mfib-forward-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100453 .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index,
454};
455
456VNET_FEATURE_INIT (ip6_vpath_mc, static) = {
457 .arc_name = "ip6-multicast",
Dave Barachd6534602016-06-14 18:38:02 -0400458 .node_name = "vpath-input-ip6",
Neale Ranns32e1c012016-11-22 17:07:28 +0000459 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400460};
461
Neale Ranns8269d3d2018-01-30 09:02:20 -0800462VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = {
Damjan Marion8b3191e2016-11-09 19:54:20 +0100463 .arc_name = "ip6-multicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800464 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400465 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
466};
467
468VNET_FEATURE_INIT (ip6_mc_lookup, static) = {
469 .arc_name = "ip6-multicast",
470 .node_name = "ip6-mfib-forward-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100471 .runs_before = 0, /* last feature */
Neale Ranns5e575b12016-10-03 09:40:25 +0100472};
Dave Barach5331c722016-08-17 11:54:30 -0400473
474/* Built-in ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100475VNET_FEATURE_ARC_INIT (ip6_output, static) =
476{
477 .arc_name = "ip6-output",
Neale Rannsf068c3e2018-01-03 04:18:48 -0800478 .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"),
Dave Baracha25def72018-11-26 11:04:45 -0500479 .last_in_arc = "interface-output",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100480 .arc_index_ptr = &ip6_main.lookup_main.output_feature_arc_index,
Dave Barach5331c722016-08-17 11:54:30 -0400481};
482
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100483VNET_FEATURE_INIT (ip6_outacl, static) = {
484 .arc_name = "ip6-output",
485 .node_name = "ip6-outacl",
Pierre Pfister057b3562018-12-10 17:01:01 +0100486 .runs_before = VNET_FEATURES ("ipsec6-output-feature"),
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100487};
488
Matus Fabian08a6f012016-11-15 06:08:51 -0800489VNET_FEATURE_INIT (ip6_ipsec_output, static) = {
490 .arc_name = "ip6-output",
Pierre Pfister057b3562018-12-10 17:01:01 +0100491 .node_name = "ipsec6-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800492 .runs_before = VNET_FEATURES ("interface-output"),
493};
494
Damjan Marion8b3191e2016-11-09 19:54:20 +0100495VNET_FEATURE_INIT (ip6_interface_output, static) = {
496 .arc_name = "ip6-output",
497 .node_name = "interface-output",
498 .runs_before = 0, /* not before any other features */
499};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500/* *INDENT-ON* */
Dave Barachd6534602016-06-14 18:38:02 -0400501
Damjan Marion38173502019-02-13 19:30:09 +0100502static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500503ip6_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504{
Florin Corasb5c13fd2017-05-10 12:32:53 -0700505 ip6_main_t *im = &ip6_main;
506
507 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
508 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
509
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200510 if (!is_add)
511 {
512 /* Ensure that IPv6 is disabled */
513 ip6_main_t *im6 = &ip6_main;
514 ip_lookup_main_t *lm6 = &im6->lookup_main;
515 ip_interface_address_t *ia = 0;
516 ip6_address_t *address;
517 vlib_main_t *vm = vlib_get_main ();
518
519 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, 0 /* is_add */ );
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700520 vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0);
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200521 /* *INDENT-OFF* */
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700522 foreach_ip_interface_address (lm6, ia, sw_if_index, 0,
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200523 ({
524 address = ip_interface_address_get_address (lm6, ia);
525 ip6_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1);
526 }));
527 /* *INDENT-ON* */
528 ip6_mfib_interface_enable_disable (sw_if_index, 0);
529 }
530
Neale Ranns8269d3d2018-01-30 09:02:20 -0800531 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +0100532 is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533
Neale Ranns8269d3d2018-01-30 09:02:20 -0800534 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
535 sw_if_index, is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537 return /* no error */ 0;
538}
539
540VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_sw_interface_add_del);
541
Damjan Marion38173502019-02-13 19:30:09 +0100542VLIB_NODE_FN (ip6_lookup_node) (vlib_main_t * vm,
543 vlib_node_runtime_t * node,
544 vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200545{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100546 return ip6_lookup_inline (vm, node, frame);
Damjan Marionaca64c92016-04-13 09:48:56 +0200547}
548
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549static u8 *format_ip6_lookup_trace (u8 * s, va_list * args);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100550
Dave Barachd7cb1b52016-12-09 09:52:16 -0500551/* *INDENT-OFF* */
552VLIB_REGISTER_NODE (ip6_lookup_node) =
553{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 .name = "ip6-lookup",
555 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100556 .format_trace = format_ip6_lookup_trace,
Ole Troanf0f85222016-06-14 21:12:32 +0200557 .n_next_nodes = IP6_LOOKUP_N_NEXT,
Damjan Marionb2707892016-04-13 11:21:07 +0200558 .next_nodes = IP6_LOOKUP_NEXT_NODES,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500560/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561
Damjan Marion38173502019-02-13 19:30:09 +0100562VLIB_NODE_FN (ip6_load_balance_node) (vlib_main_t * vm,
563 vlib_node_runtime_t * node,
564 vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200565{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566 vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters;
567 u32 n_left_from, n_left_to_next, *from, *to_next;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100568 ip_lookup_next_t next;
Damjan Marion067cd622018-07-11 12:47:43 +0200569 u32 thread_index = vm->thread_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500570 ip6_main_t *im = &ip6_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100571
572 from = vlib_frame_vector_args (frame);
573 n_left_from = frame->n_vectors;
574 next = node->cached_next_index;
575
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100576 while (n_left_from > 0)
577 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500578 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100579
Dave Barach75fc8542016-10-11 16:16:02 -0400580
Neale Ranns2be95c12016-11-19 13:50:04 +0000581 while (n_left_from >= 4 && n_left_to_next >= 2)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582 {
583 ip_lookup_next_t next0, next1;
584 const load_balance_t *lb0, *lb1;
585 vlib_buffer_t *p0, *p1;
586 u32 pi0, lbi0, hc0, pi1, lbi1, hc1;
587 const ip6_header_t *ip0, *ip1;
588 const dpo_id_t *dpo0, *dpo1;
Neale Ranns2be95c12016-11-19 13:50:04 +0000589
Dave Barachd7cb1b52016-12-09 09:52:16 -0500590 /* Prefetch next iteration. */
591 {
592 vlib_buffer_t *p2, *p3;
Neale Ranns2be95c12016-11-19 13:50:04 +0000593
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594 p2 = vlib_get_buffer (vm, from[2]);
595 p3 = vlib_get_buffer (vm, from[3]);
Neale Ranns2be95c12016-11-19 13:50:04 +0000596
Dave Barachd7cb1b52016-12-09 09:52:16 -0500597 vlib_prefetch_buffer_header (p2, STORE);
598 vlib_prefetch_buffer_header (p3, STORE);
Neale Ranns2be95c12016-11-19 13:50:04 +0000599
Dave Barachd7cb1b52016-12-09 09:52:16 -0500600 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
601 CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
602 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000603
Dave Barachd7cb1b52016-12-09 09:52:16 -0500604 pi0 = to_next[0] = from[0];
605 pi1 = to_next[1] = from[1];
Neale Ranns2be95c12016-11-19 13:50:04 +0000606
Dave Barachd7cb1b52016-12-09 09:52:16 -0500607 from += 2;
608 n_left_from -= 2;
609 to_next += 2;
610 n_left_to_next -= 2;
Neale Ranns2be95c12016-11-19 13:50:04 +0000611
Dave Barachd7cb1b52016-12-09 09:52:16 -0500612 p0 = vlib_get_buffer (vm, pi0);
613 p1 = vlib_get_buffer (vm, pi1);
Neale Ranns2be95c12016-11-19 13:50:04 +0000614
Dave Barachd7cb1b52016-12-09 09:52:16 -0500615 ip0 = vlib_buffer_get_current (p0);
616 ip1 = vlib_buffer_get_current (p1);
617 lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
618 lbi1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
Neale Ranns2be95c12016-11-19 13:50:04 +0000619
Dave Barachd7cb1b52016-12-09 09:52:16 -0500620 lb0 = load_balance_get (lbi0);
621 lb1 = load_balance_get (lbi1);
Neale Ranns2be95c12016-11-19 13:50:04 +0000622
Dave Barachd7cb1b52016-12-09 09:52:16 -0500623 /*
624 * this node is for via FIBs we can re-use the hash value from the
625 * to node if present.
626 * We don't want to use the same hash value at each level in the recursion
627 * graph as that would lead to polarisation
628 */
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000629 hc0 = hc1 = 0;
Neale Ranns2be95c12016-11-19 13:50:04 +0000630
Dave Barachd7cb1b52016-12-09 09:52:16 -0500631 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
632 {
633 if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
634 {
635 hc0 = vnet_buffer (p0)->ip.flow_hash =
636 vnet_buffer (p0)->ip.flow_hash >> 1;
637 }
638 else
639 {
640 hc0 = vnet_buffer (p0)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000641 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500642 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700643 dpo0 =
644 load_balance_get_fwd_bucket (lb0,
645 (hc0 &
646 lb0->lb_n_buckets_minus_1));
647 }
648 else
649 {
650 dpo0 = load_balance_get_bucket_i (lb0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500651 }
652 if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
653 {
654 if (PREDICT_TRUE (vnet_buffer (p1)->ip.flow_hash))
655 {
656 hc1 = vnet_buffer (p1)->ip.flow_hash =
657 vnet_buffer (p1)->ip.flow_hash >> 1;
658 }
659 else
660 {
661 hc1 = vnet_buffer (p1)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000662 ip6_compute_flow_hash (ip1, lb1->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500663 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700664 dpo1 =
665 load_balance_get_fwd_bucket (lb1,
666 (hc1 &
667 lb1->lb_n_buckets_minus_1));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500668 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700669 else
670 {
671 dpo1 = load_balance_get_bucket_i (lb1, 0);
672 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000673
Dave Barachd7cb1b52016-12-09 09:52:16 -0500674 next0 = dpo0->dpoi_next_node;
675 next1 = dpo1->dpoi_next_node;
Neale Ranns2be95c12016-11-19 13:50:04 +0000676
Dave Barachd7cb1b52016-12-09 09:52:16 -0500677 /* Only process the HBH Option Header if explicitly configured to do so */
678 if (PREDICT_FALSE
679 (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
680 {
681 next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
682 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
683 }
684 /* Only process the HBH Option Header if explicitly configured to do so */
685 if (PREDICT_FALSE
686 (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
687 {
688 next1 = (dpo_is_adj (dpo1) && im->hbh_enabled) ?
689 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next1;
690 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000691
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
693 vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
Neale Ranns2be95c12016-11-19 13:50:04 +0000694
Dave Barachd7cb1b52016-12-09 09:52:16 -0500695 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200696 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500697 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200698 (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, p1));
Neale Ranns2be95c12016-11-19 13:50:04 +0000699
Dave Barachd7cb1b52016-12-09 09:52:16 -0500700 vlib_validate_buffer_enqueue_x2 (vm, node, next,
701 to_next, n_left_to_next,
702 pi0, pi1, next0, next1);
703 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000704
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100705 while (n_left_from > 0 && n_left_to_next > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706 {
707 ip_lookup_next_t next0;
708 const load_balance_t *lb0;
709 vlib_buffer_t *p0;
710 u32 pi0, lbi0, hc0;
711 const ip6_header_t *ip0;
712 const dpo_id_t *dpo0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100713
Dave Barachd7cb1b52016-12-09 09:52:16 -0500714 pi0 = from[0];
715 to_next[0] = pi0;
716 from += 1;
717 to_next += 1;
718 n_left_to_next -= 1;
719 n_left_from -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100720
Dave Barachd7cb1b52016-12-09 09:52:16 -0500721 p0 = vlib_get_buffer (vm, pi0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100722
Dave Barachd7cb1b52016-12-09 09:52:16 -0500723 ip0 = vlib_buffer_get_current (p0);
724 lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100725
Dave Barachd7cb1b52016-12-09 09:52:16 -0500726 lb0 = load_balance_get (lbi0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100727
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000728 hc0 = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500729 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
730 {
731 if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
732 {
733 hc0 = vnet_buffer (p0)->ip.flow_hash =
734 vnet_buffer (p0)->ip.flow_hash >> 1;
735 }
736 else
737 {
738 hc0 = vnet_buffer (p0)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000739 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500740 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700741 dpo0 =
742 load_balance_get_fwd_bucket (lb0,
743 (hc0 &
744 lb0->lb_n_buckets_minus_1));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500745 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700746 else
747 {
748 dpo0 = load_balance_get_bucket_i (lb0, 0);
749 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100750
Dave Barachd7cb1b52016-12-09 09:52:16 -0500751 next0 = dpo0->dpoi_next_node;
752 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
Neale Ranns2be95c12016-11-19 13:50:04 +0000753
Dave Barachd7cb1b52016-12-09 09:52:16 -0500754 /* Only process the HBH Option Header if explicitly configured to do so */
755 if (PREDICT_FALSE
756 (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
757 {
758 next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
759 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
760 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000761
Dave Barachd7cb1b52016-12-09 09:52:16 -0500762 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200763 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100764
Dave Barachd7cb1b52016-12-09 09:52:16 -0500765 vlib_validate_buffer_enqueue_x1 (vm, node, next,
766 to_next, n_left_to_next,
767 pi0, next0);
768 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100769
770 vlib_put_next_frame (vm, node, next, n_left_to_next);
771 }
772
Neale Rannsa71844f2018-11-08 07:31:36 -0800773 if (node->flags & VLIB_NODE_FLAG_TRACE)
774 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
775
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100776 return frame->n_vectors;
Damjan Marionaca64c92016-04-13 09:48:56 +0200777}
778
Dave Barachd7cb1b52016-12-09 09:52:16 -0500779/* *INDENT-OFF* */
780VLIB_REGISTER_NODE (ip6_load_balance_node) =
781{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100782 .name = "ip6-load-balance",
Damjan Marionaca64c92016-04-13 09:48:56 +0200783 .vector_size = sizeof (u32),
Ole Troanf0f85222016-06-14 21:12:32 +0200784 .sibling_of = "ip6-lookup",
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100785 .format_trace = format_ip6_lookup_trace,
Damjan Marionaca64c92016-04-13 09:48:56 +0200786};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500787/* *INDENT-ON* */
Damjan Marionaca64c92016-04-13 09:48:56 +0200788
Dave Barachd7cb1b52016-12-09 09:52:16 -0500789typedef struct
790{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 /* Adjacency taken. */
792 u32 adj_index;
793 u32 flow_hash;
John Lo2d343742016-01-19 17:27:17 -0500794 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
796 /* Packet data, possibly *after* rewrite. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500797 u8 packet_data[128 - 1 * sizeof (u32)];
798}
799ip6_forward_next_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800
Damjan Marion38173502019-02-13 19:30:09 +0100801#ifndef CLIB_MARCH_VARIANT
John Lo2b81eb82017-01-30 13:12:10 -0500802u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500803format_ip6_forward_next_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804{
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100805 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
806 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500807 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200808 u32 indent = format_get_indent (s);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100809
Dave Barachd7cb1b52016-12-09 09:52:16 -0500810 s = format (s, "%U%U",
811 format_white_space, indent,
812 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100813 return s;
814}
Damjan Marion38173502019-02-13 19:30:09 +0100815#endif
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100816
Dave Barachd7cb1b52016-12-09 09:52:16 -0500817static u8 *
818format_ip6_lookup_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100819{
820 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
821 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500822 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200823 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
John Loac8146c2016-09-27 17:44:02 -0400825 s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500826 t->fib_index, t->adj_index, t->flow_hash);
827 s = format (s, "\n%U%U",
828 format_white_space, indent,
829 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100830 return s;
831}
Pierre Pfister0febaf12016-06-08 12:23:21 +0100832
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833
Dave Barachd7cb1b52016-12-09 09:52:16 -0500834static u8 *
835format_ip6_rewrite_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100836{
837 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
838 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500839 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200840 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100842 s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500843 t->fib_index, t->adj_index, format_ip_adjacency,
844 t->adj_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100845 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500846 format_white_space, indent,
847 format_ip_adjacency_packet_data,
Neale Rannsb069a692017-03-15 12:34:25 -0400848 t->adj_index, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 return s;
850}
851
852/* Common trace function for all ip6-forward next nodes. */
Damjan Marion38173502019-02-13 19:30:09 +0100853#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854void
855ip6_forward_next_trace (vlib_main_t * vm,
856 vlib_node_runtime_t * node,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500857 vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500859 u32 *from, n_left;
860 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861
862 n_left = frame->n_vectors;
863 from = vlib_frame_vector_args (frame);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100864
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 while (n_left >= 4)
866 {
867 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500868 vlib_buffer_t *b0, *b1;
869 ip6_forward_next_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870
871 /* Prefetch next iteration. */
872 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
873 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
874
875 bi0 = from[0];
876 bi1 = from[1];
877
878 b0 = vlib_get_buffer (vm, bi0);
879 b1 = vlib_get_buffer (vm, bi1);
880
881 if (b0->flags & VLIB_BUFFER_IS_TRACED)
882 {
883 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
884 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500885 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
886 t0->fib_index =
887 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
888 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
889 vec_elt (im->fib_index_by_sw_if_index,
890 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100891
Dave Barach178cf492018-11-13 16:34:13 -0500892 clib_memcpy_fast (t0->packet_data,
893 vlib_buffer_get_current (b0),
894 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 }
896 if (b1->flags & VLIB_BUFFER_IS_TRACED)
897 {
898 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
899 t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500900 t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
901 t1->fib_index =
902 (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
903 (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
904 vec_elt (im->fib_index_by_sw_if_index,
905 vnet_buffer (b1)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100906
Dave Barach178cf492018-11-13 16:34:13 -0500907 clib_memcpy_fast (t1->packet_data,
908 vlib_buffer_get_current (b1),
909 sizeof (t1->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910 }
911 from += 2;
912 n_left -= 2;
913 }
914
915 while (n_left >= 1)
916 {
917 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500918 vlib_buffer_t *b0;
919 ip6_forward_next_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920
921 bi0 = from[0];
922
923 b0 = vlib_get_buffer (vm, bi0);
924
925 if (b0->flags & VLIB_BUFFER_IS_TRACED)
926 {
927 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
928 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500929 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
930 t0->fib_index =
931 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
932 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
933 vec_elt (im->fib_index_by_sw_if_index,
934 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100935
Dave Barach178cf492018-11-13 16:34:13 -0500936 clib_memcpy_fast (t0->packet_data,
937 vlib_buffer_get_current (b0),
938 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 }
940 from += 1;
941 n_left -= 1;
942 }
943}
944
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945/* Compute TCP/UDP/ICMP6 checksum in software. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500946u16
947ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
948 ip6_header_t * ip0, int *bogus_lengthp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949{
950 ip_csum_t sum0;
951 u16 sum16, payload_length_host_byte_order;
952 u32 i, n_this_buffer, n_bytes_left;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500953 u32 headers_size = sizeof (ip0[0]);
954 void *data_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955
Dave Barachd7cb1b52016-12-09 09:52:16 -0500956 ASSERT (bogus_lengthp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957 *bogus_lengthp = 0;
958
959 /* Initialize checksum with ip header. */
960 sum0 = ip0->payload_length + clib_host_to_net_u16 (ip0->protocol);
961 payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
962 data_this_buffer = (void *) (ip0 + 1);
Dave Barach75fc8542016-10-11 16:16:02 -0400963
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964 for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++)
965 {
966 sum0 = ip_csum_with_carry (sum0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500967 clib_mem_unaligned (&ip0->
968 src_address.as_uword[i],
969 uword));
970 sum0 =
971 ip_csum_with_carry (sum0,
972 clib_mem_unaligned (&ip0->dst_address.as_uword[i],
973 uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974 }
975
AkshayaNadahalli1b563522017-01-23 22:05:35 +0530976 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets)
977 * or UDP-Ping packets */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500978 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500980 u32 skip_bytes;
981 ip6_hop_by_hop_ext_t *ext_hdr =
982 (ip6_hop_by_hop_ext_t *) data_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983
984 /* validate really icmp6 next */
AkshayaNadahalli1b563522017-01-23 22:05:35 +0530985 ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
986 || (ext_hdr->next_hdr == IP_PROTOCOL_UDP));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987
Dave Barachd7cb1b52016-12-09 09:52:16 -0500988 skip_bytes = 8 * (1 + ext_hdr->n_data_u64s);
989 data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes);
Dave Barach75fc8542016-10-11 16:16:02 -0400990
Dave Barachd7cb1b52016-12-09 09:52:16 -0500991 payload_length_host_byte_order -= skip_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 headers_size += skip_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500993 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994
995 n_bytes_left = n_this_buffer = payload_length_host_byte_order;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500996 if (p0 && n_this_buffer + headers_size > p0->current_length)
997 n_this_buffer =
998 p0->current_length >
999 headers_size ? p0->current_length - headers_size : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000 while (1)
1001 {
1002 sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer);
1003 n_bytes_left -= n_this_buffer;
1004 if (n_bytes_left == 0)
1005 break;
1006
1007 if (!(p0->flags & VLIB_BUFFER_NEXT_PRESENT))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001008 {
1009 *bogus_lengthp = 1;
1010 return 0xfefe;
1011 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012 p0 = vlib_get_buffer (vm, p0->next_buffer);
1013 data_this_buffer = vlib_buffer_get_current (p0);
1014 n_this_buffer = p0->current_length;
1015 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016
Dave Barachd7cb1b52016-12-09 09:52:16 -05001017 sum16 = ~ip_csum_fold (sum0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018
1019 return sum16;
1020}
1021
Dave Barachd7cb1b52016-12-09 09:52:16 -05001022u32
1023ip6_tcp_udp_icmp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001025 ip6_header_t *ip0 = vlib_buffer_get_current (p0);
1026 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 u16 sum16;
1028 int bogus_length;
1029
1030 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */
1031 ASSERT (ip0->protocol == IP_PROTOCOL_TCP
1032 || ip0->protocol == IP_PROTOCOL_ICMP6
1033 || ip0->protocol == IP_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -05001034 || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035
1036 udp0 = (void *) (ip0 + 1);
1037 if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
1038 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001039 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1040 | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001041 return p0->flags;
1042 }
1043
1044 sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length);
1045
Damjan Marion213b5aa2017-07-13 21:19:27 +02001046 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1047 | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048
1049 return p0->flags;
1050}
Damjan Marion38173502019-02-13 19:30:09 +01001051#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001052
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301053/**
1054 * @brief returns number of links on which src is reachable.
1055 */
1056always_inline int
1057ip6_urpf_loose_check (ip6_main_t * im, vlib_buffer_t * b, ip6_header_t * i)
1058{
1059 const load_balance_t *lb0;
1060 index_t lbi;
Florin Corasf3a3bad2018-03-28 02:18:29 -07001061 u32 fib_index;
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301062
Florin Corasf3a3bad2018-03-28 02:18:29 -07001063 fib_index = vec_elt (im->fib_index_by_sw_if_index,
1064 vnet_buffer (b)->sw_if_index[VLIB_RX]);
1065 fib_index =
1066 (vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ?
1067 fib_index : vnet_buffer (b)->sw_if_index[VLIB_TX];
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301068
Florin Corasf3a3bad2018-03-28 02:18:29 -07001069 lbi = ip6_fib_table_fwding_lookup (im, fib_index, &i->src_address);
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301070 lb0 = load_balance_get (lbi);
1071
1072 return (fib_urpf_check_size (lb0->lb_urpf));
1073}
1074
rootc9d1c5b2017-08-15 12:58:31 -04001075always_inline u8
1076ip6_next_proto_is_tcp_udp (vlib_buffer_t * p0, ip6_header_t * ip0,
1077 u32 * udp_offset0)
1078{
1079 u32 proto0;
1080 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0);
1081 if (proto0 != IP_PROTOCOL_UDP)
1082 {
1083 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0);
1084 proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0;
1085 }
1086 return proto0;
1087}
1088
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001089/* *INDENT-OFF* */
1090VNET_FEATURE_ARC_INIT (ip6_local) =
1091{
1092 .arc_name = "ip6-local",
1093 .start_nodes = VNET_FEATURES ("ip6-local"),
1094};
1095/* *INDENT-ON* */
1096
Benoît Ganne26a10192019-02-14 15:32:45 +01001097always_inline uword
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001098ip6_local_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1099 vlib_frame_t * frame, int head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001101 ip6_main_t *im = &ip6_main;
1102 ip_lookup_main_t *lm = &im->lookup_main;
Benoît Ganne26a10192019-02-14 15:32:45 +01001103 u32 *from, n_left_from;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001104 vlib_node_runtime_t *error_node =
1105 vlib_node_get_runtime (vm, ip6_input_node.index);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001106 u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index;
Benoît Ganne26a10192019-02-14 15:32:45 +01001107 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
1108 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109
1110 from = vlib_frame_vector_args (frame);
1111 n_left_from = frame->n_vectors;
Dave Barach75fc8542016-10-11 16:16:02 -04001112
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 if (node->flags & VLIB_NODE_FLAG_TRACE)
1114 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
1115
Benoît Ganne26a10192019-02-14 15:32:45 +01001116 vlib_get_buffers (vm, from, bufs, n_left_from);
1117 b = bufs;
1118 next = nexts;
1119
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001120 while (n_left_from > 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121 {
Benoît Ganne26a10192019-02-14 15:32:45 +01001122 /* Prefetch next iteration. */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001123 if (n_left_from >= 6)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001125 vlib_prefetch_buffer_header (b[4], STORE);
1126 vlib_prefetch_buffer_header (b[5], STORE);
1127 vlib_prefetch_buffer_data (b[2], LOAD);
1128 vlib_prefetch_buffer_data (b[3], LOAD);
Benoît Ganne26a10192019-02-14 15:32:45 +01001129 }
Dave Barach75fc8542016-10-11 16:16:02 -04001130
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001131 u8 error[2];
1132 error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1133 error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
Dave Barach75fc8542016-10-11 16:16:02 -04001134
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001135 ip6_header_t *ip[2];
1136 ip[0] = vlib_buffer_get_current (b[0]);
1137 ip[1] = vlib_buffer_get_current (b[1]);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001138
Benoît Ganne26a10192019-02-14 15:32:45 +01001139 if (head_of_feature_arc)
1140 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001141 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1142 vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001144 u8 type[2];
1145 type[0] = lm->builtin_protocol_by_ip_protocol[ip[0]->protocol];
1146 type[1] = lm->builtin_protocol_by_ip_protocol[ip[1]->protocol];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001148 u32 flags[2];
1149 flags[0] = b[0]->flags;
1150 flags[1] = b[1]->flags;
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001151
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001152 u32 good_l4_csum[2];
1153 good_l4_csum[0] =
1154 flags[0] & (VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
1155 VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
1156 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM);
1157 good_l4_csum[1] =
1158 flags[1] & (VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
Benoît Ganne26a10192019-02-14 15:32:45 +01001159 VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
1160 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM);
Filip Tehlarb601f222017-01-02 10:22:56 +01001161
Damjan Marion34e823f2019-02-19 08:55:18 +01001162 u32 udp_offset[2] = { };
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001163 u8 is_tcp_udp[2];
1164 is_tcp_udp[0] =
1165 ip6_next_proto_is_tcp_udp (b[0], ip[0], &udp_offset[0]);
1166 is_tcp_udp[1] =
1167 ip6_next_proto_is_tcp_udp (b[1], ip[1], &udp_offset[1]);
1168 i16 len_diff[2] = { 0 };
1169 if (PREDICT_TRUE (is_tcp_udp[0]))
Shwethab78292e2016-09-13 11:51:00 +01001170 {
Benoît Ganne26a10192019-02-14 15:32:45 +01001171 udp_header_t *udp =
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001172 (udp_header_t *) ((u8 *) ip[0] + udp_offset[0]);
1173 good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UDP
Benoît Ganne26a10192019-02-14 15:32:45 +01001174 && udp->checksum == 0;
1175 /* optimistically verify UDP length. */
1176 u16 ip_len, udp_len;
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001177 ip_len = clib_net_to_host_u16 (ip[0]->payload_length);
Benoît Ganne26a10192019-02-14 15:32:45 +01001178 udp_len = clib_net_to_host_u16 (udp->length);
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001179 len_diff[0] = ip_len - udp_len;
Shwethab78292e2016-09-13 11:51:00 +01001180 }
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001181 if (PREDICT_TRUE (is_tcp_udp[1]))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001183 udp_header_t *udp =
1184 (udp_header_t *) ((u8 *) ip[1] + udp_offset[1]);
1185 good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UDP
1186 && udp->checksum == 0;
1187 /* optimistically verify UDP length. */
1188 u16 ip_len, udp_len;
1189 ip_len = clib_net_to_host_u16 (ip[1]->payload_length);
1190 udp_len = clib_net_to_host_u16 (udp->length);
1191 len_diff[1] = ip_len - udp_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192 }
1193
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001194 good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1195 good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1196
1197 len_diff[0] = type[0] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[0] : 0;
1198 len_diff[1] = type[1] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[1] : 0;
1199
1200 u8 need_csum[2];
1201 need_csum[0] = type[0] != IP_BUILTIN_PROTOCOL_UNKNOWN
1202 && !good_l4_csum[0]
1203 && !(flags[0] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1204 need_csum[1] = type[1] != IP_BUILTIN_PROTOCOL_UNKNOWN
1205 && !good_l4_csum[1]
1206 && !(flags[1] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1207 if (PREDICT_FALSE (need_csum[0]))
1208 {
1209 flags[0] = ip6_tcp_udp_icmp_validate_checksum (vm, b[0]);
1210 good_l4_csum[0] = flags[0] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1211 }
1212 if (PREDICT_FALSE (need_csum[1]))
1213 {
1214 flags[1] = ip6_tcp_udp_icmp_validate_checksum (vm, b[1]);
1215 good_l4_csum[1] = flags[1] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1216 }
1217
1218 error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1219 error[0] = len_diff[0] < 0 ? IP6_ERROR_UDP_LENGTH : error[0];
1220 error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
1221 error[1] = len_diff[1] < 0 ? IP6_ERROR_UDP_LENGTH : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222
Benoît Ganne26a10192019-02-14 15:32:45 +01001223 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1224 IP6_ERROR_UDP_CHECKSUM,
1225 "Wrong IP6 errors constants");
1226 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1227 IP6_ERROR_ICMP_CHECKSUM,
1228 "Wrong IP6 errors constants");
1229
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001230 error[0] =
1231 !good_l4_csum[0] ? IP6_ERROR_UDP_CHECKSUM + type[0] : error[0];
1232 error[1] =
1233 !good_l4_csum[1] ? IP6_ERROR_UDP_CHECKSUM + type[1] : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234
1235 /* Drop packets from unroutable hosts. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001236 /* If this is a neighbor solicitation (ICMP), skip source RPF check */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001237 u8 unroutable[2];
1238 unroutable[0] = error[0] == IP6_ERROR_UNKNOWN_PROTOCOL
1239 && type[0] != IP_BUILTIN_PROTOCOL_ICMP
1240 && !ip6_address_is_link_local_unicast (&ip[0]->src_address);
1241 unroutable[1] = error[1] == IP6_ERROR_UNKNOWN_PROTOCOL
1242 && type[1] != IP_BUILTIN_PROTOCOL_ICMP
1243 && !ip6_address_is_link_local_unicast (&ip[1]->src_address);
1244 if (PREDICT_FALSE (unroutable[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001246 error[0] =
1247 !ip6_urpf_loose_check (im, b[0],
1248 ip[0]) ? IP6_ERROR_SRC_LOOKUP_MISS
1249 : error[0];
1250 }
1251 if (PREDICT_FALSE (unroutable[1]))
1252 {
1253 error[1] =
1254 !ip6_urpf_loose_check (im, b[1],
1255 ip[1]) ? IP6_ERROR_SRC_LOOKUP_MISS
1256 : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 }
1258
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001259 vnet_buffer (b[0])->ip.fib_index =
1260 vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1261 vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1262 vnet_buffer (b[0])->ip.fib_index;
1263 vnet_buffer (b[1])->ip.fib_index =
1264 vnet_buffer (b[1])->sw_if_index[VLIB_TX] != ~0 ?
1265 vnet_buffer (b[1])->sw_if_index[VLIB_TX] :
1266 vnet_buffer (b[1])->ip.fib_index;
Benoît Ganne26a10192019-02-14 15:32:45 +01001267 } /* head_of_feature_arc */
Florin Corascea194d2017-10-02 00:18:51 -07001268
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001269 next[0] = lm->local_next_by_ip_protocol[ip[0]->protocol];
1270 next[0] =
1271 error[0] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1272 next[1] = lm->local_next_by_ip_protocol[ip[1]->protocol];
1273 next[1] =
1274 error[1] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[1];
Florin Corascea194d2017-10-02 00:18:51 -07001275
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001276 b[0]->error = error_node->errors[0];
1277 b[1]->error = error_node->errors[1];
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001278
Benoît Ganne26a10192019-02-14 15:32:45 +01001279 if (head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001281 u8 ip6_unknown[2];
1282 ip6_unknown[0] = error[0] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1283 ip6_unknown[1] = error[1] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1284 if (PREDICT_TRUE (ip6_unknown[0]))
Shwethab78292e2016-09-13 11:51:00 +01001285 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001286 u32 next32 = next[0];
Benoît Ganne26a10192019-02-14 15:32:45 +01001287 vnet_feature_arc_start (arc_index,
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001288 vnet_buffer (b[0])->sw_if_index
1289 [VLIB_RX], &next32, b[0]);
1290 next[0] = next32;
1291 }
1292 if (PREDICT_TRUE (ip6_unknown[1]))
1293 {
1294 u32 next32 = next[1];
1295 vnet_feature_arc_start (arc_index,
1296 vnet_buffer (b[1])->sw_if_index
1297 [VLIB_RX], &next32, b[1]);
1298 next[1] = next32;
Shwethab78292e2016-09-13 11:51:00 +01001299 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300 }
Dave Barach75fc8542016-10-11 16:16:02 -04001301
Benoît Ganne26a10192019-02-14 15:32:45 +01001302 /* next */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001303 b += 2;
1304 next += 2;
1305 n_left_from -= 2;
Benoît Ganne26a10192019-02-14 15:32:45 +01001306 }
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001307
Benoît Ganne26a10192019-02-14 15:32:45 +01001308 while (n_left_from)
1309 {
1310 u8 error;
1311 error = IP6_ERROR_UNKNOWN_PROTOCOL;
1312
1313 ip6_header_t *ip;
1314 ip = vlib_buffer_get_current (b[0]);
1315
1316 if (head_of_feature_arc)
1317 {
1318 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1319 u8 type = lm->builtin_protocol_by_ip_protocol[ip->protocol];
1320
1321 u32 flags = b[0]->flags;
1322 u32 good_l4_csum =
1323 flags & (VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
1324 VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
1325 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM);
1326
1327 u32 udp_offset;
1328 i16 len_diff = 0;
1329 u8 is_tcp_udp = ip6_next_proto_is_tcp_udp (b[0], ip, &udp_offset);
1330 if (PREDICT_TRUE (is_tcp_udp))
1331 {
1332 udp_header_t *udp = (udp_header_t *) ((u8 *) ip + udp_offset);
1333 /* Don't verify UDP checksum for packets with explicit zero checksum. */
1334 good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UDP
1335 && udp->checksum == 0;
1336 /* optimistically verify UDP length. */
1337 u16 ip_len, udp_len;
1338 ip_len = clib_net_to_host_u16 (ip->payload_length);
1339 udp_len = clib_net_to_host_u16 (udp->length);
1340 len_diff = ip_len - udp_len;
1341 }
1342
1343 good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UNKNOWN;
1344 len_diff = type == IP_BUILTIN_PROTOCOL_UDP ? len_diff : 0;
1345
1346 u8 need_csum = type != IP_BUILTIN_PROTOCOL_UNKNOWN && !good_l4_csum
1347 && !(flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1348 if (PREDICT_FALSE (need_csum))
1349 {
1350 flags = ip6_tcp_udp_icmp_validate_checksum (vm, b[0]);
1351 good_l4_csum = flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
1352 }
1353
1354 error = IP6_ERROR_UNKNOWN_PROTOCOL;
1355 error = len_diff < 0 ? IP6_ERROR_UDP_LENGTH : error;
1356
1357 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1358 IP6_ERROR_UDP_CHECKSUM,
1359 "Wrong IP6 errors constants");
1360 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1361 IP6_ERROR_ICMP_CHECKSUM,
1362 "Wrong IP6 errors constants");
1363
1364 error = !good_l4_csum ? IP6_ERROR_UDP_CHECKSUM + type : error;
1365
1366 /* Drop packets from unroutable hosts. */
1367 /* If this is a neighbor solicitation (ICMP), skip source RPF check */
1368 u8 unroutable = error == IP6_ERROR_UNKNOWN_PROTOCOL
1369 && type != IP_BUILTIN_PROTOCOL_ICMP
1370 && !ip6_address_is_link_local_unicast (&ip->src_address);
1371 if (PREDICT_FALSE (unroutable))
1372 {
1373 error =
1374 !ip6_urpf_loose_check (im, b[0],
1375 ip) ? IP6_ERROR_SRC_LOOKUP_MISS :
1376 error;
1377 }
1378
1379 vnet_buffer (b[0])->ip.fib_index =
1380 vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1381 vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1382 vnet_buffer (b[0])->ip.fib_index;
1383 } /* head_of_feature_arc */
1384
1385 next[0] = lm->local_next_by_ip_protocol[ip->protocol];
1386 next[0] =
1387 error != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1388
1389 b[0]->error = error_node->errors[0];
1390
1391 if (head_of_feature_arc)
1392 {
1393 if (PREDICT_TRUE (error == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1394 {
1395 u32 next32 = next[0];
1396 vnet_feature_arc_start (arc_index,
1397 vnet_buffer (b[0])->sw_if_index
1398 [VLIB_RX], &next32, b[0]);
1399 next[0] = next32;
1400 }
1401 }
1402
1403 /* next */
1404 b += 1;
1405 next += 1;
1406 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001407 }
1408
Benoît Ganne26a10192019-02-14 15:32:45 +01001409 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410 return frame->n_vectors;
1411}
1412
Damjan Marion38173502019-02-13 19:30:09 +01001413VLIB_NODE_FN (ip6_local_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
1414 vlib_frame_t * frame)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001415{
1416 return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1417}
1418
Dave Barachd7cb1b52016-12-09 09:52:16 -05001419/* *INDENT-OFF* */
Damjan Marion38173502019-02-13 19:30:09 +01001420VLIB_REGISTER_NODE (ip6_local_node) =
Dave Barachd7cb1b52016-12-09 09:52:16 -05001421{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422 .name = "ip6-local",
1423 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424 .format_trace = format_ip6_forward_next_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001425 .n_next_nodes = IP_LOCAL_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001426 .next_nodes =
1427 {
Neale Rannsd91c1db2017-07-31 02:30:50 -07001428 [IP_LOCAL_NEXT_DROP] = "ip6-drop",
1429 [IP_LOCAL_NEXT_PUNT] = "ip6-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001430 [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup",
1431 [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input",
Juraj Sloboda3048b632018-10-02 11:13:53 +02001432 [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-reassembly",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433 },
1434};
Dave Barachd7cb1b52016-12-09 09:52:16 -05001435/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436
Damjan Marion38173502019-02-13 19:30:09 +01001437VLIB_NODE_FN (ip6_local_end_of_arc_node) (vlib_main_t * vm,
1438 vlib_node_runtime_t * node,
1439 vlib_frame_t * frame)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001440{
1441 return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1442}
1443
1444/* *INDENT-OFF* */
Damjan Marion38173502019-02-13 19:30:09 +01001445VLIB_REGISTER_NODE (ip6_local_end_of_arc_node) = {
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001446 .name = "ip6-local-end-of-arc",
1447 .vector_size = sizeof (u32),
1448
1449 .format_trace = format_ip6_forward_next_trace,
1450 .sibling_of = "ip6-local",
1451};
1452
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001453VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = {
1454 .arc_name = "ip6-local",
1455 .node_name = "ip6-local-end-of-arc",
1456 .runs_before = 0, /* not before any other features */
1457};
1458/* *INDENT-ON* */
1459
Damjan Marion38173502019-02-13 19:30:09 +01001460#ifdef CLIB_MARCH_VARIANT
1461extern vlib_node_registration_t ip6_local_node;
1462
1463#else
1464
Dave Barachd7cb1b52016-12-09 09:52:16 -05001465void
1466ip6_register_protocol (u32 protocol, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001468 vlib_main_t *vm = vlib_get_main ();
1469 ip6_main_t *im = &ip6_main;
1470 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001471
1472 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001473 lm->local_next_by_ip_protocol[protocol] =
1474 vlib_node_add_next (vm, ip6_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475}
1476
Ed Warnickecb9cada2015-12-08 15:45:58 -07001477clib_error_t *
John Lo86376342018-06-11 20:14:49 -04001478ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index,
1479 u8 refresh)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001481 vnet_main_t *vnm = vnet_get_main ();
1482 ip6_main_t *im = &ip6_main;
1483 icmp6_neighbor_solicitation_header_t *h;
1484 ip6_address_t *src;
1485 ip_interface_address_t *ia;
1486 ip_adjacency_t *adj;
1487 vnet_hw_interface_t *hi;
1488 vnet_sw_interface_t *si;
1489 vlib_buffer_t *b;
Neale Ranns7a272742017-05-30 02:08:14 -07001490 adj_index_t ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001491 u32 bi = 0;
1492 int bogus_length;
1493
1494 si = vnet_get_sw_interface (vnm, sw_if_index);
1495
1496 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
1497 {
1498 return clib_error_return (0, "%U: interface %U down",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001499 format_ip6_address, dst,
1500 format_vnet_sw_if_index_name, vnm,
1501 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001502 }
1503
Dave Barachd7cb1b52016-12-09 09:52:16 -05001504 src =
1505 ip6_interface_address_matching_destination (im, dst, sw_if_index, &ia);
1506 if (!src)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001507 {
1508 vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE;
Dave Barach75fc8542016-10-11 16:16:02 -04001509 return clib_error_return
Dave Barachd7cb1b52016-12-09 09:52:16 -05001510 (0, "no matching interface address for destination %U (interface %U)",
1511 format_ip6_address, dst,
1512 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001513 }
1514
Dave Barachd7cb1b52016-12-09 09:52:16 -05001515 h =
1516 vlib_packet_template_get_packet (vm,
1517 &im->discover_neighbor_packet_template,
1518 &bi);
John Lo084606b2018-06-19 15:27:48 -04001519 if (!h)
1520 return clib_error_return (0, "ICMP6 NS packet allocation failed");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001521
1522 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1523
1524 /* Destination address is a solicited node multicast address. We need to fill in
1525 the low 24 bits with low 24 bits of target's address. */
1526 h->ip.dst_address.as_u8[13] = dst->as_u8[13];
1527 h->ip.dst_address.as_u8[14] = dst->as_u8[14];
1528 h->ip.dst_address.as_u8[15] = dst->as_u8[15];
1529
1530 h->ip.src_address = src[0];
1531 h->neighbor.target_address = dst[0];
1532
Pavel Kotucek57808982017-08-02 08:20:19 +02001533 if (PREDICT_FALSE (!hi->hw_address))
1534 {
1535 return clib_error_return (0, "%U: interface %U do not support ip probe",
1536 format_ip6_address, dst,
1537 format_vnet_sw_if_index_name, vnm,
1538 sw_if_index);
1539 }
1540
Dave Barach178cf492018-11-13 16:34:13 -05001541 clib_memcpy_fast (h->link_layer_option.ethernet_address, hi->hw_address,
1542 vec_len (hi->hw_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001543
Dave Barach75fc8542016-10-11 16:16:02 -04001544 h->neighbor.icmp.checksum =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001545 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001546 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001547
1548 b = vlib_get_buffer (vm, bi);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001549 vnet_buffer (b)->sw_if_index[VLIB_RX] =
1550 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001551
1552 /* Add encapsulation string for software interface (e.g. ethernet header). */
Neale Ranns7a272742017-05-30 02:08:14 -07001553 ip46_address_t nh = {
1554 .ip6 = *dst,
1555 };
1556
1557 ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP6,
1558 VNET_LINK_IP6, &nh, sw_if_index);
1559 adj = adj_get (ai);
1560
Dave Barach59b25652017-09-10 15:04:27 -04001561 /* Peer has been previously resolved, retrieve glean adj instead */
John Lo86376342018-06-11 20:14:49 -04001562 if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE && refresh == 0)
Dave Barach59b25652017-09-10 15:04:27 -04001563 {
1564 adj_unlock (ai);
Ole Troan6ee40512018-02-12 18:14:39 +01001565 ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP6,
1566 VNET_LINK_IP6, sw_if_index, &nh);
Dave Barach59b25652017-09-10 15:04:27 -04001567 adj = adj_get (ai);
1568 }
1569
Ed Warnickecb9cada2015-12-08 15:45:58 -07001570 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
1571 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
1572
1573 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001574 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
1575 u32 *to_next = vlib_frame_vector_args (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001576 to_next[0] = bi;
1577 f->n_vectors = 1;
1578 vlib_put_frame_to_node (vm, hi->output_node_index, f);
1579 }
1580
Neale Ranns7a272742017-05-30 02:08:14 -07001581 adj_unlock (ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582 return /* no error */ 0;
1583}
Damjan Marion38173502019-02-13 19:30:09 +01001584#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001585
Dave Barachd7cb1b52016-12-09 09:52:16 -05001586typedef enum
1587{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588 IP6_REWRITE_NEXT_DROP,
Chris Luke816f3e12016-06-14 16:24:47 -04001589 IP6_REWRITE_NEXT_ICMP_ERROR,
Ole Troan313f7e22018-04-10 16:02:51 +02001590 IP6_REWRITE_NEXT_FRAGMENT,
1591 IP6_REWRITE_N_NEXT /* Last */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592} ip6_rewrite_next_t;
1593
Neale Ranns889fe942017-06-01 05:43:19 -04001594/**
1595 * This bits of an IPv6 address to mask to construct a multicast
1596 * MAC address
1597 */
1598#define IP6_MCAST_ADDR_MASK 0xffffffff
1599
Ole Troanda6e11b2018-05-23 11:21:42 +02001600always_inline void
1601ip6_mtu_check (vlib_buffer_t * b, u16 packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001602 u16 adj_packet_bytes, bool is_locally_generated,
1603 u32 * next, u32 * error)
Ole Troanda6e11b2018-05-23 11:21:42 +02001604{
1605 if (adj_packet_bytes >= 1280 && packet_bytes > adj_packet_bytes)
1606 {
Ole Troan313f7e22018-04-10 16:02:51 +02001607 if (is_locally_generated)
1608 {
1609 /* IP fragmentation */
Ole Troan282093f2018-09-19 12:38:51 +02001610 ip_frag_set_vnet_buffer (b, adj_packet_bytes,
Ole Troanb3655e52018-08-16 22:08:49 +02001611 IP6_FRAG_NEXT_IP6_REWRITE, 0);
Ole Troan313f7e22018-04-10 16:02:51 +02001612 *next = IP6_REWRITE_NEXT_FRAGMENT;
Ole Troan282093f2018-09-19 12:38:51 +02001613 *error = IP6_ERROR_MTU_EXCEEDED;
Ole Troan313f7e22018-04-10 16:02:51 +02001614 }
1615 else
1616 {
1617 *error = IP6_ERROR_MTU_EXCEEDED;
1618 icmp6_error_set_vnet_buffer (b, ICMP6_packet_too_big, 0,
1619 adj_packet_bytes);
1620 *next = IP6_REWRITE_NEXT_ICMP_ERROR;
1621 }
Ole Troanda6e11b2018-05-23 11:21:42 +02001622 }
1623}
1624
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625always_inline uword
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001626ip6_rewrite_inline_with_gso (vlib_main_t * vm,
1627 vlib_node_runtime_t * node,
1628 vlib_frame_t * frame,
1629 int do_counters, int is_midchain, int is_mcast,
1630 int do_gso)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001632 ip_lookup_main_t *lm = &ip6_main.lookup_main;
1633 u32 *from = vlib_frame_vector_args (frame);
1634 u32 n_left_from, n_left_to_next, *to_next, next_index;
1635 vlib_node_runtime_t *error_node =
1636 vlib_node_get_runtime (vm, ip6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001637
1638 n_left_from = frame->n_vectors;
1639 next_index = node->cached_next_index;
Damjan Marion067cd622018-07-11 12:47:43 +02001640 u32 thread_index = vm->thread_index;
Dave Barach75fc8542016-10-11 16:16:02 -04001641
Ed Warnickecb9cada2015-12-08 15:45:58 -07001642 while (n_left_from > 0)
1643 {
1644 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1645
1646 while (n_left_from >= 4 && n_left_to_next >= 2)
1647 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001648 ip_adjacency_t *adj0, *adj1;
1649 vlib_buffer_t *p0, *p1;
1650 ip6_header_t *ip0, *ip1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651 u32 pi0, rw_len0, next0, error0, adj_index0;
1652 u32 pi1, rw_len1, next1, error1, adj_index1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001653 u32 tx_sw_if_index0, tx_sw_if_index1;
Ole Troan313f7e22018-04-10 16:02:51 +02001654 bool is_locally_originated0, is_locally_originated1;
Dave Barach75fc8542016-10-11 16:16:02 -04001655
Ed Warnickecb9cada2015-12-08 15:45:58 -07001656 /* Prefetch next iteration. */
1657 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001658 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001659
1660 p2 = vlib_get_buffer (vm, from[2]);
1661 p3 = vlib_get_buffer (vm, from[3]);
1662
1663 vlib_prefetch_buffer_header (p2, LOAD);
1664 vlib_prefetch_buffer_header (p3, LOAD);
1665
1666 CLIB_PREFETCH (p2->pre_data, 32, STORE);
1667 CLIB_PREFETCH (p3->pre_data, 32, STORE);
1668
1669 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
1670 CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
1671 }
1672
1673 pi0 = to_next[0] = from[0];
1674 pi1 = to_next[1] = from[1];
1675
1676 from += 2;
1677 n_left_from -= 2;
1678 to_next += 2;
1679 n_left_to_next -= 2;
Dave Barach75fc8542016-10-11 16:16:02 -04001680
Ed Warnickecb9cada2015-12-08 15:45:58 -07001681 p0 = vlib_get_buffer (vm, pi0);
1682 p1 = vlib_get_buffer (vm, pi1);
1683
Neale Rannsf06aea52016-11-29 06:51:37 -08001684 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1685 adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001686
Ed Warnickecb9cada2015-12-08 15:45:58 -07001687 ip0 = vlib_buffer_get_current (p0);
1688 ip1 = vlib_buffer_get_current (p1);
1689
1690 error0 = error1 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001691 next0 = next1 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001692
Ole Troan313f7e22018-04-10 16:02:51 +02001693 is_locally_originated0 =
1694 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1695 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001696 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001697 i32 hop_limit0 = ip0->hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001698
1699 /* Input node should have reject packets with hop limit 0. */
1700 ASSERT (ip0->hop_limit > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001701
1702 hop_limit0 -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001703
1704 ip0->hop_limit = hop_limit0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001705
Dave Barachd7cb1b52016-12-09 09:52:16 -05001706 /*
1707 * If the hop count drops below 1 when forwarding, generate
1708 * an ICMP response.
1709 */
1710 if (PREDICT_FALSE (hop_limit0 <= 0))
1711 {
1712 error0 = IP6_ERROR_TIME_EXPIRED;
1713 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1714 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1715 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1716 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1717 0);
1718 }
Neale Rannsf06aea52016-11-29 06:51:37 -08001719 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001720 else
1721 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001722 p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001723 }
Ole Troan313f7e22018-04-10 16:02:51 +02001724 is_locally_originated1 =
1725 p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1726 if (PREDICT_TRUE (!is_locally_originated1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001727 {
Neale Rannsf06aea52016-11-29 06:51:37 -08001728 i32 hop_limit1 = ip1->hop_limit;
1729
1730 /* Input node should have reject packets with hop limit 0. */
1731 ASSERT (ip1->hop_limit > 0);
1732
1733 hop_limit1 -= 1;
1734
1735 ip1->hop_limit = hop_limit1;
1736
Dave Barachd7cb1b52016-12-09 09:52:16 -05001737 /*
1738 * If the hop count drops below 1 when forwarding, generate
1739 * an ICMP response.
1740 */
1741 if (PREDICT_FALSE (hop_limit1 <= 0))
1742 {
1743 error1 = IP6_ERROR_TIME_EXPIRED;
1744 next1 = IP6_REWRITE_NEXT_ICMP_ERROR;
1745 vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1746 icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
1747 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1748 0);
1749 }
1750 }
1751 else
1752 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001753 p1->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001754 }
Neale Ranns107e7d42017-04-11 09:55:19 -07001755 adj0 = adj_get (adj_index0);
1756 adj1 = adj_get (adj_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001757
Ed Warnickecb9cada2015-12-08 15:45:58 -07001758 rw_len0 = adj0[0].rewrite_header.data_bytes;
1759 rw_len1 = adj1[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001760 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
1761 vnet_buffer (p1)->ip.save_rewrite_length = rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001762
Neale Ranns9c6a6132017-02-21 05:33:14 -08001763 if (do_counters)
1764 {
1765 vlib_increment_combined_counter
1766 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001767 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001768 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1769 vlib_increment_combined_counter
1770 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001771 thread_index, adj_index1, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001772 vlib_buffer_length_in_chain (vm, p1) + rw_len1);
1773 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001774
1775 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001776 u16 ip0_len =
1777 clib_net_to_host_u16 (ip0->payload_length) +
1778 sizeof (ip6_header_t);
1779 u16 ip1_len =
1780 clib_net_to_host_u16 (ip1->payload_length) +
1781 sizeof (ip6_header_t);
1782 if (do_gso && (p0->flags & VNET_BUFFER_F_GSO))
1783 ip0_len = gso_mtu_sz (p0);
1784 if (do_gso && (p1->flags & VNET_BUFFER_F_GSO))
1785 ip1_len = gso_mtu_sz (p1);
1786
1787
1788
1789 ip6_mtu_check (p0, ip0_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02001790 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001791 is_locally_originated0, &next0, &error0);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001792 ip6_mtu_check (p1, ip1_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02001793 adj1[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001794 is_locally_originated1, &next1, &error1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001795
Dave Barachd7cb1b52016-12-09 09:52:16 -05001796 /* Don't adjust the buffer for hop count issue; icmp-error node
Jim Thompsonf324dec2019-04-08 03:22:21 -05001797 * wants to see the IP header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001798 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1799 {
1800 p0->current_data -= rw_len0;
1801 p0->current_length += rw_len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001802
Dave Barachd7cb1b52016-12-09 09:52:16 -05001803 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
1804 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1805 next0 = adj0[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001806
Neale Rannsb069a692017-03-15 12:34:25 -04001807 if (PREDICT_FALSE
1808 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1809 vnet_feature_arc_start (lm->output_feature_arc_index,
1810 tx_sw_if_index0, &next0, p0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001811 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04001812 else
1813 {
1814 p0->error = error_node->errors[error0];
1815 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001816 if (PREDICT_TRUE (error1 == IP6_ERROR_NONE))
1817 {
1818 p1->current_data -= rw_len1;
1819 p1->current_length += rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001820
Dave Barachd7cb1b52016-12-09 09:52:16 -05001821 tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
1822 vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1;
1823 next1 = adj1[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001824
Neale Rannsb069a692017-03-15 12:34:25 -04001825 if (PREDICT_FALSE
1826 (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1827 vnet_feature_arc_start (lm->output_feature_arc_index,
1828 tx_sw_if_index1, &next1, p1);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001829 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04001830 else
1831 {
1832 p1->error = error_node->errors[error1];
1833 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001834
Neale Ranns25edf142019-03-22 08:12:48 +00001835 if (is_midchain)
1836 {
1837 /* before we paint on the next header, update the L4
1838 * checksums if required, since there's no offload on a tunnel */
1839 calc_checksums (vm, p0);
1840 calc_checksums (vm, p1);
1841 }
1842
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001843 /* Guess we are only writing on simple Ethernet header. */
1844 vnet_rewrite_two_headers (adj0[0], adj1[0],
1845 ip0, ip1, sizeof (ethernet_header_t));
1846
1847 if (is_midchain)
1848 {
Neale Ranns25edf142019-03-22 08:12:48 +00001849 if (adj0->sub_type.midchain.fixup_func)
1850 adj0->sub_type.midchain.fixup_func
1851 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1852 if (adj1->sub_type.midchain.fixup_func)
1853 adj1->sub_type.midchain.fixup_func
1854 (vm, adj1, p1, adj1->sub_type.midchain.fixup_data);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001855 }
1856 if (is_mcast)
1857 {
1858 /*
1859 * copy bytes from the IP address into the MAC rewrite
1860 */
Neale Ranns889fe942017-06-01 05:43:19 -04001861 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1862 adj0->
1863 rewrite_header.dst_mcast_offset,
1864 &ip0->dst_address.as_u32[3],
1865 (u8 *) ip0);
1866 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1867 adj1->
1868 rewrite_header.dst_mcast_offset,
1869 &ip1->dst_address.as_u32[3],
1870 (u8 *) ip1);
Neale Ranns32e1c012016-11-22 17:07:28 +00001871 }
Neale Ranns5e575b12016-10-03 09:40:25 +01001872
Ed Warnickecb9cada2015-12-08 15:45:58 -07001873 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1874 to_next, n_left_to_next,
1875 pi0, pi1, next0, next1);
1876 }
1877
1878 while (n_left_from > 0 && n_left_to_next > 0)
1879 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001880 ip_adjacency_t *adj0;
1881 vlib_buffer_t *p0;
1882 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001883 u32 pi0, rw_len0;
1884 u32 adj_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001885 u32 tx_sw_if_index0;
Ole Troan313f7e22018-04-10 16:02:51 +02001886 bool is_locally_originated0;
Dave Barach75fc8542016-10-11 16:16:02 -04001887
Ed Warnickecb9cada2015-12-08 15:45:58 -07001888 pi0 = to_next[0] = from[0];
1889
1890 p0 = vlib_get_buffer (vm, pi0);
1891
Neale Rannsf06aea52016-11-29 06:51:37 -08001892 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001893
Neale Ranns107e7d42017-04-11 09:55:19 -07001894 adj0 = adj_get (adj_index0);
Dave Barach75fc8542016-10-11 16:16:02 -04001895
Ed Warnickecb9cada2015-12-08 15:45:58 -07001896 ip0 = vlib_buffer_get_current (p0);
1897
1898 error0 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001899 next0 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001900
1901 /* Check hop limit */
Ole Troan313f7e22018-04-10 16:02:51 +02001902 is_locally_originated0 =
1903 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1904 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001905 {
1906 i32 hop_limit0 = ip0->hop_limit;
1907
1908 ASSERT (ip0->hop_limit > 0);
1909
1910 hop_limit0 -= 1;
1911
1912 ip0->hop_limit = hop_limit0;
1913
Dave Barachd7cb1b52016-12-09 09:52:16 -05001914 if (PREDICT_FALSE (hop_limit0 <= 0))
1915 {
1916 /*
1917 * If the hop count drops below 1 when forwarding, generate
1918 * an ICMP response.
1919 */
1920 error0 = IP6_ERROR_TIME_EXPIRED;
1921 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1922 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1923 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1924 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1925 0);
1926 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001927 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001928 else
1929 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001930 p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001931 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001932
Neale Ranns25edf142019-03-22 08:12:48 +00001933 if (is_midchain)
1934 {
1935 calc_checksums (vm, p0);
1936 }
1937
Ed Warnickecb9cada2015-12-08 15:45:58 -07001938 /* Guess we are only writing on simple Ethernet header. */
1939 vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t));
Dave Barach75fc8542016-10-11 16:16:02 -04001940
Ed Warnickecb9cada2015-12-08 15:45:58 -07001941 /* Update packet buffer attributes/set output interface. */
1942 rw_len0 = adj0[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001943 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001944
Neale Ranns9c6a6132017-02-21 05:33:14 -08001945 if (do_counters)
1946 {
1947 vlib_increment_combined_counter
1948 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001949 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001950 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1951 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952
1953 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001954 u16 ip0_len =
1955 clib_net_to_host_u16 (ip0->payload_length) +
1956 sizeof (ip6_header_t);
1957 if (do_gso && (p0->flags & VNET_BUFFER_F_GSO))
1958 ip0_len = gso_mtu_sz (p0);
1959
1960 ip6_mtu_check (p0, ip0_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02001961 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001962 is_locally_originated0, &next0, &error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001963
Dave Barachd7cb1b52016-12-09 09:52:16 -05001964 /* Don't adjust the buffer for hop count issue; icmp-error node
Ole Troanda6e11b2018-05-23 11:21:42 +02001965 * wants to see the IP header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001966 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1967 {
Chris Luke816f3e12016-06-14 16:24:47 -04001968 p0->current_data -= rw_len0;
1969 p0->current_length += rw_len0;
1970
Dave Barachd7cb1b52016-12-09 09:52:16 -05001971 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
Dave Barach5331c722016-08-17 11:54:30 -04001972
Dave Barachd7cb1b52016-12-09 09:52:16 -05001973 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1974 next0 = adj0[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001975
Neale Rannsb069a692017-03-15 12:34:25 -04001976 if (PREDICT_FALSE
1977 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1978 vnet_feature_arc_start (lm->output_feature_arc_index,
1979 tx_sw_if_index0, &next0, p0);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001980 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04001981 else
1982 {
1983 p0->error = error_node->errors[error0];
1984 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001985
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001986 if (is_midchain)
1987 {
Neale Ranns25edf142019-03-22 08:12:48 +00001988 if (adj0->sub_type.midchain.fixup_func)
1989 adj0->sub_type.midchain.fixup_func
1990 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001991 }
1992 if (is_mcast)
1993 {
Neale Ranns889fe942017-06-01 05:43:19 -04001994 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1995 adj0->
1996 rewrite_header.dst_mcast_offset,
1997 &ip0->dst_address.as_u32[3],
1998 (u8 *) ip0);
Neale Ranns32e1c012016-11-22 17:07:28 +00001999 }
Neale Ranns5e575b12016-10-03 09:40:25 +01002000
Ed Warnickecb9cada2015-12-08 15:45:58 -07002001 from += 1;
2002 n_left_from -= 1;
2003 to_next += 1;
2004 n_left_to_next -= 1;
Dave Barach75fc8542016-10-11 16:16:02 -04002005
Ed Warnickecb9cada2015-12-08 15:45:58 -07002006 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2007 to_next, n_left_to_next,
2008 pi0, next0);
2009 }
2010
2011 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2012 }
2013
2014 /* Need to do trace after rewrites to pick up new packet data. */
2015 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Rannsf06aea52016-11-29 06:51:37 -08002016 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002017
2018 return frame->n_vectors;
2019}
2020
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002021always_inline uword
2022ip6_rewrite_inline (vlib_main_t * vm,
2023 vlib_node_runtime_t * node,
2024 vlib_frame_t * frame,
2025 int do_counters, int is_midchain, int is_mcast)
2026{
2027 vnet_main_t *vnm = vnet_get_main ();
2028 if (PREDICT_FALSE (vnm->interface_main.gso_interface_count > 0))
2029 return ip6_rewrite_inline_with_gso (vm, node, frame, do_counters,
2030 is_midchain, is_mcast,
2031 1 /* do_gso */ );
2032 else
2033 return ip6_rewrite_inline_with_gso (vm, node, frame, do_counters,
2034 is_midchain, is_mcast,
2035 0 /* no do_gso */ );
2036}
2037
Damjan Marion38173502019-02-13 19:30:09 +01002038VLIB_NODE_FN (ip6_rewrite_node) (vlib_main_t * vm,
2039 vlib_node_runtime_t * node,
2040 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002041{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002042 if (adj_are_counters_enabled ())
2043 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2044 else
2045 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
Neale Ranns32e1c012016-11-22 17:07:28 +00002046}
2047
Damjan Marion38173502019-02-13 19:30:09 +01002048VLIB_NODE_FN (ip6_rewrite_bcast_node) (vlib_main_t * vm,
2049 vlib_node_runtime_t * node,
2050 vlib_frame_t * frame)
Neale Ranns1855b8e2018-07-11 10:31:26 -07002051{
2052 if (adj_are_counters_enabled ())
2053 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2054 else
2055 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
2056}
2057
Damjan Marion38173502019-02-13 19:30:09 +01002058VLIB_NODE_FN (ip6_rewrite_mcast_node) (vlib_main_t * vm,
2059 vlib_node_runtime_t * node,
2060 vlib_frame_t * frame)
Neale Ranns32e1c012016-11-22 17:07:28 +00002061{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002062 if (adj_are_counters_enabled ())
2063 return ip6_rewrite_inline (vm, node, frame, 1, 0, 1);
2064 else
2065 return ip6_rewrite_inline (vm, node, frame, 0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002066}
2067
Damjan Marion38173502019-02-13 19:30:09 +01002068VLIB_NODE_FN (ip6_midchain_node) (vlib_main_t * vm,
2069 vlib_node_runtime_t * node,
2070 vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002071{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002072 if (adj_are_counters_enabled ())
2073 return ip6_rewrite_inline (vm, node, frame, 1, 1, 0);
2074 else
2075 return ip6_rewrite_inline (vm, node, frame, 0, 1, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002076}
2077
Damjan Marion38173502019-02-13 19:30:09 +01002078VLIB_NODE_FN (ip6_mcast_midchain_node) (vlib_main_t * vm,
2079 vlib_node_runtime_t * node,
2080 vlib_frame_t * frame)
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002081{
2082 if (adj_are_counters_enabled ())
2083 return ip6_rewrite_inline (vm, node, frame, 1, 1, 1);
2084 else
Neale Ranns9f171f52017-04-11 08:56:53 -07002085 return ip6_rewrite_inline (vm, node, frame, 0, 1, 1);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002086}
2087
Dave Barachd7cb1b52016-12-09 09:52:16 -05002088/* *INDENT-OFF* */
2089VLIB_REGISTER_NODE (ip6_midchain_node) =
2090{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002091 .name = "ip6-midchain",
2092 .vector_size = sizeof (u32),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002093 .format_trace = format_ip6_forward_next_trace,
Neale Ranns5e575b12016-10-03 09:40:25 +01002094 .sibling_of = "ip6-rewrite",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002095 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002096
Dave Barachd7cb1b52016-12-09 09:52:16 -05002097VLIB_REGISTER_NODE (ip6_rewrite_node) =
2098{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002099 .name = "ip6-rewrite",
2100 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +01002101 .format_trace = format_ip6_rewrite_trace,
Ole Troan313f7e22018-04-10 16:02:51 +02002102 .n_next_nodes = IP6_REWRITE_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002103 .next_nodes =
2104 {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002105 [IP6_REWRITE_NEXT_DROP] = "ip6-drop",
Chris Luke816f3e12016-06-14 16:24:47 -04002106 [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error",
Ole Troan313f7e22018-04-10 16:02:51 +02002107 [IP6_REWRITE_NEXT_FRAGMENT] = "ip6-frag",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002108 },
2109};
2110
Neale Ranns1855b8e2018-07-11 10:31:26 -07002111VLIB_REGISTER_NODE (ip6_rewrite_bcast_node) = {
Neale Ranns1855b8e2018-07-11 10:31:26 -07002112 .name = "ip6-rewrite-bcast",
2113 .vector_size = sizeof (u32),
2114
2115 .format_trace = format_ip6_rewrite_trace,
2116 .sibling_of = "ip6-rewrite",
2117};
Neale Ranns1855b8e2018-07-11 10:31:26 -07002118
Neale Ranns32e1c012016-11-22 17:07:28 +00002119VLIB_REGISTER_NODE (ip6_rewrite_mcast_node) =
2120{
Neale Ranns32e1c012016-11-22 17:07:28 +00002121 .name = "ip6-rewrite-mcast",
2122 .vector_size = sizeof (u32),
2123 .format_trace = format_ip6_rewrite_trace,
2124 .sibling_of = "ip6-rewrite",
2125};
Neale Ranns32e1c012016-11-22 17:07:28 +00002126
Neale Ranns32e1c012016-11-22 17:07:28 +00002127
Damjan Marion38173502019-02-13 19:30:09 +01002128VLIB_REGISTER_NODE (ip6_mcast_midchain_node) =
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002129{
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002130 .name = "ip6-mcast-midchain",
2131 .vector_size = sizeof (u32),
2132 .format_trace = format_ip6_rewrite_trace,
2133 .sibling_of = "ip6-rewrite",
2134};
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002135
Neale Ranns1855b8e2018-07-11 10:31:26 -07002136/* *INDENT-ON* */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002137
Ole Troan944f5482016-05-24 11:56:58 +02002138/*
2139 * Hop-by-Hop handling
2140 */
Benoît Ganne47727c02019-02-12 13:35:08 +01002141#ifndef CLIB_MARCH_VARIANT
Ole Troan944f5482016-05-24 11:56:58 +02002142ip6_hop_by_hop_main_t ip6_hop_by_hop_main;
Benoît Ganne47727c02019-02-12 13:35:08 +01002143#endif /* CLIB_MARCH_VARIANT */
Ole Troan944f5482016-05-24 11:56:58 +02002144
2145#define foreach_ip6_hop_by_hop_error \
2146_(PROCESSED, "pkts with ip6 hop-by-hop options") \
2147_(FORMAT, "incorrectly formatted hop-by-hop options") \
2148_(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options")
2149
Neale Ranns32e1c012016-11-22 17:07:28 +00002150/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002151typedef enum
2152{
Ole Troan944f5482016-05-24 11:56:58 +02002153#define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym,
2154 foreach_ip6_hop_by_hop_error
2155#undef _
Neale Ranns32e1c012016-11-22 17:07:28 +00002156 IP6_HOP_BY_HOP_N_ERROR,
Ole Troan944f5482016-05-24 11:56:58 +02002157} ip6_hop_by_hop_error_t;
Neale Ranns32e1c012016-11-22 17:07:28 +00002158/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002159
2160/*
2161 * Primary h-b-h handler trace support
2162 * We work pretty hard on the problem for obvious reasons
2163 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002164typedef struct
2165{
Ole Troan944f5482016-05-24 11:56:58 +02002166 u32 next_index;
2167 u32 trace_len;
2168 u8 option_data[256];
2169} ip6_hop_by_hop_trace_t;
2170
Benoît Ganne47727c02019-02-12 13:35:08 +01002171extern vlib_node_registration_t ip6_hop_by_hop_node;
Ole Troan944f5482016-05-24 11:56:58 +02002172
Dave Barachd7cb1b52016-12-09 09:52:16 -05002173static char *ip6_hop_by_hop_error_strings[] = {
Ole Troan944f5482016-05-24 11:56:58 +02002174#define _(sym,string) string,
2175 foreach_ip6_hop_by_hop_error
2176#undef _
2177};
2178
Damjan Marion38173502019-02-13 19:30:09 +01002179#ifndef CLIB_MARCH_VARIANT
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302180u8 *
2181format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args)
2182{
2183 ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *);
2184 int total_len = va_arg (*args, int);
2185 ip6_hop_by_hop_option_t *opt0, *limit0;
2186 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2187 u8 type0;
2188
2189 s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d",
2190 hbh0->protocol, (hbh0->length + 1) << 3, total_len);
2191
2192 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2193 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len);
2194
2195 while (opt0 < limit0)
2196 {
2197 type0 = opt0->type;
2198 switch (type0)
2199 {
2200 case 0: /* Pad, just stop */
2201 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1);
2202 break;
2203
2204 default:
2205 if (hm->trace[type0])
2206 {
2207 s = (*hm->trace[type0]) (s, opt0);
2208 }
2209 else
2210 {
2211 s =
2212 format (s, "\n unrecognized option %d length %d", type0,
2213 opt0->length);
2214 }
2215 opt0 =
2216 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2217 sizeof (ip6_hop_by_hop_option_t));
2218 break;
2219 }
2220 }
2221 return s;
2222}
Damjan Marion38173502019-02-13 19:30:09 +01002223#endif
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302224
Ole Troan944f5482016-05-24 11:56:58 +02002225static u8 *
2226format_ip6_hop_by_hop_trace (u8 * s, va_list * args)
2227{
2228 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2229 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002230 ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *);
Ole Troan944f5482016-05-24 11:56:58 +02002231 ip6_hop_by_hop_header_t *hbh0;
2232 ip6_hop_by_hop_option_t *opt0, *limit0;
2233 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2234
2235 u8 type0;
2236
Dave Barachd7cb1b52016-12-09 09:52:16 -05002237 hbh0 = (ip6_hop_by_hop_header_t *) t->option_data;
Ole Troan944f5482016-05-24 11:56:58 +02002238
2239 s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002240 t->next_index, (hbh0->length + 1) << 3, t->trace_len);
Ole Troan944f5482016-05-24 11:56:58 +02002241
Dave Barachd7cb1b52016-12-09 09:52:16 -05002242 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2243 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len;
Ole Troan944f5482016-05-24 11:56:58 +02002244
Dave Barachd7cb1b52016-12-09 09:52:16 -05002245 while (opt0 < limit0)
2246 {
2247 type0 = opt0->type;
2248 switch (type0)
2249 {
2250 case 0: /* Pad, just stop */
2251 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2252 break;
Ole Troan944f5482016-05-24 11:56:58 +02002253
Dave Barachd7cb1b52016-12-09 09:52:16 -05002254 default:
2255 if (hm->trace[type0])
2256 {
2257 s = (*hm->trace[type0]) (s, opt0);
2258 }
2259 else
2260 {
2261 s =
2262 format (s, "\n unrecognized option %d length %d", type0,
2263 opt0->length);
2264 }
2265 opt0 =
2266 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2267 sizeof (ip6_hop_by_hop_option_t));
2268 break;
2269 }
Ole Troan944f5482016-05-24 11:56:58 +02002270 }
Ole Troan944f5482016-05-24 11:56:58 +02002271 return s;
2272}
2273
Dave Barachd7cb1b52016-12-09 09:52:16 -05002274always_inline u8
2275ip6_scan_hbh_options (vlib_buffer_t * b0,
2276 ip6_header_t * ip0,
2277 ip6_hop_by_hop_header_t * hbh0,
2278 ip6_hop_by_hop_option_t * opt0,
2279 ip6_hop_by_hop_option_t * limit0, u32 * next0)
Shwethaa91cbe62016-08-08 15:51:04 +01002280{
2281 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2282 u8 type0;
2283 u8 error0 = 0;
2284
2285 while (opt0 < limit0)
2286 {
2287 type0 = opt0->type;
2288 switch (type0)
2289 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002290 case 0: /* Pad1 */
2291 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
Shwethaa91cbe62016-08-08 15:51:04 +01002292 continue;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002293 case 1: /* PadN */
Shwethaa91cbe62016-08-08 15:51:04 +01002294 break;
2295 default:
2296 if (hm->options[type0])
2297 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002298 if ((*hm->options[type0]) (b0, ip0, opt0) < 0)
2299 {
Shwethaa91cbe62016-08-08 15:51:04 +01002300 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002301 return (error0);
2302 }
Shwethaa91cbe62016-08-08 15:51:04 +01002303 }
2304 else
2305 {
2306 /* Unrecognized mandatory option, check the two high order bits */
2307 switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS)
2308 {
2309 case HBH_OPTION_TYPE_SKIP_UNKNOWN:
2310 break;
2311 case HBH_OPTION_TYPE_DISCARD_UNKNOWN:
2312 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2313 *next0 = IP_LOOKUP_NEXT_DROP;
2314 break;
2315 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP:
2316 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2317 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002318 icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem,
2319 ICMP6_parameter_problem_unrecognized_option,
2320 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002321 break;
2322 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST:
2323 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002324 if (!ip6_address_is_multicast (&ip0->dst_address))
Shwethaa91cbe62016-08-08 15:51:04 +01002325 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002326 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2327 icmp6_error_set_vnet_buffer (b0,
2328 ICMP6_parameter_problem,
2329 ICMP6_parameter_problem_unrecognized_option,
2330 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002331 }
2332 else
2333 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002334 *next0 = IP_LOOKUP_NEXT_DROP;
Shwethaa91cbe62016-08-08 15:51:04 +01002335 }
2336 break;
2337 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002338 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002339 }
2340 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002341 opt0 =
2342 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2343 sizeof (ip6_hop_by_hop_option_t));
Shwethaa91cbe62016-08-08 15:51:04 +01002344 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002345 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002346}
2347
Ole Troan944f5482016-05-24 11:56:58 +02002348/*
2349 * Process the Hop-by-Hop Options header
2350 */
Damjan Marion38173502019-02-13 19:30:09 +01002351VLIB_NODE_FN (ip6_hop_by_hop_node) (vlib_main_t * vm,
2352 vlib_node_runtime_t * node,
2353 vlib_frame_t * frame)
Ole Troan944f5482016-05-24 11:56:58 +02002354{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002355 vlib_node_runtime_t *error_node =
2356 vlib_node_get_runtime (vm, ip6_hop_by_hop_node.index);
Ole Troan944f5482016-05-24 11:56:58 +02002357 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2358 u32 n_left_from, *from, *to_next;
2359 ip_lookup_next_t next_index;
Ole Troan944f5482016-05-24 11:56:58 +02002360
2361 from = vlib_frame_vector_args (frame);
2362 n_left_from = frame->n_vectors;
2363 next_index = node->cached_next_index;
2364
Dave Barachd7cb1b52016-12-09 09:52:16 -05002365 while (n_left_from > 0)
2366 {
2367 u32 n_left_to_next;
Ole Troan944f5482016-05-24 11:56:58 +02002368
Dave Barachd7cb1b52016-12-09 09:52:16 -05002369 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ole Troan944f5482016-05-24 11:56:58 +02002370
Dave Barachd7cb1b52016-12-09 09:52:16 -05002371 while (n_left_from >= 4 && n_left_to_next >= 2)
Shwethaa91cbe62016-08-08 15:51:04 +01002372 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002373 u32 bi0, bi1;
2374 vlib_buffer_t *b0, *b1;
2375 u32 next0, next1;
2376 ip6_header_t *ip0, *ip1;
2377 ip6_hop_by_hop_header_t *hbh0, *hbh1;
2378 ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1;
2379 u8 error0 = 0, error1 = 0;
2380
2381 /* Prefetch next iteration. */
2382 {
2383 vlib_buffer_t *p2, *p3;
2384
2385 p2 = vlib_get_buffer (vm, from[2]);
2386 p3 = vlib_get_buffer (vm, from[3]);
2387
2388 vlib_prefetch_buffer_header (p2, LOAD);
2389 vlib_prefetch_buffer_header (p3, LOAD);
2390
2391 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2392 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Shwethaa91cbe62016-08-08 15:51:04 +01002393 }
2394
Dave Barachd7cb1b52016-12-09 09:52:16 -05002395 /* Speculatively enqueue b0, b1 to the current next frame */
2396 to_next[0] = bi0 = from[0];
2397 to_next[1] = bi1 = from[1];
2398 from += 2;
2399 to_next += 2;
2400 n_left_from -= 2;
2401 n_left_to_next -= 2;
2402
2403 b0 = vlib_get_buffer (vm, bi0);
2404 b1 = vlib_get_buffer (vm, bi1);
2405
2406 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2407 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002408 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002409 u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002410 ip_adjacency_t *adj1 = adj_get (adj_index1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002411
2412 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2413 next0 = adj0->lookup_next_index;
2414 next1 = adj1->lookup_next_index;
2415
2416 ip0 = vlib_buffer_get_current (b0);
2417 ip1 = vlib_buffer_get_current (b1);
2418 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2419 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
2420 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2421 opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1);
2422 limit0 =
2423 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2424 ((hbh0->length + 1) << 3));
2425 limit1 =
2426 (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 +
2427 ((hbh1->length + 1) << 3));
2428
2429 /*
2430 * Basic validity checks
2431 */
2432 if ((hbh0->length + 1) << 3 >
2433 clib_net_to_host_u16 (ip0->payload_length))
2434 {
2435 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2436 next0 = IP_LOOKUP_NEXT_DROP;
2437 goto outdual;
2438 }
2439 /* Scan the set of h-b-h options, process ones that we understand */
2440 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2441
2442 if ((hbh1->length + 1) << 3 >
2443 clib_net_to_host_u16 (ip1->payload_length))
2444 {
2445 error1 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2446 next1 = IP_LOOKUP_NEXT_DROP;
2447 goto outdual;
2448 }
2449 /* Scan the set of h-b-h options, process ones that we understand */
2450 error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1);
2451
2452 outdual:
2453 /* Has the classifier flagged this buffer for special treatment? */
2454 if (PREDICT_FALSE
2455 ((error0 == 0)
2456 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2457 next0 = hm->next_override;
2458
2459 /* Has the classifier flagged this buffer for special treatment? */
2460 if (PREDICT_FALSE
2461 ((error1 == 0)
2462 && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP)))
2463 next1 = hm->next_override;
2464
2465 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
2466 {
2467 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2468 {
2469 ip6_hop_by_hop_trace_t *t =
2470 vlib_add_trace (vm, node, b0, sizeof (*t));
2471 u32 trace_len = (hbh0->length + 1) << 3;
2472 t->next_index = next0;
2473 /* Capture the h-b-h option verbatim */
2474 trace_len =
2475 trace_len <
2476 ARRAY_LEN (t->option_data) ? trace_len :
2477 ARRAY_LEN (t->option_data);
2478 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002479 clib_memcpy_fast (t->option_data, hbh0, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002480 }
2481 if (b1->flags & VLIB_BUFFER_IS_TRACED)
2482 {
2483 ip6_hop_by_hop_trace_t *t =
2484 vlib_add_trace (vm, node, b1, sizeof (*t));
2485 u32 trace_len = (hbh1->length + 1) << 3;
2486 t->next_index = next1;
2487 /* Capture the h-b-h option verbatim */
2488 trace_len =
2489 trace_len <
2490 ARRAY_LEN (t->option_data) ? trace_len :
2491 ARRAY_LEN (t->option_data);
2492 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002493 clib_memcpy_fast (t->option_data, hbh1, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002494 }
2495
2496 }
2497
2498 b0->error = error_node->errors[error0];
2499 b1->error = error_node->errors[error1];
2500
2501 /* verify speculative enqueue, maybe switch current next frame */
2502 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
2503 n_left_to_next, bi0, bi1, next0,
2504 next1);
Shwethaa91cbe62016-08-08 15:51:04 +01002505 }
2506
Dave Barachd7cb1b52016-12-09 09:52:16 -05002507 while (n_left_from > 0 && n_left_to_next > 0)
2508 {
2509 u32 bi0;
2510 vlib_buffer_t *b0;
2511 u32 next0;
2512 ip6_header_t *ip0;
2513 ip6_hop_by_hop_header_t *hbh0;
2514 ip6_hop_by_hop_option_t *opt0, *limit0;
2515 u8 error0 = 0;
Shwethaa91cbe62016-08-08 15:51:04 +01002516
Dave Barachd7cb1b52016-12-09 09:52:16 -05002517 /* Speculatively enqueue b0 to the current next frame */
2518 bi0 = from[0];
2519 to_next[0] = bi0;
2520 from += 1;
2521 to_next += 1;
2522 n_left_from -= 1;
2523 n_left_to_next -= 1;
2524
2525 b0 = vlib_get_buffer (vm, bi0);
2526 /*
2527 * Default use the next_index from the adjacency.
2528 * A HBH option rarely redirects to a different node
2529 */
2530 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002531 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002532 next0 = adj0->lookup_next_index;
2533
2534 ip0 = vlib_buffer_get_current (b0);
2535 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2536 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2537 limit0 =
2538 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2539 ((hbh0->length + 1) << 3));
2540
2541 /*
2542 * Basic validity checks
2543 */
2544 if ((hbh0->length + 1) << 3 >
2545 clib_net_to_host_u16 (ip0->payload_length))
2546 {
2547 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2548 next0 = IP_LOOKUP_NEXT_DROP;
2549 goto out0;
2550 }
2551
2552 /* Scan the set of h-b-h options, process ones that we understand */
2553 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2554
2555 out0:
2556 /* Has the classifier flagged this buffer for special treatment? */
2557 if (PREDICT_FALSE
2558 ((error0 == 0)
2559 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2560 next0 = hm->next_override;
2561
2562 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2563 {
2564 ip6_hop_by_hop_trace_t *t =
2565 vlib_add_trace (vm, node, b0, sizeof (*t));
2566 u32 trace_len = (hbh0->length + 1) << 3;
2567 t->next_index = next0;
2568 /* Capture the h-b-h option verbatim */
2569 trace_len =
2570 trace_len <
2571 ARRAY_LEN (t->option_data) ? trace_len :
2572 ARRAY_LEN (t->option_data);
2573 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002574 clib_memcpy_fast (t->option_data, hbh0, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002575 }
2576
2577 b0->error = error_node->errors[error0];
2578
2579 /* verify speculative enqueue, maybe switch current next frame */
2580 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2581 n_left_to_next, bi0, next0);
2582 }
2583 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Shwethaa91cbe62016-08-08 15:51:04 +01002584 }
Ole Troan944f5482016-05-24 11:56:58 +02002585 return frame->n_vectors;
2586}
2587
Dave Barachd7cb1b52016-12-09 09:52:16 -05002588/* *INDENT-OFF* */
2589VLIB_REGISTER_NODE (ip6_hop_by_hop_node) =
2590{
Ole Troan944f5482016-05-24 11:56:58 +02002591 .name = "ip6-hop-by-hop",
Ole Troan964f93e2016-06-10 13:22:36 +02002592 .sibling_of = "ip6-lookup",
Ole Troan944f5482016-05-24 11:56:58 +02002593 .vector_size = sizeof (u32),
2594 .format_trace = format_ip6_hop_by_hop_trace,
2595 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002596 .n_errors = ARRAY_LEN (ip6_hop_by_hop_error_strings),
Ole Troan944f5482016-05-24 11:56:58 +02002597 .error_strings = ip6_hop_by_hop_error_strings,
Ole Troan964f93e2016-06-10 13:22:36 +02002598 .n_next_nodes = 0,
Ole Troan944f5482016-05-24 11:56:58 +02002599};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002600/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002601
Ole Troan944f5482016-05-24 11:56:58 +02002602static clib_error_t *
2603ip6_hop_by_hop_init (vlib_main_t * vm)
2604{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002605 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Dave Barachb7b92992018-10-17 10:38:51 -04002606 clib_memset (hm->options, 0, sizeof (hm->options));
2607 clib_memset (hm->trace, 0, sizeof (hm->trace));
Shwethaa91cbe62016-08-08 15:51:04 +01002608 hm->next_override = IP6_LOOKUP_NEXT_POP_HOP_BY_HOP;
Ole Troan944f5482016-05-24 11:56:58 +02002609 return (0);
2610}
2611
2612VLIB_INIT_FUNCTION (ip6_hop_by_hop_init);
2613
Damjan Marion38173502019-02-13 19:30:09 +01002614#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05002615void
2616ip6_hbh_set_next_override (uword next)
Shwethaa91cbe62016-08-08 15:51:04 +01002617{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002618 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Shwethaa91cbe62016-08-08 15:51:04 +01002619
2620 hm->next_override = next;
2621}
2622
Ole Troan944f5482016-05-24 11:56:58 +02002623int
2624ip6_hbh_register_option (u8 option,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002625 int options (vlib_buffer_t * b, ip6_header_t * ip,
2626 ip6_hop_by_hop_option_t * opt),
2627 u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt))
Ole Troan944f5482016-05-24 11:56:58 +02002628{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002629 ip6_main_t *im = &ip6_main;
2630 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002631
Neale Ranns756cd942018-04-06 09:18:11 -07002632 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002633
2634 /* Already registered */
2635 if (hm->options[option])
2636 return (-1);
2637
2638 hm->options[option] = options;
2639 hm->trace[option] = trace;
2640
2641 /* Set global variable */
2642 im->hbh_enabled = 1;
2643
2644 return (0);
2645}
2646
2647int
2648ip6_hbh_unregister_option (u8 option)
2649{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002650 ip6_main_t *im = &ip6_main;
2651 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002652
Neale Ranns756cd942018-04-06 09:18:11 -07002653 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002654
2655 /* Not registered */
2656 if (!hm->options[option])
2657 return (-1);
2658
2659 hm->options[option] = NULL;
2660 hm->trace[option] = NULL;
2661
2662 /* Disable global knob if this was the last option configured */
2663 int i;
2664 bool found = false;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002665 for (i = 0; i < 256; i++)
2666 {
2667 if (hm->options[option])
2668 {
2669 found = true;
2670 break;
2671 }
Ole Troan944f5482016-05-24 11:56:58 +02002672 }
Ole Troan944f5482016-05-24 11:56:58 +02002673 if (!found)
2674 im->hbh_enabled = 0;
2675
2676 return (0);
2677}
2678
Ed Warnickecb9cada2015-12-08 15:45:58 -07002679/* Global IP6 main. */
2680ip6_main_t ip6_main;
Damjan Marion38173502019-02-13 19:30:09 +01002681#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07002682
2683static clib_error_t *
2684ip6_lookup_init (vlib_main_t * vm)
2685{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002686 ip6_main_t *im = &ip6_main;
2687 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002688 uword i;
2689
Damjan Marion8b3191e2016-11-09 19:54:20 +01002690 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
2691 return error;
2692
Ed Warnickecb9cada2015-12-08 15:45:58 -07002693 for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
2694 {
2695 u32 j, i0, i1;
2696
2697 i0 = i / 32;
2698 i1 = i % 32;
2699
2700 for (j = 0; j < i0; j++)
2701 im->fib_masks[i].as_u32[j] = ~0;
2702
2703 if (i1)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002704 im->fib_masks[i].as_u32[i0] =
2705 clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002706 }
2707
2708 ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1);
2709
2710 if (im->lookup_table_nbuckets == 0)
2711 im->lookup_table_nbuckets = IP6_FIB_DEFAULT_HASH_NUM_BUCKETS;
2712
Dave Barachd7cb1b52016-12-09 09:52:16 -05002713 im->lookup_table_nbuckets = 1 << max_log2 (im->lookup_table_nbuckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002714
2715 if (im->lookup_table_size == 0)
2716 im->lookup_table_size = IP6_FIB_DEFAULT_HASH_MEMORY_SIZE;
Dave Barach75fc8542016-10-11 16:16:02 -04002717
Neale Rannsae809832018-11-23 09:00:27 -08002718 clib_bihash_init_24_8 (&(im->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash),
Dave Barachd7cb1b52016-12-09 09:52:16 -05002719 "ip6 FIB fwding table",
2720 im->lookup_table_nbuckets, im->lookup_table_size);
Neale Rannsae809832018-11-23 09:00:27 -08002721 clib_bihash_init_24_8 (&im->ip6_table[IP6_FIB_TABLE_NON_FWDING].ip6_hash,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002722 "ip6 FIB non-fwding table",
2723 im->lookup_table_nbuckets, im->lookup_table_size);
Neale Rannsae809832018-11-23 09:00:27 -08002724 clib_bihash_init_40_8 (&im->ip6_mtable.ip6_mhash,
2725 "ip6 mFIB table",
2726 im->lookup_table_nbuckets, im->lookup_table_size);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002727
Ed Warnickecb9cada2015-12-08 15:45:58 -07002728 /* Create FIB with index 0 and table id of 0. */
Neale Ranns15002542017-09-10 04:39:11 -07002729 fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2730 FIB_SOURCE_DEFAULT_ROUTE);
2731 mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2732 MFIB_SOURCE_DEFAULT_ROUTE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002733
2734 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002735 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002736 pn = pg_get_node (ip6_lookup_node.index);
2737 pn->unformat_edit = unformat_pg_ip6_header;
2738 }
2739
Ole Troan944f5482016-05-24 11:56:58 +02002740 /* Unless explicitly configured, don't process HBH options */
2741 im->hbh_enabled = 0;
2742
Ed Warnickecb9cada2015-12-08 15:45:58 -07002743 {
2744 icmp6_neighbor_solicitation_header_t p;
2745
Dave Barachb7b92992018-10-17 10:38:51 -04002746 clib_memset (&p, 0, sizeof (p));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002747
Dave Barachd7cb1b52016-12-09 09:52:16 -05002748 p.ip.ip_version_traffic_class_and_flow_label =
2749 clib_host_to_net_u32 (0x6 << 28);
2750 p.ip.payload_length =
2751 clib_host_to_net_u16 (sizeof (p) -
2752 STRUCT_OFFSET_OF
2753 (icmp6_neighbor_solicitation_header_t, neighbor));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002754 p.ip.protocol = IP_PROTOCOL_ICMP6;
2755 p.ip.hop_limit = 255;
2756 ip6_set_solicited_node_multicast_address (&p.ip.dst_address, 0);
2757
2758 p.neighbor.icmp.type = ICMP6_neighbor_solicitation;
2759
Dave Barachd7cb1b52016-12-09 09:52:16 -05002760 p.link_layer_option.header.type =
2761 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
2762 p.link_layer_option.header.n_data_u64s =
2763 sizeof (p.link_layer_option) / sizeof (u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002764
2765 vlib_packet_template_init (vm,
2766 &im->discover_neighbor_packet_template,
2767 &p, sizeof (p),
2768 /* alloc chunk size */ 8,
2769 "ip6 neighbor discovery");
2770 }
2771
Dave Barach203c6322016-06-26 10:29:03 -04002772 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002773}
2774
2775VLIB_INIT_FUNCTION (ip6_lookup_init);
2776
Dave Barach75fc8542016-10-11 16:16:02 -04002777static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07002778test_ip6_link_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002779 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002780{
2781 u8 mac[6];
2782 ip6_address_t _a, *a = &_a;
2783
2784 if (unformat (input, "%U", unformat_ethernet_address, mac))
2785 {
2786 ip6_link_local_address_from_ethernet_mac_address (a, mac);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002787 vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002788 ip6_ethernet_mac_address_from_link_local_address (mac, a);
2789 vlib_cli_output (vm, "Original MAC address: %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002790 format_ethernet_address, mac);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002791 }
Dave Barach75fc8542016-10-11 16:16:02 -04002792
Ed Warnickecb9cada2015-12-08 15:45:58 -07002793 return 0;
2794}
2795
Billy McFall0683c9c2016-10-13 08:27:31 -04002796/*?
2797 * This command converts the given MAC Address into an IPv6 link-local
2798 * address.
2799 *
2800 * @cliexpar
2801 * Example of how to create an IPv6 link-local address:
2802 * @cliexstart{test ip6 link 16:d9:e0:91:79:86}
2803 * Link local address: fe80::14d9:e0ff:fe91:7986
2804 * Original MAC address: 16:d9:e0:91:79:86
2805 * @cliexend
2806?*/
2807/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002808VLIB_CLI_COMMAND (test_link_command, static) =
2809{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002810 .path = "test ip6 link",
Dave Barach75fc8542016-10-11 16:16:02 -04002811 .function = test_ip6_link_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002812 .short_help = "test ip6 link <mac-address>",
2813};
Billy McFall0683c9c2016-10-13 08:27:31 -04002814/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002815
Damjan Marion38173502019-02-13 19:30:09 +01002816#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05002817int
2818vnet_set_ip6_flow_hash (u32 table_id, u32 flow_hash_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002819{
Neale Ranns107e7d42017-04-11 09:55:19 -07002820 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002821
Neale Ranns107e7d42017-04-11 09:55:19 -07002822 fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002823
Neale Ranns107e7d42017-04-11 09:55:19 -07002824 if (~0 == fib_index)
2825 return VNET_API_ERROR_NO_SUCH_FIB;
2826
Neale Ranns227038a2017-04-21 01:07:59 -07002827 fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP6,
2828 flow_hash_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002829
Neale Ranns227038a2017-04-21 01:07:59 -07002830 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002831}
Damjan Marion38173502019-02-13 19:30:09 +01002832#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833
2834static clib_error_t *
2835set_ip6_flow_hash_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002836 unformat_input_t * input,
2837 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002838{
2839 int matched = 0;
2840 u32 table_id = 0;
2841 u32 flow_hash_config = 0;
2842 int rv;
2843
Dave Barachd7cb1b52016-12-09 09:52:16 -05002844 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2845 {
2846 if (unformat (input, "table %d", &table_id))
2847 matched = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002848#define _(a,v) \
2849 else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;}
Dave Barachd7cb1b52016-12-09 09:52:16 -05002850 foreach_flow_hash_bit
Ed Warnickecb9cada2015-12-08 15:45:58 -07002851#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -05002852 else
2853 break;
2854 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002855
2856 if (matched == 0)
2857 return clib_error_return (0, "unknown input `%U'",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002858 format_unformat_error, input);
Dave Barach75fc8542016-10-11 16:16:02 -04002859
Ed Warnickecb9cada2015-12-08 15:45:58 -07002860 rv = vnet_set_ip6_flow_hash (table_id, flow_hash_config);
2861 switch (rv)
2862 {
Neale Ranns227038a2017-04-21 01:07:59 -07002863 case 0:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002864 break;
2865
2866 case -1:
2867 return clib_error_return (0, "no such FIB table %d", table_id);
Dave Barach75fc8542016-10-11 16:16:02 -04002868
Ed Warnickecb9cada2015-12-08 15:45:58 -07002869 default:
2870 clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2871 break;
2872 }
Dave Barach75fc8542016-10-11 16:16:02 -04002873
Ed Warnickecb9cada2015-12-08 15:45:58 -07002874 return 0;
2875}
2876
Billy McFall0683c9c2016-10-13 08:27:31 -04002877/*?
2878 * Configure the set of IPv6 fields used by the flow hash.
2879 *
2880 * @cliexpar
2881 * @parblock
2882 * Example of how to set the flow hash on a given table:
Billy McFallebb9a6a2016-10-17 11:35:32 -04002883 * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto}
2884 *
Billy McFall0683c9c2016-10-13 08:27:31 -04002885 * Example of display the configured flow hash:
2886 * @cliexstart{show ip6 fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -04002887 * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2888 * @::/0
2889 * unicast-ip6-chain
2890 * [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]]
2891 * [0] [@0]: dpo-drop ip6
2892 * fe80::/10
2893 * unicast-ip6-chain
2894 * [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]]
2895 * [0] [@2]: dpo-receive
2896 * ff02::1/128
2897 * unicast-ip6-chain
2898 * [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]]
2899 * [0] [@2]: dpo-receive
2900 * ff02::2/128
2901 * unicast-ip6-chain
2902 * [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]]
2903 * [0] [@2]: dpo-receive
2904 * ff02::16/128
2905 * unicast-ip6-chain
2906 * [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]]
2907 * [0] [@2]: dpo-receive
2908 * ff02::1:ff00:0/104
2909 * unicast-ip6-chain
2910 * [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]]
2911 * [0] [@2]: dpo-receive
2912 * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto
2913 * @::/0
2914 * unicast-ip6-chain
2915 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
2916 * [0] [@0]: dpo-drop ip6
2917 * @::a:1:1:0:4/126
2918 * unicast-ip6-chain
2919 * [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]]
2920 * [0] [@4]: ipv6-glean: af_packet0
2921 * @::a:1:1:0:7/128
2922 * unicast-ip6-chain
2923 * [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]]
2924 * [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0
2925 * fe80::/10
2926 * unicast-ip6-chain
2927 * [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]]
2928 * [0] [@2]: dpo-receive
2929 * fe80::fe:3eff:fe3e:9222/128
2930 * unicast-ip6-chain
2931 * [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]]
2932 * [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0
2933 * ff02::1/128
2934 * unicast-ip6-chain
2935 * [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]]
2936 * [0] [@2]: dpo-receive
2937 * ff02::2/128
2938 * unicast-ip6-chain
2939 * [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]]
2940 * [0] [@2]: dpo-receive
2941 * ff02::16/128
2942 * unicast-ip6-chain
2943 * [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]]
2944 * [0] [@2]: dpo-receive
2945 * ff02::1:ff00:0/104
2946 * unicast-ip6-chain
2947 * [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]]
2948 * [0] [@2]: dpo-receive
Billy McFall0683c9c2016-10-13 08:27:31 -04002949 * @cliexend
2950 * @endparblock
2951?*/
2952/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002953VLIB_CLI_COMMAND (set_ip6_flow_hash_command, static) =
2954{
2955 .path = "set ip6 flow-hash",
2956 .short_help =
2957 "set ip6 flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]",
2958 .function = set_ip6_flow_hash_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002959};
Billy McFall0683c9c2016-10-13 08:27:31 -04002960/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002961
2962static clib_error_t *
2963show_ip6_local_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002964 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002965{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002966 ip6_main_t *im = &ip6_main;
2967 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002968 int i;
Dave Barach75fc8542016-10-11 16:16:02 -04002969
Ed Warnickecb9cada2015-12-08 15:45:58 -07002970 vlib_cli_output (vm, "Protocols handled by ip6_local");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002971 for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002972 {
2973 if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02002974 {
2975
2976 u32 node_index = vlib_get_node (vm,
2977 ip6_local_node.index)->
2978 next_nodes[lm->local_next_by_ip_protocol[i]];
2979 vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm,
2980 node_index);
2981 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002982 }
2983 return 0;
2984}
2985
2986
2987
Billy McFall0683c9c2016-10-13 08:27:31 -04002988/*?
2989 * Display the set of protocols handled by the local IPv6 stack.
2990 *
2991 * @cliexpar
2992 * Example of how to display local protocol table:
2993 * @cliexstart{show ip6 local}
2994 * Protocols handled by ip6_local
2995 * 17
2996 * 43
2997 * 58
2998 * 115
2999 * @cliexend
3000?*/
3001/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003002VLIB_CLI_COMMAND (show_ip6_local, static) =
3003{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003004 .path = "show ip6 local",
3005 .function = show_ip6_local_command_fn,
Billy McFall0683c9c2016-10-13 08:27:31 -04003006 .short_help = "show ip6 local",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003007};
Billy McFall0683c9c2016-10-13 08:27:31 -04003008/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003009
Damjan Marion38173502019-02-13 19:30:09 +01003010#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05003011int
3012vnet_set_ip6_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
3013 u32 table_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003014{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003015 vnet_main_t *vnm = vnet_get_main ();
3016 vnet_interface_main_t *im = &vnm->interface_main;
3017 ip6_main_t *ipm = &ip6_main;
3018 ip_lookup_main_t *lm = &ipm->lookup_main;
3019 vnet_classify_main_t *cm = &vnet_classify_main;
Neale Rannsdf089a82016-10-02 16:39:06 +01003020 ip6_address_t *if_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003021
3022 if (pool_is_free_index (im->sw_interfaces, sw_if_index))
3023 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
3024
3025 if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
3026 return VNET_API_ERROR_NO_SUCH_ENTRY;
3027
3028 vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003029 lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003030
Neale Ranns6cfc39c2017-02-14 01:44:25 -08003031 if_addr = ip6_interface_first_address (ipm, sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01003032
3033 if (NULL != if_addr)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003034 {
Neale Rannsdf089a82016-10-02 16:39:06 +01003035 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003036 .fp_len = 128,
3037 .fp_proto = FIB_PROTOCOL_IP6,
3038 .fp_addr.ip6 = *if_addr,
Neale Rannsdf089a82016-10-02 16:39:06 +01003039 };
3040 u32 fib_index;
3041
Dave Barachd7cb1b52016-12-09 09:52:16 -05003042 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4,
3043 sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01003044
3045
Dave Barachd7cb1b52016-12-09 09:52:16 -05003046 if (table_index != (u32) ~ 0)
3047 {
3048 dpo_id_t dpo = DPO_INVALID;
Neale Rannsdf089a82016-10-02 16:39:06 +01003049
Dave Barachd7cb1b52016-12-09 09:52:16 -05003050 dpo_set (&dpo,
3051 DPO_CLASSIFY,
3052 DPO_PROTO_IP6,
3053 classify_dpo_create (DPO_PROTO_IP6, table_index));
Neale Rannsdf089a82016-10-02 16:39:06 +01003054
Dave Barachd7cb1b52016-12-09 09:52:16 -05003055 fib_table_entry_special_dpo_add (fib_index,
3056 &pfx,
3057 FIB_SOURCE_CLASSIFY,
3058 FIB_ENTRY_FLAG_NONE, &dpo);
3059 dpo_reset (&dpo);
3060 }
Neale Rannsdf089a82016-10-02 16:39:06 +01003061 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05003062 {
3063 fib_table_entry_special_remove (fib_index,
3064 &pfx, FIB_SOURCE_CLASSIFY);
3065 }
3066 }
Neale Rannsdf089a82016-10-02 16:39:06 +01003067
Ed Warnickecb9cada2015-12-08 15:45:58 -07003068 return 0;
3069}
Damjan Marion38173502019-02-13 19:30:09 +01003070#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07003071
3072static clib_error_t *
3073set_ip6_classify_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003074 unformat_input_t * input,
3075 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003076{
3077 u32 table_index = ~0;
3078 int table_index_set = 0;
3079 u32 sw_if_index = ~0;
3080 int rv;
Dave Barach75fc8542016-10-11 16:16:02 -04003081
Dave Barachd7cb1b52016-12-09 09:52:16 -05003082 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3083 {
3084 if (unformat (input, "table-index %d", &table_index))
3085 table_index_set = 1;
3086 else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
3087 vnet_get_main (), &sw_if_index))
3088 ;
3089 else
3090 break;
3091 }
Dave Barach75fc8542016-10-11 16:16:02 -04003092
Ed Warnickecb9cada2015-12-08 15:45:58 -07003093 if (table_index_set == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003094 return clib_error_return (0, "classify table-index must be specified");
Dave Barach75fc8542016-10-11 16:16:02 -04003095
Ed Warnickecb9cada2015-12-08 15:45:58 -07003096 if (sw_if_index == ~0)
3097 return clib_error_return (0, "interface / subif must be specified");
3098
3099 rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
3100
3101 switch (rv)
3102 {
3103 case 0:
3104 break;
3105
3106 case VNET_API_ERROR_NO_MATCHING_INTERFACE:
3107 return clib_error_return (0, "No such interface");
3108
3109 case VNET_API_ERROR_NO_SUCH_ENTRY:
3110 return clib_error_return (0, "No such classifier table");
3111 }
3112 return 0;
3113}
3114
Billy McFall0683c9c2016-10-13 08:27:31 -04003115/*?
3116 * Assign a classification table to an interface. The classification
3117 * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
3118 * commands. Once the table is create, use this command to filter packets
3119 * on an interface.
3120 *
3121 * @cliexpar
3122 * Example of how to assign a classification table to an interface:
3123 * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1}
3124?*/
3125/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003126VLIB_CLI_COMMAND (set_ip6_classify_command, static) =
3127{
3128 .path = "set ip6 classify",
3129 .short_help =
3130 "set ip6 classify intfc <interface> table-index <classify-idx>",
3131 .function = set_ip6_classify_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003132};
Billy McFall0683c9c2016-10-13 08:27:31 -04003133/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003134
3135static clib_error_t *
3136ip6_config (vlib_main_t * vm, unformat_input_t * input)
3137{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003138 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003139 uword heapsize = 0;
3140 u32 tmp;
3141 u32 nbuckets = 0;
3142
Dave Barachd7cb1b52016-12-09 09:52:16 -05003143 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3144 {
3145 if (unformat (input, "hash-buckets %d", &tmp))
3146 nbuckets = tmp;
Neale Ranns1ec36522017-11-29 05:20:37 -08003147 else if (unformat (input, "heap-size %U",
3148 unformat_memory_size, &heapsize))
3149 ;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003150 else
3151 return clib_error_return (0, "unknown input '%U'",
3152 format_unformat_error, input);
3153 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003154
3155 im->lookup_table_nbuckets = nbuckets;
3156 im->lookup_table_size = heapsize;
3157
3158 return 0;
3159}
3160
3161VLIB_EARLY_CONFIG_FUNCTION (ip6_config, "ip6");
Dave Barachd7cb1b52016-12-09 09:52:16 -05003162
3163/*
3164 * fd.io coding-style-patch-verification: ON
3165 *
3166 * Local Variables:
3167 * eval: (c-set-style "gnu")
3168 * End:
3169 */