blob: 0c1bc3b33ec14c213d0fc16b442c163a10a14fbb [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>
Neale Rannscbe25aa2019-09-30 10:53:31 +000043#include <vnet/ip/ip6_link.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>
Neale Rannsba4a5bf2020-01-09 06:43:14 +000052#include <vnet/classify/vnet_classify.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Damjan Marion38173502019-02-13 19:30:09 +010054#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -070055#include <vppinfra/bihash_template.c>
Damjan Marion38173502019-02-13 19:30:09 +010056#endif
Vijayabhaskar Katamreddyacbde662018-01-23 13:39:40 -080057#include <vnet/ip/ip6_forward.h>
Neale Ranns25edf142019-03-22 08:12:48 +000058#include <vnet/interface_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
AkshayaNadahallifdd81af2016-12-01 16:33:51 +053060/* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */
61#define OI_DECAP 0x80000000
62
Ed Warnickecb9cada2015-12-08 15:45:58 -070063static void
Matthew Smith6c92f5b2019-08-07 11:46:30 -050064ip6_add_interface_prefix_routes (ip6_main_t * im,
65 u32 sw_if_index,
66 u32 fib_index,
67 ip6_address_t * address, u32 address_length)
68{
69 ip_lookup_main_t *lm = &im->lookup_main;
70 ip_interface_prefix_t *if_prefix;
71
Neale Ranns1ff3c152019-10-07 22:40:54 -070072 /* *INDENT-OFF* */
Matthew Smith6c92f5b2019-08-07 11:46:30 -050073 ip_interface_prefix_key_t key = {
74 .prefix = {
Neale Ranns1ff3c152019-10-07 22:40:54 -070075 .fp_len = address_length,
76 .fp_proto = FIB_PROTOCOL_IP6,
77 .fp_addr.ip6 = {
78 .as_u64 = {
79 address->as_u64[0] & im->fib_masks[address_length].as_u64[0],
80 address->as_u64[1] & im->fib_masks[address_length].as_u64[1],
81 },
82 },
83 },
Matthew Smith6c92f5b2019-08-07 11:46:30 -050084 .sw_if_index = sw_if_index,
85 };
Neale Ranns1ff3c152019-10-07 22:40:54 -070086 /* *INDENT-ON* */
Matthew Smith6c92f5b2019-08-07 11:46:30 -050087
88 /* If prefix already set on interface, just increment ref count & return */
89 if_prefix = ip_get_interface_prefix (lm, &key);
90 if (if_prefix)
91 {
92 if_prefix->ref_count += 1;
93 return;
94 }
95
96 /* New prefix - allocate a pool entry, initialize it, add to the hash */
97 pool_get (lm->if_prefix_pool, if_prefix);
98 if_prefix->ref_count = 1;
99 clib_memcpy (&if_prefix->key, &key, sizeof (key));
100 mhash_set (&lm->prefix_to_if_prefix_index, &key,
101 if_prefix - lm->if_prefix_pool, 0 /* old value */ );
102
103 /* length < 128 - add glean */
104 if (address_length < 128)
105 {
106 /* set the glean route for the prefix */
107 fib_table_entry_update_one_path (fib_index, &key.prefix,
108 FIB_SOURCE_INTERFACE,
109 (FIB_ENTRY_FLAG_CONNECTED |
110 FIB_ENTRY_FLAG_ATTACHED),
111 DPO_PROTO_IP6,
112 /* No next-hop address */
113 NULL, sw_if_index,
114 /* invalid FIB index */
115 ~0, 1,
116 /* no out-label stack */
117 NULL, FIB_ROUTE_PATH_FLAG_NONE);
118 }
119}
120
121static void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122ip6_add_interface_routes (vnet_main_t * vnm, u32 sw_if_index,
123 ip6_main_t * im, u32 fib_index,
124 ip_interface_address_t * a)
125{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126 ip_lookup_main_t *lm = &im->lookup_main;
127 ip6_address_t *address = ip_interface_address_get_address (lm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100128 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129 .fp_len = a->address_length,
130 .fp_proto = FIB_PROTOCOL_IP6,
131 .fp_addr.ip6 = *address,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100132 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500134 /* set special routes for the prefix if needed */
135 ip6_add_interface_prefix_routes (im, sw_if_index, fib_index,
136 address, a->address_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100138 pfx.fp_len = 128;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100141 u32 classify_table_index =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142 lm->classify_table_index_by_sw_if_index[sw_if_index];
143 if (classify_table_index != (u32) ~ 0)
144 {
145 dpo_id_t dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 dpo_set (&dpo,
148 DPO_CLASSIFY,
149 DPO_PROTO_IP6,
150 classify_dpo_create (DPO_PROTO_IP6, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100151
Dave Barachd7cb1b52016-12-09 09:52:16 -0500152 fib_table_entry_special_dpo_add (fib_index,
153 &pfx,
154 FIB_SOURCE_CLASSIFY,
155 FIB_ENTRY_FLAG_NONE, &dpo);
156 dpo_reset (&dpo);
157 }
158 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100159
Neale Rannsf12a83f2017-04-18 09:09:40 -0700160 fib_table_entry_update_one_path (fib_index, &pfx,
161 FIB_SOURCE_INTERFACE,
162 (FIB_ENTRY_FLAG_CONNECTED |
163 FIB_ENTRY_FLAG_LOCAL),
Neale Rannsda78f952017-05-24 09:15:43 -0700164 DPO_PROTO_IP6,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700165 &pfx.fp_addr,
166 sw_if_index, ~0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167 1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168}
169
170static void
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500171ip6_del_interface_prefix_routes (ip6_main_t * im,
172 u32 sw_if_index,
173 u32 fib_index,
174 ip6_address_t * address, u32 address_length)
175{
176 ip_lookup_main_t *lm = &im->lookup_main;
177 ip_interface_prefix_t *if_prefix;
178
Neale Ranns1ff3c152019-10-07 22:40:54 -0700179 /* *INDENT-OFF* */
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500180 ip_interface_prefix_key_t key = {
181 .prefix = {
Neale Ranns1ff3c152019-10-07 22:40:54 -0700182 .fp_len = address_length,
183 .fp_proto = FIB_PROTOCOL_IP6,
184 .fp_addr.ip6 = {
185 .as_u64 = {
186 address->as_u64[0] & im->fib_masks[address_length].as_u64[0],
187 address->as_u64[1] & im->fib_masks[address_length].as_u64[1],
188 },
189 },
190 },
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500191 .sw_if_index = sw_if_index,
192 };
Neale Ranns1ff3c152019-10-07 22:40:54 -0700193 /* *INDENT-ON* */
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500194
195 if_prefix = ip_get_interface_prefix (lm, &key);
196 if (!if_prefix)
197 {
198 clib_warning ("Prefix not found while deleting %U",
199 format_ip4_address_and_length, address, address_length);
200 return;
201 }
202
203 /* If not deleting last intf addr in prefix, decrement ref count & return */
204 if_prefix->ref_count -= 1;
205 if (if_prefix->ref_count > 0)
206 return;
207
Neale Ranns1ff3c152019-10-07 22:40:54 -0700208 /* length <= 128, delete glean route */
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500209 if (address_length <= 128)
210 {
211 /* remove glean route for prefix */
212 fib_table_entry_delete (fib_index, &key.prefix, FIB_SOURCE_INTERFACE);
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500213 }
214
215 mhash_unset (&lm->prefix_to_if_prefix_index, &key, 0 /* old_value */ );
216 pool_put (lm->if_prefix_pool, if_prefix);
217}
218
219static void
220ip6_del_interface_routes (u32 sw_if_index, ip6_main_t * im,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100221 u32 fib_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 ip6_address_t * address, u32 address_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500224 fib_prefix_t pfx = {
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500225 .fp_len = 128,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500226 .fp_proto = FIB_PROTOCOL_IP6,
227 .fp_addr.ip6 = *address,
228 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500230 /* delete special routes for the prefix if needed */
231 ip6_del_interface_prefix_routes (im, sw_if_index, fib_index,
232 address, address_length);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100233
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235}
236
Damjan Marion38173502019-02-13 19:30:09 +0100237#ifndef CLIB_MARCH_VARIANT
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100238void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500239ip6_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100240{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500241 ip6_main_t *im = &ip6_main;
John Lo4a302ee2020-05-12 22:34:39 -0400242 vnet_main_t *vnm = vnet_get_main ();
243 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100245 vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100247 /*
248 * enable/disable only on the 1<->0 transition
249 */
250 if (is_enable)
251 {
252 if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254 }
255 else
256 {
Neale Ranns75152282017-01-09 01:00:45 -0800257 /* The ref count is 0 when an address is removed from an interface that has
258 * no address - this is not a ciritical error */
259 if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] ||
260 0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500261 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100262 }
263
Neale Ranns8269d3d2018-01-30 09:02:20 -0800264 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Neale Ranns630198f2017-05-22 09:20:20 -0400265 !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100266
Neale Ranns8269d3d2018-01-30 09:02:20 -0800267 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
268 sw_if_index, !is_enable, 0, 0);
John Lo4a302ee2020-05-12 22:34:39 -0400269
270 if (is_enable)
271 hi->l3_if_count++;
272 else if (hi->l3_if_count)
273 hi->l3_if_count--;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100274}
275
Neale Rannsdf089a82016-10-02 16:39:06 +0100276/* get first interface address */
277ip6_address_t *
Neale Ranns6cfc39c2017-02-14 01:44:25 -0800278ip6_interface_first_address (ip6_main_t * im, u32 sw_if_index)
Neale Rannsdf089a82016-10-02 16:39:06 +0100279{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 ip_lookup_main_t *lm = &im->lookup_main;
281 ip_interface_address_t *ia = 0;
282 ip6_address_t *result = 0;
Neale Rannsdf089a82016-10-02 16:39:06 +0100283
Dave Barachd7cb1b52016-12-09 09:52:16 -0500284 /* *INDENT-OFF* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100285 foreach_ip_interface_address (lm, ia, sw_if_index,
286 1 /* honor unnumbered */,
287 ({
288 ip6_address_t * a = ip_interface_address_get_address (lm, ia);
289 result = a;
290 break;
291 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500292 /* *INDENT-ON* */
Neale Rannsdf089a82016-10-02 16:39:06 +0100293 return result;
294}
295
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100296clib_error_t *
297ip6_add_del_interface_address (vlib_main_t * vm,
298 u32 sw_if_index,
299 ip6_address_t * address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500300 u32 address_length, u32 is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 vnet_main_t *vnm = vnet_get_main ();
303 ip6_main_t *im = &ip6_main;
304 ip_lookup_main_t *lm = &im->lookup_main;
Neale Ranns59f71132020-04-08 12:19:38 +0000305 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 u32 if_address_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500307 ip6_address_fib_t ip6_af, *addr_fib = 0;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000308 const ip6_address_t *ll_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Pavel Kotucek57808982017-08-02 08:20:19 +0200310 /* local0 interface doesn't support IP addressing */
311 if (sw_if_index == 0)
312 {
313 return
314 clib_error_create ("local0 interface doesn't support IP addressing");
315 }
316
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200317 if (ip6_address_is_link_local_unicast (address))
318 {
319 if (address_length != 128)
320 {
321 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
322 return
323 clib_error_create
324 ("prefix length of link-local address must be 128");
325 }
326 if (!is_del)
327 {
Neale Rannscbe25aa2019-09-30 10:53:31 +0000328 int rv;
329
Neale Rannsec40a7d2020-04-23 07:36:12 +0000330 rv = ip6_link_set_local_address (sw_if_index, address);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000331
332 if (rv)
333 {
334 vnm->api_errno = rv;
335 return clib_error_create ("address not assignable");
336 }
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200337 }
338 else
339 {
Neale Rannscbe25aa2019-09-30 10:53:31 +0000340 ll_addr = ip6_get_link_local_address (sw_if_index);
341 if (ip6_address_is_equal (ll_addr, address))
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200342 {
343 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_DELETABLE;
344 return clib_error_create ("address not deletable");
345 }
346 else
347 {
348 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
349 return clib_error_create ("address not found");
350 }
351 }
Neale Rannsec40a7d2020-04-23 07:36:12 +0000352
353 return (NULL);
Juraj Sloboda5bb1eca2018-10-22 09:57:13 +0200354 }
355
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000357 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
358
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 ip6_addr_fib_init (&ip6_af, address,
360 vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
361 vec_add1 (addr_fib, ip6_af);
362
Neale Ranns744902e2017-08-14 10:35:44 -0700363 /* *INDENT-OFF* */
364 if (!is_del)
365 {
366 /* When adding an address check that it does not conflict
367 with an existing address on any interface in this table. */
368 ip_interface_address_t *ia;
369 vnet_sw_interface_t *sif;
370
Damjan Marionb2c31b62020-12-13 21:47:40 +0100371 pool_foreach (sif, vnm->interface_main.sw_interfaces)
372 {
Neale Ranns744902e2017-08-14 10:35:44 -0700373 if (im->fib_index_by_sw_if_index[sw_if_index] ==
374 im->fib_index_by_sw_if_index[sif->sw_if_index])
375 {
376 foreach_ip_interface_address
377 (&im->lookup_main, ia, sif->sw_if_index,
378 0 /* honor unnumbered */ ,
379 ({
380 ip6_address_t * x =
381 ip_interface_address_get_address
382 (&im->lookup_main, ia);
Neale Ranns59f71132020-04-08 12:19:38 +0000383
Neale Ranns744902e2017-08-14 10:35:44 -0700384 if (ip6_destination_matches_route
385 (im, address, x, ia->address_length) ||
386 ip6_destination_matches_route (im,
387 x,
388 address,
389 address_length))
390 {
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500391 /* an intf may have >1 addr from the same prefix */
392 if ((sw_if_index == sif->sw_if_index) &&
393 (ia->address_length == address_length) &&
394 !ip6_address_is_equal (x, address))
395 continue;
396
Neale Ranns59f71132020-04-08 12:19:38 +0000397 if (ia->flags & IP_INTERFACE_ADDRESS_FLAG_STALE)
398 /* if the address we're comparing against is stale
399 * then the CP has not added this one back yet, maybe
400 * it never will, so we have to assume it won't and
401 * ignore it. if it does add it back, then it will fail
402 * because this one is now present */
403 continue;
404
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500405 /* error if the length or intf was different */
Neale Ranns744902e2017-08-14 10:35:44 -0700406 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
Neale Ranns59f71132020-04-08 12:19:38 +0000407 error = clib_error_create
Neale Ranns744902e2017-08-14 10:35:44 -0700408 ("failed to add %U which conflicts with %U for interface %U",
409 format_ip6_address_and_length, address,
410 address_length,
411 format_ip6_address_and_length, x,
412 ia->address_length,
413 format_vnet_sw_if_index_name, vnm,
414 sif->sw_if_index);
Neale Ranns59f71132020-04-08 12:19:38 +0000415 goto done;
Neale Ranns744902e2017-08-14 10:35:44 -0700416 }
417 }));
418 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100419 }
Neale Ranns744902e2017-08-14 10:35:44 -0700420 }
421 /* *INDENT-ON* */
422
Neale Ranns59f71132020-04-08 12:19:38 +0000423 if_address_index = ip_interface_address_find (lm, addr_fib, address_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424
Neale Ranns59f71132020-04-08 12:19:38 +0000425 if (is_del)
426 {
427 if (~0 == if_address_index)
428 {
429 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
430 error = clib_error_create ("%U not found for interface %U",
431 lm->format_address_and_length,
432 addr_fib, address_length,
433 format_vnet_sw_if_index_name, vnm,
434 sw_if_index);
435 goto done;
436 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
yedgdbd366b2020-05-14 10:51:53 +0800438 error = ip_interface_address_del (lm, vnm, if_address_index, addr_fib,
439 address_length, sw_if_index);
440 if (error)
441 goto done;
Neale Ranns59f71132020-04-08 12:19:38 +0000442 }
443 else
444 {
445 if (~0 != if_address_index)
446 {
447 ip_interface_address_t *ia;
448
449 ia = pool_elt_at_index (lm->if_address_pool, if_address_index);
450
451 if (ia->flags & IP_INTERFACE_ADDRESS_FLAG_STALE)
452 {
453 if (ia->sw_if_index == sw_if_index)
454 {
455 /* re-adding an address during the replace action.
456 * consdier this the update. clear the flag and
457 * we're done */
458 ia->flags &= ~IP_INTERFACE_ADDRESS_FLAG_STALE;
459 goto done;
460 }
461 else
462 {
463 /* The prefix is moving from one interface to another.
464 * delete the stale and add the new */
465 ip6_add_del_interface_address (vm,
466 ia->sw_if_index,
467 address, address_length, 1);
468 ia = NULL;
469 error = ip_interface_address_add (lm, sw_if_index,
470 addr_fib, address_length,
471 &if_address_index);
472 }
473 }
474 else
475 {
476 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
477 error = clib_error_create
478 ("Prefix %U already found on interface %U",
479 lm->format_address_and_length, addr_fib, address_length,
480 format_vnet_sw_if_index_name, vnm, ia->sw_if_index);
481 }
482 }
483 else
484 error = ip_interface_address_add (lm, sw_if_index,
485 addr_fib, address_length,
486 &if_address_index);
487 }
488
489 if (error)
490 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 ip6_sw_interface_enable_disable (sw_if_index, !is_del);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000493 if (!is_del)
Neale Rannsec40a7d2020-04-23 07:36:12 +0000494 ip6_link_enable (sw_if_index, NULL);
Neale Ranns177bbdc2016-11-15 09:46:51 +0000495
Neale Ranns1ff3c152019-10-07 22:40:54 -0700496 /* intf addr routes are added/deleted on admin up/down */
497 if (vnet_sw_interface_is_admin_up (vnm, sw_if_index))
498 {
499 if (is_del)
500 ip6_del_interface_routes (sw_if_index,
501 im, ip6_af.fib_index, address,
502 address_length);
503 else
504 ip6_add_interface_routes (vnm, sw_if_index,
505 im, ip6_af.fib_index,
506 pool_elt_at_index (lm->if_address_pool,
507 if_address_index));
508 }
Neale Ranns59f71132020-04-08 12:19:38 +0000509
510 ip6_add_del_interface_address_callback_t *cb;
511 vec_foreach (cb, im->add_del_interface_address_callbacks)
512 cb->function (im, cb->function_opaque, sw_if_index,
513 address, address_length, if_address_index, is_del);
514
Neale Rannscbe25aa2019-09-30 10:53:31 +0000515 if (is_del)
516 ip6_link_disable (sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
Dave Barachd7cb1b52016-12-09 09:52:16 -0500518done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 vec_free (addr_fib);
520 return error;
521}
522
Damjan Marion38173502019-02-13 19:30:09 +0100523#endif
524
525static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500526ip6_sw_interface_admin_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500528 ip6_main_t *im = &ip6_main;
529 ip_interface_address_t *ia;
530 ip6_address_t *a;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 u32 is_admin_up, fib_index;
532
533 /* Fill in lookup tables with default table (0). */
534 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
535
Dave Barachd7cb1b52016-12-09 09:52:16 -0500536 vec_validate_init_empty (im->
537 lookup_main.if_address_pool_index_by_sw_if_index,
538 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
540 is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
541
542 fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
543
Dave Barachd7cb1b52016-12-09 09:52:16 -0500544 /* *INDENT-OFF* */
Dave Barach75fc8542016-10-11 16:16:02 -0400545 foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 0 /* honor unnumbered */,
547 ({
548 a = ip_interface_address_get_address (&im->lookup_main, ia);
549 if (is_admin_up)
550 ip6_add_interface_routes (vnm, sw_if_index,
551 im, fib_index,
552 ia);
553 else
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500554 ip6_del_interface_routes (sw_if_index, im, fib_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 a, ia->address_length);
556 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500557 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558
559 return 0;
560}
561
562VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_sw_interface_admin_up_down);
563
Dave Barachd6534602016-06-14 18:38:02 -0400564/* Built-in ip6 unicast rx feature path definition */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500565/* *INDENT-OFF* */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100566VNET_FEATURE_ARC_INIT (ip6_unicast, static) =
567{
568 .arc_name = "ip6-unicast",
569 .start_nodes = VNET_FEATURES ("ip6-input"),
Dave Baracha25def72018-11-26 11:04:45 -0500570 .last_in_arc = "ip6-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100571 .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index,
572};
573
Dave Barachd7cb1b52016-12-09 09:52:16 -0500574VNET_FEATURE_INIT (ip6_flow_classify, static) =
575{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100576 .arc_name = "ip6-unicast",
Juraj Sloboda506b2452016-08-07 23:45:24 -0700577 .node_name = "ip6-flow-classify",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100578 .runs_before = VNET_FEATURES ("ip6-inacl"),
Juraj Sloboda506b2452016-08-07 23:45:24 -0700579};
580
Dave Barachd7cb1b52016-12-09 09:52:16 -0500581VNET_FEATURE_INIT (ip6_inacl, static) =
582{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100583 .arc_name = "ip6-unicast",
Dave Barach75fc8542016-10-11 16:16:02 -0400584 .node_name = "ip6-inacl",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100585 .runs_before = VNET_FEATURES ("ip6-policer-classify"),
Dave Barachd6534602016-06-14 18:38:02 -0400586};
587
Dave Barachd7cb1b52016-12-09 09:52:16 -0500588VNET_FEATURE_INIT (ip6_policer_classify, static) =
589{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100590 .arc_name = "ip6-unicast",
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700591 .node_name = "ip6-policer-classify",
Pierre Pfister057b3562018-12-10 17:01:01 +0100592 .runs_before = VNET_FEATURES ("ipsec6-input-feature"),
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700593};
594
Dave Barachd7cb1b52016-12-09 09:52:16 -0500595VNET_FEATURE_INIT (ip6_ipsec, static) =
596{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100597 .arc_name = "ip6-unicast",
Pierre Pfister057b3562018-12-10 17:01:01 +0100598 .node_name = "ipsec6-input-feature",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100599 .runs_before = VNET_FEATURES ("l2tp-decap"),
Dave Barachd6534602016-06-14 18:38:02 -0400600};
601
Dave Barachd7cb1b52016-12-09 09:52:16 -0500602VNET_FEATURE_INIT (ip6_l2tp, static) =
603{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100604 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400605 .node_name = "l2tp-decap",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100606 .runs_before = VNET_FEATURES ("vpath-input-ip6"),
Dave Barachd6534602016-06-14 18:38:02 -0400607};
608
Dave Barachd7cb1b52016-12-09 09:52:16 -0500609VNET_FEATURE_INIT (ip6_vpath, static) =
610{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100611 .arc_name = "ip6-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400612 .node_name = "vpath-input-ip6",
John Lo2b81eb82017-01-30 13:12:10 -0500613 .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"),
614};
615
616VNET_FEATURE_INIT (ip6_vxlan_bypass, static) =
617{
618 .arc_name = "ip6-unicast",
619 .node_name = "ip6-vxlan-bypass",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100620 .runs_before = VNET_FEATURES ("ip6-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400621};
622
Neale Ranns8269d3d2018-01-30 09:02:20 -0800623VNET_FEATURE_INIT (ip6_not_enabled, static) =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500624{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100625 .arc_name = "ip6-unicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800626 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400627 .runs_before = VNET_FEATURES ("ip6-lookup"),
628};
629
630VNET_FEATURE_INIT (ip6_lookup, static) =
631{
632 .arc_name = "ip6-unicast",
633 .node_name = "ip6-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100634 .runs_before = 0, /*last feature*/
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100635};
636
Dave Barachd6534602016-06-14 18:38:02 -0400637/* Built-in ip6 multicast rx feature path definition (none now) */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100638VNET_FEATURE_ARC_INIT (ip6_multicast, static) =
639{
640 .arc_name = "ip6-multicast",
641 .start_nodes = VNET_FEATURES ("ip6-input"),
Dave Baracha25def72018-11-26 11:04:45 -0500642 .last_in_arc = "ip6-mfib-forward-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100643 .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index,
644};
645
646VNET_FEATURE_INIT (ip6_vpath_mc, static) = {
647 .arc_name = "ip6-multicast",
Dave Barachd6534602016-06-14 18:38:02 -0400648 .node_name = "vpath-input-ip6",
Neale Ranns32e1c012016-11-22 17:07:28 +0000649 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400650};
651
Neale Ranns8269d3d2018-01-30 09:02:20 -0800652VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = {
Damjan Marion8b3191e2016-11-09 19:54:20 +0100653 .arc_name = "ip6-multicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800654 .node_name = "ip6-not-enabled",
Neale Ranns630198f2017-05-22 09:20:20 -0400655 .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
656};
657
658VNET_FEATURE_INIT (ip6_mc_lookup, static) = {
659 .arc_name = "ip6-multicast",
660 .node_name = "ip6-mfib-forward-lookup",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100661 .runs_before = 0, /* last feature */
Neale Ranns5e575b12016-10-03 09:40:25 +0100662};
Dave Barach5331c722016-08-17 11:54:30 -0400663
664/* Built-in ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100665VNET_FEATURE_ARC_INIT (ip6_output, static) =
666{
667 .arc_name = "ip6-output",
Neale Rannsf068c3e2018-01-03 04:18:48 -0800668 .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"),
Dave Baracha25def72018-11-26 11:04:45 -0500669 .last_in_arc = "interface-output",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100670 .arc_index_ptr = &ip6_main.lookup_main.output_feature_arc_index,
Dave Barach5331c722016-08-17 11:54:30 -0400671};
672
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100673VNET_FEATURE_INIT (ip6_outacl, static) = {
674 .arc_name = "ip6-output",
675 .node_name = "ip6-outacl",
Pierre Pfister057b3562018-12-10 17:01:01 +0100676 .runs_before = VNET_FEATURES ("ipsec6-output-feature"),
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100677};
678
Matus Fabian08a6f012016-11-15 06:08:51 -0800679VNET_FEATURE_INIT (ip6_ipsec_output, static) = {
680 .arc_name = "ip6-output",
Pierre Pfister057b3562018-12-10 17:01:01 +0100681 .node_name = "ipsec6-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800682 .runs_before = VNET_FEATURES ("interface-output"),
683};
684
Damjan Marion8b3191e2016-11-09 19:54:20 +0100685VNET_FEATURE_INIT (ip6_interface_output, static) = {
686 .arc_name = "ip6-output",
687 .node_name = "interface-output",
688 .runs_before = 0, /* not before any other features */
689};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500690/* *INDENT-ON* */
Dave Barachd6534602016-06-14 18:38:02 -0400691
Damjan Marion38173502019-02-13 19:30:09 +0100692static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500693ip6_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694{
Florin Corasb5c13fd2017-05-10 12:32:53 -0700695 ip6_main_t *im = &ip6_main;
696
697 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
698 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
699
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200700 if (!is_add)
701 {
702 /* Ensure that IPv6 is disabled */
703 ip6_main_t *im6 = &ip6_main;
704 ip_lookup_main_t *lm6 = &im6->lookup_main;
705 ip_interface_address_t *ia = 0;
706 ip6_address_t *address;
707 vlib_main_t *vm = vlib_get_main ();
708
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700709 vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0);
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200710 /* *INDENT-OFF* */
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700711 foreach_ip_interface_address (lm6, ia, sw_if_index, 0,
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200712 ({
713 address = ip_interface_address_get_address (lm6, ia);
714 ip6_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1);
715 }));
716 /* *INDENT-ON* */
717 ip6_mfib_interface_enable_disable (sw_if_index, 0);
718 }
719
Neale Ranns8269d3d2018-01-30 09:02:20 -0800720 vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +0100721 is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
Neale Ranns8269d3d2018-01-30 09:02:20 -0800723 vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
724 sw_if_index, is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 return /* no error */ 0;
727}
728
729VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_sw_interface_add_del);
730
Damjan Marion38173502019-02-13 19:30:09 +0100731VLIB_NODE_FN (ip6_lookup_node) (vlib_main_t * vm,
732 vlib_node_runtime_t * node,
733 vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200734{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100735 return ip6_lookup_inline (vm, node, frame);
Damjan Marionaca64c92016-04-13 09:48:56 +0200736}
737
Dave Barachd7cb1b52016-12-09 09:52:16 -0500738static u8 *format_ip6_lookup_trace (u8 * s, va_list * args);
Pierre Pfister0febaf12016-06-08 12:23:21 +0100739
Dave Barachd7cb1b52016-12-09 09:52:16 -0500740/* *INDENT-OFF* */
741VLIB_REGISTER_NODE (ip6_lookup_node) =
742{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743 .name = "ip6-lookup",
744 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100745 .format_trace = format_ip6_lookup_trace,
Ole Troanf0f85222016-06-14 21:12:32 +0200746 .n_next_nodes = IP6_LOOKUP_N_NEXT,
Damjan Marionb2707892016-04-13 11:21:07 +0200747 .next_nodes = IP6_LOOKUP_NEXT_NODES,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500749/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
Damjan Marion38173502019-02-13 19:30:09 +0100751VLIB_NODE_FN (ip6_load_balance_node) (vlib_main_t * vm,
752 vlib_node_runtime_t * node,
753 vlib_frame_t * frame)
Damjan Marionaca64c92016-04-13 09:48:56 +0200754{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500755 vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters;
Neale Ranns3ce72b22019-05-27 08:21:32 -0400756 u32 n_left, *from;
Damjan Marion067cd622018-07-11 12:47:43 +0200757 u32 thread_index = vm->thread_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500758 ip6_main_t *im = &ip6_main;
Neale Ranns3ce72b22019-05-27 08:21:32 -0400759 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
760 u16 nexts[VLIB_FRAME_SIZE], *next;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100761
762 from = vlib_frame_vector_args (frame);
Neale Ranns3ce72b22019-05-27 08:21:32 -0400763 n_left = frame->n_vectors;
764 next = nexts;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100765
Neale Ranns3ce72b22019-05-27 08:21:32 -0400766 vlib_get_buffers (vm, from, bufs, n_left);
767
768 while (n_left >= 4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100769 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400770 const load_balance_t *lb0, *lb1;
771 const ip6_header_t *ip0, *ip1;
772 u32 lbi0, hc0, lbi1, hc1;
773 const dpo_id_t *dpo0, *dpo1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100774
Neale Ranns3ce72b22019-05-27 08:21:32 -0400775 /* Prefetch next iteration. */
776 {
777 vlib_prefetch_buffer_header (b[2], STORE);
778 vlib_prefetch_buffer_header (b[3], STORE);
Dave Barach75fc8542016-10-11 16:16:02 -0400779
Neale Ranns3ce72b22019-05-27 08:21:32 -0400780 CLIB_PREFETCH (b[2]->data, sizeof (ip0[0]), STORE);
781 CLIB_PREFETCH (b[3]->data, sizeof (ip0[0]), STORE);
782 }
783
784 ip0 = vlib_buffer_get_current (b[0]);
785 ip1 = vlib_buffer_get_current (b[1]);
786 lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
787 lbi1 = vnet_buffer (b[1])->ip.adj_index[VLIB_TX];
788
789 lb0 = load_balance_get (lbi0);
790 lb1 = load_balance_get (lbi1);
791
792 /*
793 * this node is for via FIBs we can re-use the hash value from the
794 * to node if present.
795 * We don't want to use the same hash value at each level in the recursion
796 * graph as that would lead to polarisation
797 */
798 hc0 = hc1 = 0;
799
800 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500801 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400802 if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500803 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400804 hc0 = vnet_buffer (b[0])->ip.flow_hash =
805 vnet_buffer (b[0])->ip.flow_hash >> 1;
Neale Rannsf12a83f2017-04-18 09:09:40 -0700806 }
807 else
808 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400809 hc0 = vnet_buffer (b[0])->ip.flow_hash =
810 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500811 }
Neale Ranns3ce72b22019-05-27 08:21:32 -0400812 dpo0 = load_balance_get_fwd_bucket
813 (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
814 }
815 else
816 {
817 dpo0 = load_balance_get_bucket_i (lb0, 0);
818 }
819 if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
820 {
821 if (PREDICT_TRUE (vnet_buffer (b[1])->ip.flow_hash))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500822 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400823 hc1 = vnet_buffer (b[1])->ip.flow_hash =
824 vnet_buffer (b[1])->ip.flow_hash >> 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500825 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700826 else
827 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400828 hc1 = vnet_buffer (b[1])->ip.flow_hash =
829 ip6_compute_flow_hash (ip1, lb1->lb_hash_config);
Neale Rannsf12a83f2017-04-18 09:09:40 -0700830 }
Neale Ranns3ce72b22019-05-27 08:21:32 -0400831 dpo1 = load_balance_get_fwd_bucket
832 (lb1, (hc1 & (lb1->lb_n_buckets_minus_1)));
833 }
834 else
835 {
836 dpo1 = load_balance_get_bucket_i (lb1, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500837 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000838
Neale Ranns3ce72b22019-05-27 08:21:32 -0400839 next[0] = dpo0->dpoi_next_node;
840 next[1] = dpo1->dpoi_next_node;
841
842 /* Only process the HBH Option Header if explicitly configured to do so */
843 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500844 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400845 next[0] = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
846 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next[0];
847 }
848 /* Only process the HBH Option Header if explicitly configured to do so */
849 if (PREDICT_FALSE (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
850 {
851 next[1] = (dpo_is_adj (dpo1) && im->hbh_enabled) ?
852 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next[1];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500853 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100854
Neale Ranns3ce72b22019-05-27 08:21:32 -0400855 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
856 vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
857
858 vlib_increment_combined_counter
859 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
860 vlib_increment_combined_counter
861 (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, b[1]));
862
863 b += 2;
864 next += 2;
865 n_left -= 2;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100866 }
867
Neale Ranns3ce72b22019-05-27 08:21:32 -0400868 while (n_left > 0)
869 {
870 const load_balance_t *lb0;
871 const ip6_header_t *ip0;
872 const dpo_id_t *dpo0;
873 u32 lbi0, hc0;
874
875 ip0 = vlib_buffer_get_current (b[0]);
876 lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
877
878 lb0 = load_balance_get (lbi0);
879
880 hc0 = 0;
881 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
882 {
883 if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
884 {
885 hc0 = vnet_buffer (b[0])->ip.flow_hash =
886 vnet_buffer (b[0])->ip.flow_hash >> 1;
887 }
888 else
889 {
890 hc0 = vnet_buffer (b[0])->ip.flow_hash =
891 ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
892 }
893 dpo0 = load_balance_get_fwd_bucket
894 (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
895 }
896 else
897 {
898 dpo0 = load_balance_get_bucket_i (lb0, 0);
899 }
900
901 next[0] = dpo0->dpoi_next_node;
902 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
903
904 /* Only process the HBH Option Header if explicitly configured to do so */
905 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
906 {
907 next[0] = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
908 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next[0];
909 }
910
911 vlib_increment_combined_counter
912 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
913
914 b += 1;
915 next += 1;
916 n_left -= 1;
917 }
918
919 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
920
Neale Rannsa71844f2018-11-08 07:31:36 -0800921 if (node->flags & VLIB_NODE_FLAG_TRACE)
922 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
923
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100924 return frame->n_vectors;
Damjan Marionaca64c92016-04-13 09:48:56 +0200925}
926
Dave Barachd7cb1b52016-12-09 09:52:16 -0500927/* *INDENT-OFF* */
928VLIB_REGISTER_NODE (ip6_load_balance_node) =
929{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100930 .name = "ip6-load-balance",
Damjan Marionaca64c92016-04-13 09:48:56 +0200931 .vector_size = sizeof (u32),
Ole Troanf0f85222016-06-14 21:12:32 +0200932 .sibling_of = "ip6-lookup",
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100933 .format_trace = format_ip6_lookup_trace,
Damjan Marionaca64c92016-04-13 09:48:56 +0200934};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500935/* *INDENT-ON* */
Damjan Marionaca64c92016-04-13 09:48:56 +0200936
Dave Barachd7cb1b52016-12-09 09:52:16 -0500937typedef struct
938{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 /* Adjacency taken. */
940 u32 adj_index;
941 u32 flow_hash;
John Lo2d343742016-01-19 17:27:17 -0500942 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943
944 /* Packet data, possibly *after* rewrite. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500945 u8 packet_data[128 - 1 * sizeof (u32)];
946}
947ip6_forward_next_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948
Damjan Marion38173502019-02-13 19:30:09 +0100949#ifndef CLIB_MARCH_VARIANT
John Lo2b81eb82017-01-30 13:12:10 -0500950u8 *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500951format_ip6_forward_next_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952{
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100953 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
954 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500955 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200956 u32 indent = format_get_indent (s);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100957
Neale Rannsdc617b82020-08-20 08:22:56 +0000958 s = format (s, "%Ufib:%d adj:%d flow:%d",
959 format_white_space, indent,
960 t->fib_index, t->adj_index, t->flow_hash);
961 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500962 format_white_space, indent,
963 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100964 return s;
965}
Damjan Marion38173502019-02-13 19:30:09 +0100966#endif
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100967
Dave Barachd7cb1b52016-12-09 09:52:16 -0500968static u8 *
969format_ip6_lookup_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100970{
971 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
972 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500973 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200974 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
John Loac8146c2016-09-27 17:44:02 -0400976 s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500977 t->fib_index, t->adj_index, t->flow_hash);
978 s = format (s, "\n%U%U",
979 format_white_space, indent,
980 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100981 return s;
982}
Pierre Pfister0febaf12016-06-08 12:23:21 +0100983
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984
Dave Barachd7cb1b52016-12-09 09:52:16 -0500985static u8 *
986format_ip6_rewrite_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100987{
988 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
989 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500990 ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200991 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100993 s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500994 t->fib_index, t->adj_index, format_ip_adjacency,
995 t->adj_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100996 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500997 format_white_space, indent,
998 format_ip_adjacency_packet_data,
Neale Ranns0b6a8572019-10-30 17:34:14 +0000999 t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000 return s;
1001}
1002
1003/* Common trace function for all ip6-forward next nodes. */
Damjan Marion38173502019-02-13 19:30:09 +01001004#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005void
1006ip6_forward_next_trace (vlib_main_t * vm,
1007 vlib_node_runtime_t * node,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001008 vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001010 u32 *from, n_left;
1011 ip6_main_t *im = &ip6_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012
1013 n_left = frame->n_vectors;
1014 from = vlib_frame_vector_args (frame);
Pierre Pfister0febaf12016-06-08 12:23:21 +01001015
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016 while (n_left >= 4)
1017 {
1018 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001019 vlib_buffer_t *b0, *b1;
1020 ip6_forward_next_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021
1022 /* Prefetch next iteration. */
1023 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
1024 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
1025
1026 bi0 = from[0];
1027 bi1 = from[1];
1028
1029 b0 = vlib_get_buffer (vm, bi0);
1030 b1 = vlib_get_buffer (vm, bi1);
1031
1032 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1033 {
1034 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1035 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001036 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
1037 t0->fib_index =
1038 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1039 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1040 vec_elt (im->fib_index_by_sw_if_index,
1041 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +01001042
Dave Barach178cf492018-11-13 16:34:13 -05001043 clib_memcpy_fast (t0->packet_data,
1044 vlib_buffer_get_current (b0),
1045 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046 }
1047 if (b1->flags & VLIB_BUFFER_IS_TRACED)
1048 {
1049 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
1050 t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001051 t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
1052 t1->fib_index =
1053 (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
1054 (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
1055 vec_elt (im->fib_index_by_sw_if_index,
1056 vnet_buffer (b1)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +01001057
Dave Barach178cf492018-11-13 16:34:13 -05001058 clib_memcpy_fast (t1->packet_data,
1059 vlib_buffer_get_current (b1),
1060 sizeof (t1->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 }
1062 from += 2;
1063 n_left -= 2;
1064 }
1065
1066 while (n_left >= 1)
1067 {
1068 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001069 vlib_buffer_t *b0;
1070 ip6_forward_next_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071
1072 bi0 = from[0];
1073
1074 b0 = vlib_get_buffer (vm, bi0);
1075
1076 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1077 {
1078 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1079 t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Dave Barachd7cb1b52016-12-09 09:52:16 -05001080 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
1081 t0->fib_index =
1082 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1083 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1084 vec_elt (im->fib_index_by_sw_if_index,
1085 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +01001086
Dave Barach178cf492018-11-13 16:34:13 -05001087 clib_memcpy_fast (t0->packet_data,
1088 vlib_buffer_get_current (b0),
1089 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 }
1091 from += 1;
1092 n_left -= 1;
1093 }
1094}
1095
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096/* Compute TCP/UDP/ICMP6 checksum in software. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001097u16
1098ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
1099 ip6_header_t * ip0, int *bogus_lengthp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100{
Matthew Smith97677a22020-02-05 11:46:40 -06001101 ip_csum_t sum0 = 0;
1102 u16 payload_length, payload_length_host_byte_order;
Srikanth A02833ff2019-10-02 17:48:58 -07001103 u32 i;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001104 u32 headers_size = sizeof (ip0[0]);
Dave Barachc4abafd2019-09-04 12:09:32 -04001105 u8 *data_this_buffer;
Matthew Smith97677a22020-02-05 11:46:40 -06001106 u8 next_hdr = ip0->protocol;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107
Dave Barachd7cb1b52016-12-09 09:52:16 -05001108 ASSERT (bogus_lengthp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109 *bogus_lengthp = 0;
1110
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111 payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
Dave Barachc4abafd2019-09-04 12:09:32 -04001112 data_this_buffer = (u8 *) (ip0 + 1);
Matthew Smith97677a22020-02-05 11:46:40 -06001113 payload_length = ip0->payload_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114
AkshayaNadahalli1b563522017-01-23 22:05:35 +05301115 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets)
1116 * or UDP-Ping packets */
Matthew Smith97677a22020-02-05 11:46:40 -06001117 if (PREDICT_FALSE (next_hdr == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001119 u32 skip_bytes;
1120 ip6_hop_by_hop_ext_t *ext_hdr =
1121 (ip6_hop_by_hop_ext_t *) data_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122
1123 /* validate really icmp6 next */
AkshayaNadahalli1b563522017-01-23 22:05:35 +05301124 ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
1125 || (ext_hdr->next_hdr == IP_PROTOCOL_UDP));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126
Dave Barachd7cb1b52016-12-09 09:52:16 -05001127 skip_bytes = 8 * (1 + ext_hdr->n_data_u64s);
1128 data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes);
Dave Barach75fc8542016-10-11 16:16:02 -04001129
Dave Barachd7cb1b52016-12-09 09:52:16 -05001130 payload_length_host_byte_order -= skip_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001131 headers_size += skip_bytes;
Matthew Smith97677a22020-02-05 11:46:40 -06001132
1133 /* pseudo-header adjustments:
1134 * exclude ext header bytes from payload length
1135 * use payload IP proto rather than ext header IP proto
1136 */
1137 payload_length = clib_host_to_net_u16 (payload_length_host_byte_order);
1138 next_hdr = ext_hdr->next_hdr;
1139 }
1140
1141 /* Initialize checksum with ip pseudo-header. */
1142 sum0 = payload_length + clib_host_to_net_u16 (next_hdr);
1143
1144 for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++)
1145 {
1146 sum0 = ip_csum_with_carry
1147 (sum0, clib_mem_unaligned (&ip0->src_address.as_uword[i], uword));
1148 sum0 = ip_csum_with_carry
1149 (sum0, clib_mem_unaligned (&ip0->dst_address.as_uword[i], uword));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001150 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151
John Lo3bc6bc22019-08-03 14:36:39 -04001152 if (p0)
Srikanth A02833ff2019-10-02 17:48:58 -07001153 return ip_calculate_l4_checksum (vm, p0, sum0,
1154 payload_length_host_byte_order,
1155 (u8 *) ip0, headers_size, NULL);
1156 else
1157 return ip_calculate_l4_checksum (vm, 0, sum0,
1158 payload_length_host_byte_order, NULL, 0,
1159 data_this_buffer);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160}
1161
Dave Barachd7cb1b52016-12-09 09:52:16 -05001162u32
1163ip6_tcp_udp_icmp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001165 ip6_header_t *ip0 = vlib_buffer_get_current (p0);
1166 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 u16 sum16;
1168 int bogus_length;
1169
1170 /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */
1171 ASSERT (ip0->protocol == IP_PROTOCOL_TCP
1172 || ip0->protocol == IP_PROTOCOL_ICMP6
1173 || ip0->protocol == IP_PROTOCOL_UDP
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174 || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175
1176 udp0 = (void *) (ip0 + 1);
1177 if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
1178 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001179 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1180 | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181 return p0->flags;
1182 }
1183
1184 sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length);
1185
Damjan Marion213b5aa2017-07-13 21:19:27 +02001186 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1187 | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188
1189 return p0->flags;
1190}
Damjan Marion38173502019-02-13 19:30:09 +01001191#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301193/**
1194 * @brief returns number of links on which src is reachable.
1195 */
1196always_inline int
1197ip6_urpf_loose_check (ip6_main_t * im, vlib_buffer_t * b, ip6_header_t * i)
1198{
1199 const load_balance_t *lb0;
1200 index_t lbi;
Florin Corasf3a3bad2018-03-28 02:18:29 -07001201 u32 fib_index;
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301202
Florin Corasf3a3bad2018-03-28 02:18:29 -07001203 fib_index = vec_elt (im->fib_index_by_sw_if_index,
1204 vnet_buffer (b)->sw_if_index[VLIB_RX]);
1205 fib_index =
1206 (vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ?
1207 fib_index : vnet_buffer (b)->sw_if_index[VLIB_TX];
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301208
Simon Zhange7eba482019-08-25 15:30:45 +08001209 lbi = ip6_fib_table_fwding_lookup (fib_index, &i->src_address);
AkshayaNadahalli0f438df2017-02-10 10:54:16 +05301210 lb0 = load_balance_get (lbi);
1211
1212 return (fib_urpf_check_size (lb0->lb_urpf));
1213}
1214
rootc9d1c5b2017-08-15 12:58:31 -04001215always_inline u8
1216ip6_next_proto_is_tcp_udp (vlib_buffer_t * p0, ip6_header_t * ip0,
1217 u32 * udp_offset0)
1218{
1219 u32 proto0;
1220 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0);
1221 if (proto0 != IP_PROTOCOL_UDP)
1222 {
1223 proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0);
1224 proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0;
1225 }
1226 return proto0;
1227}
1228
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001229/* *INDENT-OFF* */
1230VNET_FEATURE_ARC_INIT (ip6_local) =
1231{
1232 .arc_name = "ip6-local",
1233 .start_nodes = VNET_FEATURES ("ip6-local"),
1234};
1235/* *INDENT-ON* */
1236
johny17478e42019-10-11 18:28:51 +02001237static_always_inline u8
1238ip6_tcp_udp_icmp_bad_length (vlib_main_t * vm, vlib_buffer_t * p0)
1239{
1240
1241 u16 payload_length_host_byte_order;
1242 u32 n_this_buffer, n_bytes_left;
1243 ip6_header_t *ip0 = vlib_buffer_get_current (p0);
1244 u32 headers_size = sizeof (ip0[0]);
1245 u8 *data_this_buffer;
1246
1247
1248 data_this_buffer = (u8 *) (ip0 + 1);
1249
1250 ip6_hop_by_hop_ext_t *ext_hdr = (ip6_hop_by_hop_ext_t *) data_this_buffer;
1251
1252 /* validate really icmp6 next */
1253
1254 if (!(ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
1255 || (ext_hdr->next_hdr == IP_PROTOCOL_UDP))
1256 return 0;
1257
1258
1259 payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
1260 n_bytes_left = n_this_buffer = payload_length_host_byte_order;
1261
johnya633a432019-12-06 13:58:35 +01001262
1263 u32 n_ip_bytes_this_buffer =
1264 p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data);
1265 if (n_this_buffer + headers_size > n_ip_bytes_this_buffer)
johny17478e42019-10-11 18:28:51 +02001266 {
johnya633a432019-12-06 13:58:35 +01001267 n_this_buffer = p0->current_length > headers_size ?
1268 n_ip_bytes_this_buffer - headers_size : 0;
johny17478e42019-10-11 18:28:51 +02001269 }
1270
1271 n_bytes_left -= n_this_buffer;
1272 n_bytes_left -= p0->total_length_not_including_first_buffer;
1273
1274 if (n_bytes_left == 0)
1275 return 0;
1276 else
1277 return 1;
1278}
1279
1280
Benoît Ganne26a10192019-02-14 15:32:45 +01001281always_inline uword
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001282ip6_local_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1283 vlib_frame_t * frame, int head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001285 ip6_main_t *im = &ip6_main;
1286 ip_lookup_main_t *lm = &im->lookup_main;
Benoît Ganne26a10192019-02-14 15:32:45 +01001287 u32 *from, n_left_from;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001288 vlib_node_runtime_t *error_node =
1289 vlib_node_get_runtime (vm, ip6_input_node.index);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001290 u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index;
Benoît Ganne26a10192019-02-14 15:32:45 +01001291 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
1292 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293
1294 from = vlib_frame_vector_args (frame);
1295 n_left_from = frame->n_vectors;
Dave Barach75fc8542016-10-11 16:16:02 -04001296
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297 if (node->flags & VLIB_NODE_FLAG_TRACE)
1298 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
1299
Benoît Ganne26a10192019-02-14 15:32:45 +01001300 vlib_get_buffers (vm, from, bufs, n_left_from);
1301 b = bufs;
1302 next = nexts;
1303
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001304 while (n_left_from > 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305 {
Benoît Ganne26a10192019-02-14 15:32:45 +01001306 /* Prefetch next iteration. */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001307 if (n_left_from >= 6)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001309 vlib_prefetch_buffer_header (b[4], STORE);
1310 vlib_prefetch_buffer_header (b[5], STORE);
1311 vlib_prefetch_buffer_data (b[2], LOAD);
1312 vlib_prefetch_buffer_data (b[3], LOAD);
Benoît Ganne26a10192019-02-14 15:32:45 +01001313 }
Dave Barach75fc8542016-10-11 16:16:02 -04001314
Neale Rannsf6472e02020-12-18 09:42:18 +00001315 ip6_error_t error[2];
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001316 error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1317 error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
Dave Barach75fc8542016-10-11 16:16:02 -04001318
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001319 ip6_header_t *ip[2];
1320 ip[0] = vlib_buffer_get_current (b[0]);
1321 ip[1] = vlib_buffer_get_current (b[1]);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001322
Benoît Ganne26a10192019-02-14 15:32:45 +01001323 if (head_of_feature_arc)
1324 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001325 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1326 vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001328 u8 type[2];
1329 type[0] = lm->builtin_protocol_by_ip_protocol[ip[0]->protocol];
1330 type[1] = lm->builtin_protocol_by_ip_protocol[ip[1]->protocol];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001332 u32 flags[2];
1333 flags[0] = b[0]->flags;
1334 flags[1] = b[1]->flags;
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001335
Mohsin Kazmi68095382021-02-10 11:26:24 +01001336 u32 oflags[2];
1337 oflags[0] = vnet_buffer2 (b[0])->oflags;
1338 oflags[1] = vnet_buffer2 (b[1])->oflags;
1339
1340 u32 l4_offload[2];
1341 l4_offload[0] = (flags[0] & VNET_BUFFER_F_OFFLOAD) &&
1342 (oflags[0] & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1343 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1344 l4_offload[1] = (flags[1] & VNET_BUFFER_F_OFFLOAD) &&
1345 (oflags[1] & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1346 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1347
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001348 u32 good_l4_csum[2];
1349 good_l4_csum[0] =
Mohsin Kazmi68095382021-02-10 11:26:24 +01001350 (flags[0] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload[0];
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001351 good_l4_csum[1] =
Mohsin Kazmi68095382021-02-10 11:26:24 +01001352 (flags[1] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload[1];
Filip Tehlarb601f222017-01-02 10:22:56 +01001353
Damjan Marion34e823f2019-02-19 08:55:18 +01001354 u32 udp_offset[2] = { };
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001355 u8 is_tcp_udp[2];
1356 is_tcp_udp[0] =
1357 ip6_next_proto_is_tcp_udp (b[0], ip[0], &udp_offset[0]);
1358 is_tcp_udp[1] =
1359 ip6_next_proto_is_tcp_udp (b[1], ip[1], &udp_offset[1]);
1360 i16 len_diff[2] = { 0 };
1361 if (PREDICT_TRUE (is_tcp_udp[0]))
Shwethab78292e2016-09-13 11:51:00 +01001362 {
Benoît Ganne26a10192019-02-14 15:32:45 +01001363 udp_header_t *udp =
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001364 (udp_header_t *) ((u8 *) ip[0] + udp_offset[0]);
1365 good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UDP
Benoît Ganne26a10192019-02-14 15:32:45 +01001366 && udp->checksum == 0;
1367 /* optimistically verify UDP length. */
1368 u16 ip_len, udp_len;
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001369 ip_len = clib_net_to_host_u16 (ip[0]->payload_length);
Benoît Ganne26a10192019-02-14 15:32:45 +01001370 udp_len = clib_net_to_host_u16 (udp->length);
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001371 len_diff[0] = ip_len - udp_len;
Shwethab78292e2016-09-13 11:51:00 +01001372 }
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001373 if (PREDICT_TRUE (is_tcp_udp[1]))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001375 udp_header_t *udp =
1376 (udp_header_t *) ((u8 *) ip[1] + udp_offset[1]);
1377 good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UDP
1378 && udp->checksum == 0;
1379 /* optimistically verify UDP length. */
1380 u16 ip_len, udp_len;
1381 ip_len = clib_net_to_host_u16 (ip[1]->payload_length);
1382 udp_len = clib_net_to_host_u16 (udp->length);
1383 len_diff[1] = ip_len - udp_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 }
1385
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001386 good_l4_csum[0] |= type[0] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1387 good_l4_csum[1] |= type[1] == IP_BUILTIN_PROTOCOL_UNKNOWN;
1388
1389 len_diff[0] = type[0] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[0] : 0;
1390 len_diff[1] = type[1] == IP_BUILTIN_PROTOCOL_UDP ? len_diff[1] : 0;
1391
1392 u8 need_csum[2];
1393 need_csum[0] = type[0] != IP_BUILTIN_PROTOCOL_UNKNOWN
1394 && !good_l4_csum[0]
1395 && !(flags[0] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1396 need_csum[1] = type[1] != IP_BUILTIN_PROTOCOL_UNKNOWN
1397 && !good_l4_csum[1]
1398 && !(flags[1] & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
1399 if (PREDICT_FALSE (need_csum[0]))
1400 {
1401 flags[0] = ip6_tcp_udp_icmp_validate_checksum (vm, b[0]);
1402 good_l4_csum[0] = flags[0] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
johny17478e42019-10-11 18:28:51 +02001403 error[0] = IP6_ERROR_UNKNOWN_PROTOCOL;
1404 }
1405 else
1406 {
1407 if (ip6_tcp_udp_icmp_bad_length (vm, b[0]))
1408 error[0] = IP6_ERROR_BAD_LENGTH;
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001409 }
1410 if (PREDICT_FALSE (need_csum[1]))
1411 {
1412 flags[1] = ip6_tcp_udp_icmp_validate_checksum (vm, b[1]);
1413 good_l4_csum[1] = flags[1] & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
johny17478e42019-10-11 18:28:51 +02001414 error[1] = IP6_ERROR_UNKNOWN_PROTOCOL;
1415 }
1416 else
1417 {
1418 if (ip6_tcp_udp_icmp_bad_length (vm, b[1]))
1419 error[1] = IP6_ERROR_BAD_LENGTH;
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001420 }
1421
johny17478e42019-10-11 18:28:51 +02001422
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001423 error[0] = len_diff[0] < 0 ? IP6_ERROR_UDP_LENGTH : error[0];
johny17478e42019-10-11 18:28:51 +02001424
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001425 error[1] = len_diff[1] < 0 ? IP6_ERROR_UDP_LENGTH : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426
Benoît Ganne26a10192019-02-14 15:32:45 +01001427 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1428 IP6_ERROR_UDP_CHECKSUM,
1429 "Wrong IP6 errors constants");
1430 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1431 IP6_ERROR_ICMP_CHECKSUM,
1432 "Wrong IP6 errors constants");
1433
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001434 error[0] =
1435 !good_l4_csum[0] ? IP6_ERROR_UDP_CHECKSUM + type[0] : error[0];
1436 error[1] =
1437 !good_l4_csum[1] ? IP6_ERROR_UDP_CHECKSUM + type[1] : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438
1439 /* Drop packets from unroutable hosts. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001440 /* If this is a neighbor solicitation (ICMP), skip source RPF check */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001441 u8 unroutable[2];
1442 unroutable[0] = error[0] == IP6_ERROR_UNKNOWN_PROTOCOL
1443 && type[0] != IP_BUILTIN_PROTOCOL_ICMP
1444 && !ip6_address_is_link_local_unicast (&ip[0]->src_address);
1445 unroutable[1] = error[1] == IP6_ERROR_UNKNOWN_PROTOCOL
1446 && type[1] != IP_BUILTIN_PROTOCOL_ICMP
1447 && !ip6_address_is_link_local_unicast (&ip[1]->src_address);
1448 if (PREDICT_FALSE (unroutable[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001450 error[0] =
1451 !ip6_urpf_loose_check (im, b[0],
1452 ip[0]) ? IP6_ERROR_SRC_LOOKUP_MISS
1453 : error[0];
1454 }
1455 if (PREDICT_FALSE (unroutable[1]))
1456 {
1457 error[1] =
1458 !ip6_urpf_loose_check (im, b[1],
1459 ip[1]) ? IP6_ERROR_SRC_LOOKUP_MISS
1460 : error[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001461 }
1462
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001463 vnet_buffer (b[0])->ip.fib_index =
1464 vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1465 vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1466 vnet_buffer (b[0])->ip.fib_index;
1467 vnet_buffer (b[1])->ip.fib_index =
1468 vnet_buffer (b[1])->sw_if_index[VLIB_TX] != ~0 ?
1469 vnet_buffer (b[1])->sw_if_index[VLIB_TX] :
1470 vnet_buffer (b[1])->ip.fib_index;
Benoît Ganne26a10192019-02-14 15:32:45 +01001471 } /* head_of_feature_arc */
Florin Corascea194d2017-10-02 00:18:51 -07001472
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001473 next[0] = lm->local_next_by_ip_protocol[ip[0]->protocol];
1474 next[0] =
1475 error[0] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1476 next[1] = lm->local_next_by_ip_protocol[ip[1]->protocol];
1477 next[1] =
1478 error[1] != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[1];
Florin Corascea194d2017-10-02 00:18:51 -07001479
Benoît Gannec15539a2021-01-19 16:40:07 +01001480 b[0]->error = error_node->errors[error[0]];
1481 b[1]->error = error_node->errors[error[1]];
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001482
Benoît Ganne26a10192019-02-14 15:32:45 +01001483 if (head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001484 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001485 u8 ip6_unknown[2];
1486 ip6_unknown[0] = error[0] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1487 ip6_unknown[1] = error[1] == (u8) IP6_ERROR_UNKNOWN_PROTOCOL;
1488 if (PREDICT_TRUE (ip6_unknown[0]))
Shwethab78292e2016-09-13 11:51:00 +01001489 {
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001490 u32 next32 = next[0];
Benoît Ganne26a10192019-02-14 15:32:45 +01001491 vnet_feature_arc_start (arc_index,
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001492 vnet_buffer (b[0])->sw_if_index
1493 [VLIB_RX], &next32, b[0]);
1494 next[0] = next32;
1495 }
1496 if (PREDICT_TRUE (ip6_unknown[1]))
1497 {
1498 u32 next32 = next[1];
1499 vnet_feature_arc_start (arc_index,
1500 vnet_buffer (b[1])->sw_if_index
1501 [VLIB_RX], &next32, b[1]);
1502 next[1] = next32;
Shwethab78292e2016-09-13 11:51:00 +01001503 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504 }
Dave Barach75fc8542016-10-11 16:16:02 -04001505
Benoît Ganne26a10192019-02-14 15:32:45 +01001506 /* next */
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001507 b += 2;
1508 next += 2;
1509 n_left_from -= 2;
Benoît Ganne26a10192019-02-14 15:32:45 +01001510 }
Benoît Ganne7dcb80a2019-02-14 15:32:45 +01001511
Benoît Ganne26a10192019-02-14 15:32:45 +01001512 while (n_left_from)
1513 {
1514 u8 error;
1515 error = IP6_ERROR_UNKNOWN_PROTOCOL;
1516
1517 ip6_header_t *ip;
1518 ip = vlib_buffer_get_current (b[0]);
1519
1520 if (head_of_feature_arc)
1521 {
1522 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1523 u8 type = lm->builtin_protocol_by_ip_protocol[ip->protocol];
1524
1525 u32 flags = b[0]->flags;
Benoît Ganne26a10192019-02-14 15:32:45 +01001526
Mohsin Kazmi68095382021-02-10 11:26:24 +01001527 u32 oflags = vnet_buffer2 (b[0])->oflags;
1528
1529 u32 l4_offload = (flags & VNET_BUFFER_F_OFFLOAD) &&
1530 (oflags & (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
1531 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM));
1532
1533 u32 good_l4_csum =
1534 (flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) | l4_offload;
Benoît Ganne26a10192019-02-14 15:32:45 +01001535 u32 udp_offset;
1536 i16 len_diff = 0;
1537 u8 is_tcp_udp = ip6_next_proto_is_tcp_udp (b[0], ip, &udp_offset);
1538 if (PREDICT_TRUE (is_tcp_udp))
1539 {
1540 udp_header_t *udp = (udp_header_t *) ((u8 *) ip + udp_offset);
1541 /* Don't verify UDP checksum for packets with explicit zero checksum. */
1542 good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UDP
1543 && udp->checksum == 0;
1544 /* optimistically verify UDP length. */
1545 u16 ip_len, udp_len;
1546 ip_len = clib_net_to_host_u16 (ip->payload_length);
1547 udp_len = clib_net_to_host_u16 (udp->length);
1548 len_diff = ip_len - udp_len;
1549 }
1550
1551 good_l4_csum |= type == IP_BUILTIN_PROTOCOL_UNKNOWN;
1552 len_diff = type == IP_BUILTIN_PROTOCOL_UDP ? len_diff : 0;
1553
Mohsin Kazmi68095382021-02-10 11:26:24 +01001554 u8 need_csum = type != IP_BUILTIN_PROTOCOL_UNKNOWN &&
1555 !good_l4_csum &&
1556 !(flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
Benoît Ganne26a10192019-02-14 15:32:45 +01001557 if (PREDICT_FALSE (need_csum))
1558 {
1559 flags = ip6_tcp_udp_icmp_validate_checksum (vm, b[0]);
1560 good_l4_csum = flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
johny17478e42019-10-11 18:28:51 +02001561 error = IP6_ERROR_UNKNOWN_PROTOCOL;
1562 }
1563 else
1564 {
1565 if (ip6_tcp_udp_icmp_bad_length (vm, b[0]))
1566 error = IP6_ERROR_BAD_LENGTH;
Benoît Ganne26a10192019-02-14 15:32:45 +01001567 }
1568
johny17478e42019-10-11 18:28:51 +02001569
1570
Benoît Ganne26a10192019-02-14 15:32:45 +01001571 error = len_diff < 0 ? IP6_ERROR_UDP_LENGTH : error;
Benoît Ganne26a10192019-02-14 15:32:45 +01001572 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1573 IP6_ERROR_UDP_CHECKSUM,
1574 "Wrong IP6 errors constants");
1575 STATIC_ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1576 IP6_ERROR_ICMP_CHECKSUM,
1577 "Wrong IP6 errors constants");
1578
1579 error = !good_l4_csum ? IP6_ERROR_UDP_CHECKSUM + type : error;
1580
1581 /* Drop packets from unroutable hosts. */
1582 /* If this is a neighbor solicitation (ICMP), skip source RPF check */
1583 u8 unroutable = error == IP6_ERROR_UNKNOWN_PROTOCOL
1584 && type != IP_BUILTIN_PROTOCOL_ICMP
1585 && !ip6_address_is_link_local_unicast (&ip->src_address);
1586 if (PREDICT_FALSE (unroutable))
1587 {
1588 error =
1589 !ip6_urpf_loose_check (im, b[0],
1590 ip) ? IP6_ERROR_SRC_LOOKUP_MISS :
1591 error;
1592 }
1593
1594 vnet_buffer (b[0])->ip.fib_index =
1595 vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1596 vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1597 vnet_buffer (b[0])->ip.fib_index;
1598 } /* head_of_feature_arc */
1599
1600 next[0] = lm->local_next_by_ip_protocol[ip->protocol];
1601 next[0] =
1602 error != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next[0];
1603
Benoît Gannec15539a2021-01-19 16:40:07 +01001604 b[0]->error = error_node->errors[error];
Benoît Ganne26a10192019-02-14 15:32:45 +01001605
1606 if (head_of_feature_arc)
1607 {
1608 if (PREDICT_TRUE (error == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1609 {
1610 u32 next32 = next[0];
1611 vnet_feature_arc_start (arc_index,
1612 vnet_buffer (b[0])->sw_if_index
1613 [VLIB_RX], &next32, b[0]);
1614 next[0] = next32;
1615 }
1616 }
1617
1618 /* next */
1619 b += 1;
1620 next += 1;
1621 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001622 }
1623
Benoît Ganne26a10192019-02-14 15:32:45 +01001624 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625 return frame->n_vectors;
1626}
1627
Damjan Marion38173502019-02-13 19:30:09 +01001628VLIB_NODE_FN (ip6_local_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
1629 vlib_frame_t * frame)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001630{
1631 return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1632}
1633
Dave Barachd7cb1b52016-12-09 09:52:16 -05001634/* *INDENT-OFF* */
Damjan Marion38173502019-02-13 19:30:09 +01001635VLIB_REGISTER_NODE (ip6_local_node) =
Dave Barachd7cb1b52016-12-09 09:52:16 -05001636{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001637 .name = "ip6-local",
1638 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639 .format_trace = format_ip6_forward_next_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001640 .n_next_nodes = IP_LOCAL_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001641 .next_nodes =
1642 {
Neale Rannsd91c1db2017-07-31 02:30:50 -07001643 [IP_LOCAL_NEXT_DROP] = "ip6-drop",
1644 [IP_LOCAL_NEXT_PUNT] = "ip6-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001645 [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup",
1646 [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input",
Klement Sekera896c8962019-06-24 11:52:49 +00001647 [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-full-reassembly",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648 },
1649};
Dave Barachd7cb1b52016-12-09 09:52:16 -05001650/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
Damjan Marion38173502019-02-13 19:30:09 +01001652VLIB_NODE_FN (ip6_local_end_of_arc_node) (vlib_main_t * vm,
1653 vlib_node_runtime_t * node,
1654 vlib_frame_t * frame)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001655{
1656 return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1657}
1658
1659/* *INDENT-OFF* */
Damjan Marion38173502019-02-13 19:30:09 +01001660VLIB_REGISTER_NODE (ip6_local_end_of_arc_node) = {
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001661 .name = "ip6-local-end-of-arc",
1662 .vector_size = sizeof (u32),
1663
1664 .format_trace = format_ip6_forward_next_trace,
1665 .sibling_of = "ip6-local",
1666};
1667
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001668VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = {
1669 .arc_name = "ip6-local",
1670 .node_name = "ip6-local-end-of-arc",
1671 .runs_before = 0, /* not before any other features */
1672};
1673/* *INDENT-ON* */
1674
Damjan Marion38173502019-02-13 19:30:09 +01001675#ifdef CLIB_MARCH_VARIANT
1676extern vlib_node_registration_t ip6_local_node;
Damjan Marion38173502019-02-13 19:30:09 +01001677#else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001678void
1679ip6_register_protocol (u32 protocol, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001680{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001681 vlib_main_t *vm = vlib_get_main ();
1682 ip6_main_t *im = &ip6_main;
1683 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001684
1685 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001686 lm->local_next_by_ip_protocol[protocol] =
1687 vlib_node_add_next (vm, ip6_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001688}
1689
Neale Rannsb538dd82019-05-21 06:54:54 -07001690void
1691ip6_unregister_protocol (u32 protocol)
1692{
1693 ip6_main_t *im = &ip6_main;
1694 ip_lookup_main_t *lm = &im->lookup_main;
1695
1696 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
1697 lm->local_next_by_ip_protocol[protocol] = IP_LOCAL_NEXT_PUNT;
1698}
Damjan Marion38173502019-02-13 19:30:09 +01001699#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001700
Dave Barachd7cb1b52016-12-09 09:52:16 -05001701typedef enum
1702{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001703 IP6_REWRITE_NEXT_DROP,
Chris Luke816f3e12016-06-14 16:24:47 -04001704 IP6_REWRITE_NEXT_ICMP_ERROR,
Ole Troan313f7e22018-04-10 16:02:51 +02001705 IP6_REWRITE_NEXT_FRAGMENT,
1706 IP6_REWRITE_N_NEXT /* Last */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001707} ip6_rewrite_next_t;
1708
Neale Ranns889fe942017-06-01 05:43:19 -04001709/**
1710 * This bits of an IPv6 address to mask to construct a multicast
1711 * MAC address
1712 */
1713#define IP6_MCAST_ADDR_MASK 0xffffffff
1714
Ole Troanda6e11b2018-05-23 11:21:42 +02001715always_inline void
1716ip6_mtu_check (vlib_buffer_t * b, u16 packet_bytes,
Ole Troan313f7e22018-04-10 16:02:51 +02001717 u16 adj_packet_bytes, bool is_locally_generated,
Ole Troaneb284a12019-10-09 13:33:19 +02001718 u32 * next, u8 is_midchain, u32 * error)
Ole Troanda6e11b2018-05-23 11:21:42 +02001719{
1720 if (adj_packet_bytes >= 1280 && packet_bytes > adj_packet_bytes)
1721 {
Ole Troan313f7e22018-04-10 16:02:51 +02001722 if (is_locally_generated)
1723 {
1724 /* IP fragmentation */
Ole Troan282093f2018-09-19 12:38:51 +02001725 ip_frag_set_vnet_buffer (b, adj_packet_bytes,
Ole Troaneb284a12019-10-09 13:33:19 +02001726 (is_midchain ?
1727 IP_FRAG_NEXT_IP_REWRITE_MIDCHAIN :
1728 IP_FRAG_NEXT_IP_REWRITE), 0);
Ole Troan313f7e22018-04-10 16:02:51 +02001729 *next = IP6_REWRITE_NEXT_FRAGMENT;
Ole Troan282093f2018-09-19 12:38:51 +02001730 *error = IP6_ERROR_MTU_EXCEEDED;
Ole Troan313f7e22018-04-10 16:02:51 +02001731 }
1732 else
1733 {
1734 *error = IP6_ERROR_MTU_EXCEEDED;
1735 icmp6_error_set_vnet_buffer (b, ICMP6_packet_too_big, 0,
1736 adj_packet_bytes);
1737 *next = IP6_REWRITE_NEXT_ICMP_ERROR;
1738 }
Ole Troanda6e11b2018-05-23 11:21:42 +02001739 }
1740}
1741
Ed Warnickecb9cada2015-12-08 15:45:58 -07001742always_inline uword
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001743ip6_rewrite_inline_with_gso (vlib_main_t * vm,
1744 vlib_node_runtime_t * node,
1745 vlib_frame_t * frame,
Mohsin Kazmi3f5594d2019-12-03 18:56:26 +01001746 int do_counters, int is_midchain, int is_mcast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001748 ip_lookup_main_t *lm = &ip6_main.lookup_main;
1749 u32 *from = vlib_frame_vector_args (frame);
1750 u32 n_left_from, n_left_to_next, *to_next, next_index;
1751 vlib_node_runtime_t *error_node =
1752 vlib_node_get_runtime (vm, ip6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001753
1754 n_left_from = frame->n_vectors;
1755 next_index = node->cached_next_index;
Damjan Marion067cd622018-07-11 12:47:43 +02001756 u32 thread_index = vm->thread_index;
Dave Barach75fc8542016-10-11 16:16:02 -04001757
Ed Warnickecb9cada2015-12-08 15:45:58 -07001758 while (n_left_from > 0)
1759 {
1760 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1761
1762 while (n_left_from >= 4 && n_left_to_next >= 2)
1763 {
Neale Ranns960eeea2019-12-02 23:28:50 +00001764 const ip_adjacency_t *adj0, *adj1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001765 vlib_buffer_t *p0, *p1;
1766 ip6_header_t *ip0, *ip1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001767 u32 pi0, rw_len0, next0, error0, adj_index0;
1768 u32 pi1, rw_len1, next1, error1, adj_index1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001769 u32 tx_sw_if_index0, tx_sw_if_index1;
Ole Troan313f7e22018-04-10 16:02:51 +02001770 bool is_locally_originated0, is_locally_originated1;
Dave Barach75fc8542016-10-11 16:16:02 -04001771
Ed Warnickecb9cada2015-12-08 15:45:58 -07001772 /* Prefetch next iteration. */
1773 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001774 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001775
1776 p2 = vlib_get_buffer (vm, from[2]);
1777 p3 = vlib_get_buffer (vm, from[3]);
1778
1779 vlib_prefetch_buffer_header (p2, LOAD);
1780 vlib_prefetch_buffer_header (p3, LOAD);
1781
1782 CLIB_PREFETCH (p2->pre_data, 32, STORE);
1783 CLIB_PREFETCH (p3->pre_data, 32, STORE);
1784
1785 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
1786 CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
1787 }
1788
1789 pi0 = to_next[0] = from[0];
1790 pi1 = to_next[1] = from[1];
1791
1792 from += 2;
1793 n_left_from -= 2;
1794 to_next += 2;
1795 n_left_to_next -= 2;
Dave Barach75fc8542016-10-11 16:16:02 -04001796
Ed Warnickecb9cada2015-12-08 15:45:58 -07001797 p0 = vlib_get_buffer (vm, pi0);
1798 p1 = vlib_get_buffer (vm, pi1);
1799
Neale Rannsf06aea52016-11-29 06:51:37 -08001800 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1801 adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001802
Ed Warnickecb9cada2015-12-08 15:45:58 -07001803 ip0 = vlib_buffer_get_current (p0);
1804 ip1 = vlib_buffer_get_current (p1);
1805
1806 error0 = error1 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001807 next0 = next1 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001808
Ole Troan313f7e22018-04-10 16:02:51 +02001809 is_locally_originated0 =
1810 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1811 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001812 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001813 i32 hop_limit0 = ip0->hop_limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001814
1815 /* Input node should have reject packets with hop limit 0. */
1816 ASSERT (ip0->hop_limit > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001817
1818 hop_limit0 -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001819
1820 ip0->hop_limit = hop_limit0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001821
Dave Barachd7cb1b52016-12-09 09:52:16 -05001822 /*
1823 * If the hop count drops below 1 when forwarding, generate
1824 * an ICMP response.
1825 */
1826 if (PREDICT_FALSE (hop_limit0 <= 0))
1827 {
1828 error0 = IP6_ERROR_TIME_EXPIRED;
1829 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1830 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1831 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1832 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1833 0);
1834 }
Neale Rannsf06aea52016-11-29 06:51:37 -08001835 }
Neale Ranns88cecfa2020-04-08 08:28:06 -04001836
Ole Troan313f7e22018-04-10 16:02:51 +02001837 is_locally_originated1 =
1838 p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
1839 if (PREDICT_TRUE (!is_locally_originated1))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001840 {
Neale Rannsf06aea52016-11-29 06:51:37 -08001841 i32 hop_limit1 = ip1->hop_limit;
1842
1843 /* Input node should have reject packets with hop limit 0. */
1844 ASSERT (ip1->hop_limit > 0);
1845
1846 hop_limit1 -= 1;
1847
1848 ip1->hop_limit = hop_limit1;
1849
Dave Barachd7cb1b52016-12-09 09:52:16 -05001850 /*
1851 * If the hop count drops below 1 when forwarding, generate
1852 * an ICMP response.
1853 */
1854 if (PREDICT_FALSE (hop_limit1 <= 0))
1855 {
1856 error1 = IP6_ERROR_TIME_EXPIRED;
1857 next1 = IP6_REWRITE_NEXT_ICMP_ERROR;
1858 vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1859 icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
1860 ICMP6_time_exceeded_ttl_exceeded_in_transit,
1861 0);
1862 }
1863 }
Neale Ranns88cecfa2020-04-08 08:28:06 -04001864
Neale Ranns107e7d42017-04-11 09:55:19 -07001865 adj0 = adj_get (adj_index0);
1866 adj1 = adj_get (adj_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001867
Ed Warnickecb9cada2015-12-08 15:45:58 -07001868 rw_len0 = adj0[0].rewrite_header.data_bytes;
1869 rw_len1 = adj1[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001870 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
1871 vnet_buffer (p1)->ip.save_rewrite_length = rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001872
Neale Ranns9c6a6132017-02-21 05:33:14 -08001873 if (do_counters)
1874 {
1875 vlib_increment_combined_counter
1876 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001877 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001878 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1879 vlib_increment_combined_counter
1880 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02001881 thread_index, adj_index1, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08001882 vlib_buffer_length_in_chain (vm, p1) + rw_len1);
1883 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001884
1885 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001886 u16 ip0_len =
1887 clib_net_to_host_u16 (ip0->payload_length) +
1888 sizeof (ip6_header_t);
1889 u16 ip1_len =
1890 clib_net_to_host_u16 (ip1->payload_length) +
1891 sizeof (ip6_header_t);
Mohsin Kazmi3f5594d2019-12-03 18:56:26 +01001892 if (p0->flags & VNET_BUFFER_F_GSO)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001893 ip0_len = gso_mtu_sz (p0);
Mohsin Kazmi3f5594d2019-12-03 18:56:26 +01001894 if (p1->flags & VNET_BUFFER_F_GSO)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001895 ip1_len = gso_mtu_sz (p1);
1896
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001897 ip6_mtu_check (p0, ip0_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02001898 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troaneb284a12019-10-09 13:33:19 +02001899 is_locally_originated0, &next0, is_midchain,
1900 &error0);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001901 ip6_mtu_check (p1, ip1_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02001902 adj1[0].rewrite_header.max_l3_packet_bytes,
Ole Troaneb284a12019-10-09 13:33:19 +02001903 is_locally_originated1, &next1, is_midchain,
1904 &error1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001905 /* Don't adjust the buffer for hop count issue; icmp-error node
Jim Thompsonf324dec2019-04-08 03:22:21 -05001906 * wants to see the IP header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001907 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1908 {
1909 p0->current_data -= rw_len0;
1910 p0->current_length += rw_len0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001911 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
1912 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1913 next0 = adj0[0].rewrite_header.next_index;
Neale Rannsb069a692017-03-15 12:34:25 -04001914 if (PREDICT_FALSE
1915 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
Neale Ranns4ec36c52020-03-31 09:21:29 -04001916 vnet_feature_arc_start_w_cfg_index
1917 (lm->output_feature_arc_index, tx_sw_if_index0, &next0, p0,
1918 adj0->ia_cfg_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001919 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04001920 else
1921 {
1922 p0->error = error_node->errors[error0];
1923 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001924 if (PREDICT_TRUE (error1 == IP6_ERROR_NONE))
1925 {
1926 p1->current_data -= rw_len1;
1927 p1->current_length += rw_len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001928
Dave Barachd7cb1b52016-12-09 09:52:16 -05001929 tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
1930 vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1;
1931 next1 = adj1[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04001932
Neale Rannsb069a692017-03-15 12:34:25 -04001933 if (PREDICT_FALSE
1934 (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
Neale Ranns4ec36c52020-03-31 09:21:29 -04001935 vnet_feature_arc_start_w_cfg_index
1936 (lm->output_feature_arc_index, tx_sw_if_index1, &next1, p1,
1937 adj1->ia_cfg_index);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001938 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04001939 else
1940 {
1941 p1->error = error_node->errors[error1];
1942 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001943
Neale Ranns25edf142019-03-22 08:12:48 +00001944 if (is_midchain)
1945 {
1946 /* before we paint on the next header, update the L4
1947 * checksums if required, since there's no offload on a tunnel */
Dave Barach1bd2c012020-04-12 08:31:39 -04001948 vnet_calc_checksums_inline (vm, p0, 0 /* is_ip4 */ ,
Vladimir Isaev698eb872020-05-21 16:34:17 +03001949 1 /* is_ip6 */ );
Dave Barach1bd2c012020-04-12 08:31:39 -04001950 vnet_calc_checksums_inline (vm, p1, 0 /* is_ip4 */ ,
Vladimir Isaev698eb872020-05-21 16:34:17 +03001951 1 /* is_ip6 */ );
Neale Ranns25edf142019-03-22 08:12:48 +00001952
Neale Ranns4ec36c52020-03-31 09:21:29 -04001953 /* Guess we are only writing on ipv6 header. */
1954 vnet_rewrite_two_headers (adj0[0], adj1[0],
1955 ip0, ip1, sizeof (ip6_header_t));
1956 }
1957 else
1958 /* Guess we are only writing on simple Ethernet header. */
1959 vnet_rewrite_two_headers (adj0[0], adj1[0],
1960 ip0, ip1, sizeof (ethernet_header_t));
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001961
1962 if (is_midchain)
1963 {
Neale Ranns25edf142019-03-22 08:12:48 +00001964 if (adj0->sub_type.midchain.fixup_func)
1965 adj0->sub_type.midchain.fixup_func
1966 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1967 if (adj1->sub_type.midchain.fixup_func)
1968 adj1->sub_type.midchain.fixup_func
1969 (vm, adj1, p1, adj1->sub_type.midchain.fixup_data);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001970 }
1971 if (is_mcast)
1972 {
1973 /*
1974 * copy bytes from the IP address into the MAC rewrite
1975 */
Neale Ranns889fe942017-06-01 05:43:19 -04001976 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1977 adj0->
1978 rewrite_header.dst_mcast_offset,
1979 &ip0->dst_address.as_u32[3],
1980 (u8 *) ip0);
1981 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
1982 adj1->
1983 rewrite_header.dst_mcast_offset,
1984 &ip1->dst_address.as_u32[3],
1985 (u8 *) ip1);
Neale Ranns32e1c012016-11-22 17:07:28 +00001986 }
Neale Ranns5e575b12016-10-03 09:40:25 +01001987
Ed Warnickecb9cada2015-12-08 15:45:58 -07001988 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1989 to_next, n_left_to_next,
1990 pi0, pi1, next0, next1);
1991 }
1992
1993 while (n_left_from > 0 && n_left_to_next > 0)
1994 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001995 ip_adjacency_t *adj0;
1996 vlib_buffer_t *p0;
1997 ip6_header_t *ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998 u32 pi0, rw_len0;
1999 u32 adj_index0, next0, error0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002000 u32 tx_sw_if_index0;
Ole Troan313f7e22018-04-10 16:02:51 +02002001 bool is_locally_originated0;
Dave Barach75fc8542016-10-11 16:16:02 -04002002
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003 pi0 = to_next[0] = from[0];
2004
2005 p0 = vlib_get_buffer (vm, pi0);
2006
Neale Rannsf06aea52016-11-29 06:51:37 -08002007 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002008
Neale Ranns107e7d42017-04-11 09:55:19 -07002009 adj0 = adj_get (adj_index0);
Dave Barach75fc8542016-10-11 16:16:02 -04002010
Ed Warnickecb9cada2015-12-08 15:45:58 -07002011 ip0 = vlib_buffer_get_current (p0);
2012
2013 error0 = IP6_ERROR_NONE;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002014 next0 = IP6_REWRITE_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002015
2016 /* Check hop limit */
Ole Troan313f7e22018-04-10 16:02:51 +02002017 is_locally_originated0 =
2018 p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED;
2019 if (PREDICT_TRUE (!is_locally_originated0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002020 {
2021 i32 hop_limit0 = ip0->hop_limit;
2022
2023 ASSERT (ip0->hop_limit > 0);
2024
2025 hop_limit0 -= 1;
2026
2027 ip0->hop_limit = hop_limit0;
2028
Dave Barachd7cb1b52016-12-09 09:52:16 -05002029 if (PREDICT_FALSE (hop_limit0 <= 0))
2030 {
2031 /*
2032 * If the hop count drops below 1 when forwarding, generate
2033 * an ICMP response.
2034 */
2035 error0 = IP6_ERROR_TIME_EXPIRED;
2036 next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
2037 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
2038 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
2039 ICMP6_time_exceeded_ttl_exceeded_in_transit,
2040 0);
2041 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002042 }
2043
Neale Ranns25edf142019-03-22 08:12:48 +00002044 if (is_midchain)
2045 {
Dave Barach1bd2c012020-04-12 08:31:39 -04002046 vnet_calc_checksums_inline (vm, p0, 0 /* is_ip4 */ ,
Vladimir Isaev698eb872020-05-21 16:34:17 +03002047 1 /* is_ip6 */ );
Neale Ranns25edf142019-03-22 08:12:48 +00002048
Neale Ranns4ec36c52020-03-31 09:21:29 -04002049 /* Guess we are only writing on ip6 header. */
2050 vnet_rewrite_one_header (adj0[0], ip0, sizeof (ip6_header_t));
2051 }
2052 else
2053 /* Guess we are only writing on simple Ethernet header. */
2054 vnet_rewrite_one_header (adj0[0], ip0,
2055 sizeof (ethernet_header_t));
Dave Barach75fc8542016-10-11 16:16:02 -04002056
Ed Warnickecb9cada2015-12-08 15:45:58 -07002057 /* Update packet buffer attributes/set output interface. */
2058 rw_len0 = adj0[0].rewrite_header.data_bytes;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002059 vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002060
Neale Ranns9c6a6132017-02-21 05:33:14 -08002061 if (do_counters)
2062 {
2063 vlib_increment_combined_counter
2064 (&adjacency_counters,
Damjan Marion586afd72017-04-05 19:18:20 +02002065 thread_index, adj_index0, 1,
Neale Ranns9c6a6132017-02-21 05:33:14 -08002066 vlib_buffer_length_in_chain (vm, p0) + rw_len0);
2067 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002068
2069 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002070 u16 ip0_len =
2071 clib_net_to_host_u16 (ip0->payload_length) +
2072 sizeof (ip6_header_t);
Mohsin Kazmi3f5594d2019-12-03 18:56:26 +01002073 if (p0->flags & VNET_BUFFER_F_GSO)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002074 ip0_len = gso_mtu_sz (p0);
2075
2076 ip6_mtu_check (p0, ip0_len,
Ole Troanda6e11b2018-05-23 11:21:42 +02002077 adj0[0].rewrite_header.max_l3_packet_bytes,
Ole Troaneb284a12019-10-09 13:33:19 +02002078 is_locally_originated0, &next0, is_midchain,
2079 &error0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002080 /* Don't adjust the buffer for hop count issue; icmp-error node
Ole Troanda6e11b2018-05-23 11:21:42 +02002081 * wants to see the IP header */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002082 if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
2083 {
Chris Luke816f3e12016-06-14 16:24:47 -04002084 p0->current_data -= rw_len0;
2085 p0->current_length += rw_len0;
2086
Dave Barachd7cb1b52016-12-09 09:52:16 -05002087 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
Dave Barach5331c722016-08-17 11:54:30 -04002088
Dave Barachd7cb1b52016-12-09 09:52:16 -05002089 vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
2090 next0 = adj0[0].rewrite_header.next_index;
Dave Barach5331c722016-08-17 11:54:30 -04002091
Neale Rannsb069a692017-03-15 12:34:25 -04002092 if (PREDICT_FALSE
2093 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
Neale Ranns4ec36c52020-03-31 09:21:29 -04002094 vnet_feature_arc_start_w_cfg_index
2095 (lm->output_feature_arc_index, tx_sw_if_index0, &next0, p0,
2096 adj0->ia_cfg_index);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02002097 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04002098 else
2099 {
2100 p0->error = error_node->errors[error0];
2101 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002102
Damjan Marionfe7d4a22018-04-13 19:43:39 +02002103 if (is_midchain)
2104 {
Neale Ranns25edf142019-03-22 08:12:48 +00002105 if (adj0->sub_type.midchain.fixup_func)
2106 adj0->sub_type.midchain.fixup_func
2107 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
Damjan Marionfe7d4a22018-04-13 19:43:39 +02002108 }
2109 if (is_mcast)
2110 {
Neale Ranns889fe942017-06-01 05:43:19 -04002111 vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK,
2112 adj0->
2113 rewrite_header.dst_mcast_offset,
2114 &ip0->dst_address.as_u32[3],
2115 (u8 *) ip0);
Neale Ranns32e1c012016-11-22 17:07:28 +00002116 }
Neale Ranns5e575b12016-10-03 09:40:25 +01002117
Ed Warnickecb9cada2015-12-08 15:45:58 -07002118 from += 1;
2119 n_left_from -= 1;
2120 to_next += 1;
2121 n_left_to_next -= 1;
Dave Barach75fc8542016-10-11 16:16:02 -04002122
Ed Warnickecb9cada2015-12-08 15:45:58 -07002123 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2124 to_next, n_left_to_next,
2125 pi0, next0);
2126 }
2127
2128 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2129 }
2130
2131 /* Need to do trace after rewrites to pick up new packet data. */
2132 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Rannsf06aea52016-11-29 06:51:37 -08002133 ip6_forward_next_trace (vm, node, frame, VLIB_TX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002134
2135 return frame->n_vectors;
2136}
2137
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002138always_inline uword
2139ip6_rewrite_inline (vlib_main_t * vm,
2140 vlib_node_runtime_t * node,
2141 vlib_frame_t * frame,
2142 int do_counters, int is_midchain, int is_mcast)
2143{
Mohsin Kazmi3f5594d2019-12-03 18:56:26 +01002144 return ip6_rewrite_inline_with_gso (vm, node, frame, do_counters,
2145 is_midchain, is_mcast);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002146}
2147
Damjan Marion38173502019-02-13 19:30:09 +01002148VLIB_NODE_FN (ip6_rewrite_node) (vlib_main_t * vm,
2149 vlib_node_runtime_t * node,
2150 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002151{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002152 if (adj_are_counters_enabled ())
2153 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2154 else
2155 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
Neale Ranns32e1c012016-11-22 17:07:28 +00002156}
2157
Damjan Marion38173502019-02-13 19:30:09 +01002158VLIB_NODE_FN (ip6_rewrite_bcast_node) (vlib_main_t * vm,
2159 vlib_node_runtime_t * node,
2160 vlib_frame_t * frame)
Neale Ranns1855b8e2018-07-11 10:31:26 -07002161{
2162 if (adj_are_counters_enabled ())
2163 return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2164 else
2165 return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
2166}
2167
Damjan Marion38173502019-02-13 19:30:09 +01002168VLIB_NODE_FN (ip6_rewrite_mcast_node) (vlib_main_t * vm,
2169 vlib_node_runtime_t * node,
2170 vlib_frame_t * frame)
Neale Ranns32e1c012016-11-22 17:07:28 +00002171{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002172 if (adj_are_counters_enabled ())
2173 return ip6_rewrite_inline (vm, node, frame, 1, 0, 1);
2174 else
2175 return ip6_rewrite_inline (vm, node, frame, 0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002176}
2177
Damjan Marion38173502019-02-13 19:30:09 +01002178VLIB_NODE_FN (ip6_midchain_node) (vlib_main_t * vm,
2179 vlib_node_runtime_t * node,
2180 vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002181{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002182 if (adj_are_counters_enabled ())
2183 return ip6_rewrite_inline (vm, node, frame, 1, 1, 0);
2184 else
2185 return ip6_rewrite_inline (vm, node, frame, 0, 1, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002186}
2187
Damjan Marion38173502019-02-13 19:30:09 +01002188VLIB_NODE_FN (ip6_mcast_midchain_node) (vlib_main_t * vm,
2189 vlib_node_runtime_t * node,
2190 vlib_frame_t * frame)
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002191{
2192 if (adj_are_counters_enabled ())
2193 return ip6_rewrite_inline (vm, node, frame, 1, 1, 1);
2194 else
Neale Ranns9f171f52017-04-11 08:56:53 -07002195 return ip6_rewrite_inline (vm, node, frame, 0, 1, 1);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002196}
2197
Dave Barachd7cb1b52016-12-09 09:52:16 -05002198/* *INDENT-OFF* */
2199VLIB_REGISTER_NODE (ip6_midchain_node) =
2200{
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002201 .name = "ip6-midchain",
2202 .vector_size = sizeof (u32),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002203 .format_trace = format_ip6_forward_next_trace,
Neale Ranns5e575b12016-10-03 09:40:25 +01002204 .sibling_of = "ip6-rewrite",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002205 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002206
Dave Barachd7cb1b52016-12-09 09:52:16 -05002207VLIB_REGISTER_NODE (ip6_rewrite_node) =
2208{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002209 .name = "ip6-rewrite",
2210 .vector_size = sizeof (u32),
Pierre Pfistera38c3df2016-06-13 10:28:09 +01002211 .format_trace = format_ip6_rewrite_trace,
Ole Troan313f7e22018-04-10 16:02:51 +02002212 .n_next_nodes = IP6_REWRITE_N_NEXT,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002213 .next_nodes =
2214 {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002215 [IP6_REWRITE_NEXT_DROP] = "ip6-drop",
Chris Luke816f3e12016-06-14 16:24:47 -04002216 [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error",
Ole Troan313f7e22018-04-10 16:02:51 +02002217 [IP6_REWRITE_NEXT_FRAGMENT] = "ip6-frag",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002218 },
2219};
2220
Neale Ranns1855b8e2018-07-11 10:31:26 -07002221VLIB_REGISTER_NODE (ip6_rewrite_bcast_node) = {
Neale Ranns1855b8e2018-07-11 10:31:26 -07002222 .name = "ip6-rewrite-bcast",
2223 .vector_size = sizeof (u32),
2224
2225 .format_trace = format_ip6_rewrite_trace,
2226 .sibling_of = "ip6-rewrite",
2227};
Neale Ranns1855b8e2018-07-11 10:31:26 -07002228
Neale Ranns32e1c012016-11-22 17:07:28 +00002229VLIB_REGISTER_NODE (ip6_rewrite_mcast_node) =
2230{
Neale Ranns32e1c012016-11-22 17:07:28 +00002231 .name = "ip6-rewrite-mcast",
2232 .vector_size = sizeof (u32),
2233 .format_trace = format_ip6_rewrite_trace,
2234 .sibling_of = "ip6-rewrite",
2235};
Neale Ranns32e1c012016-11-22 17:07:28 +00002236
Neale Ranns32e1c012016-11-22 17:07:28 +00002237
Damjan Marion38173502019-02-13 19:30:09 +01002238VLIB_REGISTER_NODE (ip6_mcast_midchain_node) =
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002239{
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002240 .name = "ip6-mcast-midchain",
2241 .vector_size = sizeof (u32),
2242 .format_trace = format_ip6_rewrite_trace,
2243 .sibling_of = "ip6-rewrite",
2244};
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002245
Neale Ranns1855b8e2018-07-11 10:31:26 -07002246/* *INDENT-ON* */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002247
Ole Troan944f5482016-05-24 11:56:58 +02002248/*
2249 * Hop-by-Hop handling
2250 */
Benoît Ganne47727c02019-02-12 13:35:08 +01002251#ifndef CLIB_MARCH_VARIANT
Ole Troan944f5482016-05-24 11:56:58 +02002252ip6_hop_by_hop_main_t ip6_hop_by_hop_main;
Benoît Ganne47727c02019-02-12 13:35:08 +01002253#endif /* CLIB_MARCH_VARIANT */
Ole Troan944f5482016-05-24 11:56:58 +02002254
2255#define foreach_ip6_hop_by_hop_error \
2256_(PROCESSED, "pkts with ip6 hop-by-hop options") \
2257_(FORMAT, "incorrectly formatted hop-by-hop options") \
2258_(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options")
2259
Neale Ranns32e1c012016-11-22 17:07:28 +00002260/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002261typedef enum
2262{
Ole Troan944f5482016-05-24 11:56:58 +02002263#define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym,
2264 foreach_ip6_hop_by_hop_error
2265#undef _
Neale Ranns32e1c012016-11-22 17:07:28 +00002266 IP6_HOP_BY_HOP_N_ERROR,
Ole Troan944f5482016-05-24 11:56:58 +02002267} ip6_hop_by_hop_error_t;
Neale Ranns32e1c012016-11-22 17:07:28 +00002268/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002269
2270/*
2271 * Primary h-b-h handler trace support
2272 * We work pretty hard on the problem for obvious reasons
2273 */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002274typedef struct
2275{
Ole Troan944f5482016-05-24 11:56:58 +02002276 u32 next_index;
2277 u32 trace_len;
2278 u8 option_data[256];
2279} ip6_hop_by_hop_trace_t;
2280
Benoît Ganne47727c02019-02-12 13:35:08 +01002281extern vlib_node_registration_t ip6_hop_by_hop_node;
Ole Troan944f5482016-05-24 11:56:58 +02002282
Dave Barachd7cb1b52016-12-09 09:52:16 -05002283static char *ip6_hop_by_hop_error_strings[] = {
Ole Troan944f5482016-05-24 11:56:58 +02002284#define _(sym,string) string,
2285 foreach_ip6_hop_by_hop_error
2286#undef _
2287};
2288
Damjan Marion38173502019-02-13 19:30:09 +01002289#ifndef CLIB_MARCH_VARIANT
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302290u8 *
2291format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args)
2292{
2293 ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *);
2294 int total_len = va_arg (*args, int);
2295 ip6_hop_by_hop_option_t *opt0, *limit0;
2296 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2297 u8 type0;
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302298 s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d",
2299 hbh0->protocol, (hbh0->length + 1) << 3, total_len);
2300
2301 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2302 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len);
2303
2304 while (opt0 < limit0)
2305 {
2306 type0 = opt0->type;
2307 switch (type0)
2308 {
2309 case 0: /* Pad, just stop */
2310 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1);
2311 break;
2312
2313 default:
2314 if (hm->trace[type0])
2315 {
2316 s = (*hm->trace[type0]) (s, opt0);
2317 }
2318 else
2319 {
Mohsin Kazmi68095382021-02-10 11:26:24 +01002320 s = format (s, "\n unrecognized option %d length %d", type0,
2321 opt0->length);
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302322 }
2323 opt0 =
2324 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2325 sizeof (ip6_hop_by_hop_option_t));
2326 break;
2327 }
2328 }
2329 return s;
2330}
Damjan Marion38173502019-02-13 19:30:09 +01002331#endif
Shwetha Bhandari78372a92017-01-18 12:43:54 +05302332
Ole Troan944f5482016-05-24 11:56:58 +02002333static u8 *
2334format_ip6_hop_by_hop_trace (u8 * s, va_list * args)
2335{
2336 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2337 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002338 ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *);
Ole Troan944f5482016-05-24 11:56:58 +02002339 ip6_hop_by_hop_header_t *hbh0;
2340 ip6_hop_by_hop_option_t *opt0, *limit0;
2341 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2342
2343 u8 type0;
2344
Dave Barachd7cb1b52016-12-09 09:52:16 -05002345 hbh0 = (ip6_hop_by_hop_header_t *) t->option_data;
Ole Troan944f5482016-05-24 11:56:58 +02002346
2347 s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002348 t->next_index, (hbh0->length + 1) << 3, t->trace_len);
Ole Troan944f5482016-05-24 11:56:58 +02002349
Dave Barachd7cb1b52016-12-09 09:52:16 -05002350 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2351 limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len;
Ole Troan944f5482016-05-24 11:56:58 +02002352
Dave Barachd7cb1b52016-12-09 09:52:16 -05002353 while (opt0 < limit0)
2354 {
2355 type0 = opt0->type;
2356 switch (type0)
2357 {
2358 case 0: /* Pad, just stop */
2359 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2360 break;
Ole Troan944f5482016-05-24 11:56:58 +02002361
Dave Barachd7cb1b52016-12-09 09:52:16 -05002362 default:
2363 if (hm->trace[type0])
2364 {
2365 s = (*hm->trace[type0]) (s, opt0);
2366 }
2367 else
2368 {
Mohsin Kazmi68095382021-02-10 11:26:24 +01002369 s = format (s, "\n unrecognized option %d length %d", type0,
2370 opt0->length);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002371 }
2372 opt0 =
2373 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2374 sizeof (ip6_hop_by_hop_option_t));
2375 break;
2376 }
Ole Troan944f5482016-05-24 11:56:58 +02002377 }
Ole Troan944f5482016-05-24 11:56:58 +02002378 return s;
2379}
2380
Dave Barachd7cb1b52016-12-09 09:52:16 -05002381always_inline u8
2382ip6_scan_hbh_options (vlib_buffer_t * b0,
2383 ip6_header_t * ip0,
2384 ip6_hop_by_hop_header_t * hbh0,
2385 ip6_hop_by_hop_option_t * opt0,
2386 ip6_hop_by_hop_option_t * limit0, u32 * next0)
Shwethaa91cbe62016-08-08 15:51:04 +01002387{
2388 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2389 u8 type0;
2390 u8 error0 = 0;
2391
2392 while (opt0 < limit0)
2393 {
2394 type0 = opt0->type;
2395 switch (type0)
2396 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002397 case 0: /* Pad1 */
2398 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
Shwethaa91cbe62016-08-08 15:51:04 +01002399 continue;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002400 case 1: /* PadN */
Shwethaa91cbe62016-08-08 15:51:04 +01002401 break;
2402 default:
2403 if (hm->options[type0])
2404 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002405 if ((*hm->options[type0]) (b0, ip0, opt0) < 0)
2406 {
Shwethaa91cbe62016-08-08 15:51:04 +01002407 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002408 return (error0);
2409 }
Shwethaa91cbe62016-08-08 15:51:04 +01002410 }
2411 else
2412 {
2413 /* Unrecognized mandatory option, check the two high order bits */
2414 switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS)
2415 {
2416 case HBH_OPTION_TYPE_SKIP_UNKNOWN:
2417 break;
2418 case HBH_OPTION_TYPE_DISCARD_UNKNOWN:
2419 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2420 *next0 = IP_LOOKUP_NEXT_DROP;
2421 break;
2422 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP:
2423 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2424 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002425 icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem,
2426 ICMP6_parameter_problem_unrecognized_option,
2427 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002428 break;
2429 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST:
2430 error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002431 if (!ip6_address_is_multicast (&ip0->dst_address))
Shwethaa91cbe62016-08-08 15:51:04 +01002432 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002433 *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2434 icmp6_error_set_vnet_buffer (b0,
2435 ICMP6_parameter_problem,
2436 ICMP6_parameter_problem_unrecognized_option,
2437 (u8 *) opt0 - (u8 *) ip0);
Shwethaa91cbe62016-08-08 15:51:04 +01002438 }
2439 else
2440 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002441 *next0 = IP_LOOKUP_NEXT_DROP;
Shwethaa91cbe62016-08-08 15:51:04 +01002442 }
2443 break;
2444 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002445 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002446 }
2447 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002448 opt0 =
2449 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2450 sizeof (ip6_hop_by_hop_option_t));
Shwethaa91cbe62016-08-08 15:51:04 +01002451 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002452 return (error0);
Shwethaa91cbe62016-08-08 15:51:04 +01002453}
2454
Ole Troan944f5482016-05-24 11:56:58 +02002455/*
2456 * Process the Hop-by-Hop Options header
2457 */
Damjan Marion38173502019-02-13 19:30:09 +01002458VLIB_NODE_FN (ip6_hop_by_hop_node) (vlib_main_t * vm,
2459 vlib_node_runtime_t * node,
2460 vlib_frame_t * frame)
Ole Troan944f5482016-05-24 11:56:58 +02002461{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002462 vlib_node_runtime_t *error_node =
2463 vlib_node_get_runtime (vm, ip6_hop_by_hop_node.index);
Ole Troan944f5482016-05-24 11:56:58 +02002464 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2465 u32 n_left_from, *from, *to_next;
2466 ip_lookup_next_t next_index;
Ole Troan944f5482016-05-24 11:56:58 +02002467
2468 from = vlib_frame_vector_args (frame);
2469 n_left_from = frame->n_vectors;
2470 next_index = node->cached_next_index;
2471
Dave Barachd7cb1b52016-12-09 09:52:16 -05002472 while (n_left_from > 0)
2473 {
2474 u32 n_left_to_next;
Ole Troan944f5482016-05-24 11:56:58 +02002475
Dave Barachd7cb1b52016-12-09 09:52:16 -05002476 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ole Troan944f5482016-05-24 11:56:58 +02002477
Dave Barachd7cb1b52016-12-09 09:52:16 -05002478 while (n_left_from >= 4 && n_left_to_next >= 2)
Shwethaa91cbe62016-08-08 15:51:04 +01002479 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002480 u32 bi0, bi1;
2481 vlib_buffer_t *b0, *b1;
2482 u32 next0, next1;
2483 ip6_header_t *ip0, *ip1;
2484 ip6_hop_by_hop_header_t *hbh0, *hbh1;
2485 ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1;
2486 u8 error0 = 0, error1 = 0;
2487
2488 /* Prefetch next iteration. */
2489 {
2490 vlib_buffer_t *p2, *p3;
2491
2492 p2 = vlib_get_buffer (vm, from[2]);
2493 p3 = vlib_get_buffer (vm, from[3]);
2494
2495 vlib_prefetch_buffer_header (p2, LOAD);
2496 vlib_prefetch_buffer_header (p3, LOAD);
2497
2498 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2499 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Shwethaa91cbe62016-08-08 15:51:04 +01002500 }
2501
Dave Barachd7cb1b52016-12-09 09:52:16 -05002502 /* Speculatively enqueue b0, b1 to the current next frame */
2503 to_next[0] = bi0 = from[0];
2504 to_next[1] = bi1 = from[1];
2505 from += 2;
2506 to_next += 2;
2507 n_left_from -= 2;
2508 n_left_to_next -= 2;
2509
2510 b0 = vlib_get_buffer (vm, bi0);
2511 b1 = vlib_get_buffer (vm, bi1);
2512
2513 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2514 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002515 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002516 u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002517 ip_adjacency_t *adj1 = adj_get (adj_index1);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002518
2519 /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2520 next0 = adj0->lookup_next_index;
2521 next1 = adj1->lookup_next_index;
2522
2523 ip0 = vlib_buffer_get_current (b0);
2524 ip1 = vlib_buffer_get_current (b1);
2525 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2526 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
2527 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2528 opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1);
2529 limit0 =
2530 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2531 ((hbh0->length + 1) << 3));
2532 limit1 =
2533 (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 +
2534 ((hbh1->length + 1) << 3));
2535
2536 /*
2537 * Basic validity checks
2538 */
2539 if ((hbh0->length + 1) << 3 >
2540 clib_net_to_host_u16 (ip0->payload_length))
2541 {
2542 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2543 next0 = IP_LOOKUP_NEXT_DROP;
2544 goto outdual;
2545 }
2546 /* Scan the set of h-b-h options, process ones that we understand */
2547 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2548
2549 if ((hbh1->length + 1) << 3 >
2550 clib_net_to_host_u16 (ip1->payload_length))
2551 {
2552 error1 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2553 next1 = IP_LOOKUP_NEXT_DROP;
2554 goto outdual;
2555 }
2556 /* Scan the set of h-b-h options, process ones that we understand */
2557 error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1);
2558
2559 outdual:
2560 /* Has the classifier flagged this buffer for special treatment? */
2561 if (PREDICT_FALSE
2562 ((error0 == 0)
2563 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2564 next0 = hm->next_override;
2565
2566 /* Has the classifier flagged this buffer for special treatment? */
2567 if (PREDICT_FALSE
2568 ((error1 == 0)
2569 && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP)))
2570 next1 = hm->next_override;
2571
2572 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
2573 {
2574 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2575 {
2576 ip6_hop_by_hop_trace_t *t =
2577 vlib_add_trace (vm, node, b0, sizeof (*t));
2578 u32 trace_len = (hbh0->length + 1) << 3;
2579 t->next_index = next0;
2580 /* Capture the h-b-h option verbatim */
2581 trace_len =
2582 trace_len <
2583 ARRAY_LEN (t->option_data) ? trace_len :
2584 ARRAY_LEN (t->option_data);
2585 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002586 clib_memcpy_fast (t->option_data, hbh0, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002587 }
2588 if (b1->flags & VLIB_BUFFER_IS_TRACED)
2589 {
2590 ip6_hop_by_hop_trace_t *t =
2591 vlib_add_trace (vm, node, b1, sizeof (*t));
2592 u32 trace_len = (hbh1->length + 1) << 3;
2593 t->next_index = next1;
2594 /* Capture the h-b-h option verbatim */
2595 trace_len =
2596 trace_len <
2597 ARRAY_LEN (t->option_data) ? trace_len :
2598 ARRAY_LEN (t->option_data);
2599 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002600 clib_memcpy_fast (t->option_data, hbh1, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002601 }
2602
2603 }
2604
2605 b0->error = error_node->errors[error0];
2606 b1->error = error_node->errors[error1];
2607
2608 /* verify speculative enqueue, maybe switch current next frame */
2609 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
2610 n_left_to_next, bi0, bi1, next0,
2611 next1);
Shwethaa91cbe62016-08-08 15:51:04 +01002612 }
2613
Dave Barachd7cb1b52016-12-09 09:52:16 -05002614 while (n_left_from > 0 && n_left_to_next > 0)
2615 {
2616 u32 bi0;
2617 vlib_buffer_t *b0;
2618 u32 next0;
2619 ip6_header_t *ip0;
2620 ip6_hop_by_hop_header_t *hbh0;
2621 ip6_hop_by_hop_option_t *opt0, *limit0;
2622 u8 error0 = 0;
Shwethaa91cbe62016-08-08 15:51:04 +01002623
Dave Barachd7cb1b52016-12-09 09:52:16 -05002624 /* Speculatively enqueue b0 to the current next frame */
2625 bi0 = from[0];
2626 to_next[0] = bi0;
2627 from += 1;
2628 to_next += 1;
2629 n_left_from -= 1;
2630 n_left_to_next -= 1;
2631
2632 b0 = vlib_get_buffer (vm, bi0);
2633 /*
2634 * Default use the next_index from the adjacency.
2635 * A HBH option rarely redirects to a different node
2636 */
2637 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -07002638 ip_adjacency_t *adj0 = adj_get (adj_index0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002639 next0 = adj0->lookup_next_index;
2640
2641 ip0 = vlib_buffer_get_current (b0);
2642 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2643 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2644 limit0 =
2645 (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2646 ((hbh0->length + 1) << 3));
2647
2648 /*
2649 * Basic validity checks
2650 */
2651 if ((hbh0->length + 1) << 3 >
2652 clib_net_to_host_u16 (ip0->payload_length))
2653 {
2654 error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2655 next0 = IP_LOOKUP_NEXT_DROP;
2656 goto out0;
2657 }
2658
2659 /* Scan the set of h-b-h options, process ones that we understand */
2660 error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2661
2662 out0:
2663 /* Has the classifier flagged this buffer for special treatment? */
2664 if (PREDICT_FALSE
2665 ((error0 == 0)
2666 && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2667 next0 = hm->next_override;
2668
2669 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2670 {
2671 ip6_hop_by_hop_trace_t *t =
2672 vlib_add_trace (vm, node, b0, sizeof (*t));
2673 u32 trace_len = (hbh0->length + 1) << 3;
2674 t->next_index = next0;
2675 /* Capture the h-b-h option verbatim */
2676 trace_len =
2677 trace_len <
2678 ARRAY_LEN (t->option_data) ? trace_len :
2679 ARRAY_LEN (t->option_data);
2680 t->trace_len = trace_len;
Dave Barach178cf492018-11-13 16:34:13 -05002681 clib_memcpy_fast (t->option_data, hbh0, trace_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002682 }
2683
2684 b0->error = error_node->errors[error0];
2685
2686 /* verify speculative enqueue, maybe switch current next frame */
2687 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2688 n_left_to_next, bi0, next0);
2689 }
2690 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Shwethaa91cbe62016-08-08 15:51:04 +01002691 }
Ole Troan944f5482016-05-24 11:56:58 +02002692 return frame->n_vectors;
2693}
2694
Dave Barachd7cb1b52016-12-09 09:52:16 -05002695/* *INDENT-OFF* */
2696VLIB_REGISTER_NODE (ip6_hop_by_hop_node) =
2697{
Ole Troan944f5482016-05-24 11:56:58 +02002698 .name = "ip6-hop-by-hop",
Ole Troan964f93e2016-06-10 13:22:36 +02002699 .sibling_of = "ip6-lookup",
Ole Troan944f5482016-05-24 11:56:58 +02002700 .vector_size = sizeof (u32),
2701 .format_trace = format_ip6_hop_by_hop_trace,
2702 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002703 .n_errors = ARRAY_LEN (ip6_hop_by_hop_error_strings),
Ole Troan944f5482016-05-24 11:56:58 +02002704 .error_strings = ip6_hop_by_hop_error_strings,
Ole Troan964f93e2016-06-10 13:22:36 +02002705 .n_next_nodes = 0,
Ole Troan944f5482016-05-24 11:56:58 +02002706};
Dave Barachd7cb1b52016-12-09 09:52:16 -05002707/* *INDENT-ON* */
Ole Troan944f5482016-05-24 11:56:58 +02002708
Ole Troan944f5482016-05-24 11:56:58 +02002709static clib_error_t *
2710ip6_hop_by_hop_init (vlib_main_t * vm)
2711{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002712 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Dave Barachb7b92992018-10-17 10:38:51 -04002713 clib_memset (hm->options, 0, sizeof (hm->options));
2714 clib_memset (hm->trace, 0, sizeof (hm->trace));
Shwethaa91cbe62016-08-08 15:51:04 +01002715 hm->next_override = IP6_LOOKUP_NEXT_POP_HOP_BY_HOP;
Ole Troan944f5482016-05-24 11:56:58 +02002716 return (0);
2717}
2718
2719VLIB_INIT_FUNCTION (ip6_hop_by_hop_init);
2720
Damjan Marion38173502019-02-13 19:30:09 +01002721#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05002722void
2723ip6_hbh_set_next_override (uword next)
Shwethaa91cbe62016-08-08 15:51:04 +01002724{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002725 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Shwethaa91cbe62016-08-08 15:51:04 +01002726
2727 hm->next_override = next;
2728}
2729
Ole Troan944f5482016-05-24 11:56:58 +02002730int
2731ip6_hbh_register_option (u8 option,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002732 int options (vlib_buffer_t * b, ip6_header_t * ip,
2733 ip6_hop_by_hop_option_t * opt),
2734 u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt))
Ole Troan944f5482016-05-24 11:56:58 +02002735{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002736 ip6_main_t *im = &ip6_main;
2737 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002738
Neale Ranns756cd942018-04-06 09:18:11 -07002739 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002740
2741 /* Already registered */
2742 if (hm->options[option])
2743 return (-1);
2744
2745 hm->options[option] = options;
2746 hm->trace[option] = trace;
2747
2748 /* Set global variable */
2749 im->hbh_enabled = 1;
2750
2751 return (0);
2752}
2753
2754int
2755ip6_hbh_unregister_option (u8 option)
2756{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002757 ip6_main_t *im = &ip6_main;
2758 ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
Ole Troan944f5482016-05-24 11:56:58 +02002759
Neale Ranns756cd942018-04-06 09:18:11 -07002760 ASSERT ((u32) option < ARRAY_LEN (hm->options));
Ole Troan944f5482016-05-24 11:56:58 +02002761
2762 /* Not registered */
2763 if (!hm->options[option])
2764 return (-1);
2765
2766 hm->options[option] = NULL;
2767 hm->trace[option] = NULL;
2768
2769 /* Disable global knob if this was the last option configured */
2770 int i;
2771 bool found = false;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002772 for (i = 0; i < 256; i++)
2773 {
2774 if (hm->options[option])
2775 {
2776 found = true;
2777 break;
2778 }
Ole Troan944f5482016-05-24 11:56:58 +02002779 }
Ole Troan944f5482016-05-24 11:56:58 +02002780 if (!found)
2781 im->hbh_enabled = 0;
2782
2783 return (0);
2784}
2785
Ed Warnickecb9cada2015-12-08 15:45:58 -07002786/* Global IP6 main. */
2787ip6_main_t ip6_main;
Damjan Marion38173502019-02-13 19:30:09 +01002788#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07002789
2790static clib_error_t *
2791ip6_lookup_init (vlib_main_t * vm)
2792{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002793 ip6_main_t *im = &ip6_main;
2794 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002795 uword i;
2796
Damjan Marion8b3191e2016-11-09 19:54:20 +01002797 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
2798 return error;
2799
Ed Warnickecb9cada2015-12-08 15:45:58 -07002800 for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
2801 {
2802 u32 j, i0, i1;
2803
2804 i0 = i / 32;
2805 i1 = i % 32;
2806
2807 for (j = 0; j < i0; j++)
2808 im->fib_masks[i].as_u32[j] = ~0;
2809
2810 if (i1)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002811 im->fib_masks[i].as_u32[i0] =
2812 clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002813 }
2814
2815 ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1);
2816
Ed Warnickecb9cada2015-12-08 15:45:58 -07002817 /* Create FIB with index 0 and table id of 0. */
Neale Ranns15002542017-09-10 04:39:11 -07002818 fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2819 FIB_SOURCE_DEFAULT_ROUTE);
2820 mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2821 MFIB_SOURCE_DEFAULT_ROUTE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002822
2823 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002824 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002825 pn = pg_get_node (ip6_lookup_node.index);
2826 pn->unformat_edit = unformat_pg_ip6_header;
2827 }
2828
Ole Troan944f5482016-05-24 11:56:58 +02002829 /* Unless explicitly configured, don't process HBH options */
2830 im->hbh_enabled = 0;
2831
Dave Barach203c6322016-06-26 10:29:03 -04002832 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833}
2834
2835VLIB_INIT_FUNCTION (ip6_lookup_init);
2836
Ed Warnickecb9cada2015-12-08 15:45:58 -07002837static clib_error_t *
2838set_ip6_flow_hash_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002839 unformat_input_t * input,
2840 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002841{
2842 int matched = 0;
2843 u32 table_id = 0;
2844 u32 flow_hash_config = 0;
2845 int rv;
2846
Dave Barachd7cb1b52016-12-09 09:52:16 -05002847 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2848 {
2849 if (unformat (input, "table %d", &table_id))
2850 matched = 1;
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002851#define _(a, b, v) \
2852 else if (unformat (input, #a)) \
2853 { \
2854 flow_hash_config |= v; \
2855 matched = 1; \
2856 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05002857 foreach_flow_hash_bit
Ed Warnickecb9cada2015-12-08 15:45:58 -07002858#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -05002859 else
2860 break;
2861 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002862
2863 if (matched == 0)
2864 return clib_error_return (0, "unknown input `%U'",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002865 format_unformat_error, input);
Dave Barach75fc8542016-10-11 16:16:02 -04002866
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002867 rv = ip_flow_hash_set (AF_IP6, table_id, flow_hash_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002868 switch (rv)
2869 {
Neale Ranns227038a2017-04-21 01:07:59 -07002870 case 0:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002871 break;
2872
2873 case -1:
2874 return clib_error_return (0, "no such FIB table %d", table_id);
Dave Barach75fc8542016-10-11 16:16:02 -04002875
Ed Warnickecb9cada2015-12-08 15:45:58 -07002876 default:
2877 clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2878 break;
2879 }
Dave Barach75fc8542016-10-11 16:16:02 -04002880
Ed Warnickecb9cada2015-12-08 15:45:58 -07002881 return 0;
2882}
2883
Billy McFall0683c9c2016-10-13 08:27:31 -04002884/*?
2885 * Configure the set of IPv6 fields used by the flow hash.
2886 *
2887 * @cliexpar
2888 * @parblock
2889 * Example of how to set the flow hash on a given table:
Billy McFallebb9a6a2016-10-17 11:35:32 -04002890 * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto}
2891 *
Billy McFall0683c9c2016-10-13 08:27:31 -04002892 * Example of display the configured flow hash:
2893 * @cliexstart{show ip6 fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -04002894 * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2895 * @::/0
2896 * unicast-ip6-chain
2897 * [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]]
2898 * [0] [@0]: dpo-drop ip6
2899 * fe80::/10
2900 * unicast-ip6-chain
2901 * [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]]
2902 * [0] [@2]: dpo-receive
2903 * ff02::1/128
2904 * unicast-ip6-chain
2905 * [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]]
2906 * [0] [@2]: dpo-receive
2907 * ff02::2/128
2908 * unicast-ip6-chain
2909 * [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]]
2910 * [0] [@2]: dpo-receive
2911 * ff02::16/128
2912 * unicast-ip6-chain
2913 * [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]]
2914 * [0] [@2]: dpo-receive
2915 * ff02::1:ff00:0/104
2916 * unicast-ip6-chain
2917 * [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]]
2918 * [0] [@2]: dpo-receive
2919 * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto
2920 * @::/0
2921 * unicast-ip6-chain
2922 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
2923 * [0] [@0]: dpo-drop ip6
2924 * @::a:1:1:0:4/126
2925 * unicast-ip6-chain
2926 * [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]]
2927 * [0] [@4]: ipv6-glean: af_packet0
2928 * @::a:1:1:0:7/128
2929 * unicast-ip6-chain
2930 * [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]]
2931 * [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0
2932 * fe80::/10
2933 * unicast-ip6-chain
2934 * [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]]
2935 * [0] [@2]: dpo-receive
2936 * fe80::fe:3eff:fe3e:9222/128
2937 * unicast-ip6-chain
2938 * [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]]
2939 * [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0
2940 * ff02::1/128
2941 * unicast-ip6-chain
2942 * [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]]
2943 * [0] [@2]: dpo-receive
2944 * ff02::2/128
2945 * unicast-ip6-chain
2946 * [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]]
2947 * [0] [@2]: dpo-receive
2948 * ff02::16/128
2949 * unicast-ip6-chain
2950 * [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]]
2951 * [0] [@2]: dpo-receive
2952 * ff02::1:ff00:0/104
2953 * unicast-ip6-chain
2954 * [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]]
2955 * [0] [@2]: dpo-receive
Billy McFall0683c9c2016-10-13 08:27:31 -04002956 * @cliexend
2957 * @endparblock
2958?*/
2959/* *INDENT-OFF* */
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002960VLIB_CLI_COMMAND (set_ip6_flow_hash_command, static) = {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002961 .path = "set ip6 flow-hash",
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002962 .short_help = "set ip6 flow-hash table <table-id> [src] [dst] [sport] "
2963 "[dport] [proto] [reverse] [flowlabel]",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002964 .function = set_ip6_flow_hash_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002965};
Billy McFall0683c9c2016-10-13 08:27:31 -04002966/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002967
2968static clib_error_t *
2969show_ip6_local_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002970 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002971{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002972 ip6_main_t *im = &ip6_main;
2973 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002974 int i;
Dave Barach75fc8542016-10-11 16:16:02 -04002975
Ed Warnickecb9cada2015-12-08 15:45:58 -07002976 vlib_cli_output (vm, "Protocols handled by ip6_local");
Dave Barachd7cb1b52016-12-09 09:52:16 -05002977 for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002978 {
2979 if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02002980 {
2981
2982 u32 node_index = vlib_get_node (vm,
2983 ip6_local_node.index)->
2984 next_nodes[lm->local_next_by_ip_protocol[i]];
2985 vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm,
2986 node_index);
2987 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002988 }
2989 return 0;
2990}
2991
2992
2993
Billy McFall0683c9c2016-10-13 08:27:31 -04002994/*?
2995 * Display the set of protocols handled by the local IPv6 stack.
2996 *
2997 * @cliexpar
2998 * Example of how to display local protocol table:
2999 * @cliexstart{show ip6 local}
3000 * Protocols handled by ip6_local
3001 * 17
3002 * 43
3003 * 58
3004 * 115
3005 * @cliexend
3006?*/
3007/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003008VLIB_CLI_COMMAND (show_ip6_local, static) =
3009{
Ed Warnickecb9cada2015-12-08 15:45:58 -07003010 .path = "show ip6 local",
3011 .function = show_ip6_local_command_fn,
Billy McFall0683c9c2016-10-13 08:27:31 -04003012 .short_help = "show ip6 local",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003013};
Billy McFall0683c9c2016-10-13 08:27:31 -04003014/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003015
Damjan Marion38173502019-02-13 19:30:09 +01003016#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05003017int
Mohsin Kazmi68095382021-02-10 11:26:24 +01003018vnet_set_ip6_classify_intfc (vlib_main_t *vm, u32 sw_if_index, u32 table_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003019{
Dave Barachd7cb1b52016-12-09 09:52:16 -05003020 vnet_main_t *vnm = vnet_get_main ();
3021 vnet_interface_main_t *im = &vnm->interface_main;
3022 ip6_main_t *ipm = &ip6_main;
3023 ip_lookup_main_t *lm = &ipm->lookup_main;
3024 vnet_classify_main_t *cm = &vnet_classify_main;
Neale Rannsdf089a82016-10-02 16:39:06 +01003025 ip6_address_t *if_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003026
3027 if (pool_is_free_index (im->sw_interfaces, sw_if_index))
3028 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
3029
3030 if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
3031 return VNET_API_ERROR_NO_SUCH_ENTRY;
3032
3033 vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003034 lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003035
Neale Ranns6cfc39c2017-02-14 01:44:25 -08003036 if_addr = ip6_interface_first_address (ipm, sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01003037
3038 if (NULL != if_addr)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003039 {
Neale Rannsdf089a82016-10-02 16:39:06 +01003040 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -05003041 .fp_len = 128,
3042 .fp_proto = FIB_PROTOCOL_IP6,
3043 .fp_addr.ip6 = *if_addr,
Neale Rannsdf089a82016-10-02 16:39:06 +01003044 };
3045 u32 fib_index;
3046
Dave Barachd7cb1b52016-12-09 09:52:16 -05003047 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4,
3048 sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05003049 if (table_index != (u32) ~ 0)
3050 {
3051 dpo_id_t dpo = DPO_INVALID;
Dave Barachd7cb1b52016-12-09 09:52:16 -05003052 dpo_set (&dpo,
3053 DPO_CLASSIFY,
3054 DPO_PROTO_IP6,
3055 classify_dpo_create (DPO_PROTO_IP6, table_index));
Dave Barachd7cb1b52016-12-09 09:52:16 -05003056 fib_table_entry_special_dpo_add (fib_index,
3057 &pfx,
3058 FIB_SOURCE_CLASSIFY,
3059 FIB_ENTRY_FLAG_NONE, &dpo);
3060 dpo_reset (&dpo);
3061 }
Neale Rannsdf089a82016-10-02 16:39:06 +01003062 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05003063 {
3064 fib_table_entry_special_remove (fib_index,
3065 &pfx, FIB_SOURCE_CLASSIFY);
3066 }
3067 }
Neale Rannsdf089a82016-10-02 16:39:06 +01003068
Ed Warnickecb9cada2015-12-08 15:45:58 -07003069 return 0;
3070}
Damjan Marion38173502019-02-13 19:30:09 +01003071#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07003072
3073static clib_error_t *
3074set_ip6_classify_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05003075 unformat_input_t * input,
3076 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003077{
3078 u32 table_index = ~0;
3079 int table_index_set = 0;
3080 u32 sw_if_index = ~0;
3081 int rv;
Dave Barach75fc8542016-10-11 16:16:02 -04003082
Dave Barachd7cb1b52016-12-09 09:52:16 -05003083 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3084 {
3085 if (unformat (input, "table-index %d", &table_index))
3086 table_index_set = 1;
3087 else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
3088 vnet_get_main (), &sw_if_index))
3089 ;
3090 else
3091 break;
3092 }
Dave Barach75fc8542016-10-11 16:16:02 -04003093
Ed Warnickecb9cada2015-12-08 15:45:58 -07003094 if (table_index_set == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05003095 return clib_error_return (0, "classify table-index must be specified");
Dave Barach75fc8542016-10-11 16:16:02 -04003096
Ed Warnickecb9cada2015-12-08 15:45:58 -07003097 if (sw_if_index == ~0)
3098 return clib_error_return (0, "interface / subif must be specified");
3099
3100 rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
3101
3102 switch (rv)
3103 {
3104 case 0:
3105 break;
3106
3107 case VNET_API_ERROR_NO_MATCHING_INTERFACE:
3108 return clib_error_return (0, "No such interface");
3109
3110 case VNET_API_ERROR_NO_SUCH_ENTRY:
3111 return clib_error_return (0, "No such classifier table");
3112 }
3113 return 0;
3114}
3115
Billy McFall0683c9c2016-10-13 08:27:31 -04003116/*?
3117 * Assign a classification table to an interface. The classification
3118 * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
3119 * commands. Once the table is create, use this command to filter packets
3120 * on an interface.
3121 *
3122 * @cliexpar
3123 * Example of how to assign a classification table to an interface:
3124 * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1}
3125?*/
3126/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003127VLIB_CLI_COMMAND (set_ip6_classify_command, static) =
3128{
3129 .path = "set ip6 classify",
3130 .short_help =
3131 "set ip6 classify intfc <interface> table-index <classify-idx>",
3132 .function = set_ip6_classify_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003133};
Billy McFall0683c9c2016-10-13 08:27:31 -04003134/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003135
Dave Barachd7cb1b52016-12-09 09:52:16 -05003136/*
3137 * fd.io coding-style-patch-verification: ON
3138 *
3139 * Local Variables:
3140 * eval: (c-set-style "gnu")
3141 * End:
3142 */