blob: 00af2822ac4906becbafd9b44c9a2fa269bab225 [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
53#include <vppinfra/bihash_template.c>
Vijayabhaskar Katamreddyacbde662018-01-23 13:39:40 -080054#include <vnet/ip/ip6_forward.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
AkshayaNadahallifdd81af2016-12-01 16:33:51 +053056/* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */
57#define OI_DECAP 0x80000000
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059static void
60ip6_add_interface_routes (vnet_main_t * vnm, u32 sw_if_index,
61 ip6_main_t * im, u32 fib_index,
62 ip_interface_address_t * a)
63{
Dave Barachd7cb1b52016-12-09 09:52:16 -050064 ip_lookup_main_t *lm = &im->lookup_main;
65 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010066 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 .fp_len = a->address_length,
68 .fp_proto = FIB_PROTOCOL_IP6,
69 .fp_addr.ip6 = *address,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010070 };
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 if (a->address_length < 128)
Dave Barachd7cb1b52016-12-09 09:52:16 -050073 {
Neale Ranns7a272742017-05-30 02:08:14 -070074 fib_table_entry_update_one_path (fib_index,
75 &pfx,
76 FIB_SOURCE_INTERFACE,
77 (FIB_ENTRY_FLAG_CONNECTED |
78 FIB_ENTRY_FLAG_ATTACHED),
Neale Rannsda78f952017-05-24 09:15:43 -070079 DPO_PROTO_IP6,
Neale Ranns7a272742017-05-30 02:08:14 -070080 /* No next-hop address */
81 NULL, sw_if_index,
82 /* invalid FIB index */
83 ~0, 1,
84 /* no label stack */
85 NULL, FIB_ROUTE_PATH_FLAG_NONE);
Dave Barachd7cb1b52016-12-09 09:52:16 -050086 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
Neale Ranns0bfe5d82016-08-25 15:29:12 +010088 pfx.fp_len = 128;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -050090 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010091 u32 classify_table_index =
Dave Barachd7cb1b52016-12-09 09:52:16 -050092 lm->classify_table_index_by_sw_if_index[sw_if_index];
93 if (classify_table_index != (u32) ~ 0)
94 {
95 dpo_id_t dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010096
Dave Barachd7cb1b52016-12-09 09:52:16 -050097 dpo_set (&dpo,
98 DPO_CLASSIFY,
99 DPO_PROTO_IP6,
100 classify_dpo_create (DPO_PROTO_IP6, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101
Dave Barachd7cb1b52016-12-09 09:52:16 -0500102 fib_table_entry_special_dpo_add (fib_index,
103 &pfx,
104 FIB_SOURCE_CLASSIFY,
105 FIB_ENTRY_FLAG_NONE, &dpo);
106 dpo_reset (&dpo);
107 }
108 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109
Neale Rannsf12a83f2017-04-18 09:09:40 -0700110 fib_table_entry_update_one_path (fib_index, &pfx,
111 FIB_SOURCE_INTERFACE,
112 (FIB_ENTRY_FLAG_CONNECTED |
113 FIB_ENTRY_FLAG_LOCAL),
Neale Rannsda78f952017-05-24 09:15:43 -0700114 DPO_PROTO_IP6,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700115 &pfx.fp_addr,
116 sw_if_index, ~0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118}
119
120static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100121ip6_del_interface_routes (ip6_main_t * im,
122 u32 fib_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123 ip6_address_t * address, u32 address_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500125 fib_prefix_t pfx = {
126 .fp_len = address_length,
127 .fp_proto = FIB_PROTOCOL_IP6,
128 .fp_addr.ip6 = *address,
129 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Dave Barachd7cb1b52016-12-09 09:52:16 -0500131 if (pfx.fp_len < 128)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500133 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100134
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 }
136
Dave Barachd7cb1b52016-12-09 09:52:16 -0500137 pfx.fp_len = 128;
138 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139}
140
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100141void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142ip6_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100143{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146 vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100148 /*
149 * enable/disable only on the 1<->0 transition
150 */
151 if (is_enable)
152 {
153 if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500154 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100155 }
156 else
157 {
Neale Ranns75152282017-01-09 01:00:45 -0800158 /* The ref count is 0 when an address is removed from an interface that has
159 * no address - this is not a ciritical error */
160 if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] ||
161 0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500162 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163 }
164
Neale Ranns8269d3d2018-01-30 09:02:20 -0800165 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Neale Ranns630198f2017-05-22 09:20:20 -0400166 !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100167
Neale Ranns8269d3d2018-01-30 09:02:20 -0800168 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
169 sw_if_index, !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100170}
171
Neale Rannsdf089a82016-10-02 16:39:06 +0100172/* get first interface address */
173ip6_address_t *
Neale Ranns6cfc39c2017-02-14 01:44:25 -0800174ip6_interface_first_address (ip6_main_t * im, u32 sw_if_index)
Neale Rannsdf089a82016-10-02 16:39:06 +0100175{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500176 ip_lookup_main_t *lm = &im->lookup_main;
177 ip_interface_address_t *ia = 0;
178 ip6_address_t *result = 0;
Neale Rannsdf089a82016-10-02 16:39:06 +0100179
Dave Barachd7cb1b52016-12-09 09:52:16 -0500180 /* *INDENT-OFF* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100181 foreach_ip_interface_address (lm, ia, sw_if_index,
182 1 /* honor unnumbered */,
183 ({
184 ip6_address_t * a = ip_interface_address_get_address (lm, ia);
185 result = a;
186 break;
187 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500188 /* *INDENT-ON* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100189 return result;
190}
191
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100192clib_error_t *
193ip6_add_del_interface_address (vlib_main_t * vm,
194 u32 sw_if_index,
195 ip6_address_t * address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500196 u32 address_length, u32 is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500198 vnet_main_t *vnm = vnet_get_main ();
199 ip6_main_t *im = &ip6_main;
200 ip_lookup_main_t *lm = &im->lookup_main;
201 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 u32 if_address_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500203 ip6_address_fib_t ip6_af, *addr_fib = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Pavel Kotucek57808982017-08-02 08:20:19 +0200205 /* local0 interface doesn't support IP addressing */
206 if (sw_if_index == 0)
207 {
208 return
209 clib_error_create ("local0 interface doesn't support IP addressing");
210 }
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000213 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
214
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 ip6_addr_fib_init (&ip6_af, address,
216 vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
217 vec_add1 (addr_fib, ip6_af);
218
Neale Ranns744902e2017-08-14 10:35:44 -0700219 /* *INDENT-OFF* */
220 if (!is_del)
221 {
222 /* When adding an address check that it does not conflict
223 with an existing address on any interface in this table. */
224 ip_interface_address_t *ia;
225 vnet_sw_interface_t *sif;
226
227 pool_foreach(sif, vnm->interface_main.sw_interfaces,
228 ({
229 if (im->fib_index_by_sw_if_index[sw_if_index] ==
230 im->fib_index_by_sw_if_index[sif->sw_if_index])
231 {
232 foreach_ip_interface_address
233 (&im->lookup_main, ia, sif->sw_if_index,
234 0 /* honor unnumbered */ ,
235 ({
236 ip6_address_t * x =
237 ip_interface_address_get_address
238 (&im->lookup_main, ia);
239 if (ip6_destination_matches_route
240 (im, address, x, ia->address_length) ||
241 ip6_destination_matches_route (im,
242 x,
243 address,
244 address_length))
245 {
246 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
247 return
248 clib_error_create
249 ("failed to add %U which conflicts with %U for interface %U",
250 format_ip6_address_and_length, address,
251 address_length,
252 format_ip6_address_and_length, x,
253 ia->address_length,
254 format_vnet_sw_if_index_name, vnm,
255 sif->sw_if_index);
256 }
257 }));
258 }
259 }));
260 }
261 /* *INDENT-ON* */
262
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 {
264 uword elts_before = pool_elts (lm->if_address_pool);
265
266 error = ip_interface_address_add_del
Dave Barachd7cb1b52016-12-09 09:52:16 -0500267 (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 if (error)
269 goto done;
270
271 /* Pool did not grow: add duplicate address. */
272 if (elts_before == pool_elts (lm->if_address_pool))
273 goto done;
274 }
275
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 ip6_sw_interface_enable_disable (sw_if_index, !is_del);
Neale Ranns177bbdc2016-11-15 09:46:51 +0000277
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100278 if (is_del)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 ip6_del_interface_routes (im, ip6_af.fib_index, address, address_length);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100280 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281 ip6_add_interface_routes (vnm, sw_if_index,
282 im, ip6_af.fib_index,
283 pool_elt_at_index (lm->if_address_pool,
284 if_address_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500287 ip6_add_del_interface_address_callback_t *cb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 vec_foreach (cb, im->add_del_interface_address_callbacks)
289 cb->function (im, cb->function_opaque, sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 address, address_length, if_address_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 }
292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 vec_free (addr_fib);
295 return error;
296}
297
298clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299ip6_sw_interface_admin_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301 ip6_main_t *im = &ip6_main;
302 ip_interface_address_t *ia;
303 ip6_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 u32 is_admin_up, fib_index;
305
306 /* Fill in lookup tables with default table (0). */
307 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
308
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 vec_validate_init_empty (im->
310 lookup_main.if_address_pool_index_by_sw_if_index,
311 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
313 is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
314
315 fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
316
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 /* *INDENT-OFF* */
Dave Barach75fc8542016-10-11 16:16:02 -0400318 foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 0 /* honor unnumbered */,
320 ({
321 a = ip_interface_address_get_address (&im->lookup_main, ia);
322 if (is_admin_up)
323 ip6_add_interface_routes (vnm, sw_if_index,
324 im, fib_index,
325 ia);
326 else
327 ip6_del_interface_routes (im, fib_index,
328 a, ia->address_length);
329 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332 return 0;
333}
334
335VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_sw_interface_admin_up_down);
336
Dave Barachd6534602016-06-14 18:38:02 -0400337/* Built-in ip6 unicast rx feature path definition */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338/* *INDENT-OFF* */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100339VNET_FEATURE_ARC_INIT (ip6_unicast, static) =
340{
341 .arc_name = "ip6-unicast",
342 .start_nodes = VNET_FEATURES ("ip6-input"),
343 .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index,
344};
345
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346VNET_FEATURE_INIT (ip6_flow_classify, static) =
347{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100348 .arc_name = "ip6-unicast",
Juraj Sloboda506b2452016-08-07 23:45:24 -0700349 .node_name = "ip6-flow-classify",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100350 .runs_before = VNET_FEATURES ("ip6-inacl"),
Juraj Sloboda506b2452016-08-07 23:45:24 -0700351};
352
Dave Barachd7cb1b52016-12-09 09:52:16 -0500353VNET_FEATURE_INIT (ip6_inacl, static) =
354{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100355 .arc_name = "ip6-unicast",
Dave Barach75fc8542016-10-11 16:16:02 -0400356 .node_name = "ip6-inacl",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100357 .runs_before = VNET_FEATURES ("ip6-policer-classify"),
Dave Barachd6534602016-06-14 18:38:02 -0400358};
359
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360VNET_FEATURE_INIT (ip6_policer_classify, static) =
361{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100362 .arc_name = "ip6-unicast",
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700363 .node_name = "ip6-policer-classify",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100364 .runs_before = VNET_FEATURES ("ipsec-input-ip6"),
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700365};
366
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367VNET_FEATURE_INIT (ip6_ipsec, static) =
368{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100369 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400370 .node_name = "ipsec-input-ip6",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100371 .runs_before = VNET_FEATURES ("l2tp-decap"),
Dave Barachd6534602016-06-14 18:38:02 -0400372};
373
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374VNET_FEATURE_INIT (ip6_l2tp, static) =
375{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100376 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400377 .node_name = "l2tp-decap",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100378 .runs_before = VNET_FEATURES ("vpath-input-ip6"),
Dave Barachd6534602016-06-14 18:38:02 -0400379};
380
Dave Barachd7cb1b52016-12-09 09:52:16 -0500381VNET_FEATURE_INIT (ip6_vpath, static) =
382{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100383 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400384 .node_name = "vpath-input-ip6",
John Lo2b81eb82017-01-30 13:12:10 -0500385 .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"),
386};
387
388VNET_FEATURE_INIT (ip6_vxlan_bypass, static) =
389{
390 .arc_name = "ip6-unicast",
391 .node_name = "ip6-vxlan-bypass",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100392 .runs_before = VNET_FEATURES ("ip6-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400393};
394
Neale Ranns8269d3d2018-01-30 09:02:20 -0800395VNET_FEATURE_INIT (ip6_not_enabled, static) =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100397 .arc_name = "ip6-unicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800398 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400399 .runs_before = VNET_FEATURES ("ip6-lookup"),
400};
401
402VNET_FEATURE_INIT (ip6_lookup, static) =
403{
404 .arc_name = "ip6-unicast",
405 .node_name = "ip6-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100406 .runs_before = 0, /*last feature*/
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100407};
408
Dave Barachd6534602016-06-14 18:38:02 -0400409/* Built-in ip6 multicast rx feature path definition (none now) */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100410VNET_FEATURE_ARC_INIT (ip6_multicast, static) =
411{
412 .arc_name = "ip6-multicast",
413 .start_nodes = VNET_FEATURES ("ip6-input"),
414 .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index,
415};
416
417VNET_FEATURE_INIT (ip6_vpath_mc, static) = {
418 .arc_name = "ip6-multicast",
Dave Barachd6534602016-06-14 18:38:02 -0400419 .node_name = "vpath-input-ip6",
Neale Ranns32e1c012016-11-22 17:07:28 +0000420 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400421};
422
Neale Ranns8269d3d2018-01-30 09:02:20 -0800423VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = {
Damjan Marion8b3191e2016-11-09 19:54:20 +0100424 .arc_name = "ip6-multicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800425 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400426 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
427};
428
429VNET_FEATURE_INIT (ip6_mc_lookup, static) = {
430 .arc_name = "ip6-multicast",
431 .node_name = "ip6-mfib-forward-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100432 .runs_before = 0, /* last feature */
Neale Ranns5e575b12016-10-03 09:40:25 +0100433};
Dave Barach5331c722016-08-17 11:54:30 -0400434
435/* Built-in ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100436VNET_FEATURE_ARC_INIT (ip6_output, static) =
437{
438 .arc_name = "ip6-output",
Neale Rannsf068c3e2018-01-03 04:18:48 -0800439 .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"),
Damjan Marion8b3191e2016-11-09 19:54:20 +0100440 .arc_index_ptr = &ip6_main.lookup_main.output_feature_arc_index,
Dave Barach5331c722016-08-17 11:54:30 -0400441};
442
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100443VNET_FEATURE_INIT (ip6_outacl, static) = {
444 .arc_name = "ip6-output",
445 .node_name = "ip6-outacl",
446 .runs_before = VNET_FEATURES ("ipsec-output-ip6"),
447};
448
Matus Fabian08a6f012016-11-15 06:08:51 -0800449VNET_FEATURE_INIT (ip6_ipsec_output, static) = {
450 .arc_name = "ip6-output",
451 .node_name = "ipsec-output-ip6",
452 .runs_before = VNET_FEATURES ("interface-output"),
453};
454
Damjan Marion8b3191e2016-11-09 19:54:20 +0100455VNET_FEATURE_INIT (ip6_interface_output, static) = {
456 .arc_name = "ip6-output",
457 .node_name = "interface-output",
458 .runs_before = 0, /* not before any other features */
459};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460/* *INDENT-ON* */
Dave Barachd6534602016-06-14 18:38:02 -0400461
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463ip6_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464{
Florin Corasb5c13fd2017-05-10 12:32:53 -0700465 ip6_main_t *im = &ip6_main;
466
467 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
468 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
469
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200470 if (!is_add)
471 {
472 /* Ensure that IPv6 is disabled */
473 ip6_main_t *im6 = &ip6_main;
474 ip_lookup_main_t *lm6 = &im6->lookup_main;
475 ip_interface_address_t *ia = 0;
476 ip6_address_t *address;
477 vlib_main_t *vm = vlib_get_main ();
478
479 ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, 0 /* is_add */ );
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700480 vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0);
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200481 /* *INDENT-OFF* */
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700482 foreach_ip_interface_address (lm6, ia, sw_if_index, 0,
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200483 ({
484 address = ip_interface_address_get_address (lm6, ia);
485 ip6_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1);
486 }));
487 /* *INDENT-ON* */
488 ip6_mfib_interface_enable_disable (sw_if_index, 0);
489 }
490
Neale Ranns8269d3d2018-01-30 09:02:20 -0800491 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +0100492 is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
Neale Ranns8269d3d2018-01-30 09:02:20 -0800494 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
495 sw_if_index, is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 return /* no error */ 0;
498}
499
500VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_sw_interface_add_del);
501
Damjan Marionaca64c92016-04-13 09:48:56 +0200502static uword
503ip6_lookup (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 vlib_node_runtime_t * node, vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200505{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100506 return ip6_lookup_inline (vm, node, frame);
Damjan Marionaca64c92016-04-13 09:48:56 +0200507}
508
Dave Barachd7cb1b52016-12-09 09:52:16 -0500509static u8 *format_ip6_lookup_trace (u8 * s, va_list * args);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100510
Dave Barachd7cb1b52016-12-09 09:52:16 -0500511/* *INDENT-OFF* */
512VLIB_REGISTER_NODE (ip6_lookup_node) =
513{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 .function = ip6_lookup,
515 .name = "ip6-lookup",
516 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100517 .format_trace = format_ip6_lookup_trace,
Ole Troanf0f85222016-06-14 21:12:32 +0200518 .n_next_nodes = IP6_LOOKUP_N_NEXT,
Damjan Marionb2707892016-04-13 11:21:07 +0200519 .next_nodes = IP6_LOOKUP_NEXT_NODES,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500521/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
Dave Barachd7cb1b52016-12-09 09:52:16 -0500523VLIB_NODE_FUNCTION_MULTIARCH (ip6_lookup_node, ip6_lookup);
Damjan Marion1c80e832016-05-11 23:07:18 +0200524
Damjan Marion2574d9f2018-06-26 14:45:49 +0200525static uword
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100526ip6_load_balance (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500527 vlib_node_runtime_t * node, vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200528{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500529 vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters;
530 u32 n_left_from, n_left_to_next, *from, *to_next;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100531 ip_lookup_next_t next;
Damjan Marion067cd622018-07-11 12:47:43 +0200532 u32 thread_index = vm->thread_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500533 ip6_main_t *im = &ip6_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100534
535 from = vlib_frame_vector_args (frame);
536 n_left_from = frame->n_vectors;
537 next = node->cached_next_index;
538
539 if (node->flags & VLIB_NODE_FLAG_TRACE)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500540 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100541
542 while (n_left_from > 0)
543 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500544 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545
Dave Barach75fc8542016-10-11 16:16:02 -0400546
Neale Ranns2be95c12016-11-19 13:50:04 +0000547 while (n_left_from >= 4 && n_left_to_next >= 2)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500548 {
549 ip_lookup_next_t next0, next1;
550 const load_balance_t *lb0, *lb1;
551 vlib_buffer_t *p0, *p1;
552 u32 pi0, lbi0, hc0, pi1, lbi1, hc1;
553 const ip6_header_t *ip0, *ip1;
554 const dpo_id_t *dpo0, *dpo1;
Neale Ranns2be95c12016-11-19 13:50:04 +0000555
Dave Barachd7cb1b52016-12-09 09:52:16 -0500556 /* Prefetch next iteration. */
557 {
558 vlib_buffer_t *p2, *p3;
Neale Ranns2be95c12016-11-19 13:50:04 +0000559
Dave Barachd7cb1b52016-12-09 09:52:16 -0500560 p2 = vlib_get_buffer (vm, from[2]);
561 p3 = vlib_get_buffer (vm, from[3]);
Neale Ranns2be95c12016-11-19 13:50:04 +0000562
Dave Barachd7cb1b52016-12-09 09:52:16 -0500563 vlib_prefetch_buffer_header (p2, STORE);
564 vlib_prefetch_buffer_header (p3, STORE);
Neale Ranns2be95c12016-11-19 13:50:04 +0000565
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
567 CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
568 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000569
Dave Barachd7cb1b52016-12-09 09:52:16 -0500570 pi0 = to_next[0] = from[0];
571 pi1 = to_next[1] = from[1];
Neale Ranns2be95c12016-11-19 13:50:04 +0000572
Dave Barachd7cb1b52016-12-09 09:52:16 -0500573 from += 2;
574 n_left_from -= 2;
575 to_next += 2;
576 n_left_to_next -= 2;
Neale Ranns2be95c12016-11-19 13:50:04 +0000577
Dave Barachd7cb1b52016-12-09 09:52:16 -0500578 p0 = vlib_get_buffer (vm, pi0);
579 p1 = vlib_get_buffer (vm, pi1);
Neale Ranns2be95c12016-11-19 13:50:04 +0000580
Dave Barachd7cb1b52016-12-09 09:52:16 -0500581 ip0 = vlib_buffer_get_current (p0);
582 ip1 = vlib_buffer_get_current (p1);
583 lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
584 lbi1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
Neale Ranns2be95c12016-11-19 13:50:04 +0000585
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586 lb0 = load_balance_get (lbi0);
587 lb1 = load_balance_get (lbi1);
Neale Ranns2be95c12016-11-19 13:50:04 +0000588
Dave Barachd7cb1b52016-12-09 09:52:16 -0500589 /*
590 * this node is for via FIBs we can re-use the hash value from the
591 * to node if present.
592 * We don't want to use the same hash value at each level in the recursion
593 * graph as that would lead to polarisation
594 */
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000595 hc0 = hc1 = 0;
Neale Ranns2be95c12016-11-19 13:50:04 +0000596
Dave Barachd7cb1b52016-12-09 09:52:16 -0500597 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
598 {
599 if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
600 {
601 hc0 = vnet_buffer (p0)->ip.flow_hash =
602 vnet_buffer (p0)->ip.flow_hash >> 1;
603 }
604 else
605 {
606 hc0 = vnet_buffer (p0)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000607 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700609 dpo0 =
610 load_balance_get_fwd_bucket (lb0,
611 (hc0 &
612 lb0->lb_n_buckets_minus_1));
613 }
614 else
615 {
616 dpo0 = load_balance_get_bucket_i (lb0, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500617 }
618 if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
619 {
620 if (PREDICT_TRUE (vnet_buffer (p1)->ip.flow_hash))
621 {
622 hc1 = vnet_buffer (p1)->ip.flow_hash =
623 vnet_buffer (p1)->ip.flow_hash >> 1;
624 }
625 else
626 {
627 hc1 = vnet_buffer (p1)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000628 ip6_compute_flow_hash (ip1, lb1->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500629 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700630 dpo1 =
631 load_balance_get_fwd_bucket (lb1,
632 (hc1 &
633 lb1->lb_n_buckets_minus_1));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500634 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700635 else
636 {
637 dpo1 = load_balance_get_bucket_i (lb1, 0);
638 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000639
Dave Barachd7cb1b52016-12-09 09:52:16 -0500640 next0 = dpo0->dpoi_next_node;
641 next1 = dpo1->dpoi_next_node;
Neale Ranns2be95c12016-11-19 13:50:04 +0000642
Dave Barachd7cb1b52016-12-09 09:52:16 -0500643 /* Only process the HBH Option Header if explicitly configured to do so */
644 if (PREDICT_FALSE
645 (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
646 {
647 next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
648 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
649 }
650 /* Only process the HBH Option Header if explicitly configured to do so */
651 if (PREDICT_FALSE
652 (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
653 {
654 next1 = (dpo_is_adj (dpo1) && im->hbh_enabled) ?
655 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next1;
656 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000657
Dave Barachd7cb1b52016-12-09 09:52:16 -0500658 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
659 vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
Neale Ranns2be95c12016-11-19 13:50:04 +0000660
Dave Barachd7cb1b52016-12-09 09:52:16 -0500661 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200662 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500663 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200664 (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, p1));
Neale Ranns2be95c12016-11-19 13:50:04 +0000665
Dave Barachd7cb1b52016-12-09 09:52:16 -0500666 vlib_validate_buffer_enqueue_x2 (vm, node, next,
667 to_next, n_left_to_next,
668 pi0, pi1, next0, next1);
669 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000670
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100671 while (n_left_from > 0 && n_left_to_next > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500672 {
673 ip_lookup_next_t next0;
674 const load_balance_t *lb0;
675 vlib_buffer_t *p0;
676 u32 pi0, lbi0, hc0;
677 const ip6_header_t *ip0;
678 const dpo_id_t *dpo0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100679
Dave Barachd7cb1b52016-12-09 09:52:16 -0500680 pi0 = from[0];
681 to_next[0] = pi0;
682 from += 1;
683 to_next += 1;
684 n_left_to_next -= 1;
685 n_left_from -= 1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100686
Dave Barachd7cb1b52016-12-09 09:52:16 -0500687 p0 = vlib_get_buffer (vm, pi0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100688
Dave Barachd7cb1b52016-12-09 09:52:16 -0500689 ip0 = vlib_buffer_get_current (p0);
690 lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692 lb0 = load_balance_get (lbi0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100693
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000694 hc0 = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500695 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
696 {
697 if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
698 {
699 hc0 = vnet_buffer (p0)->ip.flow_hash =
700 vnet_buffer (p0)->ip.flow_hash >> 1;
701 }
702 else
703 {
704 hc0 = vnet_buffer (p0)->ip.flow_hash =
AkshayaNadahalli153b8712017-03-06 18:22:29 +0000705 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700707 dpo0 =
708 load_balance_get_fwd_bucket (lb0,
709 (hc0 &
710 lb0->lb_n_buckets_minus_1));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500711 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700712 else
713 {
714 dpo0 = load_balance_get_bucket_i (lb0, 0);
715 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100716
Dave Barachd7cb1b52016-12-09 09:52:16 -0500717 next0 = dpo0->dpoi_next_node;
718 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
Neale Ranns2be95c12016-11-19 13:50:04 +0000719
Dave Barachd7cb1b52016-12-09 09:52:16 -0500720 /* Only process the HBH Option Header if explicitly configured to do so */
721 if (PREDICT_FALSE
722 (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
723 {
724 next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
725 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
726 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000727
Dave Barachd7cb1b52016-12-09 09:52:16 -0500728 vlib_increment_combined_counter
Damjan Marion586afd72017-04-05 19:18:20 +0200729 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100730
Dave Barachd7cb1b52016-12-09 09:52:16 -0500731 vlib_validate_buffer_enqueue_x1 (vm, node, next,
732 to_next, n_left_to_next,
733 pi0, next0);
734 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100735
736 vlib_put_next_frame (vm, node, next, n_left_to_next);
737 }
738
739 return frame->n_vectors;
Damjan Marionaca64c92016-04-13 09:48:56 +0200740}
741
Dave Barachd7cb1b52016-12-09 09:52:16 -0500742/* *INDENT-OFF* */
743VLIB_REGISTER_NODE (ip6_load_balance_node) =
744{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100745 .function = ip6_load_balance,
746 .name = "ip6-load-balance",
Damjan Marionaca64c92016-04-13 09:48:56 +0200747 .vector_size = sizeof (u32),
Ole Troanf0f85222016-06-14 21:12:32 +0200748 .sibling_of = "ip6-lookup",
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100749 .format_trace = format_ip6_lookup_trace,
Damjan Marionaca64c92016-04-13 09:48:56 +0200750};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500751/* *INDENT-ON* */
Damjan Marionaca64c92016-04-13 09:48:56 +0200752
Dave Barachd7cb1b52016-12-09 09:52:16 -0500753VLIB_NODE_FUNCTION_MULTIARCH (ip6_load_balance_node, ip6_load_balance);
Damjan Marion1c80e832016-05-11 23:07:18 +0200754
Dave Barachd7cb1b52016-12-09 09:52:16 -0500755typedef struct
756{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 /* Adjacency taken. */
758 u32 adj_index;
759 u32 flow_hash;
John Lo2d343742016-01-19 17:27:17 -0500760 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761
762 /* Packet data, possibly *after* rewrite. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500763 u8 packet_data[128 - 1 * sizeof (u32)];
764}
765ip6_forward_next_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
John Lo2b81eb82017-01-30 13:12:10 -0500767u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500768format_ip6_forward_next_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769{
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100770 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
771 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500772 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200773 u32 indent = format_get_indent (s);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100774
Dave Barachd7cb1b52016-12-09 09:52:16 -0500775 s = format (s, "%U%U",
776 format_white_space, indent,
777 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100778 return s;
779}
780
Dave Barachd7cb1b52016-12-09 09:52:16 -0500781static u8 *
782format_ip6_lookup_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100783{
784 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
785 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500786 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200787 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788
John Loac8146c2016-09-27 17:44:02 -0400789 s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500790 t->fib_index, t->adj_index, t->flow_hash);
791 s = format (s, "\n%U%U",
792 format_white_space, indent,
793 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100794 return s;
795}
Pierre Pfister0febaf12016-06-08 12:23:21 +0100796
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797
Dave Barachd7cb1b52016-12-09 09:52:16 -0500798static u8 *
799format_ip6_rewrite_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100800{
801 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
802 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500803 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200804 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100806 s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500807 t->fib_index, t->adj_index, format_ip_adjacency,
808 t->adj_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100809 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500810 format_white_space, indent,
811 format_ip_adjacency_packet_data,
Neale Rannsb069a692017-03-15 12:34:25 -0400812 t->adj_index, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813 return s;
814}
815
816/* Common trace function for all ip6-forward next nodes. */
817void
818ip6_forward_next_trace (vlib_main_t * vm,
819 vlib_node_runtime_t * node,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500820 vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500822 u32 *from, n_left;
823 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
825 n_left = frame->n_vectors;
826 from = vlib_frame_vector_args (frame);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100827
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 while (n_left >= 4)
829 {
830 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500831 vlib_buffer_t *b0, *b1;
832 ip6_forward_next_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833
834 /* Prefetch next iteration. */
835 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
836 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
837
838 bi0 = from[0];
839 bi1 = from[1];
840
841 b0 = vlib_get_buffer (vm, bi0);
842 b1 = vlib_get_buffer (vm, bi1);
843
844 if (b0->flags & VLIB_BUFFER_IS_TRACED)
845 {
846 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
847 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500848 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
849 t0->fib_index =
850 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
851 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
852 vec_elt (im->fib_index_by_sw_if_index,
853 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100854
Damjan Marionf1213b82016-03-13 02:22:06 +0100855 clib_memcpy (t0->packet_data,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500856 vlib_buffer_get_current (b0),
857 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 }
859 if (b1->flags & VLIB_BUFFER_IS_TRACED)
860 {
861 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
862 t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500863 t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
864 t1->fib_index =
865 (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
866 (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
867 vec_elt (im->fib_index_by_sw_if_index,
868 vnet_buffer (b1)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100869
Damjan Marionf1213b82016-03-13 02:22:06 +0100870 clib_memcpy (t1->packet_data,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500871 vlib_buffer_get_current (b1),
872 sizeof (t1->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 }
874 from += 2;
875 n_left -= 2;
876 }
877
878 while (n_left >= 1)
879 {
880 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500881 vlib_buffer_t *b0;
882 ip6_forward_next_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883
884 bi0 = from[0];
885
886 b0 = vlib_get_buffer (vm, bi0);
887
888 if (b0->flags & VLIB_BUFFER_IS_TRACED)
889 {
890 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
891 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500892 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
893 t0->fib_index =
894 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
895 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
896 vec_elt (im->fib_index_by_sw_if_index,
897 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100898
Damjan Marionf1213b82016-03-13 02:22:06 +0100899 clib_memcpy (t0->packet_data,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500900 vlib_buffer_get_current (b0),
901 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902 }
903 from += 1;
904 n_left -= 1;
905 }
906}
907
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908/* Compute TCP/UDP/ICMP6 checksum in software. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500909u16
910ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
911 ip6_header_t * ip0, int *bogus_lengthp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912{
913 ip_csum_t sum0;
914 u16 sum16, payload_length_host_byte_order;
915 u32 i, n_this_buffer, n_bytes_left;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500916 u32 headers_size = sizeof (ip0[0]);
917 void *data_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918
Dave Barachd7cb1b52016-12-09 09:52:16 -0500919 ASSERT (bogus_lengthp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920 *bogus_lengthp = 0;
921
922 /* Initialize checksum with ip header. */
923 sum0 = ip0->payload_length + clib_host_to_net_u16 (ip0->protocol);
924 payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
925 data_this_buffer = (void *) (ip0 + 1);
Dave Barach75fc8542016-10-11 16:16:02 -0400926
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++)
928 {
929 sum0 = ip_csum_with_carry (sum0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500930 clib_mem_unaligned (&ip0->
931 src_address.as_uword[i],
932 uword));
933 sum0 =
934 ip_csum_with_carry (sum0,
935 clib_mem_unaligned (&ip0->dst_address.as_uword[i],
936 uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937 }
938
AkshayaNadahalli1b563522017-01-23 22:05:35 +0530939 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets)
940 * or UDP-Ping packets */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500941 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500943 u32 skip_bytes;
944 ip6_hop_by_hop_ext_t *ext_hdr =
945 (ip6_hop_by_hop_ext_t *) data_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
947 /* validate really icmp6 next */
AkshayaNadahalli1b563522017-01-23 22:05:35 +0530948 ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
949 || (ext_hdr->next_hdr == IP_PROTOCOL_UDP));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950
Dave Barachd7cb1b52016-12-09 09:52:16 -0500951 skip_bytes = 8 * (1 + ext_hdr->n_data_u64s);
952 data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes);
Dave Barach75fc8542016-10-11 16:16:02 -0400953
Dave Barachd7cb1b52016-12-09 09:52:16 -0500954 payload_length_host_byte_order -= skip_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955 headers_size += skip_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500956 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957
958 n_bytes_left = n_this_buffer = payload_length_host_byte_order;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500959 if (p0 && n_this_buffer + headers_size > p0->current_length)
960 n_this_buffer =
961 p0->current_length >
962 headers_size ? p0->current_length - headers_size : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 while (1)
964 {
965 sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer);
966 n_bytes_left -= n_this_buffer;
967 if (n_bytes_left == 0)
968 break;
969
970 if (!(p0->flags & VLIB_BUFFER_NEXT_PRESENT))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500971 {
972 *bogus_lengthp = 1;
973 return 0xfefe;
974 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975 p0 = vlib_get_buffer (vm, p0->next_buffer);
976 data_this_buffer = vlib_buffer_get_current (p0);
977 n_this_buffer = p0->current_length;
978 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979
Dave Barachd7cb1b52016-12-09 09:52:16 -0500980 sum16 = ~ip_csum_fold (sum0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981
982 return sum16;
983}
984
Dave Barachd7cb1b52016-12-09 09:52:16 -0500985u32
986ip6_tcp_udp_icmp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500988 ip6_header_t *ip0 = vlib_buffer_get_current (p0);
989 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990 u16 sum16;
991 int bogus_length;
992
993 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */
994 ASSERT (ip0->protocol == IP_PROTOCOL_TCP
995 || ip0->protocol == IP_PROTOCOL_ICMP6
996 || ip0->protocol == IP_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -0500997 || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998
999 udp0 = (void *) (ip0 + 1);
1000 if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
1001 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001002 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1003 | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001004 return p0->flags;
1005 }
1006
1007 sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length);
1008
Damjan Marion213b5aa2017-07-13 21:19:27 +02001009 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1010 | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011
1012 return p0->flags;
1013}
1014
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301015/**
1016 * @brief returns number of links on which src is reachable.
1017 */
1018always_inline int
1019ip6_urpf_loose_check (ip6_main_t * im, vlib_buffer_t * b, ip6_header_t * i)
1020{
1021 const load_balance_t *lb0;
1022 index_t lbi;
Florin Corasf3a3bad2018-03-28 02:18:29 -07001023 u32 fib_index;
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301024
Florin Corasf3a3bad2018-03-28 02:18:29 -07001025 fib_index = vec_elt (im->fib_index_by_sw_if_index,
1026 vnet_buffer (b)->sw_if_index[VLIB_RX]);
1027 fib_index =
1028 (vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ?
1029 fib_index : vnet_buffer (b)->sw_if_index[VLIB_TX];
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301030
Florin Corasf3a3bad2018-03-28 02:18:29 -07001031 lbi = ip6_fib_table_fwding_lookup (im, fib_index, &i->src_address);
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301032 lb0 = load_balance_get (lbi);
1033
1034 return (fib_urpf_check_size (lb0->lb_urpf));
1035}
1036
rootc9d1c5b2017-08-15 12:58:31 -04001037always_inline u8
1038ip6_next_proto_is_tcp_udp (vlib_buffer_t * p0, ip6_header_t * ip0,
1039 u32 * udp_offset0)
1040{
1041 u32 proto0;
1042 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0);
1043 if (proto0 != IP_PROTOCOL_UDP)
1044 {
1045 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0);
1046 proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0;
1047 }
1048 return proto0;
1049}
1050
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001051/* *INDENT-OFF* */
1052VNET_FEATURE_ARC_INIT (ip6_local) =
1053{
1054 .arc_name = "ip6-local",
1055 .start_nodes = VNET_FEATURES ("ip6-local"),
1056};
1057/* *INDENT-ON* */
1058
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059static uword
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001060ip6_local_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1061 vlib_frame_t * frame, int head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001063 ip6_main_t *im = &ip6_main;
1064 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065 ip_local_next_t next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001066 u32 *from, *to_next, n_left_from, n_left_to_next;
1067 vlib_node_runtime_t *error_node =
1068 vlib_node_get_runtime (vm, ip6_input_node.index);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001069 u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070
1071 from = vlib_frame_vector_args (frame);
1072 n_left_from = frame->n_vectors;
1073 next_index = node->cached_next_index;
Dave Barach75fc8542016-10-11 16:16:02 -04001074
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075 if (node->flags & VLIB_NODE_FLAG_TRACE)
1076 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
1077
1078 while (n_left_from > 0)
1079 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001080 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081
1082 while (n_left_from >= 4 && n_left_to_next >= 2)
1083 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001084 vlib_buffer_t *p0, *p1;
1085 ip6_header_t *ip0, *ip1;
1086 udp_header_t *udp0, *udp1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 u32 pi0, ip_len0, udp_len0, flags0, next0;
1088 u32 pi1, ip_len1, udp_len1, flags1, next1;
1089 i32 len_diff0, len_diff1;
rootc9d1c5b2017-08-15 12:58:31 -04001090 u8 error0, type0, good_l4_csum0, is_tcp_udp0;
1091 u8 error1, type1, good_l4_csum1, is_tcp_udp1;
Shwethab78292e2016-09-13 11:51:00 +01001092 u32 udp_offset0, udp_offset1;
Dave Barach75fc8542016-10-11 16:16:02 -04001093
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 pi0 = to_next[0] = from[0];
1095 pi1 = to_next[1] = from[1];
1096 from += 2;
1097 n_left_from -= 2;
1098 to_next += 2;
1099 n_left_to_next -= 2;
Dave Barach75fc8542016-10-11 16:16:02 -04001100
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001101 error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL;
1102
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103 p0 = vlib_get_buffer (vm, pi0);
1104 p1 = vlib_get_buffer (vm, pi1);
1105
1106 ip0 = vlib_buffer_get_current (p0);
1107 ip1 = vlib_buffer_get_current (p1);
1108
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001109 if (head_of_feature_arc == 0)
1110 goto skip_checks;
1111
Damjan Marion072401e2017-07-13 18:53:27 +02001112 vnet_buffer (p0)->l3_hdr_offset = p0->current_data;
1113 vnet_buffer (p1)->l3_hdr_offset = p1->current_data;
Filip Tehlarb601f222017-01-02 10:22:56 +01001114
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol];
1116 type1 = lm->builtin_protocol_by_ip_protocol[ip1->protocol];
1117
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 flags0 = p0->flags;
1119 flags1 = p1->flags;
1120
rootc9d1c5b2017-08-15 12:58:31 -04001121 is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0);
1122 is_tcp_udp1 = ip6_next_proto_is_tcp_udp (p1, ip1, &udp_offset1);
1123
Jakub Grajciar96be8e82017-10-30 14:56:17 +01001124 good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
Jakub Grajciar2eeeb4b2017-11-07 14:39:10 +01001125 || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1126 || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
Jakub Grajciar96be8e82017-10-30 14:56:17 +01001127 != 0;
1128 good_l4_csum1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
Jakub Grajciar2eeeb4b2017-11-07 14:39:10 +01001129 || (flags1 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1130 || flags1 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
Jakub Grajciar96be8e82017-10-30 14:56:17 +01001131 != 0;
Shwethab78292e2016-09-13 11:51:00 +01001132 len_diff0 = 0;
1133 len_diff1 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134
rootc9d1c5b2017-08-15 12:58:31 -04001135 if (PREDICT_TRUE (is_tcp_udp0))
Shwethab78292e2016-09-13 11:51:00 +01001136 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001137 udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0);
Shwethab78292e2016-09-13 11:51:00 +01001138 /* Don't verify UDP checksum for packets with explicit zero checksum. */
rootc9d1c5b2017-08-15 12:58:31 -04001139 good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -05001140 && udp0->checksum == 0;
Shwethab78292e2016-09-13 11:51:00 +01001141 /* Verify UDP length. */
rootc9d1c5b2017-08-15 12:58:31 -04001142 if (is_tcp_udp0 == IP_PROTOCOL_UDP)
1143 {
1144 ip_len0 = clib_net_to_host_u16 (ip0->payload_length);
1145 udp_len0 = clib_net_to_host_u16 (udp0->length);
1146 len_diff0 = ip_len0 - udp_len0;
1147 }
Shwethab78292e2016-09-13 11:51:00 +01001148 }
rootc9d1c5b2017-08-15 12:58:31 -04001149 if (PREDICT_TRUE (is_tcp_udp1))
Shwethab78292e2016-09-13 11:51:00 +01001150 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001151 udp1 = (udp_header_t *) ((u8 *) ip1 + udp_offset1);
Shwethab78292e2016-09-13 11:51:00 +01001152 /* Don't verify UDP checksum for packets with explicit zero checksum. */
rootc9d1c5b2017-08-15 12:58:31 -04001153 good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -05001154 && udp1->checksum == 0;
Shwethab78292e2016-09-13 11:51:00 +01001155 /* Verify UDP length. */
rootc9d1c5b2017-08-15 12:58:31 -04001156 if (is_tcp_udp1 == IP_PROTOCOL_UDP)
1157 {
1158 ip_len1 = clib_net_to_host_u16 (ip1->payload_length);
1159 udp_len1 = clib_net_to_host_u16 (udp1->length);
1160 len_diff1 = ip_len1 - udp_len1;
1161 }
Shwethab78292e2016-09-13 11:51:00 +01001162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163
rootc9d1c5b2017-08-15 12:58:31 -04001164 good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN;
1165 good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UNKNOWN;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0;
1168 len_diff1 = type1 == IP_BUILTIN_PROTOCOL_UDP ? len_diff1 : 0;
1169
1170 if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN
rootc9d1c5b2017-08-15 12:58:31 -04001171 && !good_l4_csum0
Damjan Marion213b5aa2017-07-13 21:19:27 +02001172 && !(flags0 &
1173 VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 {
1175 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0);
rootc9d1c5b2017-08-15 12:58:31 -04001176 good_l4_csum0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +02001177 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178 }
1179 if (PREDICT_FALSE (type1 != IP_BUILTIN_PROTOCOL_UNKNOWN
rootc9d1c5b2017-08-15 12:58:31 -04001180 && !good_l4_csum1
Damjan Marion213b5aa2017-07-13 21:19:27 +02001181 && !(flags1 &
1182 VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183 {
1184 flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, p1);
rootc9d1c5b2017-08-15 12:58:31 -04001185 good_l4_csum1 =
Damjan Marion213b5aa2017-07-13 21:19:27 +02001186 (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187 }
1188
1189 error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190 error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0;
1191 error1 = len_diff1 < 0 ? IP6_ERROR_UDP_LENGTH : error1;
1192
Dave Barachd7cb1b52016-12-09 09:52:16 -05001193 ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1194 IP6_ERROR_UDP_CHECKSUM);
1195 ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1196 IP6_ERROR_ICMP_CHECKSUM);
rootc9d1c5b2017-08-15 12:58:31 -04001197 error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0);
1198 error1 = (!good_l4_csum1 ? IP6_ERROR_UDP_CHECKSUM + type1 : error1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199
1200 /* Drop packets from unroutable hosts. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001201 /* If this is a neighbor solicitation (ICMP), skip source RPF check */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001202 if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1203 type0 != IP_BUILTIN_PROTOCOL_ICMP &&
Dave Barachd7cb1b52016-12-09 09:52:16 -05001204 !ip6_address_is_link_local_unicast (&ip0->src_address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 {
AkshayaNadahalli8ea6d712017-02-07 23:59:54 +05301206 error0 = (!ip6_urpf_loose_check (im, p0, ip0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001207 ? IP6_ERROR_SRC_LOOKUP_MISS : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001208 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001209 if (error1 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1210 type1 != IP_BUILTIN_PROTOCOL_ICMP &&
Dave Barachd7cb1b52016-12-09 09:52:16 -05001211 !ip6_address_is_link_local_unicast (&ip1->src_address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212 {
AkshayaNadahalli8ea6d712017-02-07 23:59:54 +05301213 error1 = (!ip6_urpf_loose_check (im, p1, ip1)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001214 ? IP6_ERROR_SRC_LOOKUP_MISS : error1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215 }
1216
Florin Corascea194d2017-10-02 00:18:51 -07001217 vnet_buffer (p0)->ip.fib_index =
Florin Coras3a0325f2018-06-01 12:22:23 -07001218 vnet_buffer (p0)->sw_if_index[VLIB_TX] != ~0 ?
1219 vnet_buffer (p0)->sw_if_index[VLIB_TX] :
1220 vnet_buffer (p0)->ip.fib_index;
Florin Corascea194d2017-10-02 00:18:51 -07001221
1222 vnet_buffer (p1)->ip.fib_index =
Florin Coras3a0325f2018-06-01 12:22:23 -07001223 vnet_buffer (p1)->sw_if_index[VLIB_TX] != ~0 ?
1224 vnet_buffer (p1)->sw_if_index[VLIB_TX] :
1225 vnet_buffer (p1)->ip.fib_index;
Florin Corascea194d2017-10-02 00:18:51 -07001226
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001227 skip_checks:
1228
1229 next0 = lm->local_next_by_ip_protocol[ip0->protocol];
1230 next1 = lm->local_next_by_ip_protocol[ip1->protocol];
1231
Dave Barachd7cb1b52016-12-09 09:52:16 -05001232 next0 =
1233 error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0;
1234 next1 =
1235 error1 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236
1237 p0->error = error_node->errors[error0];
1238 p1->error = error_node->errors[error1];
1239
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001240 if (head_of_feature_arc)
1241 {
1242 if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1243 vnet_feature_arc_start (arc_index,
1244 vnet_buffer (p0)->sw_if_index
1245 [VLIB_RX], &next0, p0);
1246 if (PREDICT_TRUE (error1 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1247 vnet_feature_arc_start (arc_index,
1248 vnet_buffer (p1)->sw_if_index
1249 [VLIB_RX], &next1, p1);
1250 }
1251
Ed Warnickecb9cada2015-12-08 15:45:58 -07001252 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1253 to_next, n_left_to_next,
1254 pi0, pi1, next0, next1);
1255 }
1256
1257 while (n_left_from > 0 && n_left_to_next > 0)
1258 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001259 vlib_buffer_t *p0;
1260 ip6_header_t *ip0;
1261 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262 u32 pi0, ip_len0, udp_len0, flags0, next0;
1263 i32 len_diff0;
rootc9d1c5b2017-08-15 12:58:31 -04001264 u8 error0, type0, good_l4_csum0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001265 u32 udp_offset0;
rootc9d1c5b2017-08-15 12:58:31 -04001266 u8 is_tcp_udp0;
Dave Barach75fc8542016-10-11 16:16:02 -04001267
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268 pi0 = to_next[0] = from[0];
1269 from += 1;
1270 n_left_from -= 1;
1271 to_next += 1;
1272 n_left_to_next -= 1;
Dave Barach75fc8542016-10-11 16:16:02 -04001273
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001274 error0 = IP6_ERROR_UNKNOWN_PROTOCOL;
1275
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276 p0 = vlib_get_buffer (vm, pi0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001277 ip0 = vlib_buffer_get_current (p0);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001278
1279 if (head_of_feature_arc == 0)
1280 goto skip_check;
1281
Damjan Marion072401e2017-07-13 18:53:27 +02001282 vnet_buffer (p0)->l3_hdr_offset = p0->current_data;
Filip Tehlarb601f222017-01-02 10:22:56 +01001283
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284 type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285 flags0 = p0->flags;
rootc9d1c5b2017-08-15 12:58:31 -04001286 is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0);
Jakub Grajciar96be8e82017-10-30 14:56:17 +01001287 good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
Jakub Grajciar2eeeb4b2017-11-07 14:39:10 +01001288 || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1289 || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
Jakub Grajciar96be8e82017-10-30 14:56:17 +01001290 != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
Shwethab78292e2016-09-13 11:51:00 +01001292 len_diff0 = 0;
rootc9d1c5b2017-08-15 12:58:31 -04001293 if (PREDICT_TRUE (is_tcp_udp0))
Shwethab78292e2016-09-13 11:51:00 +01001294 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001295 udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0);
rootc9d1c5b2017-08-15 12:58:31 -04001296 /* Don't verify UDP checksum for packets with explicit zero
1297 * checksum. */
1298 good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -05001299 && udp0->checksum == 0;
Shwethab78292e2016-09-13 11:51:00 +01001300 /* Verify UDP length. */
rootc9d1c5b2017-08-15 12:58:31 -04001301 if (is_tcp_udp0 == IP_PROTOCOL_UDP)
1302 {
1303 ip_len0 = clib_net_to_host_u16 (ip0->payload_length);
1304 udp_len0 = clib_net_to_host_u16 (udp0->length);
1305 len_diff0 = ip_len0 - udp_len0;
1306 }
Shwethab78292e2016-09-13 11:51:00 +01001307 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308
rootc9d1c5b2017-08-15 12:58:31 -04001309 good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310 len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0;
1311
1312 if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN
rootc9d1c5b2017-08-15 12:58:31 -04001313 && !good_l4_csum0
Damjan Marion213b5aa2017-07-13 21:19:27 +02001314 && !(flags0 &
1315 VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316 {
1317 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0);
rootc9d1c5b2017-08-15 12:58:31 -04001318 good_l4_csum0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +02001319 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320 }
1321
1322 error0 = IP6_ERROR_UNKNOWN_PROTOCOL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0;
1324
Dave Barachd7cb1b52016-12-09 09:52:16 -05001325 ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1326 IP6_ERROR_UDP_CHECKSUM);
1327 ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1328 IP6_ERROR_ICMP_CHECKSUM);
rootc9d1c5b2017-08-15 12:58:31 -04001329 error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001330
rootc9d1c5b2017-08-15 12:58:31 -04001331 /* If this is a neighbor solicitation (ICMP), skip src RPF check */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001332 if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1333 type0 != IP_BUILTIN_PROTOCOL_ICMP &&
Dave Barachd7cb1b52016-12-09 09:52:16 -05001334 !ip6_address_is_link_local_unicast (&ip0->src_address))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335 {
AkshayaNadahalli8ea6d712017-02-07 23:59:54 +05301336 error0 = (!ip6_urpf_loose_check (im, p0, ip0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001337 ? IP6_ERROR_SRC_LOOKUP_MISS : error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338 }
Florin Coras1b255522018-06-01 12:22:23 -07001339
Florin Corascea194d2017-10-02 00:18:51 -07001340 vnet_buffer (p0)->ip.fib_index =
Florin Coras3a0325f2018-06-01 12:22:23 -07001341 vnet_buffer (p0)->sw_if_index[VLIB_TX] != ~0 ?
1342 vnet_buffer (p0)->sw_if_index[VLIB_TX] :
1343 vnet_buffer (p0)->ip.fib_index;
Florin Corascea194d2017-10-02 00:18:51 -07001344
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001345 skip_check:
1346
1347 next0 = lm->local_next_by_ip_protocol[ip0->protocol];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001348 next0 =
1349 error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0;
Klement Sekera75e7d132017-09-20 08:26:30 +02001350
Ed Warnickecb9cada2015-12-08 15:45:58 -07001351 p0->error = error_node->errors[error0];
1352
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001353 if (head_of_feature_arc)
1354 {
1355 if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1356 vnet_feature_arc_start (arc_index,
1357 vnet_buffer (p0)->sw_if_index
1358 [VLIB_RX], &next0, p0);
1359 }
1360
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1362 to_next, n_left_to_next,
1363 pi0, next0);
1364 }
Dave Barach75fc8542016-10-11 16:16:02 -04001365
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1367 }
1368
1369 return frame->n_vectors;
1370}
1371
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001372static uword
1373ip6_local (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1374{
1375 return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1376}
1377
Dave Barachd7cb1b52016-12-09 09:52:16 -05001378/* *INDENT-OFF* */
1379VLIB_REGISTER_NODE (ip6_local_node, static) =
1380{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001381 .function = ip6_local,
1382 .name = "ip6-local",
1383 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 .format_trace = format_ip6_forward_next_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385 .n_next_nodes = IP_LOCAL_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001386 .next_nodes =
1387 {
Neale Rannsd91c1db2017-07-31 02:30:50 -07001388 [IP_LOCAL_NEXT_DROP] = "ip6-drop",
1389 [IP_LOCAL_NEXT_PUNT] = "ip6-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup",
1391 [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input",
Juraj Sloboda3048b632018-10-02 11:13:53 +02001392 [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-reassembly",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001393 },
1394};
Dave Barachd7cb1b52016-12-09 09:52:16 -05001395/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396
Dave Barachd7cb1b52016-12-09 09:52:16 -05001397VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_node, ip6_local);
Damjan Marion1c80e832016-05-11 23:07:18 +02001398
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001399
1400static uword
1401ip6_local_end_of_arc (vlib_main_t * vm,
1402 vlib_node_runtime_t * node, vlib_frame_t * frame)
1403{
1404 return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1405}
1406
1407/* *INDENT-OFF* */
1408VLIB_REGISTER_NODE (ip6_local_end_of_arc_node,static) = {
1409 .function = ip6_local_end_of_arc,
1410 .name = "ip6-local-end-of-arc",
1411 .vector_size = sizeof (u32),
1412
1413 .format_trace = format_ip6_forward_next_trace,
1414 .sibling_of = "ip6-local",
1415};
1416
1417VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_end_of_arc_node, ip6_local_end_of_arc)
1418
1419VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = {
1420 .arc_name = "ip6-local",
1421 .node_name = "ip6-local-end-of-arc",
1422 .runs_before = 0, /* not before any other features */
1423};
1424/* *INDENT-ON* */
1425
Dave Barachd7cb1b52016-12-09 09:52:16 -05001426void
1427ip6_register_protocol (u32 protocol, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001429 vlib_main_t *vm = vlib_get_main ();
1430 ip6_main_t *im = &ip6_main;
1431 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432
1433 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001434 lm->local_next_by_ip_protocol[protocol] =
1435 vlib_node_add_next (vm, ip6_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436}
1437
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438clib_error_t *
John Lo86376342018-06-11 20:14:49 -04001439ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index,
1440 u8 refresh)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001441{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001442 vnet_main_t *vnm = vnet_get_main ();
1443 ip6_main_t *im = &ip6_main;
1444 icmp6_neighbor_solicitation_header_t *h;
1445 ip6_address_t *src;
1446 ip_interface_address_t *ia;
1447 ip_adjacency_t *adj;
1448 vnet_hw_interface_t *hi;
1449 vnet_sw_interface_t *si;
1450 vlib_buffer_t *b;
Neale Ranns7a272742017-05-30 02:08:14 -07001451 adj_index_t ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001452 u32 bi = 0;
1453 int bogus_length;
1454
1455 si = vnet_get_sw_interface (vnm, sw_if_index);
1456
1457 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
1458 {
1459 return clib_error_return (0, "%U: interface %U down",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001460 format_ip6_address, dst,
1461 format_vnet_sw_if_index_name, vnm,
1462 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001463 }
1464
Dave Barachd7cb1b52016-12-09 09:52:16 -05001465 src =
1466 ip6_interface_address_matching_destination (im, dst, sw_if_index, &ia);
1467 if (!src)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001468 {
1469 vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE;
Dave Barach75fc8542016-10-11 16:16:02 -04001470 return clib_error_return
Dave Barachd7cb1b52016-12-09 09:52:16 -05001471 (0, "no matching interface address for destination %U (interface %U)",
1472 format_ip6_address, dst,
1473 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001474 }
1475
Dave Barachd7cb1b52016-12-09 09:52:16 -05001476 h =
1477 vlib_packet_template_get_packet (vm,
1478 &im->discover_neighbor_packet_template,
1479 &bi);
John Lo084606b2018-06-19 15:27:48 -04001480 if (!h)
1481 return clib_error_return (0, "ICMP6 NS packet allocation failed");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482
1483 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1484
1485 /* Destination address is a solicited node multicast address. We need to fill in
1486 the low 24 bits with low 24 bits of target's address. */
1487 h->ip.dst_address.as_u8[13] = dst->as_u8[13];
1488 h->ip.dst_address.as_u8[14] = dst->as_u8[14];
1489 h->ip.dst_address.as_u8[15] = dst->as_u8[15];
1490
1491 h->ip.src_address = src[0];
1492 h->neighbor.target_address = dst[0];
1493
Pavel Kotucek57808982017-08-02 08:20:19 +02001494 if (PREDICT_FALSE (!hi->hw_address))
1495 {
1496 return clib_error_return (0, "%U: interface %U do not support ip probe",
1497 format_ip6_address, dst,
1498 format_vnet_sw_if_index_name, vnm,
1499 sw_if_index);
1500 }
1501
Dave Barachd7cb1b52016-12-09 09:52:16 -05001502 clib_memcpy (h->link_layer_option.ethernet_address, hi->hw_address,
1503 vec_len (hi->hw_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
Dave Barach75fc8542016-10-11 16:16:02 -04001505 h->neighbor.icmp.checksum =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001506 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001507 ASSERT (bogus_length == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001508
1509 b = vlib_get_buffer (vm, bi);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001510 vnet_buffer (b)->sw_if_index[VLIB_RX] =
1511 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001512
1513 /* Add encapsulation string for software interface (e.g. ethernet header). */
Neale Ranns7a272742017-05-30 02:08:14 -07001514 ip46_address_t nh = {
1515 .ip6 = *dst,
1516 };
1517
1518 ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP6,
1519 VNET_LINK_IP6, &nh, sw_if_index);
1520 adj = adj_get (ai);
1521
Dave Barach59b25652017-09-10 15:04:27 -04001522 /* Peer has been previously resolved, retrieve glean adj instead */
John Lo86376342018-06-11 20:14:49 -04001523 if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE && refresh == 0)
Dave Barach59b25652017-09-10 15:04:27 -04001524 {
1525 adj_unlock (ai);
Ole Troan6ee40512018-02-12 18:14:39 +01001526 ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP6,
1527 VNET_LINK_IP6, sw_if_index, &nh);
Dave Barach59b25652017-09-10 15:04:27 -04001528 adj = adj_get (ai);
1529 }
1530
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
1532 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
1533
1534 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001535 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
1536 u32 *to_next = vlib_frame_vector_args (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537 to_next[0] = bi;
1538 f->n_vectors = 1;
1539 vlib_put_frame_to_node (vm, hi->output_node_index, f);
1540 }
1541
Neale Ranns7a272742017-05-30 02:08:14 -07001542 adj_unlock (ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001543 return /* no error */ 0;
1544}
1545
Dave Barachd7cb1b52016-12-09 09:52:16 -05001546typedef enum
1547{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001548 IP6_REWRITE_NEXT_DROP,
Chris Luke816f3e12016-06-14 16:24:47 -04001549 IP6_REWRITE_NEXT_ICMP_ERROR,
Ole Troan313f7e22018-04-10 16:02:51 +02001550 IP6_REWRITE_NEXT_FRAGMENT,
1551 IP6_REWRITE_N_NEXT /* Last */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552} ip6_rewrite_next_t;
1553
Neale Ranns889fe942017-06-01 05:43:19 -04001554/**
1555 * This bits of an IPv6 address to mask to construct a multicast
1556 * MAC address
1557 */
1558#define IP6_MCAST_ADDR_MASK 0xffffffff
1559
Ole Troanda6e11b2018-05-23 11:21:42 +02001560always_inline void
1561ip6_mtu_check (vlib_buffer_t * b, u16 packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001562 u16 adj_packet_bytes, bool is_locally_generated,
1563 u32 * next, u32 * error)
Ole Troanda6e11b2018-05-23 11:21:42 +02001564{
1565 if (adj_packet_bytes >= 1280 && packet_bytes > adj_packet_bytes)
1566 {
Ole Troan313f7e22018-04-10 16:02:51 +02001567 if (is_locally_generated)
1568 {
1569 /* IP fragmentation */
Ole Troan282093f2018-09-19 12:38:51 +02001570 ip_frag_set_vnet_buffer (b, adj_packet_bytes,
Ole Troanb3655e52018-08-16 22:08:49 +02001571 IP6_FRAG_NEXT_IP6_REWRITE, 0);
Ole Troan313f7e22018-04-10 16:02:51 +02001572 *next = IP6_REWRITE_NEXT_FRAGMENT;
Ole Troan282093f2018-09-19 12:38:51 +02001573 *error = IP6_ERROR_MTU_EXCEEDED;
Ole Troan313f7e22018-04-10 16:02:51 +02001574 }
1575 else
1576 {
1577 *error = IP6_ERROR_MTU_EXCEEDED;
1578 icmp6_error_set_vnet_buffer (b, ICMP6_packet_too_big, 0,
1579 adj_packet_bytes);
1580 *next = IP6_REWRITE_NEXT_ICMP_ERROR;
1581 }
Ole Troanda6e11b2018-05-23 11:21:42 +02001582 }
1583}
1584
Ed Warnickecb9cada2015-12-08 15:45:58 -07001585always_inline uword
1586ip6_rewrite_inline (vlib_main_t * vm,
1587 vlib_node_runtime_t * node,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001588 vlib_frame_t * frame,
1589 int do_counters, int is_midchain, int is_mcast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001590{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001591 ip_lookup_main_t *lm = &ip6_main.lookup_main;
1592 u32 *from = vlib_frame_vector_args (frame);
1593 u32 n_left_from, n_left_to_next, *to_next, next_index;
1594 vlib_node_runtime_t *error_node =
1595 vlib_node_get_runtime (vm, ip6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596
1597 n_left_from = frame->n_vectors;
1598 next_index = node->cached_next_index;
Damjan Marion067cd622018-07-11 12:47:43 +02001599 u32 thread_index = vm->thread_index;
Dave Barach75fc8542016-10-11 16:16:02 -04001600
Ed Warnickecb9cada2015-12-08 15:45:58 -07001601 while (n_left_from > 0)
1602 {
1603 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1604
1605 while (n_left_from >= 4 && n_left_to_next >= 2)
1606 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001607 ip_adjacency_t *adj0, *adj1;
1608 vlib_buffer_t *p0, *p1;
1609 ip6_header_t *ip0, *ip1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610 u32 pi0, rw_len0, next0, error0, adj_index0;
1611 u32 pi1, rw_len1, next1, error1, adj_index1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001612 u32 tx_sw_if_index0, tx_sw_if_index1;
Ole Troan313f7e22018-04-10 16:02:51 +02001613 bool is_locally_originated0, is_locally_originated1;
Dave Barach75fc8542016-10-11 16:16:02 -04001614
Ed Warnickecb9cada2015-12-08 15:45:58 -07001615 /* Prefetch next iteration. */
1616 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001617 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618
1619 p2 = vlib_get_buffer (vm, from[2]);
1620 p3 = vlib_get_buffer (vm, from[3]);
1621
1622 vlib_prefetch_buffer_header (p2, LOAD);
1623 vlib_prefetch_buffer_header (p3, LOAD);
1624
1625 CLIB_PREFETCH (p2->pre_data, 32, STORE);
1626 CLIB_PREFETCH (p3->pre_data, 32, STORE);
1627
1628 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
1629 CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
1630 }
1631
1632 pi0 = to_next[0] = from[0];
1633 pi1 = to_next[1] = from[1];
1634
1635 from += 2;
1636 n_left_from -= 2;
1637 to_next += 2;
1638 n_left_to_next -= 2;
Dave Barach75fc8542016-10-11 16:16:02 -04001639
Ed Warnickecb9cada2015-12-08 15:45:58 -07001640 p0 = vlib_get_buffer (vm, pi0);
1641 p1 = vlib_get_buffer (vm, pi1);
1642
Neale Rannsf06aea52016-11-29 06:51:37 -08001643 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1644 adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001645
Ed Warnickecb9cada2015-12-08 15:45:58 -07001646 ip0 = vlib_buffer_get_current (p0);
1647 ip1 = vlib_buffer_get_current (p1);
1648
1649 error0 = error1 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001650 next0 = next1 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
Ole Troan313f7e22018-04-10 16:02:51 +02001652 is_locally_originated0 =
1653 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1654 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001655 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001656 i32 hop_limit0 = ip0->hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001657
1658 /* Input node should have reject packets with hop limit 0. */
1659 ASSERT (ip0->hop_limit > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001660
1661 hop_limit0 -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662
1663 ip0->hop_limit = hop_limit0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001664
Dave Barachd7cb1b52016-12-09 09:52:16 -05001665 /*
1666 * If the hop count drops below 1 when forwarding, generate
1667 * an ICMP response.
1668 */
1669 if (PREDICT_FALSE (hop_limit0 <= 0))
1670 {
1671 error0 = IP6_ERROR_TIME_EXPIRED;
1672 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1673 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1674 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1675 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1676 0);
1677 }
Neale Rannsf06aea52016-11-29 06:51:37 -08001678 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001679 else
1680 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001681 p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001682 }
Ole Troan313f7e22018-04-10 16:02:51 +02001683 is_locally_originated1 =
1684 p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1685 if (PREDICT_TRUE (!is_locally_originated1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001686 {
Neale Rannsf06aea52016-11-29 06:51:37 -08001687 i32 hop_limit1 = ip1->hop_limit;
1688
1689 /* Input node should have reject packets with hop limit 0. */
1690 ASSERT (ip1->hop_limit > 0);
1691
1692 hop_limit1 -= 1;
1693
1694 ip1->hop_limit = hop_limit1;
1695
Dave Barachd7cb1b52016-12-09 09:52:16 -05001696 /*
1697 * If the hop count drops below 1 when forwarding, generate
1698 * an ICMP response.
1699 */
1700 if (PREDICT_FALSE (hop_limit1 <= 0))
1701 {
1702 error1 = IP6_ERROR_TIME_EXPIRED;
1703 next1 = IP6_REWRITE_NEXT_ICMP_ERROR;
1704 vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1705 icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
1706 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1707 0);
1708 }
1709 }
1710 else
1711 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001712 p1->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001713 }
Neale Ranns107e7d42017-04-11 09:55:19 -07001714 adj0 = adj_get (adj_index0);
1715 adj1 = adj_get (adj_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001716
Ed Warnickecb9cada2015-12-08 15:45:58 -07001717 rw_len0 = adj0[0].rewrite_header.data_bytes;
1718 rw_len1 = adj1[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001719 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
1720 vnet_buffer (p1)->ip.save_rewrite_length = rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001721
Neale Ranns9c6a6132017-02-21 05:33:14 -08001722 if (do_counters)
1723 {
1724 vlib_increment_combined_counter
1725 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001726 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001727 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1728 vlib_increment_combined_counter
1729 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001730 thread_index, adj_index1, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001731 vlib_buffer_length_in_chain (vm, p1) + rw_len1);
1732 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001733
1734 /* Check MTU of outgoing interface. */
Ole Troanda6e11b2018-05-23 11:21:42 +02001735 ip6_mtu_check (p0, clib_net_to_host_u16 (ip0->payload_length) +
1736 sizeof (ip6_header_t),
1737 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001738 is_locally_originated0, &next0, &error0);
Ole Troanda6e11b2018-05-23 11:21:42 +02001739 ip6_mtu_check (p1, clib_net_to_host_u16 (ip1->payload_length) +
1740 sizeof (ip6_header_t),
1741 adj1[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001742 is_locally_originated1, &next1, &error1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001743
Dave Barachd7cb1b52016-12-09 09:52:16 -05001744 /* Don't adjust the buffer for hop count issue; icmp-error node
1745 * wants to see the IP headerr */
1746 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1747 {
1748 p0->current_data -= rw_len0;
1749 p0->current_length += rw_len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001750
Dave Barachd7cb1b52016-12-09 09:52:16 -05001751 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
1752 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1753 next0 = adj0[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001754
Neale Rannsb069a692017-03-15 12:34:25 -04001755 if (PREDICT_FALSE
1756 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1757 vnet_feature_arc_start (lm->output_feature_arc_index,
1758 tx_sw_if_index0, &next0, p0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001759 }
1760 if (PREDICT_TRUE (error1 == IP6_ERROR_NONE))
1761 {
1762 p1->current_data -= rw_len1;
1763 p1->current_length += rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001764
Dave Barachd7cb1b52016-12-09 09:52:16 -05001765 tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
1766 vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1;
1767 next1 = adj1[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001768
Neale Rannsb069a692017-03-15 12:34:25 -04001769 if (PREDICT_FALSE
1770 (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1771 vnet_feature_arc_start (lm->output_feature_arc_index,
1772 tx_sw_if_index1, &next1, p1);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001773 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001774
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001775 /* Guess we are only writing on simple Ethernet header. */
1776 vnet_rewrite_two_headers (adj0[0], adj1[0],
1777 ip0, ip1, sizeof (ethernet_header_t));
1778
1779 if (is_midchain)
1780 {
1781 adj0->sub_type.midchain.fixup_func
1782 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1783 adj1->sub_type.midchain.fixup_func
1784 (vm, adj1, p1, adj1->sub_type.midchain.fixup_data);
1785 }
1786 if (is_mcast)
1787 {
1788 /*
1789 * copy bytes from the IP address into the MAC rewrite
1790 */
Neale Ranns889fe942017-06-01 05:43:19 -04001791 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1792 adj0->
1793 rewrite_header.dst_mcast_offset,
1794 &ip0->dst_address.as_u32[3],
1795 (u8 *) ip0);
1796 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1797 adj1->
1798 rewrite_header.dst_mcast_offset,
1799 &ip1->dst_address.as_u32[3],
1800 (u8 *) ip1);
Neale Ranns32e1c012016-11-22 17:07:28 +00001801 }
Neale Ranns5e575b12016-10-03 09:40:25 +01001802
Ed Warnickecb9cada2015-12-08 15:45:58 -07001803 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1804 to_next, n_left_to_next,
1805 pi0, pi1, next0, next1);
1806 }
1807
1808 while (n_left_from > 0 && n_left_to_next > 0)
1809 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001810 ip_adjacency_t *adj0;
1811 vlib_buffer_t *p0;
1812 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001813 u32 pi0, rw_len0;
1814 u32 adj_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001815 u32 tx_sw_if_index0;
Ole Troan313f7e22018-04-10 16:02:51 +02001816 bool is_locally_originated0;
Dave Barach75fc8542016-10-11 16:16:02 -04001817
Ed Warnickecb9cada2015-12-08 15:45:58 -07001818 pi0 = to_next[0] = from[0];
1819
1820 p0 = vlib_get_buffer (vm, pi0);
1821
Neale Rannsf06aea52016-11-29 06:51:37 -08001822 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001823
Neale Ranns107e7d42017-04-11 09:55:19 -07001824 adj0 = adj_get (adj_index0);
Dave Barach75fc8542016-10-11 16:16:02 -04001825
Ed Warnickecb9cada2015-12-08 15:45:58 -07001826 ip0 = vlib_buffer_get_current (p0);
1827
1828 error0 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001829 next0 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001830
1831 /* Check hop limit */
Ole Troan313f7e22018-04-10 16:02:51 +02001832 is_locally_originated0 =
1833 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1834 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001835 {
1836 i32 hop_limit0 = ip0->hop_limit;
1837
1838 ASSERT (ip0->hop_limit > 0);
1839
1840 hop_limit0 -= 1;
1841
1842 ip0->hop_limit = hop_limit0;
1843
Dave Barachd7cb1b52016-12-09 09:52:16 -05001844 if (PREDICT_FALSE (hop_limit0 <= 0))
1845 {
1846 /*
1847 * If the hop count drops below 1 when forwarding, generate
1848 * an ICMP response.
1849 */
1850 error0 = IP6_ERROR_TIME_EXPIRED;
1851 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1852 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1853 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1854 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1855 0);
1856 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001857 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001858 else
1859 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001860 p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001861 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001862
Ed Warnickecb9cada2015-12-08 15:45:58 -07001863 /* Guess we are only writing on simple Ethernet header. */
1864 vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t));
Dave Barach75fc8542016-10-11 16:16:02 -04001865
Ed Warnickecb9cada2015-12-08 15:45:58 -07001866 /* Update packet buffer attributes/set output interface. */
1867 rw_len0 = adj0[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001868 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001869
Neale Ranns9c6a6132017-02-21 05:33:14 -08001870 if (do_counters)
1871 {
1872 vlib_increment_combined_counter
1873 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001874 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001875 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1876 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001877
1878 /* Check MTU of outgoing interface. */
Ole Troanda6e11b2018-05-23 11:21:42 +02001879 ip6_mtu_check (p0, clib_net_to_host_u16 (ip0->payload_length) +
1880 sizeof (ip6_header_t),
1881 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001882 is_locally_originated0, &next0, &error0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001883
Dave Barachd7cb1b52016-12-09 09:52:16 -05001884 /* Don't adjust the buffer for hop count issue; icmp-error node
Ole Troanda6e11b2018-05-23 11:21:42 +02001885 * wants to see the IP header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001886 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1887 {
Chris Luke816f3e12016-06-14 16:24:47 -04001888 p0->current_data -= rw_len0;
1889 p0->current_length += rw_len0;
1890
Dave Barachd7cb1b52016-12-09 09:52:16 -05001891 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
Dave Barach5331c722016-08-17 11:54:30 -04001892
Dave Barachd7cb1b52016-12-09 09:52:16 -05001893 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1894 next0 = adj0[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001895
Neale Rannsb069a692017-03-15 12:34:25 -04001896 if (PREDICT_FALSE
1897 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1898 vnet_feature_arc_start (lm->output_feature_arc_index,
1899 tx_sw_if_index0, &next0, p0);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001900 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001901
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001902 if (is_midchain)
1903 {
1904 adj0->sub_type.midchain.fixup_func
1905 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1906 }
1907 if (is_mcast)
1908 {
Neale Ranns889fe942017-06-01 05:43:19 -04001909 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1910 adj0->
1911 rewrite_header.dst_mcast_offset,
1912 &ip0->dst_address.as_u32[3],
1913 (u8 *) ip0);
Neale Ranns32e1c012016-11-22 17:07:28 +00001914 }
Neale Ranns5e575b12016-10-03 09:40:25 +01001915
Ed Warnickecb9cada2015-12-08 15:45:58 -07001916 p0->error = error_node->errors[error0];
1917
1918 from += 1;
1919 n_left_from -= 1;
1920 to_next += 1;
1921 n_left_to_next -= 1;
Dave Barach75fc8542016-10-11 16:16:02 -04001922
Ed Warnickecb9cada2015-12-08 15:45:58 -07001923 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1924 to_next, n_left_to_next,
1925 pi0, next0);
1926 }
1927
1928 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1929 }
1930
1931 /* Need to do trace after rewrites to pick up new packet data. */
1932 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Rannsf06aea52016-11-29 06:51:37 -08001933 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934
1935 return frame->n_vectors;
1936}
1937
1938static uword
Neale Rannsf06aea52016-11-29 06:51:37 -08001939ip6_rewrite (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001940 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001941{
Neale Ranns9c6a6132017-02-21 05:33:14 -08001942 if (adj_are_counters_enabled ())
1943 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
1944 else
1945 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
Neale Ranns32e1c012016-11-22 17:07:28 +00001946}
1947
1948static uword
Neale Ranns1855b8e2018-07-11 10:31:26 -07001949ip6_rewrite_bcast (vlib_main_t * vm,
1950 vlib_node_runtime_t * node, vlib_frame_t * frame)
1951{
1952 if (adj_are_counters_enabled ())
1953 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
1954 else
1955 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
1956}
1957
1958static uword
Neale Ranns32e1c012016-11-22 17:07:28 +00001959ip6_rewrite_mcast (vlib_main_t * vm,
1960 vlib_node_runtime_t * node, vlib_frame_t * frame)
1961{
Neale Ranns9c6a6132017-02-21 05:33:14 -08001962 if (adj_are_counters_enabled ())
1963 return ip6_rewrite_inline (vm, node, frame, 1, 0, 1);
1964 else
1965 return ip6_rewrite_inline (vm, node, frame, 0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001966}
1967
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001968static uword
1969ip6_midchain (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001970 vlib_node_runtime_t * node, vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001971{
Neale Ranns9c6a6132017-02-21 05:33:14 -08001972 if (adj_are_counters_enabled ())
1973 return ip6_rewrite_inline (vm, node, frame, 1, 1, 0);
1974 else
1975 return ip6_rewrite_inline (vm, node, frame, 0, 1, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001976}
1977
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001978static uword
1979ip6_mcast_midchain (vlib_main_t * vm,
1980 vlib_node_runtime_t * node, vlib_frame_t * frame)
1981{
1982 if (adj_are_counters_enabled ())
1983 return ip6_rewrite_inline (vm, node, frame, 1, 1, 1);
1984 else
Neale Ranns9f171f52017-04-11 08:56:53 -07001985 return ip6_rewrite_inline (vm, node, frame, 0, 1, 1);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001986}
1987
Dave Barachd7cb1b52016-12-09 09:52:16 -05001988/* *INDENT-OFF* */
1989VLIB_REGISTER_NODE (ip6_midchain_node) =
1990{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001991 .function = ip6_midchain,
1992 .name = "ip6-midchain",
1993 .vector_size = sizeof (u32),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001994 .format_trace = format_ip6_forward_next_trace,
Neale Ranns5e575b12016-10-03 09:40:25 +01001995 .sibling_of = "ip6-rewrite",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001996 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001997
Dave Barachd7cb1b52016-12-09 09:52:16 -05001998VLIB_NODE_FUNCTION_MULTIARCH (ip6_midchain_node, ip6_midchain);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001999
Dave Barachd7cb1b52016-12-09 09:52:16 -05002000VLIB_REGISTER_NODE (ip6_rewrite_node) =
2001{
Neale Rannsf06aea52016-11-29 06:51:37 -08002002 .function = ip6_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003 .name = "ip6-rewrite",
2004 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +01002005 .format_trace = format_ip6_rewrite_trace,
Ole Troan313f7e22018-04-10 16:02:51 +02002006 .n_next_nodes = IP6_REWRITE_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002007 .next_nodes =
2008 {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002009 [IP6_REWRITE_NEXT_DROP] = "ip6-drop",
Chris Luke816f3e12016-06-14 16:24:47 -04002010 [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error",
Ole Troan313f7e22018-04-10 16:02:51 +02002011 [IP6_REWRITE_NEXT_FRAGMENT] = "ip6-frag",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002012 },
2013};
2014
Neale Rannsf06aea52016-11-29 06:51:37 -08002015VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_node, ip6_rewrite);
Damjan Marion1c80e832016-05-11 23:07:18 +02002016
Neale Ranns1855b8e2018-07-11 10:31:26 -07002017VLIB_REGISTER_NODE (ip6_rewrite_bcast_node) = {
Matthew Smithe3750672018-07-20 11:52:05 -05002018 .function = ip6_rewrite_bcast,
Neale Ranns1855b8e2018-07-11 10:31:26 -07002019 .name = "ip6-rewrite-bcast",
2020 .vector_size = sizeof (u32),
2021
2022 .format_trace = format_ip6_rewrite_trace,
2023 .sibling_of = "ip6-rewrite",
2024};
2025VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_bcast_node, ip6_rewrite_bcast)
2026
Neale Ranns32e1c012016-11-22 17:07:28 +00002027VLIB_REGISTER_NODE (ip6_rewrite_mcast_node) =
2028{
2029 .function = ip6_rewrite_mcast,
2030 .name = "ip6-rewrite-mcast",
2031 .vector_size = sizeof (u32),
2032 .format_trace = format_ip6_rewrite_trace,
2033 .sibling_of = "ip6-rewrite",
2034};
Neale Ranns32e1c012016-11-22 17:07:28 +00002035
2036VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_mcast_node, ip6_rewrite_mcast);
2037
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002038VLIB_REGISTER_NODE (ip6_mcast_midchain_node, static) =
2039{
2040 .function = ip6_mcast_midchain,
2041 .name = "ip6-mcast-midchain",
2042 .vector_size = sizeof (u32),
2043 .format_trace = format_ip6_rewrite_trace,
2044 .sibling_of = "ip6-rewrite",
2045};
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002046
2047VLIB_NODE_FUNCTION_MULTIARCH (ip6_mcast_midchain_node, ip6_mcast_midchain);
Neale Ranns1855b8e2018-07-11 10:31:26 -07002048/* *INDENT-ON* */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002049
Ole Troan944f5482016-05-24 11:56:58 +02002050/*
2051 * Hop-by-Hop handling
2052 */
Ole Troan944f5482016-05-24 11:56:58 +02002053ip6_hop_by_hop_main_t ip6_hop_by_hop_main;
2054
2055#define foreach_ip6_hop_by_hop_error \
2056_(PROCESSED, "pkts with ip6 hop-by-hop options") \
2057_(FORMAT, "incorrectly formatted hop-by-hop options") \
2058_(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options")
2059
Neale Ranns32e1c012016-11-22 17:07:28 +00002060/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002061typedef enum
2062{
Ole Troan944f5482016-05-24 11:56:58 +02002063#define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym,
2064 foreach_ip6_hop_by_hop_error
2065#undef _
Neale Ranns32e1c012016-11-22 17:07:28 +00002066 IP6_HOP_BY_HOP_N_ERROR,
Ole Troan944f5482016-05-24 11:56:58 +02002067} ip6_hop_by_hop_error_t;
Neale Ranns32e1c012016-11-22 17:07:28 +00002068/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002069
2070/*
2071 * Primary h-b-h handler trace support
2072 * We work pretty hard on the problem for obvious reasons
2073 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002074typedef struct
2075{
Ole Troan944f5482016-05-24 11:56:58 +02002076 u32 next_index;
2077 u32 trace_len;
2078 u8 option_data[256];
2079} ip6_hop_by_hop_trace_t;
2080
2081vlib_node_registration_t ip6_hop_by_hop_node;
2082
Dave Barachd7cb1b52016-12-09 09:52:16 -05002083static char *ip6_hop_by_hop_error_strings[] = {
Ole Troan944f5482016-05-24 11:56:58 +02002084#define _(sym,string) string,
2085 foreach_ip6_hop_by_hop_error
2086#undef _
2087};
2088
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302089u8 *
2090format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args)
2091{
2092 ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *);
2093 int total_len = va_arg (*args, int);
2094 ip6_hop_by_hop_option_t *opt0, *limit0;
2095 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2096 u8 type0;
2097
2098 s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d",
2099 hbh0->protocol, (hbh0->length + 1) << 3, total_len);
2100
2101 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2102 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len);
2103
2104 while (opt0 < limit0)
2105 {
2106 type0 = opt0->type;
2107 switch (type0)
2108 {
2109 case 0: /* Pad, just stop */
2110 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1);
2111 break;
2112
2113 default:
2114 if (hm->trace[type0])
2115 {
2116 s = (*hm->trace[type0]) (s, opt0);
2117 }
2118 else
2119 {
2120 s =
2121 format (s, "\n unrecognized option %d length %d", type0,
2122 opt0->length);
2123 }
2124 opt0 =
2125 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2126 sizeof (ip6_hop_by_hop_option_t));
2127 break;
2128 }
2129 }
2130 return s;
2131}
2132
Ole Troan944f5482016-05-24 11:56:58 +02002133static u8 *
2134format_ip6_hop_by_hop_trace (u8 * s, va_list * args)
2135{
2136 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2137 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002138 ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *);
Ole Troan944f5482016-05-24 11:56:58 +02002139 ip6_hop_by_hop_header_t *hbh0;
2140 ip6_hop_by_hop_option_t *opt0, *limit0;
2141 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2142
2143 u8 type0;
2144
Dave Barachd7cb1b52016-12-09 09:52:16 -05002145 hbh0 = (ip6_hop_by_hop_header_t *) t->option_data;
Ole Troan944f5482016-05-24 11:56:58 +02002146
2147 s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002148 t->next_index, (hbh0->length + 1) << 3, t->trace_len);
Ole Troan944f5482016-05-24 11:56:58 +02002149
Dave Barachd7cb1b52016-12-09 09:52:16 -05002150 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2151 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len;
Ole Troan944f5482016-05-24 11:56:58 +02002152
Dave Barachd7cb1b52016-12-09 09:52:16 -05002153 while (opt0 < limit0)
2154 {
2155 type0 = opt0->type;
2156 switch (type0)
2157 {
2158 case 0: /* Pad, just stop */
2159 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2160 break;
Ole Troan944f5482016-05-24 11:56:58 +02002161
Dave Barachd7cb1b52016-12-09 09:52:16 -05002162 default:
2163 if (hm->trace[type0])
2164 {
2165 s = (*hm->trace[type0]) (s, opt0);
2166 }
2167 else
2168 {
2169 s =
2170 format (s, "\n unrecognized option %d length %d", type0,
2171 opt0->length);
2172 }
2173 opt0 =
2174 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2175 sizeof (ip6_hop_by_hop_option_t));
2176 break;
2177 }
Ole Troan944f5482016-05-24 11:56:58 +02002178 }
Ole Troan944f5482016-05-24 11:56:58 +02002179 return s;
2180}
2181
Dave Barachd7cb1b52016-12-09 09:52:16 -05002182always_inline u8
2183ip6_scan_hbh_options (vlib_buffer_t * b0,
2184 ip6_header_t * ip0,
2185 ip6_hop_by_hop_header_t * hbh0,
2186 ip6_hop_by_hop_option_t * opt0,
2187 ip6_hop_by_hop_option_t * limit0, u32 * next0)
Shwethaa91cbe62016-08-08 15:51:04 +01002188{
2189 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2190 u8 type0;
2191 u8 error0 = 0;
2192
2193 while (opt0 < limit0)
2194 {
2195 type0 = opt0->type;
2196 switch (type0)
2197 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002198 case 0: /* Pad1 */
2199 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
Shwethaa91cbe62016-08-08 15:51:04 +01002200 continue;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002201 case 1: /* PadN */
Shwethaa91cbe62016-08-08 15:51:04 +01002202 break;
2203 default:
2204 if (hm->options[type0])
2205 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002206 if ((*hm->options[type0]) (b0, ip0, opt0) < 0)
2207 {
Shwethaa91cbe62016-08-08 15:51:04 +01002208 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002209 return (error0);
2210 }
Shwethaa91cbe62016-08-08 15:51:04 +01002211 }
2212 else
2213 {
2214 /* Unrecognized mandatory option, check the two high order bits */
2215 switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS)
2216 {
2217 case HBH_OPTION_TYPE_SKIP_UNKNOWN:
2218 break;
2219 case HBH_OPTION_TYPE_DISCARD_UNKNOWN:
2220 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2221 *next0 = IP_LOOKUP_NEXT_DROP;
2222 break;
2223 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP:
2224 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2225 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002226 icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem,
2227 ICMP6_parameter_problem_unrecognized_option,
2228 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002229 break;
2230 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST:
2231 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002232 if (!ip6_address_is_multicast (&ip0->dst_address))
Shwethaa91cbe62016-08-08 15:51:04 +01002233 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002234 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2235 icmp6_error_set_vnet_buffer (b0,
2236 ICMP6_parameter_problem,
2237 ICMP6_parameter_problem_unrecognized_option,
2238 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002239 }
2240 else
2241 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002242 *next0 = IP_LOOKUP_NEXT_DROP;
Shwethaa91cbe62016-08-08 15:51:04 +01002243 }
2244 break;
2245 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002246 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002247 }
2248 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002249 opt0 =
2250 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2251 sizeof (ip6_hop_by_hop_option_t));
Shwethaa91cbe62016-08-08 15:51:04 +01002252 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002253 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002254}
2255
Ole Troan944f5482016-05-24 11:56:58 +02002256/*
2257 * Process the Hop-by-Hop Options header
2258 */
2259static uword
2260ip6_hop_by_hop (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002261 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ole Troan944f5482016-05-24 11:56:58 +02002262{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002263 vlib_node_runtime_t *error_node =
2264 vlib_node_get_runtime (vm, ip6_hop_by_hop_node.index);
Ole Troan944f5482016-05-24 11:56:58 +02002265 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2266 u32 n_left_from, *from, *to_next;
2267 ip_lookup_next_t next_index;
Ole Troan944f5482016-05-24 11:56:58 +02002268
2269 from = vlib_frame_vector_args (frame);
2270 n_left_from = frame->n_vectors;
2271 next_index = node->cached_next_index;
2272
Dave Barachd7cb1b52016-12-09 09:52:16 -05002273 while (n_left_from > 0)
2274 {
2275 u32 n_left_to_next;
Ole Troan944f5482016-05-24 11:56:58 +02002276
Dave Barachd7cb1b52016-12-09 09:52:16 -05002277 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ole Troan944f5482016-05-24 11:56:58 +02002278
Dave Barachd7cb1b52016-12-09 09:52:16 -05002279 while (n_left_from >= 4 && n_left_to_next >= 2)
Shwethaa91cbe62016-08-08 15:51:04 +01002280 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002281 u32 bi0, bi1;
2282 vlib_buffer_t *b0, *b1;
2283 u32 next0, next1;
2284 ip6_header_t *ip0, *ip1;
2285 ip6_hop_by_hop_header_t *hbh0, *hbh1;
2286 ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1;
2287 u8 error0 = 0, error1 = 0;
2288
2289 /* Prefetch next iteration. */
2290 {
2291 vlib_buffer_t *p2, *p3;
2292
2293 p2 = vlib_get_buffer (vm, from[2]);
2294 p3 = vlib_get_buffer (vm, from[3]);
2295
2296 vlib_prefetch_buffer_header (p2, LOAD);
2297 vlib_prefetch_buffer_header (p3, LOAD);
2298
2299 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2300 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Shwethaa91cbe62016-08-08 15:51:04 +01002301 }
2302
Dave Barachd7cb1b52016-12-09 09:52:16 -05002303 /* Speculatively enqueue b0, b1 to the current next frame */
2304 to_next[0] = bi0 = from[0];
2305 to_next[1] = bi1 = from[1];
2306 from += 2;
2307 to_next += 2;
2308 n_left_from -= 2;
2309 n_left_to_next -= 2;
2310
2311 b0 = vlib_get_buffer (vm, bi0);
2312 b1 = vlib_get_buffer (vm, bi1);
2313
2314 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2315 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002316 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002317 u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002318 ip_adjacency_t *adj1 = adj_get (adj_index1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002319
2320 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2321 next0 = adj0->lookup_next_index;
2322 next1 = adj1->lookup_next_index;
2323
2324 ip0 = vlib_buffer_get_current (b0);
2325 ip1 = vlib_buffer_get_current (b1);
2326 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2327 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
2328 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2329 opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1);
2330 limit0 =
2331 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2332 ((hbh0->length + 1) << 3));
2333 limit1 =
2334 (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 +
2335 ((hbh1->length + 1) << 3));
2336
2337 /*
2338 * Basic validity checks
2339 */
2340 if ((hbh0->length + 1) << 3 >
2341 clib_net_to_host_u16 (ip0->payload_length))
2342 {
2343 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2344 next0 = IP_LOOKUP_NEXT_DROP;
2345 goto outdual;
2346 }
2347 /* Scan the set of h-b-h options, process ones that we understand */
2348 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2349
2350 if ((hbh1->length + 1) << 3 >
2351 clib_net_to_host_u16 (ip1->payload_length))
2352 {
2353 error1 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2354 next1 = IP_LOOKUP_NEXT_DROP;
2355 goto outdual;
2356 }
2357 /* Scan the set of h-b-h options, process ones that we understand */
2358 error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1);
2359
2360 outdual:
2361 /* Has the classifier flagged this buffer for special treatment? */
2362 if (PREDICT_FALSE
2363 ((error0 == 0)
2364 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2365 next0 = hm->next_override;
2366
2367 /* Has the classifier flagged this buffer for special treatment? */
2368 if (PREDICT_FALSE
2369 ((error1 == 0)
2370 && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP)))
2371 next1 = hm->next_override;
2372
2373 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
2374 {
2375 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2376 {
2377 ip6_hop_by_hop_trace_t *t =
2378 vlib_add_trace (vm, node, b0, sizeof (*t));
2379 u32 trace_len = (hbh0->length + 1) << 3;
2380 t->next_index = next0;
2381 /* Capture the h-b-h option verbatim */
2382 trace_len =
2383 trace_len <
2384 ARRAY_LEN (t->option_data) ? trace_len :
2385 ARRAY_LEN (t->option_data);
2386 t->trace_len = trace_len;
2387 clib_memcpy (t->option_data, hbh0, trace_len);
2388 }
2389 if (b1->flags & VLIB_BUFFER_IS_TRACED)
2390 {
2391 ip6_hop_by_hop_trace_t *t =
2392 vlib_add_trace (vm, node, b1, sizeof (*t));
2393 u32 trace_len = (hbh1->length + 1) << 3;
2394 t->next_index = next1;
2395 /* Capture the h-b-h option verbatim */
2396 trace_len =
2397 trace_len <
2398 ARRAY_LEN (t->option_data) ? trace_len :
2399 ARRAY_LEN (t->option_data);
2400 t->trace_len = trace_len;
2401 clib_memcpy (t->option_data, hbh1, trace_len);
2402 }
2403
2404 }
2405
2406 b0->error = error_node->errors[error0];
2407 b1->error = error_node->errors[error1];
2408
2409 /* verify speculative enqueue, maybe switch current next frame */
2410 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
2411 n_left_to_next, bi0, bi1, next0,
2412 next1);
Shwethaa91cbe62016-08-08 15:51:04 +01002413 }
2414
Dave Barachd7cb1b52016-12-09 09:52:16 -05002415 while (n_left_from > 0 && n_left_to_next > 0)
2416 {
2417 u32 bi0;
2418 vlib_buffer_t *b0;
2419 u32 next0;
2420 ip6_header_t *ip0;
2421 ip6_hop_by_hop_header_t *hbh0;
2422 ip6_hop_by_hop_option_t *opt0, *limit0;
2423 u8 error0 = 0;
Shwethaa91cbe62016-08-08 15:51:04 +01002424
Dave Barachd7cb1b52016-12-09 09:52:16 -05002425 /* Speculatively enqueue b0 to the current next frame */
2426 bi0 = from[0];
2427 to_next[0] = bi0;
2428 from += 1;
2429 to_next += 1;
2430 n_left_from -= 1;
2431 n_left_to_next -= 1;
2432
2433 b0 = vlib_get_buffer (vm, bi0);
2434 /*
2435 * Default use the next_index from the adjacency.
2436 * A HBH option rarely redirects to a different node
2437 */
2438 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002439 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002440 next0 = adj0->lookup_next_index;
2441
2442 ip0 = vlib_buffer_get_current (b0);
2443 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2444 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2445 limit0 =
2446 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2447 ((hbh0->length + 1) << 3));
2448
2449 /*
2450 * Basic validity checks
2451 */
2452 if ((hbh0->length + 1) << 3 >
2453 clib_net_to_host_u16 (ip0->payload_length))
2454 {
2455 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2456 next0 = IP_LOOKUP_NEXT_DROP;
2457 goto out0;
2458 }
2459
2460 /* Scan the set of h-b-h options, process ones that we understand */
2461 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2462
2463 out0:
2464 /* Has the classifier flagged this buffer for special treatment? */
2465 if (PREDICT_FALSE
2466 ((error0 == 0)
2467 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2468 next0 = hm->next_override;
2469
2470 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2471 {
2472 ip6_hop_by_hop_trace_t *t =
2473 vlib_add_trace (vm, node, b0, sizeof (*t));
2474 u32 trace_len = (hbh0->length + 1) << 3;
2475 t->next_index = next0;
2476 /* Capture the h-b-h option verbatim */
2477 trace_len =
2478 trace_len <
2479 ARRAY_LEN (t->option_data) ? trace_len :
2480 ARRAY_LEN (t->option_data);
2481 t->trace_len = trace_len;
2482 clib_memcpy (t->option_data, hbh0, trace_len);
2483 }
2484
2485 b0->error = error_node->errors[error0];
2486
2487 /* verify speculative enqueue, maybe switch current next frame */
2488 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2489 n_left_to_next, bi0, next0);
2490 }
2491 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Shwethaa91cbe62016-08-08 15:51:04 +01002492 }
Ole Troan944f5482016-05-24 11:56:58 +02002493 return frame->n_vectors;
2494}
2495
Dave Barachd7cb1b52016-12-09 09:52:16 -05002496/* *INDENT-OFF* */
2497VLIB_REGISTER_NODE (ip6_hop_by_hop_node) =
2498{
Ole Troan944f5482016-05-24 11:56:58 +02002499 .function = ip6_hop_by_hop,
2500 .name = "ip6-hop-by-hop",
Ole Troan964f93e2016-06-10 13:22:36 +02002501 .sibling_of = "ip6-lookup",
Ole Troan944f5482016-05-24 11:56:58 +02002502 .vector_size = sizeof (u32),
2503 .format_trace = format_ip6_hop_by_hop_trace,
2504 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002505 .n_errors = ARRAY_LEN (ip6_hop_by_hop_error_strings),
Ole Troan944f5482016-05-24 11:56:58 +02002506 .error_strings = ip6_hop_by_hop_error_strings,
Ole Troan964f93e2016-06-10 13:22:36 +02002507 .n_next_nodes = 0,
Ole Troan944f5482016-05-24 11:56:58 +02002508};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002509/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002510
Dave Barach5331c722016-08-17 11:54:30 -04002511VLIB_NODE_FUNCTION_MULTIARCH (ip6_hop_by_hop_node, ip6_hop_by_hop);
Ole Troan944f5482016-05-24 11:56:58 +02002512
2513static clib_error_t *
2514ip6_hop_by_hop_init (vlib_main_t * vm)
2515{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002516 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2517 memset (hm->options, 0, sizeof (hm->options));
2518 memset (hm->trace, 0, sizeof (hm->trace));
Shwethaa91cbe62016-08-08 15:51:04 +01002519 hm->next_override = IP6_LOOKUP_NEXT_POP_HOP_BY_HOP;
Ole Troan944f5482016-05-24 11:56:58 +02002520 return (0);
2521}
2522
2523VLIB_INIT_FUNCTION (ip6_hop_by_hop_init);
2524
Dave Barachd7cb1b52016-12-09 09:52:16 -05002525void
2526ip6_hbh_set_next_override (uword next)
Shwethaa91cbe62016-08-08 15:51:04 +01002527{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002528 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Shwethaa91cbe62016-08-08 15:51:04 +01002529
2530 hm->next_override = next;
2531}
2532
Ole Troan944f5482016-05-24 11:56:58 +02002533int
2534ip6_hbh_register_option (u8 option,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002535 int options (vlib_buffer_t * b, ip6_header_t * ip,
2536 ip6_hop_by_hop_option_t * opt),
2537 u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt))
Ole Troan944f5482016-05-24 11:56:58 +02002538{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002539 ip6_main_t *im = &ip6_main;
2540 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002541
Neale Ranns756cd942018-04-06 09:18:11 -07002542 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002543
2544 /* Already registered */
2545 if (hm->options[option])
2546 return (-1);
2547
2548 hm->options[option] = options;
2549 hm->trace[option] = trace;
2550
2551 /* Set global variable */
2552 im->hbh_enabled = 1;
2553
2554 return (0);
2555}
2556
2557int
2558ip6_hbh_unregister_option (u8 option)
2559{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002560 ip6_main_t *im = &ip6_main;
2561 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002562
Neale Ranns756cd942018-04-06 09:18:11 -07002563 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002564
2565 /* Not registered */
2566 if (!hm->options[option])
2567 return (-1);
2568
2569 hm->options[option] = NULL;
2570 hm->trace[option] = NULL;
2571
2572 /* Disable global knob if this was the last option configured */
2573 int i;
2574 bool found = false;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002575 for (i = 0; i < 256; i++)
2576 {
2577 if (hm->options[option])
2578 {
2579 found = true;
2580 break;
2581 }
Ole Troan944f5482016-05-24 11:56:58 +02002582 }
Ole Troan944f5482016-05-24 11:56:58 +02002583 if (!found)
2584 im->hbh_enabled = 0;
2585
2586 return (0);
2587}
2588
Ed Warnickecb9cada2015-12-08 15:45:58 -07002589/* Global IP6 main. */
2590ip6_main_t ip6_main;
2591
2592static clib_error_t *
2593ip6_lookup_init (vlib_main_t * vm)
2594{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002595 ip6_main_t *im = &ip6_main;
2596 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002597 uword i;
2598
Damjan Marion8b3191e2016-11-09 19:54:20 +01002599 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
2600 return error;
2601
Ed Warnickecb9cada2015-12-08 15:45:58 -07002602 for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
2603 {
2604 u32 j, i0, i1;
2605
2606 i0 = i / 32;
2607 i1 = i % 32;
2608
2609 for (j = 0; j < i0; j++)
2610 im->fib_masks[i].as_u32[j] = ~0;
2611
2612 if (i1)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002613 im->fib_masks[i].as_u32[i0] =
2614 clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002615 }
2616
2617 ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1);
2618
2619 if (im->lookup_table_nbuckets == 0)
2620 im->lookup_table_nbuckets = IP6_FIB_DEFAULT_HASH_NUM_BUCKETS;
2621
Dave Barachd7cb1b52016-12-09 09:52:16 -05002622 im->lookup_table_nbuckets = 1 << max_log2 (im->lookup_table_nbuckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002623
2624 if (im->lookup_table_size == 0)
2625 im->lookup_table_size = IP6_FIB_DEFAULT_HASH_MEMORY_SIZE;
Dave Barach75fc8542016-10-11 16:16:02 -04002626
Dave Barachd7cb1b52016-12-09 09:52:16 -05002627 BV (clib_bihash_init) (&(im->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash),
2628 "ip6 FIB fwding table",
2629 im->lookup_table_nbuckets, im->lookup_table_size);
2630 BV (clib_bihash_init) (&im->ip6_table[IP6_FIB_TABLE_NON_FWDING].ip6_hash,
2631 "ip6 FIB non-fwding table",
2632 im->lookup_table_nbuckets, im->lookup_table_size);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002633
Ed Warnickecb9cada2015-12-08 15:45:58 -07002634 /* Create FIB with index 0 and table id of 0. */
Neale Ranns15002542017-09-10 04:39:11 -07002635 fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2636 FIB_SOURCE_DEFAULT_ROUTE);
2637 mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2638 MFIB_SOURCE_DEFAULT_ROUTE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002639
2640 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002641 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002642 pn = pg_get_node (ip6_lookup_node.index);
2643 pn->unformat_edit = unformat_pg_ip6_header;
2644 }
2645
Ole Troan944f5482016-05-24 11:56:58 +02002646 /* Unless explicitly configured, don't process HBH options */
2647 im->hbh_enabled = 0;
2648
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649 {
2650 icmp6_neighbor_solicitation_header_t p;
2651
2652 memset (&p, 0, sizeof (p));
2653
Dave Barachd7cb1b52016-12-09 09:52:16 -05002654 p.ip.ip_version_traffic_class_and_flow_label =
2655 clib_host_to_net_u32 (0x6 << 28);
2656 p.ip.payload_length =
2657 clib_host_to_net_u16 (sizeof (p) -
2658 STRUCT_OFFSET_OF
2659 (icmp6_neighbor_solicitation_header_t, neighbor));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002660 p.ip.protocol = IP_PROTOCOL_ICMP6;
2661 p.ip.hop_limit = 255;
2662 ip6_set_solicited_node_multicast_address (&p.ip.dst_address, 0);
2663
2664 p.neighbor.icmp.type = ICMP6_neighbor_solicitation;
2665
Dave Barachd7cb1b52016-12-09 09:52:16 -05002666 p.link_layer_option.header.type =
2667 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
2668 p.link_layer_option.header.n_data_u64s =
2669 sizeof (p.link_layer_option) / sizeof (u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002670
2671 vlib_packet_template_init (vm,
2672 &im->discover_neighbor_packet_template,
2673 &p, sizeof (p),
2674 /* alloc chunk size */ 8,
2675 "ip6 neighbor discovery");
2676 }
2677
Dave Barach203c6322016-06-26 10:29:03 -04002678 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002679}
2680
2681VLIB_INIT_FUNCTION (ip6_lookup_init);
2682
Dave Barach75fc8542016-10-11 16:16:02 -04002683void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002684ip6_link_local_address_from_ethernet_mac_address (ip6_address_t * ip,
2685 u8 * mac)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002686{
2687 ip->as_u64[0] = clib_host_to_net_u64 (0xFE80000000000000ULL);
2688 /* Invert the "u" bit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002689 ip->as_u8[8] = mac[0] ^ (1 << 1);
2690 ip->as_u8[9] = mac[1];
2691 ip->as_u8[10] = mac[2];
2692 ip->as_u8[11] = 0xFF;
2693 ip->as_u8[12] = 0xFE;
2694 ip->as_u8[13] = mac[3];
2695 ip->as_u8[14] = mac[4];
2696 ip->as_u8[15] = mac[5];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002697}
2698
Dave Barach75fc8542016-10-11 16:16:02 -04002699void
Dave Barachd7cb1b52016-12-09 09:52:16 -05002700ip6_ethernet_mac_address_from_link_local_address (u8 * mac,
2701 ip6_address_t * ip)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002702{
2703 /* Invert the previously inverted "u" bit */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002704 mac[0] = ip->as_u8[8] ^ (1 << 1);
2705 mac[1] = ip->as_u8[9];
2706 mac[2] = ip->as_u8[10];
2707 mac[3] = ip->as_u8[13];
2708 mac[4] = ip->as_u8[14];
2709 mac[5] = ip->as_u8[15];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002710}
2711
Dave Barach75fc8542016-10-11 16:16:02 -04002712static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07002713test_ip6_link_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002714 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002715{
2716 u8 mac[6];
2717 ip6_address_t _a, *a = &_a;
2718
2719 if (unformat (input, "%U", unformat_ethernet_address, mac))
2720 {
2721 ip6_link_local_address_from_ethernet_mac_address (a, mac);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002722 vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002723 ip6_ethernet_mac_address_from_link_local_address (mac, a);
2724 vlib_cli_output (vm, "Original MAC address: %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002725 format_ethernet_address, mac);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002726 }
Dave Barach75fc8542016-10-11 16:16:02 -04002727
Ed Warnickecb9cada2015-12-08 15:45:58 -07002728 return 0;
2729}
2730
Billy McFall0683c9c2016-10-13 08:27:31 -04002731/*?
2732 * This command converts the given MAC Address into an IPv6 link-local
2733 * address.
2734 *
2735 * @cliexpar
2736 * Example of how to create an IPv6 link-local address:
2737 * @cliexstart{test ip6 link 16:d9:e0:91:79:86}
2738 * Link local address: fe80::14d9:e0ff:fe91:7986
2739 * Original MAC address: 16:d9:e0:91:79:86
2740 * @cliexend
2741?*/
2742/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002743VLIB_CLI_COMMAND (test_link_command, static) =
2744{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002745 .path = "test ip6 link",
Dave Barach75fc8542016-10-11 16:16:02 -04002746 .function = test_ip6_link_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002747 .short_help = "test ip6 link <mac-address>",
2748};
Billy McFall0683c9c2016-10-13 08:27:31 -04002749/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002750
Dave Barachd7cb1b52016-12-09 09:52:16 -05002751int
2752vnet_set_ip6_flow_hash (u32 table_id, u32 flow_hash_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002753{
Neale Ranns107e7d42017-04-11 09:55:19 -07002754 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002755
Neale Ranns107e7d42017-04-11 09:55:19 -07002756 fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002757
Neale Ranns107e7d42017-04-11 09:55:19 -07002758 if (~0 == fib_index)
2759 return VNET_API_ERROR_NO_SUCH_FIB;
2760
Neale Ranns227038a2017-04-21 01:07:59 -07002761 fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP6,
2762 flow_hash_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002763
Neale Ranns227038a2017-04-21 01:07:59 -07002764 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002765}
2766
2767static clib_error_t *
2768set_ip6_flow_hash_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002769 unformat_input_t * input,
2770 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002771{
2772 int matched = 0;
2773 u32 table_id = 0;
2774 u32 flow_hash_config = 0;
2775 int rv;
2776
Dave Barachd7cb1b52016-12-09 09:52:16 -05002777 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2778 {
2779 if (unformat (input, "table %d", &table_id))
2780 matched = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002781#define _(a,v) \
2782 else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;}
Dave Barachd7cb1b52016-12-09 09:52:16 -05002783 foreach_flow_hash_bit
Ed Warnickecb9cada2015-12-08 15:45:58 -07002784#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -05002785 else
2786 break;
2787 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002788
2789 if (matched == 0)
2790 return clib_error_return (0, "unknown input `%U'",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002791 format_unformat_error, input);
Dave Barach75fc8542016-10-11 16:16:02 -04002792
Ed Warnickecb9cada2015-12-08 15:45:58 -07002793 rv = vnet_set_ip6_flow_hash (table_id, flow_hash_config);
2794 switch (rv)
2795 {
Neale Ranns227038a2017-04-21 01:07:59 -07002796 case 0:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002797 break;
2798
2799 case -1:
2800 return clib_error_return (0, "no such FIB table %d", table_id);
Dave Barach75fc8542016-10-11 16:16:02 -04002801
Ed Warnickecb9cada2015-12-08 15:45:58 -07002802 default:
2803 clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2804 break;
2805 }
Dave Barach75fc8542016-10-11 16:16:02 -04002806
Ed Warnickecb9cada2015-12-08 15:45:58 -07002807 return 0;
2808}
2809
Billy McFall0683c9c2016-10-13 08:27:31 -04002810/*?
2811 * Configure the set of IPv6 fields used by the flow hash.
2812 *
2813 * @cliexpar
2814 * @parblock
2815 * Example of how to set the flow hash on a given table:
Billy McFallebb9a6a2016-10-17 11:35:32 -04002816 * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto}
2817 *
Billy McFall0683c9c2016-10-13 08:27:31 -04002818 * Example of display the configured flow hash:
2819 * @cliexstart{show ip6 fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -04002820 * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2821 * @::/0
2822 * unicast-ip6-chain
2823 * [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]]
2824 * [0] [@0]: dpo-drop ip6
2825 * fe80::/10
2826 * unicast-ip6-chain
2827 * [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]]
2828 * [0] [@2]: dpo-receive
2829 * ff02::1/128
2830 * unicast-ip6-chain
2831 * [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]]
2832 * [0] [@2]: dpo-receive
2833 * ff02::2/128
2834 * unicast-ip6-chain
2835 * [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]]
2836 * [0] [@2]: dpo-receive
2837 * ff02::16/128
2838 * unicast-ip6-chain
2839 * [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]]
2840 * [0] [@2]: dpo-receive
2841 * ff02::1:ff00:0/104
2842 * unicast-ip6-chain
2843 * [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]]
2844 * [0] [@2]: dpo-receive
2845 * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto
2846 * @::/0
2847 * unicast-ip6-chain
2848 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
2849 * [0] [@0]: dpo-drop ip6
2850 * @::a:1:1:0:4/126
2851 * unicast-ip6-chain
2852 * [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]]
2853 * [0] [@4]: ipv6-glean: af_packet0
2854 * @::a:1:1:0:7/128
2855 * unicast-ip6-chain
2856 * [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]]
2857 * [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0
2858 * fe80::/10
2859 * unicast-ip6-chain
2860 * [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]]
2861 * [0] [@2]: dpo-receive
2862 * fe80::fe:3eff:fe3e:9222/128
2863 * unicast-ip6-chain
2864 * [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]]
2865 * [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0
2866 * ff02::1/128
2867 * unicast-ip6-chain
2868 * [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]]
2869 * [0] [@2]: dpo-receive
2870 * ff02::2/128
2871 * unicast-ip6-chain
2872 * [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]]
2873 * [0] [@2]: dpo-receive
2874 * ff02::16/128
2875 * unicast-ip6-chain
2876 * [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]]
2877 * [0] [@2]: dpo-receive
2878 * ff02::1:ff00:0/104
2879 * unicast-ip6-chain
2880 * [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]]
2881 * [0] [@2]: dpo-receive
Billy McFall0683c9c2016-10-13 08:27:31 -04002882 * @cliexend
2883 * @endparblock
2884?*/
2885/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002886VLIB_CLI_COMMAND (set_ip6_flow_hash_command, static) =
2887{
2888 .path = "set ip6 flow-hash",
2889 .short_help =
2890 "set ip6 flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]",
2891 .function = set_ip6_flow_hash_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002892};
Billy McFall0683c9c2016-10-13 08:27:31 -04002893/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002894
2895static clib_error_t *
2896show_ip6_local_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002897 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002898{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002899 ip6_main_t *im = &ip6_main;
2900 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002901 int i;
Dave Barach75fc8542016-10-11 16:16:02 -04002902
Ed Warnickecb9cada2015-12-08 15:45:58 -07002903 vlib_cli_output (vm, "Protocols handled by ip6_local");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002904 for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002905 {
2906 if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02002907 {
2908
2909 u32 node_index = vlib_get_node (vm,
2910 ip6_local_node.index)->
2911 next_nodes[lm->local_next_by_ip_protocol[i]];
2912 vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm,
2913 node_index);
2914 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002915 }
2916 return 0;
2917}
2918
2919
2920
Billy McFall0683c9c2016-10-13 08:27:31 -04002921/*?
2922 * Display the set of protocols handled by the local IPv6 stack.
2923 *
2924 * @cliexpar
2925 * Example of how to display local protocol table:
2926 * @cliexstart{show ip6 local}
2927 * Protocols handled by ip6_local
2928 * 17
2929 * 43
2930 * 58
2931 * 115
2932 * @cliexend
2933?*/
2934/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002935VLIB_CLI_COMMAND (show_ip6_local, static) =
2936{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002937 .path = "show ip6 local",
2938 .function = show_ip6_local_command_fn,
Billy McFall0683c9c2016-10-13 08:27:31 -04002939 .short_help = "show ip6 local",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002940};
Billy McFall0683c9c2016-10-13 08:27:31 -04002941/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002942
Dave Barachd7cb1b52016-12-09 09:52:16 -05002943int
2944vnet_set_ip6_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
2945 u32 table_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002946{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002947 vnet_main_t *vnm = vnet_get_main ();
2948 vnet_interface_main_t *im = &vnm->interface_main;
2949 ip6_main_t *ipm = &ip6_main;
2950 ip_lookup_main_t *lm = &ipm->lookup_main;
2951 vnet_classify_main_t *cm = &vnet_classify_main;
Neale Rannsdf089a82016-10-02 16:39:06 +01002952 ip6_address_t *if_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002953
2954 if (pool_is_free_index (im->sw_interfaces, sw_if_index))
2955 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
2956
2957 if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
2958 return VNET_API_ERROR_NO_SUCH_ENTRY;
2959
2960 vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002961 lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002962
Neale Ranns6cfc39c2017-02-14 01:44:25 -08002963 if_addr = ip6_interface_first_address (ipm, sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01002964
2965 if (NULL != if_addr)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002966 {
Neale Rannsdf089a82016-10-02 16:39:06 +01002967 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002968 .fp_len = 128,
2969 .fp_proto = FIB_PROTOCOL_IP6,
2970 .fp_addr.ip6 = *if_addr,
Neale Rannsdf089a82016-10-02 16:39:06 +01002971 };
2972 u32 fib_index;
2973
Dave Barachd7cb1b52016-12-09 09:52:16 -05002974 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4,
2975 sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01002976
2977
Dave Barachd7cb1b52016-12-09 09:52:16 -05002978 if (table_index != (u32) ~ 0)
2979 {
2980 dpo_id_t dpo = DPO_INVALID;
Neale Rannsdf089a82016-10-02 16:39:06 +01002981
Dave Barachd7cb1b52016-12-09 09:52:16 -05002982 dpo_set (&dpo,
2983 DPO_CLASSIFY,
2984 DPO_PROTO_IP6,
2985 classify_dpo_create (DPO_PROTO_IP6, table_index));
Neale Rannsdf089a82016-10-02 16:39:06 +01002986
Dave Barachd7cb1b52016-12-09 09:52:16 -05002987 fib_table_entry_special_dpo_add (fib_index,
2988 &pfx,
2989 FIB_SOURCE_CLASSIFY,
2990 FIB_ENTRY_FLAG_NONE, &dpo);
2991 dpo_reset (&dpo);
2992 }
Neale Rannsdf089a82016-10-02 16:39:06 +01002993 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05002994 {
2995 fib_table_entry_special_remove (fib_index,
2996 &pfx, FIB_SOURCE_CLASSIFY);
2997 }
2998 }
Neale Rannsdf089a82016-10-02 16:39:06 +01002999
Ed Warnickecb9cada2015-12-08 15:45:58 -07003000 return 0;
3001}
3002
3003static clib_error_t *
3004set_ip6_classify_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003005 unformat_input_t * input,
3006 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003007{
3008 u32 table_index = ~0;
3009 int table_index_set = 0;
3010 u32 sw_if_index = ~0;
3011 int rv;
Dave Barach75fc8542016-10-11 16:16:02 -04003012
Dave Barachd7cb1b52016-12-09 09:52:16 -05003013 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3014 {
3015 if (unformat (input, "table-index %d", &table_index))
3016 table_index_set = 1;
3017 else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
3018 vnet_get_main (), &sw_if_index))
3019 ;
3020 else
3021 break;
3022 }
Dave Barach75fc8542016-10-11 16:16:02 -04003023
Ed Warnickecb9cada2015-12-08 15:45:58 -07003024 if (table_index_set == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003025 return clib_error_return (0, "classify table-index must be specified");
Dave Barach75fc8542016-10-11 16:16:02 -04003026
Ed Warnickecb9cada2015-12-08 15:45:58 -07003027 if (sw_if_index == ~0)
3028 return clib_error_return (0, "interface / subif must be specified");
3029
3030 rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
3031
3032 switch (rv)
3033 {
3034 case 0:
3035 break;
3036
3037 case VNET_API_ERROR_NO_MATCHING_INTERFACE:
3038 return clib_error_return (0, "No such interface");
3039
3040 case VNET_API_ERROR_NO_SUCH_ENTRY:
3041 return clib_error_return (0, "No such classifier table");
3042 }
3043 return 0;
3044}
3045
Billy McFall0683c9c2016-10-13 08:27:31 -04003046/*?
3047 * Assign a classification table to an interface. The classification
3048 * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
3049 * commands. Once the table is create, use this command to filter packets
3050 * on an interface.
3051 *
3052 * @cliexpar
3053 * Example of how to assign a classification table to an interface:
3054 * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1}
3055?*/
3056/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003057VLIB_CLI_COMMAND (set_ip6_classify_command, static) =
3058{
3059 .path = "set ip6 classify",
3060 .short_help =
3061 "set ip6 classify intfc <interface> table-index <classify-idx>",
3062 .function = set_ip6_classify_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003063};
Billy McFall0683c9c2016-10-13 08:27:31 -04003064/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003065
3066static clib_error_t *
3067ip6_config (vlib_main_t * vm, unformat_input_t * input)
3068{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003069 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003070 uword heapsize = 0;
3071 u32 tmp;
3072 u32 nbuckets = 0;
3073
Dave Barachd7cb1b52016-12-09 09:52:16 -05003074 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3075 {
3076 if (unformat (input, "hash-buckets %d", &tmp))
3077 nbuckets = tmp;
Neale Ranns1ec36522017-11-29 05:20:37 -08003078 else if (unformat (input, "heap-size %U",
3079 unformat_memory_size, &heapsize))
3080 ;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003081 else
3082 return clib_error_return (0, "unknown input '%U'",
3083 format_unformat_error, input);
3084 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003085
3086 im->lookup_table_nbuckets = nbuckets;
3087 im->lookup_table_size = heapsize;
3088
3089 return 0;
3090}
3091
3092VLIB_EARLY_CONFIG_FUNCTION (ip6_config, "ip6");
Dave Barachd7cb1b52016-12-09 09:52:16 -05003093
3094/*
3095 * fd.io coding-style-patch-verification: ON
3096 *
3097 * Local Variables:
3098 * eval: (c-set-style "gnu")
3099 * End:
3100 */