Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
AkshayaNadahalli | ed4a2fd | 2016-08-09 13:38:04 +0530 | [diff] [blame] | 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * ip/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 Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 42 | #include <vnet/ip/ip_frag.h> |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 43 | #include <vnet/ip/ip6_neighbor.h> |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 44 | #include <vnet/ethernet/ethernet.h> /* for ethernet_header_t */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | #include <vnet/srp/srp.h> /* for srp_hw_interface_class */ |
| 46 | #include <vppinfra/cache.h> |
AkshayaNadahalli | 0f438df | 2017-02-10 10:54:16 +0530 | [diff] [blame] | 47 | #include <vnet/fib/fib_urpf_list.h> /* for FIB uRPF check */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 48 | #include <vnet/fib/ip6_fib.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 49 | #include <vnet/mfib/ip6_mfib.h> |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 50 | #include <vnet/dpo/load_balance_map.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 51 | #include <vnet/dpo/classify_dpo.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
| 53 | #include <vppinfra/bihash_template.c> |
Vijayabhaskar Katamreddy | acbde66 | 2018-01-23 13:39:40 -0800 | [diff] [blame] | 54 | #include <vnet/ip/ip6_forward.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
AkshayaNadahalli | fdd81af | 2016-12-01 16:33:51 +0530 | [diff] [blame] | 56 | /* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */ |
| 57 | #define OI_DECAP 0x80000000 |
| 58 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | static void |
| 60 | ip6_add_interface_routes (vnet_main_t * vnm, u32 sw_if_index, |
| 61 | ip6_main_t * im, u32 fib_index, |
| 62 | ip_interface_address_t * a) |
| 63 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 64 | ip_lookup_main_t *lm = &im->lookup_main; |
| 65 | ip6_address_t *address = ip_interface_address_get_address (lm, a); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 66 | fib_prefix_t pfx = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 67 | .fp_len = a->address_length, |
| 68 | .fp_proto = FIB_PROTOCOL_IP6, |
| 69 | .fp_addr.ip6 = *address, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 70 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | if (a->address_length < 128) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 73 | { |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 74 | fib_table_entry_update_one_path (fib_index, |
| 75 | &pfx, |
| 76 | FIB_SOURCE_INTERFACE, |
| 77 | (FIB_ENTRY_FLAG_CONNECTED | |
| 78 | FIB_ENTRY_FLAG_ATTACHED), |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 79 | DPO_PROTO_IP6, |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 80 | /* No next-hop address */ |
| 81 | NULL, sw_if_index, |
| 82 | /* invalid FIB index */ |
| 83 | ~0, 1, |
| 84 | /* no label stack */ |
| 85 | NULL, FIB_ROUTE_PATH_FLAG_NONE); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 86 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 88 | pfx.fp_len = 128; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 90 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 91 | u32 classify_table_index = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 92 | lm->classify_table_index_by_sw_if_index[sw_if_index]; |
| 93 | if (classify_table_index != (u32) ~ 0) |
| 94 | { |
| 95 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 96 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 97 | dpo_set (&dpo, |
| 98 | DPO_CLASSIFY, |
| 99 | DPO_PROTO_IP6, |
| 100 | classify_dpo_create (DPO_PROTO_IP6, classify_table_index)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 101 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 102 | fib_table_entry_special_dpo_add (fib_index, |
| 103 | &pfx, |
| 104 | FIB_SOURCE_CLASSIFY, |
| 105 | FIB_ENTRY_FLAG_NONE, &dpo); |
| 106 | dpo_reset (&dpo); |
| 107 | } |
| 108 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 109 | |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 110 | fib_table_entry_update_one_path (fib_index, &pfx, |
| 111 | FIB_SOURCE_INTERFACE, |
| 112 | (FIB_ENTRY_FLAG_CONNECTED | |
| 113 | FIB_ENTRY_FLAG_LOCAL), |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 114 | DPO_PROTO_IP6, |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 115 | &pfx.fp_addr, |
| 116 | sw_if_index, ~0, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 117 | 1, NULL, FIB_ROUTE_PATH_FLAG_NONE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | static void |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 121 | ip6_del_interface_routes (ip6_main_t * im, |
| 122 | u32 fib_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 123 | ip6_address_t * address, u32 address_length) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 125 | fib_prefix_t pfx = { |
| 126 | .fp_len = address_length, |
| 127 | .fp_proto = FIB_PROTOCOL_IP6, |
| 128 | .fp_addr.ip6 = *address, |
| 129 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 131 | if (pfx.fp_len < 128) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 133 | fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 134 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 137 | pfx.fp_len = 128; |
| 138 | fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 141 | void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 142 | ip6_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 143 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 144 | ip6_main_t *im = &ip6_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 146 | vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 148 | /* |
| 149 | * enable/disable only on the 1<->0 transition |
| 150 | */ |
| 151 | if (is_enable) |
| 152 | { |
| 153 | if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index]) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 154 | return; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 155 | } |
| 156 | else |
| 157 | { |
Neale Ranns | 7515228 | 2017-01-09 01:00:45 -0800 | [diff] [blame] | 158 | /* The ref count is 0 when an address is removed from an interface that has |
| 159 | * no address - this is not a ciritical error */ |
| 160 | if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] || |
| 161 | 0 != --im->ip_enabled_by_sw_if_index[sw_if_index]) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 162 | return; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 163 | } |
| 164 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 165 | vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index, |
Neale Ranns | 630198f | 2017-05-22 09:20:20 -0400 | [diff] [blame] | 166 | !is_enable, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 167 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 168 | vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled", |
| 169 | sw_if_index, !is_enable, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 170 | } |
| 171 | |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 172 | /* get first interface address */ |
| 173 | ip6_address_t * |
Neale Ranns | 6cfc39c | 2017-02-14 01:44:25 -0800 | [diff] [blame] | 174 | ip6_interface_first_address (ip6_main_t * im, u32 sw_if_index) |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 175 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 176 | ip_lookup_main_t *lm = &im->lookup_main; |
| 177 | ip_interface_address_t *ia = 0; |
| 178 | ip6_address_t *result = 0; |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 179 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 180 | /* *INDENT-OFF* */ |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 181 | foreach_ip_interface_address (lm, ia, sw_if_index, |
| 182 | 1 /* honor unnumbered */, |
| 183 | ({ |
| 184 | ip6_address_t * a = ip_interface_address_get_address (lm, ia); |
| 185 | result = a; |
| 186 | break; |
| 187 | })); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 188 | /* *INDENT-ON* */ |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 189 | return result; |
| 190 | } |
| 191 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 192 | clib_error_t * |
| 193 | ip6_add_del_interface_address (vlib_main_t * vm, |
| 194 | u32 sw_if_index, |
| 195 | ip6_address_t * address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 196 | u32 address_length, u32 is_del) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 198 | vnet_main_t *vnm = vnet_get_main (); |
| 199 | ip6_main_t *im = &ip6_main; |
| 200 | ip_lookup_main_t *lm = &im->lookup_main; |
| 201 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | u32 if_address_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 203 | ip6_address_fib_t ip6_af, *addr_fib = 0; |
Juraj Sloboda | 5bb1eca | 2018-10-22 09:57:13 +0200 | [diff] [blame] | 204 | ip6_address_t ll_addr; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | |
Pavel Kotucek | 5780898 | 2017-08-02 08:20:19 +0200 | [diff] [blame] | 206 | /* local0 interface doesn't support IP addressing */ |
| 207 | if (sw_if_index == 0) |
| 208 | { |
| 209 | return |
| 210 | clib_error_create ("local0 interface doesn't support IP addressing"); |
| 211 | } |
| 212 | |
Juraj Sloboda | 5bb1eca | 2018-10-22 09:57:13 +0200 | [diff] [blame] | 213 | if (ip6_address_is_link_local_unicast (address)) |
| 214 | { |
| 215 | if (address_length != 128) |
| 216 | { |
| 217 | vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH; |
| 218 | return |
| 219 | clib_error_create |
| 220 | ("prefix length of link-local address must be 128"); |
| 221 | } |
| 222 | if (!is_del) |
| 223 | { |
| 224 | return ip6_neighbor_set_link_local_address (vm, sw_if_index, |
| 225 | address); |
| 226 | } |
| 227 | else |
| 228 | { |
| 229 | ll_addr = ip6_neighbor_get_link_local_address (sw_if_index); |
| 230 | if (ip6_address_is_equal (&ll_addr, address)) |
| 231 | { |
| 232 | vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_DELETABLE; |
| 233 | return clib_error_create ("address not deletable"); |
| 234 | } |
| 235 | else |
| 236 | { |
| 237 | vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE; |
| 238 | return clib_error_create ("address not found"); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | vec_validate (im->fib_index_by_sw_if_index, sw_if_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 244 | vec_validate (im->mfib_index_by_sw_if_index, sw_if_index); |
| 245 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | ip6_addr_fib_init (&ip6_af, address, |
| 247 | vec_elt (im->fib_index_by_sw_if_index, sw_if_index)); |
| 248 | vec_add1 (addr_fib, ip6_af); |
| 249 | |
Neale Ranns | 744902e | 2017-08-14 10:35:44 -0700 | [diff] [blame] | 250 | /* *INDENT-OFF* */ |
| 251 | if (!is_del) |
| 252 | { |
| 253 | /* When adding an address check that it does not conflict |
| 254 | with an existing address on any interface in this table. */ |
| 255 | ip_interface_address_t *ia; |
| 256 | vnet_sw_interface_t *sif; |
| 257 | |
| 258 | pool_foreach(sif, vnm->interface_main.sw_interfaces, |
| 259 | ({ |
| 260 | if (im->fib_index_by_sw_if_index[sw_if_index] == |
| 261 | im->fib_index_by_sw_if_index[sif->sw_if_index]) |
| 262 | { |
| 263 | foreach_ip_interface_address |
| 264 | (&im->lookup_main, ia, sif->sw_if_index, |
| 265 | 0 /* honor unnumbered */ , |
| 266 | ({ |
| 267 | ip6_address_t * x = |
| 268 | ip_interface_address_get_address |
| 269 | (&im->lookup_main, ia); |
| 270 | if (ip6_destination_matches_route |
| 271 | (im, address, x, ia->address_length) || |
| 272 | ip6_destination_matches_route (im, |
| 273 | x, |
| 274 | address, |
| 275 | address_length)) |
| 276 | { |
| 277 | vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS; |
| 278 | return |
| 279 | clib_error_create |
| 280 | ("failed to add %U which conflicts with %U for interface %U", |
| 281 | format_ip6_address_and_length, address, |
| 282 | address_length, |
| 283 | format_ip6_address_and_length, x, |
| 284 | ia->address_length, |
| 285 | format_vnet_sw_if_index_name, vnm, |
| 286 | sif->sw_if_index); |
| 287 | } |
| 288 | })); |
| 289 | } |
| 290 | })); |
| 291 | } |
| 292 | /* *INDENT-ON* */ |
| 293 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | { |
| 295 | uword elts_before = pool_elts (lm->if_address_pool); |
| 296 | |
| 297 | error = ip_interface_address_add_del |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 298 | (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | if (error) |
| 300 | goto done; |
| 301 | |
| 302 | /* Pool did not grow: add duplicate address. */ |
| 303 | if (elts_before == pool_elts (lm->if_address_pool)) |
| 304 | goto done; |
| 305 | } |
| 306 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 307 | ip6_sw_interface_enable_disable (sw_if_index, !is_del); |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 308 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 309 | if (is_del) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 310 | ip6_del_interface_routes (im, ip6_af.fib_index, address, address_length); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 311 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 312 | ip6_add_interface_routes (vnm, sw_if_index, |
| 313 | im, ip6_af.fib_index, |
| 314 | pool_elt_at_index (lm->if_address_pool, |
| 315 | if_address_index)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 316 | |
| 317 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 318 | ip6_add_del_interface_address_callback_t *cb; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | vec_foreach (cb, im->add_del_interface_address_callbacks) |
| 320 | cb->function (im, cb->function_opaque, sw_if_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 321 | address, address_length, if_address_index, is_del); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 324 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 325 | vec_free (addr_fib); |
| 326 | return error; |
| 327 | } |
| 328 | |
| 329 | clib_error_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 330 | ip6_sw_interface_admin_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 331 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 332 | ip6_main_t *im = &ip6_main; |
| 333 | ip_interface_address_t *ia; |
| 334 | ip6_address_t *a; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 335 | u32 is_admin_up, fib_index; |
| 336 | |
| 337 | /* Fill in lookup tables with default table (0). */ |
| 338 | vec_validate (im->fib_index_by_sw_if_index, sw_if_index); |
| 339 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 340 | vec_validate_init_empty (im-> |
| 341 | lookup_main.if_address_pool_index_by_sw_if_index, |
| 342 | sw_if_index, ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | |
| 344 | is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0; |
| 345 | |
| 346 | fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index); |
| 347 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 348 | /* *INDENT-OFF* */ |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 349 | foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | 0 /* honor unnumbered */, |
| 351 | ({ |
| 352 | a = ip_interface_address_get_address (&im->lookup_main, ia); |
| 353 | if (is_admin_up) |
| 354 | ip6_add_interface_routes (vnm, sw_if_index, |
| 355 | im, fib_index, |
| 356 | ia); |
| 357 | else |
| 358 | ip6_del_interface_routes (im, fib_index, |
| 359 | a, ia->address_length); |
| 360 | })); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 361 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | |
| 363 | return 0; |
| 364 | } |
| 365 | |
| 366 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_sw_interface_admin_up_down); |
| 367 | |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 368 | /* Built-in ip6 unicast rx feature path definition */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 369 | /* *INDENT-OFF* */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 370 | VNET_FEATURE_ARC_INIT (ip6_unicast, static) = |
| 371 | { |
| 372 | .arc_name = "ip6-unicast", |
| 373 | .start_nodes = VNET_FEATURES ("ip6-input"), |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame^] | 374 | .last_in_arc = "ip6-lookup", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 375 | .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index, |
| 376 | }; |
| 377 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 378 | VNET_FEATURE_INIT (ip6_flow_classify, static) = |
| 379 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 380 | .arc_name = "ip6-unicast", |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 381 | .node_name = "ip6-flow-classify", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 382 | .runs_before = VNET_FEATURES ("ip6-inacl"), |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 383 | }; |
| 384 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 385 | VNET_FEATURE_INIT (ip6_inacl, static) = |
| 386 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 387 | .arc_name = "ip6-unicast", |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 388 | .node_name = "ip6-inacl", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 389 | .runs_before = VNET_FEATURES ("ip6-policer-classify"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 390 | }; |
| 391 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 392 | VNET_FEATURE_INIT (ip6_policer_classify, static) = |
| 393 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 394 | .arc_name = "ip6-unicast", |
Matus Fabian | 70e6a8d | 2016-06-20 08:10:42 -0700 | [diff] [blame] | 395 | .node_name = "ip6-policer-classify", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 396 | .runs_before = VNET_FEATURES ("ipsec6-input"), |
Matus Fabian | 70e6a8d | 2016-06-20 08:10:42 -0700 | [diff] [blame] | 397 | }; |
| 398 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 399 | VNET_FEATURE_INIT (ip6_ipsec, static) = |
| 400 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 401 | .arc_name = "ip6-unicast", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 402 | .node_name = "ipsec6-input", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 403 | .runs_before = VNET_FEATURES ("l2tp-decap"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 404 | }; |
| 405 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 406 | VNET_FEATURE_INIT (ip6_l2tp, static) = |
| 407 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 408 | .arc_name = "ip6-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 409 | .node_name = "l2tp-decap", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 410 | .runs_before = VNET_FEATURES ("vpath-input-ip6"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 411 | }; |
| 412 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 413 | VNET_FEATURE_INIT (ip6_vpath, static) = |
| 414 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 415 | .arc_name = "ip6-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 416 | .node_name = "vpath-input-ip6", |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 417 | .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"), |
| 418 | }; |
| 419 | |
| 420 | VNET_FEATURE_INIT (ip6_vxlan_bypass, static) = |
| 421 | { |
| 422 | .arc_name = "ip6-unicast", |
| 423 | .node_name = "ip6-vxlan-bypass", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 424 | .runs_before = VNET_FEATURES ("ip6-lookup"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 425 | }; |
| 426 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 427 | VNET_FEATURE_INIT (ip6_not_enabled, static) = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 428 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 429 | .arc_name = "ip6-unicast", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 430 | .node_name = "ip6-not-enabled", |
Neale Ranns | 630198f | 2017-05-22 09:20:20 -0400 | [diff] [blame] | 431 | .runs_before = VNET_FEATURES ("ip6-lookup"), |
| 432 | }; |
| 433 | |
| 434 | VNET_FEATURE_INIT (ip6_lookup, static) = |
| 435 | { |
| 436 | .arc_name = "ip6-unicast", |
| 437 | .node_name = "ip6-lookup", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 438 | .runs_before = 0, /*last feature*/ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 439 | }; |
| 440 | |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 441 | /* Built-in ip6 multicast rx feature path definition (none now) */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 442 | VNET_FEATURE_ARC_INIT (ip6_multicast, static) = |
| 443 | { |
| 444 | .arc_name = "ip6-multicast", |
| 445 | .start_nodes = VNET_FEATURES ("ip6-input"), |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame^] | 446 | .last_in_arc = "ip6-mfib-forward-lookup", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 447 | .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index, |
| 448 | }; |
| 449 | |
| 450 | VNET_FEATURE_INIT (ip6_vpath_mc, static) = { |
| 451 | .arc_name = "ip6-multicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 452 | .node_name = "vpath-input-ip6", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 453 | .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 454 | }; |
| 455 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 456 | VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 457 | .arc_name = "ip6-multicast", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 458 | .node_name = "ip6-not-enabled", |
Neale Ranns | 630198f | 2017-05-22 09:20:20 -0400 | [diff] [blame] | 459 | .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"), |
| 460 | }; |
| 461 | |
| 462 | VNET_FEATURE_INIT (ip6_mc_lookup, static) = { |
| 463 | .arc_name = "ip6-multicast", |
| 464 | .node_name = "ip6-mfib-forward-lookup", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 465 | .runs_before = 0, /* last feature */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 466 | }; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 467 | |
| 468 | /* Built-in ip4 tx feature path definition */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 469 | VNET_FEATURE_ARC_INIT (ip6_output, static) = |
| 470 | { |
| 471 | .arc_name = "ip6-output", |
Neale Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 472 | .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"), |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame^] | 473 | .last_in_arc = "interface-output", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 474 | .arc_index_ptr = &ip6_main.lookup_main.output_feature_arc_index, |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 475 | }; |
| 476 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 477 | VNET_FEATURE_INIT (ip6_outacl, static) = { |
| 478 | .arc_name = "ip6-output", |
| 479 | .node_name = "ip6-outacl", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 480 | .runs_before = VNET_FEATURES ("ipsec6-output"), |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 481 | }; |
| 482 | |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 483 | VNET_FEATURE_INIT (ip6_ipsec_output, static) = { |
| 484 | .arc_name = "ip6-output", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 485 | .node_name = "ipsec6-output", |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 486 | .runs_before = VNET_FEATURES ("interface-output"), |
| 487 | }; |
| 488 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 489 | VNET_FEATURE_INIT (ip6_interface_output, static) = { |
| 490 | .arc_name = "ip6-output", |
| 491 | .node_name = "interface-output", |
| 492 | .runs_before = 0, /* not before any other features */ |
| 493 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 494 | /* *INDENT-ON* */ |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 495 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | clib_error_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 497 | ip6_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 498 | { |
Florin Coras | b5c13fd | 2017-05-10 12:32:53 -0700 | [diff] [blame] | 499 | ip6_main_t *im = &ip6_main; |
| 500 | |
| 501 | vec_validate (im->fib_index_by_sw_if_index, sw_if_index); |
| 502 | vec_validate (im->mfib_index_by_sw_if_index, sw_if_index); |
| 503 | |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 504 | if (!is_add) |
| 505 | { |
| 506 | /* Ensure that IPv6 is disabled */ |
| 507 | ip6_main_t *im6 = &ip6_main; |
| 508 | ip_lookup_main_t *lm6 = &im6->lookup_main; |
| 509 | ip_interface_address_t *ia = 0; |
| 510 | ip6_address_t *address; |
| 511 | vlib_main_t *vm = vlib_get_main (); |
| 512 | |
| 513 | ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, 0 /* is_add */ ); |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 514 | vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0); |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 515 | /* *INDENT-OFF* */ |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 516 | foreach_ip_interface_address (lm6, ia, sw_if_index, 0, |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 517 | ({ |
| 518 | address = ip_interface_address_get_address (lm6, ia); |
| 519 | ip6_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1); |
| 520 | })); |
| 521 | /* *INDENT-ON* */ |
| 522 | ip6_mfib_interface_enable_disable (sw_if_index, 0); |
| 523 | } |
| 524 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 525 | vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index, |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 526 | is_add, 0, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 527 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 528 | vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled", |
| 529 | sw_if_index, is_add, 0, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 530 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 531 | return /* no error */ 0; |
| 532 | } |
| 533 | |
| 534 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_sw_interface_add_del); |
| 535 | |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 536 | static uword |
| 537 | ip6_lookup (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 538 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 539 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 540 | return ip6_lookup_inline (vm, node, frame); |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 541 | } |
| 542 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 543 | static u8 *format_ip6_lookup_trace (u8 * s, va_list * args); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 544 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 545 | /* *INDENT-OFF* */ |
| 546 | VLIB_REGISTER_NODE (ip6_lookup_node) = |
| 547 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 548 | .function = ip6_lookup, |
| 549 | .name = "ip6-lookup", |
| 550 | .vector_size = sizeof (u32), |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 551 | .format_trace = format_ip6_lookup_trace, |
Ole Troan | f0f8522 | 2016-06-14 21:12:32 +0200 | [diff] [blame] | 552 | .n_next_nodes = IP6_LOOKUP_N_NEXT, |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 553 | .next_nodes = IP6_LOOKUP_NEXT_NODES, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 554 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 555 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 556 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 557 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_lookup_node, ip6_lookup); |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 558 | |
Damjan Marion | 2574d9f | 2018-06-26 14:45:49 +0200 | [diff] [blame] | 559 | static uword |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 560 | ip6_load_balance (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 561 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 562 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 563 | vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters; |
| 564 | u32 n_left_from, n_left_to_next, *from, *to_next; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 565 | ip_lookup_next_t next; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 566 | u32 thread_index = vm->thread_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 567 | ip6_main_t *im = &ip6_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 568 | |
| 569 | from = vlib_frame_vector_args (frame); |
| 570 | n_left_from = frame->n_vectors; |
| 571 | next = node->cached_next_index; |
| 572 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 573 | while (n_left_from > 0) |
| 574 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 575 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 576 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 577 | |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 578 | while (n_left_from >= 4 && n_left_to_next >= 2) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 579 | { |
| 580 | ip_lookup_next_t next0, next1; |
| 581 | const load_balance_t *lb0, *lb1; |
| 582 | vlib_buffer_t *p0, *p1; |
| 583 | u32 pi0, lbi0, hc0, pi1, lbi1, hc1; |
| 584 | const ip6_header_t *ip0, *ip1; |
| 585 | const dpo_id_t *dpo0, *dpo1; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 586 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 587 | /* Prefetch next iteration. */ |
| 588 | { |
| 589 | vlib_buffer_t *p2, *p3; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 590 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 591 | p2 = vlib_get_buffer (vm, from[2]); |
| 592 | p3 = vlib_get_buffer (vm, from[3]); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 593 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 594 | vlib_prefetch_buffer_header (p2, STORE); |
| 595 | vlib_prefetch_buffer_header (p3, STORE); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 596 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 597 | CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE); |
| 598 | CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE); |
| 599 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 600 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 601 | pi0 = to_next[0] = from[0]; |
| 602 | pi1 = to_next[1] = from[1]; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 603 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 604 | from += 2; |
| 605 | n_left_from -= 2; |
| 606 | to_next += 2; |
| 607 | n_left_to_next -= 2; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 608 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 609 | p0 = vlib_get_buffer (vm, pi0); |
| 610 | p1 = vlib_get_buffer (vm, pi1); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 611 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 612 | ip0 = vlib_buffer_get_current (p0); |
| 613 | ip1 = vlib_buffer_get_current (p1); |
| 614 | lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 615 | lbi1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 616 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 617 | lb0 = load_balance_get (lbi0); |
| 618 | lb1 = load_balance_get (lbi1); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 619 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 620 | /* |
| 621 | * this node is for via FIBs we can re-use the hash value from the |
| 622 | * to node if present. |
| 623 | * We don't want to use the same hash value at each level in the recursion |
| 624 | * graph as that would lead to polarisation |
| 625 | */ |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 626 | hc0 = hc1 = 0; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 627 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 628 | if (PREDICT_FALSE (lb0->lb_n_buckets > 1)) |
| 629 | { |
| 630 | if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash)) |
| 631 | { |
| 632 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
| 633 | vnet_buffer (p0)->ip.flow_hash >> 1; |
| 634 | } |
| 635 | else |
| 636 | { |
| 637 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 638 | ip6_compute_flow_hash (ip0, lb0->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 639 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 640 | dpo0 = |
| 641 | load_balance_get_fwd_bucket (lb0, |
| 642 | (hc0 & |
| 643 | lb0->lb_n_buckets_minus_1)); |
| 644 | } |
| 645 | else |
| 646 | { |
| 647 | dpo0 = load_balance_get_bucket_i (lb0, 0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 648 | } |
| 649 | if (PREDICT_FALSE (lb1->lb_n_buckets > 1)) |
| 650 | { |
| 651 | if (PREDICT_TRUE (vnet_buffer (p1)->ip.flow_hash)) |
| 652 | { |
| 653 | hc1 = vnet_buffer (p1)->ip.flow_hash = |
| 654 | vnet_buffer (p1)->ip.flow_hash >> 1; |
| 655 | } |
| 656 | else |
| 657 | { |
| 658 | hc1 = vnet_buffer (p1)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 659 | ip6_compute_flow_hash (ip1, lb1->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 660 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 661 | dpo1 = |
| 662 | load_balance_get_fwd_bucket (lb1, |
| 663 | (hc1 & |
| 664 | lb1->lb_n_buckets_minus_1)); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 665 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 666 | else |
| 667 | { |
| 668 | dpo1 = load_balance_get_bucket_i (lb1, 0); |
| 669 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 670 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 671 | next0 = dpo0->dpoi_next_node; |
| 672 | next1 = dpo1->dpoi_next_node; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 673 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 674 | /* Only process the HBH Option Header if explicitly configured to do so */ |
| 675 | if (PREDICT_FALSE |
| 676 | (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)) |
| 677 | { |
| 678 | next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ? |
| 679 | (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0; |
| 680 | } |
| 681 | /* Only process the HBH Option Header if explicitly configured to do so */ |
| 682 | if (PREDICT_FALSE |
| 683 | (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)) |
| 684 | { |
| 685 | next1 = (dpo_is_adj (dpo1) && im->hbh_enabled) ? |
| 686 | (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next1; |
| 687 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 688 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 689 | vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index; |
| 690 | vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 691 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 692 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 693 | (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0)); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 694 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 695 | (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, p1)); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 696 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 697 | vlib_validate_buffer_enqueue_x2 (vm, node, next, |
| 698 | to_next, n_left_to_next, |
| 699 | pi0, pi1, next0, next1); |
| 700 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 701 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 702 | while (n_left_from > 0 && n_left_to_next > 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 703 | { |
| 704 | ip_lookup_next_t next0; |
| 705 | const load_balance_t *lb0; |
| 706 | vlib_buffer_t *p0; |
| 707 | u32 pi0, lbi0, hc0; |
| 708 | const ip6_header_t *ip0; |
| 709 | const dpo_id_t *dpo0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 710 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 711 | pi0 = from[0]; |
| 712 | to_next[0] = pi0; |
| 713 | from += 1; |
| 714 | to_next += 1; |
| 715 | n_left_to_next -= 1; |
| 716 | n_left_from -= 1; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 717 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 718 | p0 = vlib_get_buffer (vm, pi0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 719 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 720 | ip0 = vlib_buffer_get_current (p0); |
| 721 | lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 722 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 723 | lb0 = load_balance_get (lbi0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 724 | |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 725 | hc0 = 0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 726 | if (PREDICT_FALSE (lb0->lb_n_buckets > 1)) |
| 727 | { |
| 728 | if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash)) |
| 729 | { |
| 730 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
| 731 | vnet_buffer (p0)->ip.flow_hash >> 1; |
| 732 | } |
| 733 | else |
| 734 | { |
| 735 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 736 | ip6_compute_flow_hash (ip0, lb0->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 737 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 738 | dpo0 = |
| 739 | load_balance_get_fwd_bucket (lb0, |
| 740 | (hc0 & |
| 741 | lb0->lb_n_buckets_minus_1)); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 742 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 743 | else |
| 744 | { |
| 745 | dpo0 = load_balance_get_bucket_i (lb0, 0); |
| 746 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 747 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 748 | next0 = dpo0->dpoi_next_node; |
| 749 | vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 750 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 751 | /* Only process the HBH Option Header if explicitly configured to do so */ |
| 752 | if (PREDICT_FALSE |
| 753 | (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)) |
| 754 | { |
| 755 | next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ? |
| 756 | (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0; |
| 757 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 758 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 759 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 760 | (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 761 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 762 | vlib_validate_buffer_enqueue_x1 (vm, node, next, |
| 763 | to_next, n_left_to_next, |
| 764 | pi0, next0); |
| 765 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 766 | |
| 767 | vlib_put_next_frame (vm, node, next, n_left_to_next); |
| 768 | } |
| 769 | |
Neale Ranns | a71844f | 2018-11-08 07:31:36 -0800 | [diff] [blame] | 770 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 771 | ip6_forward_next_trace (vm, node, frame, VLIB_TX); |
| 772 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 773 | return frame->n_vectors; |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 774 | } |
| 775 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 776 | /* *INDENT-OFF* */ |
| 777 | VLIB_REGISTER_NODE (ip6_load_balance_node) = |
| 778 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 779 | .function = ip6_load_balance, |
| 780 | .name = "ip6-load-balance", |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 781 | .vector_size = sizeof (u32), |
Ole Troan | f0f8522 | 2016-06-14 21:12:32 +0200 | [diff] [blame] | 782 | .sibling_of = "ip6-lookup", |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 783 | .format_trace = format_ip6_lookup_trace, |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 784 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 785 | /* *INDENT-ON* */ |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 786 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 787 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_load_balance_node, ip6_load_balance); |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 788 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 789 | typedef struct |
| 790 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 791 | /* Adjacency taken. */ |
| 792 | u32 adj_index; |
| 793 | u32 flow_hash; |
John Lo | 2d34374 | 2016-01-19 17:27:17 -0500 | [diff] [blame] | 794 | u32 fib_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 795 | |
| 796 | /* Packet data, possibly *after* rewrite. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 797 | u8 packet_data[128 - 1 * sizeof (u32)]; |
| 798 | } |
| 799 | ip6_forward_next_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 800 | |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 801 | u8 * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 802 | format_ip6_forward_next_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 803 | { |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 804 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 805 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 806 | ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 807 | u32 indent = format_get_indent (s); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 808 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 809 | s = format (s, "%U%U", |
| 810 | format_white_space, indent, |
| 811 | format_ip6_header, t->packet_data, sizeof (t->packet_data)); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 812 | return s; |
| 813 | } |
| 814 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 815 | static u8 * |
| 816 | format_ip6_lookup_trace (u8 * s, va_list * args) |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 817 | { |
| 818 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 819 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 820 | ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 821 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 822 | |
John Lo | ac8146c | 2016-09-27 17:44:02 -0400 | [diff] [blame] | 823 | s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 824 | t->fib_index, t->adj_index, t->flow_hash); |
| 825 | s = format (s, "\n%U%U", |
| 826 | format_white_space, indent, |
| 827 | format_ip6_header, t->packet_data, sizeof (t->packet_data)); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 828 | return s; |
| 829 | } |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 830 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 831 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 832 | static u8 * |
| 833 | format_ip6_rewrite_trace (u8 * s, va_list * args) |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 834 | { |
| 835 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 836 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 837 | ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 838 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 839 | |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 840 | s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 841 | t->fib_index, t->adj_index, format_ip_adjacency, |
| 842 | t->adj_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 843 | s = format (s, "\n%U%U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 844 | format_white_space, indent, |
| 845 | format_ip_adjacency_packet_data, |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 846 | t->adj_index, t->packet_data, sizeof (t->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 847 | return s; |
| 848 | } |
| 849 | |
| 850 | /* Common trace function for all ip6-forward next nodes. */ |
| 851 | void |
| 852 | ip6_forward_next_trace (vlib_main_t * vm, |
| 853 | vlib_node_runtime_t * node, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 854 | vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 855 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 856 | u32 *from, n_left; |
| 857 | ip6_main_t *im = &ip6_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 858 | |
| 859 | n_left = frame->n_vectors; |
| 860 | from = vlib_frame_vector_args (frame); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 861 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 862 | while (n_left >= 4) |
| 863 | { |
| 864 | u32 bi0, bi1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 865 | vlib_buffer_t *b0, *b1; |
| 866 | ip6_forward_next_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 867 | |
| 868 | /* Prefetch next iteration. */ |
| 869 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 870 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 871 | |
| 872 | bi0 = from[0]; |
| 873 | bi1 = from[1]; |
| 874 | |
| 875 | b0 = vlib_get_buffer (vm, bi0); |
| 876 | b1 = vlib_get_buffer (vm, bi1); |
| 877 | |
| 878 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 879 | { |
| 880 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
| 881 | t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 882 | t0->flow_hash = vnet_buffer (b0)->ip.flow_hash; |
| 883 | t0->fib_index = |
| 884 | (vnet_buffer (b0)->sw_if_index[VLIB_TX] != |
| 885 | (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] : |
| 886 | vec_elt (im->fib_index_by_sw_if_index, |
| 887 | vnet_buffer (b0)->sw_if_index[VLIB_RX]); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 888 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 889 | clib_memcpy_fast (t0->packet_data, |
| 890 | vlib_buffer_get_current (b0), |
| 891 | sizeof (t0->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 892 | } |
| 893 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 894 | { |
| 895 | t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0])); |
| 896 | t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 897 | t1->flow_hash = vnet_buffer (b1)->ip.flow_hash; |
| 898 | t1->fib_index = |
| 899 | (vnet_buffer (b1)->sw_if_index[VLIB_TX] != |
| 900 | (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] : |
| 901 | vec_elt (im->fib_index_by_sw_if_index, |
| 902 | vnet_buffer (b1)->sw_if_index[VLIB_RX]); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 903 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 904 | clib_memcpy_fast (t1->packet_data, |
| 905 | vlib_buffer_get_current (b1), |
| 906 | sizeof (t1->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 907 | } |
| 908 | from += 2; |
| 909 | n_left -= 2; |
| 910 | } |
| 911 | |
| 912 | while (n_left >= 1) |
| 913 | { |
| 914 | u32 bi0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 915 | vlib_buffer_t *b0; |
| 916 | ip6_forward_next_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 917 | |
| 918 | bi0 = from[0]; |
| 919 | |
| 920 | b0 = vlib_get_buffer (vm, bi0); |
| 921 | |
| 922 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 923 | { |
| 924 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
| 925 | t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 926 | t0->flow_hash = vnet_buffer (b0)->ip.flow_hash; |
| 927 | t0->fib_index = |
| 928 | (vnet_buffer (b0)->sw_if_index[VLIB_TX] != |
| 929 | (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] : |
| 930 | vec_elt (im->fib_index_by_sw_if_index, |
| 931 | vnet_buffer (b0)->sw_if_index[VLIB_RX]); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 932 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 933 | clib_memcpy_fast (t0->packet_data, |
| 934 | vlib_buffer_get_current (b0), |
| 935 | sizeof (t0->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 936 | } |
| 937 | from += 1; |
| 938 | n_left -= 1; |
| 939 | } |
| 940 | } |
| 941 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 942 | /* Compute TCP/UDP/ICMP6 checksum in software. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 943 | u16 |
| 944 | ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0, |
| 945 | ip6_header_t * ip0, int *bogus_lengthp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 946 | { |
| 947 | ip_csum_t sum0; |
| 948 | u16 sum16, payload_length_host_byte_order; |
| 949 | u32 i, n_this_buffer, n_bytes_left; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 950 | u32 headers_size = sizeof (ip0[0]); |
| 951 | void *data_this_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 952 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 953 | ASSERT (bogus_lengthp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 954 | *bogus_lengthp = 0; |
| 955 | |
| 956 | /* Initialize checksum with ip header. */ |
| 957 | sum0 = ip0->payload_length + clib_host_to_net_u16 (ip0->protocol); |
| 958 | payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length); |
| 959 | data_this_buffer = (void *) (ip0 + 1); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 960 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 961 | for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++) |
| 962 | { |
| 963 | sum0 = ip_csum_with_carry (sum0, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 964 | clib_mem_unaligned (&ip0-> |
| 965 | src_address.as_uword[i], |
| 966 | uword)); |
| 967 | sum0 = |
| 968 | ip_csum_with_carry (sum0, |
| 969 | clib_mem_unaligned (&ip0->dst_address.as_uword[i], |
| 970 | uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 971 | } |
| 972 | |
AkshayaNadahalli | 1b56352 | 2017-01-23 22:05:35 +0530 | [diff] [blame] | 973 | /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) |
| 974 | * or UDP-Ping packets */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 975 | if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 976 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 977 | u32 skip_bytes; |
| 978 | ip6_hop_by_hop_ext_t *ext_hdr = |
| 979 | (ip6_hop_by_hop_ext_t *) data_this_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 980 | |
| 981 | /* validate really icmp6 next */ |
AkshayaNadahalli | 1b56352 | 2017-01-23 22:05:35 +0530 | [diff] [blame] | 982 | ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6) |
| 983 | || (ext_hdr->next_hdr == IP_PROTOCOL_UDP)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 984 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 985 | skip_bytes = 8 * (1 + ext_hdr->n_data_u64s); |
| 986 | data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 987 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 988 | payload_length_host_byte_order -= skip_bytes; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 989 | headers_size += skip_bytes; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 990 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 991 | |
| 992 | n_bytes_left = n_this_buffer = payload_length_host_byte_order; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 993 | if (p0 && n_this_buffer + headers_size > p0->current_length) |
| 994 | n_this_buffer = |
| 995 | p0->current_length > |
| 996 | headers_size ? p0->current_length - headers_size : 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 997 | while (1) |
| 998 | { |
| 999 | sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer); |
| 1000 | n_bytes_left -= n_this_buffer; |
| 1001 | if (n_bytes_left == 0) |
| 1002 | break; |
| 1003 | |
| 1004 | if (!(p0->flags & VLIB_BUFFER_NEXT_PRESENT)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1005 | { |
| 1006 | *bogus_lengthp = 1; |
| 1007 | return 0xfefe; |
| 1008 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1009 | p0 = vlib_get_buffer (vm, p0->next_buffer); |
| 1010 | data_this_buffer = vlib_buffer_get_current (p0); |
| 1011 | n_this_buffer = p0->current_length; |
| 1012 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1013 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1014 | sum16 = ~ip_csum_fold (sum0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1015 | |
| 1016 | return sum16; |
| 1017 | } |
| 1018 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1019 | u32 |
| 1020 | ip6_tcp_udp_icmp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1021 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1022 | ip6_header_t *ip0 = vlib_buffer_get_current (p0); |
| 1023 | udp_header_t *udp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1024 | u16 sum16; |
| 1025 | int bogus_length; |
| 1026 | |
| 1027 | /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */ |
| 1028 | ASSERT (ip0->protocol == IP_PROTOCOL_TCP |
| 1029 | || ip0->protocol == IP_PROTOCOL_ICMP6 |
| 1030 | || ip0->protocol == IP_PROTOCOL_UDP |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1031 | || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1032 | |
| 1033 | udp0 = (void *) (ip0 + 1); |
| 1034 | if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0) |
| 1035 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1036 | p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
| 1037 | | VNET_BUFFER_F_L4_CHECKSUM_CORRECT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1038 | return p0->flags; |
| 1039 | } |
| 1040 | |
| 1041 | sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length); |
| 1042 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1043 | p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
| 1044 | | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1045 | |
| 1046 | return p0->flags; |
| 1047 | } |
| 1048 | |
AkshayaNadahalli | 0f438df | 2017-02-10 10:54:16 +0530 | [diff] [blame] | 1049 | /** |
| 1050 | * @brief returns number of links on which src is reachable. |
| 1051 | */ |
| 1052 | always_inline int |
| 1053 | ip6_urpf_loose_check (ip6_main_t * im, vlib_buffer_t * b, ip6_header_t * i) |
| 1054 | { |
| 1055 | const load_balance_t *lb0; |
| 1056 | index_t lbi; |
Florin Coras | f3a3bad | 2018-03-28 02:18:29 -0700 | [diff] [blame] | 1057 | u32 fib_index; |
AkshayaNadahalli | 0f438df | 2017-02-10 10:54:16 +0530 | [diff] [blame] | 1058 | |
Florin Coras | f3a3bad | 2018-03-28 02:18:29 -0700 | [diff] [blame] | 1059 | fib_index = vec_elt (im->fib_index_by_sw_if_index, |
| 1060 | vnet_buffer (b)->sw_if_index[VLIB_RX]); |
| 1061 | fib_index = |
| 1062 | (vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ? |
| 1063 | fib_index : vnet_buffer (b)->sw_if_index[VLIB_TX]; |
AkshayaNadahalli | 0f438df | 2017-02-10 10:54:16 +0530 | [diff] [blame] | 1064 | |
Florin Coras | f3a3bad | 2018-03-28 02:18:29 -0700 | [diff] [blame] | 1065 | lbi = ip6_fib_table_fwding_lookup (im, fib_index, &i->src_address); |
AkshayaNadahalli | 0f438df | 2017-02-10 10:54:16 +0530 | [diff] [blame] | 1066 | lb0 = load_balance_get (lbi); |
| 1067 | |
| 1068 | return (fib_urpf_check_size (lb0->lb_urpf)); |
| 1069 | } |
| 1070 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1071 | always_inline u8 |
| 1072 | ip6_next_proto_is_tcp_udp (vlib_buffer_t * p0, ip6_header_t * ip0, |
| 1073 | u32 * udp_offset0) |
| 1074 | { |
| 1075 | u32 proto0; |
| 1076 | proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0); |
| 1077 | if (proto0 != IP_PROTOCOL_UDP) |
| 1078 | { |
| 1079 | proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0); |
| 1080 | proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0; |
| 1081 | } |
| 1082 | return proto0; |
| 1083 | } |
| 1084 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1085 | /* *INDENT-OFF* */ |
| 1086 | VNET_FEATURE_ARC_INIT (ip6_local) = |
| 1087 | { |
| 1088 | .arc_name = "ip6-local", |
| 1089 | .start_nodes = VNET_FEATURES ("ip6-local"), |
| 1090 | }; |
| 1091 | /* *INDENT-ON* */ |
| 1092 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1093 | static uword |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1094 | ip6_local_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1095 | vlib_frame_t * frame, int head_of_feature_arc) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1096 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1097 | ip6_main_t *im = &ip6_main; |
| 1098 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1099 | ip_local_next_t next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1100 | u32 *from, *to_next, n_left_from, n_left_to_next; |
| 1101 | vlib_node_runtime_t *error_node = |
| 1102 | vlib_node_get_runtime (vm, ip6_input_node.index); |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1103 | u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1104 | |
| 1105 | from = vlib_frame_vector_args (frame); |
| 1106 | n_left_from = frame->n_vectors; |
| 1107 | next_index = node->cached_next_index; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1108 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1109 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 1110 | ip6_forward_next_trace (vm, node, frame, VLIB_TX); |
| 1111 | |
| 1112 | while (n_left_from > 0) |
| 1113 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1114 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1115 | |
| 1116 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 1117 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1118 | vlib_buffer_t *p0, *p1; |
| 1119 | ip6_header_t *ip0, *ip1; |
| 1120 | udp_header_t *udp0, *udp1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1121 | u32 pi0, ip_len0, udp_len0, flags0, next0; |
| 1122 | u32 pi1, ip_len1, udp_len1, flags1, next1; |
| 1123 | i32 len_diff0, len_diff1; |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1124 | u8 error0, type0, good_l4_csum0, is_tcp_udp0; |
| 1125 | u8 error1, type1, good_l4_csum1, is_tcp_udp1; |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1126 | u32 udp_offset0, udp_offset1; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1127 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1128 | pi0 = to_next[0] = from[0]; |
| 1129 | pi1 = to_next[1] = from[1]; |
| 1130 | from += 2; |
| 1131 | n_left_from -= 2; |
| 1132 | to_next += 2; |
| 1133 | n_left_to_next -= 2; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1134 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1135 | error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL; |
| 1136 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1137 | p0 = vlib_get_buffer (vm, pi0); |
| 1138 | p1 = vlib_get_buffer (vm, pi1); |
| 1139 | |
| 1140 | ip0 = vlib_buffer_get_current (p0); |
| 1141 | ip1 = vlib_buffer_get_current (p1); |
| 1142 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1143 | if (head_of_feature_arc == 0) |
| 1144 | goto skip_checks; |
| 1145 | |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 1146 | vnet_buffer (p0)->l3_hdr_offset = p0->current_data; |
| 1147 | vnet_buffer (p1)->l3_hdr_offset = p1->current_data; |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 1148 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1149 | type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol]; |
| 1150 | type1 = lm->builtin_protocol_by_ip_protocol[ip1->protocol]; |
| 1151 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1152 | flags0 = p0->flags; |
| 1153 | flags1 = p1->flags; |
| 1154 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1155 | is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0); |
| 1156 | is_tcp_udp1 = ip6_next_proto_is_tcp_udp (p1, ip1, &udp_offset1); |
| 1157 | |
Jakub Grajciar | 96be8e8 | 2017-10-30 14:56:17 +0100 | [diff] [blame] | 1158 | good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
Jakub Grajciar | 2eeeb4b | 2017-11-07 14:39:10 +0100 | [diff] [blame] | 1159 | || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
| 1160 | || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)) |
Jakub Grajciar | 96be8e8 | 2017-10-30 14:56:17 +0100 | [diff] [blame] | 1161 | != 0; |
| 1162 | good_l4_csum1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
Jakub Grajciar | 2eeeb4b | 2017-11-07 14:39:10 +0100 | [diff] [blame] | 1163 | || (flags1 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
| 1164 | || flags1 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)) |
Jakub Grajciar | 96be8e8 | 2017-10-30 14:56:17 +0100 | [diff] [blame] | 1165 | != 0; |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1166 | len_diff0 = 0; |
| 1167 | len_diff1 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1168 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1169 | if (PREDICT_TRUE (is_tcp_udp0)) |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1170 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1171 | udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0); |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1172 | /* Don't verify UDP checksum for packets with explicit zero checksum. */ |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1173 | good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1174 | && udp0->checksum == 0; |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1175 | /* Verify UDP length. */ |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1176 | if (is_tcp_udp0 == IP_PROTOCOL_UDP) |
| 1177 | { |
| 1178 | ip_len0 = clib_net_to_host_u16 (ip0->payload_length); |
| 1179 | udp_len0 = clib_net_to_host_u16 (udp0->length); |
| 1180 | len_diff0 = ip_len0 - udp_len0; |
| 1181 | } |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1182 | } |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1183 | if (PREDICT_TRUE (is_tcp_udp1)) |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1184 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1185 | udp1 = (udp_header_t *) ((u8 *) ip1 + udp_offset1); |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1186 | /* Don't verify UDP checksum for packets with explicit zero checksum. */ |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1187 | good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UDP |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1188 | && udp1->checksum == 0; |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1189 | /* Verify UDP length. */ |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1190 | if (is_tcp_udp1 == IP_PROTOCOL_UDP) |
| 1191 | { |
| 1192 | ip_len1 = clib_net_to_host_u16 (ip1->payload_length); |
| 1193 | udp_len1 = clib_net_to_host_u16 (udp1->length); |
| 1194 | len_diff1 = ip_len1 - udp_len1; |
| 1195 | } |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1196 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1197 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1198 | good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN; |
| 1199 | good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UNKNOWN; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1200 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1201 | len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0; |
| 1202 | len_diff1 = type1 == IP_BUILTIN_PROTOCOL_UDP ? len_diff1 : 0; |
| 1203 | |
| 1204 | if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1205 | && !good_l4_csum0 |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1206 | && !(flags0 & |
| 1207 | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1208 | { |
| 1209 | flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1210 | good_l4_csum0 = |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1211 | (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1212 | } |
| 1213 | if (PREDICT_FALSE (type1 != IP_BUILTIN_PROTOCOL_UNKNOWN |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1214 | && !good_l4_csum1 |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1215 | && !(flags1 & |
| 1216 | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1217 | { |
| 1218 | flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, p1); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1219 | good_l4_csum1 = |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1220 | (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1224 | error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0; |
| 1225 | error1 = len_diff1 < 0 ? IP6_ERROR_UDP_LENGTH : error1; |
| 1226 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1227 | ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP == |
| 1228 | IP6_ERROR_UDP_CHECKSUM); |
| 1229 | ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP == |
| 1230 | IP6_ERROR_ICMP_CHECKSUM); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1231 | error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0); |
| 1232 | error1 = (!good_l4_csum1 ? IP6_ERROR_UDP_CHECKSUM + type1 : error1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1233 | |
| 1234 | /* Drop packets from unroutable hosts. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1235 | /* If this is a neighbor solicitation (ICMP), skip source RPF check */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1236 | if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL && |
| 1237 | type0 != IP_BUILTIN_PROTOCOL_ICMP && |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1238 | !ip6_address_is_link_local_unicast (&ip0->src_address)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1239 | { |
AkshayaNadahalli | 8ea6d71 | 2017-02-07 23:59:54 +0530 | [diff] [blame] | 1240 | error0 = (!ip6_urpf_loose_check (im, p0, ip0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1241 | ? IP6_ERROR_SRC_LOOKUP_MISS : error0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1242 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1243 | if (error1 == IP6_ERROR_UNKNOWN_PROTOCOL && |
| 1244 | type1 != IP_BUILTIN_PROTOCOL_ICMP && |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1245 | !ip6_address_is_link_local_unicast (&ip1->src_address)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1246 | { |
AkshayaNadahalli | 8ea6d71 | 2017-02-07 23:59:54 +0530 | [diff] [blame] | 1247 | error1 = (!ip6_urpf_loose_check (im, p1, ip1) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1248 | ? IP6_ERROR_SRC_LOOKUP_MISS : error1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1251 | vnet_buffer (p0)->ip.fib_index = |
Florin Coras | 3a0325f | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1252 | vnet_buffer (p0)->sw_if_index[VLIB_TX] != ~0 ? |
| 1253 | vnet_buffer (p0)->sw_if_index[VLIB_TX] : |
| 1254 | vnet_buffer (p0)->ip.fib_index; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1255 | |
| 1256 | vnet_buffer (p1)->ip.fib_index = |
Florin Coras | 3a0325f | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1257 | vnet_buffer (p1)->sw_if_index[VLIB_TX] != ~0 ? |
| 1258 | vnet_buffer (p1)->sw_if_index[VLIB_TX] : |
| 1259 | vnet_buffer (p1)->ip.fib_index; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1260 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1261 | skip_checks: |
| 1262 | |
| 1263 | next0 = lm->local_next_by_ip_protocol[ip0->protocol]; |
| 1264 | next1 = lm->local_next_by_ip_protocol[ip1->protocol]; |
| 1265 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1266 | next0 = |
| 1267 | error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0; |
| 1268 | next1 = |
| 1269 | error1 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1270 | |
| 1271 | p0->error = error_node->errors[error0]; |
| 1272 | p1->error = error_node->errors[error1]; |
| 1273 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1274 | if (head_of_feature_arc) |
| 1275 | { |
| 1276 | if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL)) |
| 1277 | vnet_feature_arc_start (arc_index, |
| 1278 | vnet_buffer (p0)->sw_if_index |
| 1279 | [VLIB_RX], &next0, p0); |
| 1280 | if (PREDICT_TRUE (error1 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL)) |
| 1281 | vnet_feature_arc_start (arc_index, |
| 1282 | vnet_buffer (p1)->sw_if_index |
| 1283 | [VLIB_RX], &next1, p1); |
| 1284 | } |
| 1285 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1286 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 1287 | to_next, n_left_to_next, |
| 1288 | pi0, pi1, next0, next1); |
| 1289 | } |
| 1290 | |
| 1291 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1292 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1293 | vlib_buffer_t *p0; |
| 1294 | ip6_header_t *ip0; |
| 1295 | udp_header_t *udp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1296 | u32 pi0, ip_len0, udp_len0, flags0, next0; |
| 1297 | i32 len_diff0; |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1298 | u8 error0, type0, good_l4_csum0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1299 | u32 udp_offset0; |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1300 | u8 is_tcp_udp0; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1301 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1302 | pi0 = to_next[0] = from[0]; |
| 1303 | from += 1; |
| 1304 | n_left_from -= 1; |
| 1305 | to_next += 1; |
| 1306 | n_left_to_next -= 1; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1307 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1308 | error0 = IP6_ERROR_UNKNOWN_PROTOCOL; |
| 1309 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1310 | p0 = vlib_get_buffer (vm, pi0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1311 | ip0 = vlib_buffer_get_current (p0); |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1312 | |
| 1313 | if (head_of_feature_arc == 0) |
| 1314 | goto skip_check; |
| 1315 | |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 1316 | vnet_buffer (p0)->l3_hdr_offset = p0->current_data; |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 1317 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1318 | type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1319 | flags0 = p0->flags; |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1320 | is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0); |
Jakub Grajciar | 96be8e8 | 2017-10-30 14:56:17 +0100 | [diff] [blame] | 1321 | good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT |
Jakub Grajciar | 2eeeb4b | 2017-11-07 14:39:10 +0100 | [diff] [blame] | 1322 | || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
| 1323 | || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)) |
Jakub Grajciar | 96be8e8 | 2017-10-30 14:56:17 +0100 | [diff] [blame] | 1324 | != 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1325 | |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1326 | len_diff0 = 0; |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1327 | if (PREDICT_TRUE (is_tcp_udp0)) |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1328 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1329 | udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1330 | /* Don't verify UDP checksum for packets with explicit zero |
| 1331 | * checksum. */ |
| 1332 | good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1333 | && udp0->checksum == 0; |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1334 | /* Verify UDP length. */ |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1335 | if (is_tcp_udp0 == IP_PROTOCOL_UDP) |
| 1336 | { |
| 1337 | ip_len0 = clib_net_to_host_u16 (ip0->payload_length); |
| 1338 | udp_len0 = clib_net_to_host_u16 (udp0->length); |
| 1339 | len_diff0 = ip_len0 - udp_len0; |
| 1340 | } |
Shwetha | b78292e | 2016-09-13 11:51:00 +0100 | [diff] [blame] | 1341 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1342 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1343 | good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1344 | len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0; |
| 1345 | |
| 1346 | if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1347 | && !good_l4_csum0 |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1348 | && !(flags0 & |
| 1349 | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1350 | { |
| 1351 | flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1352 | good_l4_csum0 = |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1353 | (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | error0 = IP6_ERROR_UNKNOWN_PROTOCOL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1357 | error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0; |
| 1358 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1359 | ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP == |
| 1360 | IP6_ERROR_UDP_CHECKSUM); |
| 1361 | ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP == |
| 1362 | IP6_ERROR_ICMP_CHECKSUM); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1363 | error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1364 | |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1365 | /* If this is a neighbor solicitation (ICMP), skip src RPF check */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1366 | if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL && |
| 1367 | type0 != IP_BUILTIN_PROTOCOL_ICMP && |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1368 | !ip6_address_is_link_local_unicast (&ip0->src_address)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1369 | { |
AkshayaNadahalli | 8ea6d71 | 2017-02-07 23:59:54 +0530 | [diff] [blame] | 1370 | error0 = (!ip6_urpf_loose_check (im, p0, ip0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1371 | ? IP6_ERROR_SRC_LOOKUP_MISS : error0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1372 | } |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1373 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1374 | vnet_buffer (p0)->ip.fib_index = |
Florin Coras | 3a0325f | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1375 | vnet_buffer (p0)->sw_if_index[VLIB_TX] != ~0 ? |
| 1376 | vnet_buffer (p0)->sw_if_index[VLIB_TX] : |
| 1377 | vnet_buffer (p0)->ip.fib_index; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1378 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1379 | skip_check: |
| 1380 | |
| 1381 | next0 = lm->local_next_by_ip_protocol[ip0->protocol]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1382 | next0 = |
| 1383 | error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0; |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 1384 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1385 | p0->error = error_node->errors[error0]; |
| 1386 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1387 | if (head_of_feature_arc) |
| 1388 | { |
| 1389 | if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL)) |
| 1390 | vnet_feature_arc_start (arc_index, |
| 1391 | vnet_buffer (p0)->sw_if_index |
| 1392 | [VLIB_RX], &next0, p0); |
| 1393 | } |
| 1394 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1395 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 1396 | to_next, n_left_to_next, |
| 1397 | pi0, next0); |
| 1398 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1399 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1400 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 1401 | } |
| 1402 | |
| 1403 | return frame->n_vectors; |
| 1404 | } |
| 1405 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1406 | static uword |
| 1407 | ip6_local (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1408 | { |
| 1409 | return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ ); |
| 1410 | } |
| 1411 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1412 | /* *INDENT-OFF* */ |
| 1413 | VLIB_REGISTER_NODE (ip6_local_node, static) = |
| 1414 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1415 | .function = ip6_local, |
| 1416 | .name = "ip6-local", |
| 1417 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1418 | .format_trace = format_ip6_forward_next_trace, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1419 | .n_next_nodes = IP_LOCAL_N_NEXT, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1420 | .next_nodes = |
| 1421 | { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1422 | [IP_LOCAL_NEXT_DROP] = "ip6-drop", |
| 1423 | [IP_LOCAL_NEXT_PUNT] = "ip6-punt", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1424 | [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup", |
| 1425 | [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input", |
Juraj Sloboda | 3048b63 | 2018-10-02 11:13:53 +0200 | [diff] [blame] | 1426 | [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-reassembly", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1427 | }, |
| 1428 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1429 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1430 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1431 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_node, ip6_local); |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1432 | |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1433 | |
| 1434 | static uword |
| 1435 | ip6_local_end_of_arc (vlib_main_t * vm, |
| 1436 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1437 | { |
| 1438 | return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ ); |
| 1439 | } |
| 1440 | |
| 1441 | /* *INDENT-OFF* */ |
| 1442 | VLIB_REGISTER_NODE (ip6_local_end_of_arc_node,static) = { |
| 1443 | .function = ip6_local_end_of_arc, |
| 1444 | .name = "ip6-local-end-of-arc", |
| 1445 | .vector_size = sizeof (u32), |
| 1446 | |
| 1447 | .format_trace = format_ip6_forward_next_trace, |
| 1448 | .sibling_of = "ip6-local", |
| 1449 | }; |
| 1450 | |
| 1451 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_end_of_arc_node, ip6_local_end_of_arc) |
| 1452 | |
| 1453 | VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = { |
| 1454 | .arc_name = "ip6-local", |
| 1455 | .node_name = "ip6-local-end-of-arc", |
| 1456 | .runs_before = 0, /* not before any other features */ |
| 1457 | }; |
| 1458 | /* *INDENT-ON* */ |
| 1459 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1460 | void |
| 1461 | ip6_register_protocol (u32 protocol, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1462 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1463 | vlib_main_t *vm = vlib_get_main (); |
| 1464 | ip6_main_t *im = &ip6_main; |
| 1465 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1466 | |
| 1467 | ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol)); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1468 | lm->local_next_by_ip_protocol[protocol] = |
| 1469 | vlib_node_add_next (vm, ip6_local_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1470 | } |
| 1471 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1472 | clib_error_t * |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 1473 | ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index, |
| 1474 | u8 refresh) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1475 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1476 | vnet_main_t *vnm = vnet_get_main (); |
| 1477 | ip6_main_t *im = &ip6_main; |
| 1478 | icmp6_neighbor_solicitation_header_t *h; |
| 1479 | ip6_address_t *src; |
| 1480 | ip_interface_address_t *ia; |
| 1481 | ip_adjacency_t *adj; |
| 1482 | vnet_hw_interface_t *hi; |
| 1483 | vnet_sw_interface_t *si; |
| 1484 | vlib_buffer_t *b; |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 1485 | adj_index_t ai; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1486 | u32 bi = 0; |
| 1487 | int bogus_length; |
| 1488 | |
| 1489 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 1490 | |
| 1491 | if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)) |
| 1492 | { |
| 1493 | return clib_error_return (0, "%U: interface %U down", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1494 | format_ip6_address, dst, |
| 1495 | format_vnet_sw_if_index_name, vnm, |
| 1496 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1497 | } |
| 1498 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1499 | src = |
| 1500 | ip6_interface_address_matching_destination (im, dst, sw_if_index, &ia); |
| 1501 | if (!src) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1502 | { |
| 1503 | vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1504 | return clib_error_return |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1505 | (0, "no matching interface address for destination %U (interface %U)", |
| 1506 | format_ip6_address, dst, |
| 1507 | format_vnet_sw_if_index_name, vnm, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1508 | } |
| 1509 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1510 | h = |
| 1511 | vlib_packet_template_get_packet (vm, |
| 1512 | &im->discover_neighbor_packet_template, |
| 1513 | &bi); |
John Lo | 084606b | 2018-06-19 15:27:48 -0400 | [diff] [blame] | 1514 | if (!h) |
| 1515 | return clib_error_return (0, "ICMP6 NS packet allocation failed"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1516 | |
| 1517 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1518 | |
| 1519 | /* Destination address is a solicited node multicast address. We need to fill in |
| 1520 | the low 24 bits with low 24 bits of target's address. */ |
| 1521 | h->ip.dst_address.as_u8[13] = dst->as_u8[13]; |
| 1522 | h->ip.dst_address.as_u8[14] = dst->as_u8[14]; |
| 1523 | h->ip.dst_address.as_u8[15] = dst->as_u8[15]; |
| 1524 | |
| 1525 | h->ip.src_address = src[0]; |
| 1526 | h->neighbor.target_address = dst[0]; |
| 1527 | |
Pavel Kotucek | 5780898 | 2017-08-02 08:20:19 +0200 | [diff] [blame] | 1528 | if (PREDICT_FALSE (!hi->hw_address)) |
| 1529 | { |
| 1530 | return clib_error_return (0, "%U: interface %U do not support ip probe", |
| 1531 | format_ip6_address, dst, |
| 1532 | format_vnet_sw_if_index_name, vnm, |
| 1533 | sw_if_index); |
| 1534 | } |
| 1535 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 1536 | clib_memcpy_fast (h->link_layer_option.ethernet_address, hi->hw_address, |
| 1537 | vec_len (hi->hw_address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1538 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1539 | h->neighbor.icmp.checksum = |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1540 | ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1541 | ASSERT (bogus_length == 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1542 | |
| 1543 | b = vlib_get_buffer (vm, bi); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1544 | vnet_buffer (b)->sw_if_index[VLIB_RX] = |
| 1545 | vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1546 | |
| 1547 | /* Add encapsulation string for software interface (e.g. ethernet header). */ |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 1548 | ip46_address_t nh = { |
| 1549 | .ip6 = *dst, |
| 1550 | }; |
| 1551 | |
| 1552 | ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP6, |
| 1553 | VNET_LINK_IP6, &nh, sw_if_index); |
| 1554 | adj = adj_get (ai); |
| 1555 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 1556 | /* Peer has been previously resolved, retrieve glean adj instead */ |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 1557 | if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE && refresh == 0) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 1558 | { |
| 1559 | adj_unlock (ai); |
Ole Troan | 6ee4051 | 2018-02-12 18:14:39 +0100 | [diff] [blame] | 1560 | ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP6, |
| 1561 | VNET_LINK_IP6, sw_if_index, &nh); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 1562 | adj = adj_get (ai); |
| 1563 | } |
| 1564 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1565 | vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t)); |
| 1566 | vlib_buffer_advance (b, -adj->rewrite_header.data_bytes); |
| 1567 | |
| 1568 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1569 | vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index); |
| 1570 | u32 *to_next = vlib_frame_vector_args (f); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1571 | to_next[0] = bi; |
| 1572 | f->n_vectors = 1; |
| 1573 | vlib_put_frame_to_node (vm, hi->output_node_index, f); |
| 1574 | } |
| 1575 | |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 1576 | adj_unlock (ai); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1577 | return /* no error */ 0; |
| 1578 | } |
| 1579 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1580 | typedef enum |
| 1581 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1582 | IP6_REWRITE_NEXT_DROP, |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 1583 | IP6_REWRITE_NEXT_ICMP_ERROR, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1584 | IP6_REWRITE_NEXT_FRAGMENT, |
| 1585 | IP6_REWRITE_N_NEXT /* Last */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1586 | } ip6_rewrite_next_t; |
| 1587 | |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 1588 | /** |
| 1589 | * This bits of an IPv6 address to mask to construct a multicast |
| 1590 | * MAC address |
| 1591 | */ |
| 1592 | #define IP6_MCAST_ADDR_MASK 0xffffffff |
| 1593 | |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1594 | always_inline void |
| 1595 | ip6_mtu_check (vlib_buffer_t * b, u16 packet_bytes, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1596 | u16 adj_packet_bytes, bool is_locally_generated, |
| 1597 | u32 * next, u32 * error) |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1598 | { |
| 1599 | if (adj_packet_bytes >= 1280 && packet_bytes > adj_packet_bytes) |
| 1600 | { |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1601 | if (is_locally_generated) |
| 1602 | { |
| 1603 | /* IP fragmentation */ |
Ole Troan | 282093f | 2018-09-19 12:38:51 +0200 | [diff] [blame] | 1604 | ip_frag_set_vnet_buffer (b, adj_packet_bytes, |
Ole Troan | b3655e5 | 2018-08-16 22:08:49 +0200 | [diff] [blame] | 1605 | IP6_FRAG_NEXT_IP6_REWRITE, 0); |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1606 | *next = IP6_REWRITE_NEXT_FRAGMENT; |
Ole Troan | 282093f | 2018-09-19 12:38:51 +0200 | [diff] [blame] | 1607 | *error = IP6_ERROR_MTU_EXCEEDED; |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1608 | } |
| 1609 | else |
| 1610 | { |
| 1611 | *error = IP6_ERROR_MTU_EXCEEDED; |
| 1612 | icmp6_error_set_vnet_buffer (b, ICMP6_packet_too_big, 0, |
| 1613 | adj_packet_bytes); |
| 1614 | *next = IP6_REWRITE_NEXT_ICMP_ERROR; |
| 1615 | } |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1616 | } |
| 1617 | } |
| 1618 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1619 | always_inline uword |
| 1620 | ip6_rewrite_inline (vlib_main_t * vm, |
| 1621 | vlib_node_runtime_t * node, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1622 | vlib_frame_t * frame, |
| 1623 | int do_counters, int is_midchain, int is_mcast) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1624 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1625 | ip_lookup_main_t *lm = &ip6_main.lookup_main; |
| 1626 | u32 *from = vlib_frame_vector_args (frame); |
| 1627 | u32 n_left_from, n_left_to_next, *to_next, next_index; |
| 1628 | vlib_node_runtime_t *error_node = |
| 1629 | vlib_node_get_runtime (vm, ip6_input_node.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1630 | |
| 1631 | n_left_from = frame->n_vectors; |
| 1632 | next_index = node->cached_next_index; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 1633 | u32 thread_index = vm->thread_index; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1634 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1635 | while (n_left_from > 0) |
| 1636 | { |
| 1637 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 1638 | |
| 1639 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 1640 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1641 | ip_adjacency_t *adj0, *adj1; |
| 1642 | vlib_buffer_t *p0, *p1; |
| 1643 | ip6_header_t *ip0, *ip1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1644 | u32 pi0, rw_len0, next0, error0, adj_index0; |
| 1645 | u32 pi1, rw_len1, next1, error1, adj_index1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1646 | u32 tx_sw_if_index0, tx_sw_if_index1; |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1647 | bool is_locally_originated0, is_locally_originated1; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1648 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1649 | /* Prefetch next iteration. */ |
| 1650 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1651 | vlib_buffer_t *p2, *p3; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1652 | |
| 1653 | p2 = vlib_get_buffer (vm, from[2]); |
| 1654 | p3 = vlib_get_buffer (vm, from[3]); |
| 1655 | |
| 1656 | vlib_prefetch_buffer_header (p2, LOAD); |
| 1657 | vlib_prefetch_buffer_header (p3, LOAD); |
| 1658 | |
| 1659 | CLIB_PREFETCH (p2->pre_data, 32, STORE); |
| 1660 | CLIB_PREFETCH (p3->pre_data, 32, STORE); |
| 1661 | |
| 1662 | CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE); |
| 1663 | CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE); |
| 1664 | } |
| 1665 | |
| 1666 | pi0 = to_next[0] = from[0]; |
| 1667 | pi1 = to_next[1] = from[1]; |
| 1668 | |
| 1669 | from += 2; |
| 1670 | n_left_from -= 2; |
| 1671 | to_next += 2; |
| 1672 | n_left_to_next -= 2; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1673 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1674 | p0 = vlib_get_buffer (vm, pi0); |
| 1675 | p1 = vlib_get_buffer (vm, pi1); |
| 1676 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1677 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 1678 | adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1679 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1680 | ip0 = vlib_buffer_get_current (p0); |
| 1681 | ip1 = vlib_buffer_get_current (p1); |
| 1682 | |
| 1683 | error0 = error1 = IP6_ERROR_NONE; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1684 | next0 = next1 = IP6_REWRITE_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1685 | |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1686 | is_locally_originated0 = |
| 1687 | p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 1688 | if (PREDICT_TRUE (!is_locally_originated0)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1689 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1690 | i32 hop_limit0 = ip0->hop_limit; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1691 | |
| 1692 | /* Input node should have reject packets with hop limit 0. */ |
| 1693 | ASSERT (ip0->hop_limit > 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1694 | |
| 1695 | hop_limit0 -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1696 | |
| 1697 | ip0->hop_limit = hop_limit0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1698 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1699 | /* |
| 1700 | * If the hop count drops below 1 when forwarding, generate |
| 1701 | * an ICMP response. |
| 1702 | */ |
| 1703 | if (PREDICT_FALSE (hop_limit0 <= 0)) |
| 1704 | { |
| 1705 | error0 = IP6_ERROR_TIME_EXPIRED; |
| 1706 | next0 = IP6_REWRITE_NEXT_ICMP_ERROR; |
| 1707 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 1708 | icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded, |
| 1709 | ICMP6_time_exceeded_ttl_exceeded_in_transit, |
| 1710 | 0); |
| 1711 | } |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1712 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1713 | else |
| 1714 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1715 | p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1716 | } |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1717 | is_locally_originated1 = |
| 1718 | p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 1719 | if (PREDICT_TRUE (!is_locally_originated1)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1720 | { |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1721 | i32 hop_limit1 = ip1->hop_limit; |
| 1722 | |
| 1723 | /* Input node should have reject packets with hop limit 0. */ |
| 1724 | ASSERT (ip1->hop_limit > 0); |
| 1725 | |
| 1726 | hop_limit1 -= 1; |
| 1727 | |
| 1728 | ip1->hop_limit = hop_limit1; |
| 1729 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1730 | /* |
| 1731 | * If the hop count drops below 1 when forwarding, generate |
| 1732 | * an ICMP response. |
| 1733 | */ |
| 1734 | if (PREDICT_FALSE (hop_limit1 <= 0)) |
| 1735 | { |
| 1736 | error1 = IP6_ERROR_TIME_EXPIRED; |
| 1737 | next1 = IP6_REWRITE_NEXT_ICMP_ERROR; |
| 1738 | vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 1739 | icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded, |
| 1740 | ICMP6_time_exceeded_ttl_exceeded_in_transit, |
| 1741 | 0); |
| 1742 | } |
| 1743 | } |
| 1744 | else |
| 1745 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1746 | p1->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1747 | } |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 1748 | adj0 = adj_get (adj_index0); |
| 1749 | adj1 = adj_get (adj_index1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1750 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1751 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
| 1752 | rw_len1 = adj1[0].rewrite_header.data_bytes; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1753 | vnet_buffer (p0)->ip.save_rewrite_length = rw_len0; |
| 1754 | vnet_buffer (p1)->ip.save_rewrite_length = rw_len1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1755 | |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1756 | if (do_counters) |
| 1757 | { |
| 1758 | vlib_increment_combined_counter |
| 1759 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1760 | thread_index, adj_index0, 1, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1761 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
| 1762 | vlib_increment_combined_counter |
| 1763 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1764 | thread_index, adj_index1, 1, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1765 | vlib_buffer_length_in_chain (vm, p1) + rw_len1); |
| 1766 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1767 | |
| 1768 | /* Check MTU of outgoing interface. */ |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1769 | ip6_mtu_check (p0, clib_net_to_host_u16 (ip0->payload_length) + |
| 1770 | sizeof (ip6_header_t), |
| 1771 | adj0[0].rewrite_header.max_l3_packet_bytes, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1772 | is_locally_originated0, &next0, &error0); |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1773 | ip6_mtu_check (p1, clib_net_to_host_u16 (ip1->payload_length) + |
| 1774 | sizeof (ip6_header_t), |
| 1775 | adj1[0].rewrite_header.max_l3_packet_bytes, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1776 | is_locally_originated1, &next1, &error1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1777 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1778 | /* Don't adjust the buffer for hop count issue; icmp-error node |
| 1779 | * wants to see the IP headerr */ |
| 1780 | if (PREDICT_TRUE (error0 == IP6_ERROR_NONE)) |
| 1781 | { |
| 1782 | p0->current_data -= rw_len0; |
| 1783 | p0->current_length += rw_len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1784 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1785 | tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index; |
| 1786 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0; |
| 1787 | next0 = adj0[0].rewrite_header.next_index; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 1788 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 1789 | if (PREDICT_FALSE |
| 1790 | (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 1791 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 1792 | tx_sw_if_index0, &next0, p0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1793 | } |
| 1794 | if (PREDICT_TRUE (error1 == IP6_ERROR_NONE)) |
| 1795 | { |
| 1796 | p1->current_data -= rw_len1; |
| 1797 | p1->current_length += rw_len1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1798 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1799 | tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index; |
| 1800 | vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1; |
| 1801 | next1 = adj1[0].rewrite_header.next_index; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 1802 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 1803 | if (PREDICT_FALSE |
| 1804 | (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 1805 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 1806 | tx_sw_if_index1, &next1, p1); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 1807 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1808 | |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 1809 | /* Guess we are only writing on simple Ethernet header. */ |
| 1810 | vnet_rewrite_two_headers (adj0[0], adj1[0], |
| 1811 | ip0, ip1, sizeof (ethernet_header_t)); |
| 1812 | |
| 1813 | if (is_midchain) |
| 1814 | { |
| 1815 | adj0->sub_type.midchain.fixup_func |
| 1816 | (vm, adj0, p0, adj0->sub_type.midchain.fixup_data); |
| 1817 | adj1->sub_type.midchain.fixup_func |
| 1818 | (vm, adj1, p1, adj1->sub_type.midchain.fixup_data); |
| 1819 | } |
| 1820 | if (is_mcast) |
| 1821 | { |
| 1822 | /* |
| 1823 | * copy bytes from the IP address into the MAC rewrite |
| 1824 | */ |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 1825 | vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK, |
| 1826 | adj0-> |
| 1827 | rewrite_header.dst_mcast_offset, |
| 1828 | &ip0->dst_address.as_u32[3], |
| 1829 | (u8 *) ip0); |
| 1830 | vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK, |
| 1831 | adj1-> |
| 1832 | rewrite_header.dst_mcast_offset, |
| 1833 | &ip1->dst_address.as_u32[3], |
| 1834 | (u8 *) ip1); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1835 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1836 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1837 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 1838 | to_next, n_left_to_next, |
| 1839 | pi0, pi1, next0, next1); |
| 1840 | } |
| 1841 | |
| 1842 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1843 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1844 | ip_adjacency_t *adj0; |
| 1845 | vlib_buffer_t *p0; |
| 1846 | ip6_header_t *ip0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1847 | u32 pi0, rw_len0; |
| 1848 | u32 adj_index0, next0, error0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1849 | u32 tx_sw_if_index0; |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1850 | bool is_locally_originated0; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1851 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1852 | pi0 = to_next[0] = from[0]; |
| 1853 | |
| 1854 | p0 = vlib_get_buffer (vm, pi0); |
| 1855 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1856 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1857 | |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 1858 | adj0 = adj_get (adj_index0); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1859 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1860 | ip0 = vlib_buffer_get_current (p0); |
| 1861 | |
| 1862 | error0 = IP6_ERROR_NONE; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1863 | next0 = IP6_REWRITE_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1864 | |
| 1865 | /* Check hop limit */ |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1866 | is_locally_originated0 = |
| 1867 | p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 1868 | if (PREDICT_TRUE (!is_locally_originated0)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1869 | { |
| 1870 | i32 hop_limit0 = ip0->hop_limit; |
| 1871 | |
| 1872 | ASSERT (ip0->hop_limit > 0); |
| 1873 | |
| 1874 | hop_limit0 -= 1; |
| 1875 | |
| 1876 | ip0->hop_limit = hop_limit0; |
| 1877 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1878 | if (PREDICT_FALSE (hop_limit0 <= 0)) |
| 1879 | { |
| 1880 | /* |
| 1881 | * If the hop count drops below 1 when forwarding, generate |
| 1882 | * an ICMP response. |
| 1883 | */ |
| 1884 | error0 = IP6_ERROR_TIME_EXPIRED; |
| 1885 | next0 = IP6_REWRITE_NEXT_ICMP_ERROR; |
| 1886 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 1887 | icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded, |
| 1888 | ICMP6_time_exceeded_ttl_exceeded_in_transit, |
| 1889 | 0); |
| 1890 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1891 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1892 | else |
| 1893 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1894 | p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1895 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1896 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1897 | /* Guess we are only writing on simple Ethernet header. */ |
| 1898 | vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t)); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1899 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1900 | /* Update packet buffer attributes/set output interface. */ |
| 1901 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1902 | vnet_buffer (p0)->ip.save_rewrite_length = rw_len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1903 | |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1904 | if (do_counters) |
| 1905 | { |
| 1906 | vlib_increment_combined_counter |
| 1907 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1908 | thread_index, adj_index0, 1, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1909 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
| 1910 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1911 | |
| 1912 | /* Check MTU of outgoing interface. */ |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1913 | ip6_mtu_check (p0, clib_net_to_host_u16 (ip0->payload_length) + |
| 1914 | sizeof (ip6_header_t), |
| 1915 | adj0[0].rewrite_header.max_l3_packet_bytes, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 1916 | is_locally_originated0, &next0, &error0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1917 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1918 | /* Don't adjust the buffer for hop count issue; icmp-error node |
Ole Troan | da6e11b | 2018-05-23 11:21:42 +0200 | [diff] [blame] | 1919 | * wants to see the IP header */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1920 | if (PREDICT_TRUE (error0 == IP6_ERROR_NONE)) |
| 1921 | { |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 1922 | p0->current_data -= rw_len0; |
| 1923 | p0->current_length += rw_len0; |
| 1924 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1925 | tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 1926 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1927 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0; |
| 1928 | next0 = adj0[0].rewrite_header.next_index; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 1929 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 1930 | if (PREDICT_FALSE |
| 1931 | (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 1932 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 1933 | tx_sw_if_index0, &next0, p0); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 1934 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1935 | |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 1936 | if (is_midchain) |
| 1937 | { |
| 1938 | adj0->sub_type.midchain.fixup_func |
| 1939 | (vm, adj0, p0, adj0->sub_type.midchain.fixup_data); |
| 1940 | } |
| 1941 | if (is_mcast) |
| 1942 | { |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 1943 | vnet_ip_mcast_fixup_header (IP6_MCAST_ADDR_MASK, |
| 1944 | adj0-> |
| 1945 | rewrite_header.dst_mcast_offset, |
| 1946 | &ip0->dst_address.as_u32[3], |
| 1947 | (u8 *) ip0); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1948 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 1949 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1950 | p0->error = error_node->errors[error0]; |
| 1951 | |
| 1952 | from += 1; |
| 1953 | n_left_from -= 1; |
| 1954 | to_next += 1; |
| 1955 | n_left_to_next -= 1; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1956 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1957 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 1958 | to_next, n_left_to_next, |
| 1959 | pi0, next0); |
| 1960 | } |
| 1961 | |
| 1962 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 1963 | } |
| 1964 | |
| 1965 | /* Need to do trace after rewrites to pick up new packet data. */ |
| 1966 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1967 | ip6_forward_next_trace (vm, node, frame, VLIB_TX); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1968 | |
| 1969 | return frame->n_vectors; |
| 1970 | } |
| 1971 | |
| 1972 | static uword |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 1973 | ip6_rewrite (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1974 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1975 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1976 | if (adj_are_counters_enabled ()) |
| 1977 | return ip6_rewrite_inline (vm, node, frame, 1, 0, 0); |
| 1978 | else |
| 1979 | return ip6_rewrite_inline (vm, node, frame, 0, 0, 0); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | static uword |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 1983 | ip6_rewrite_bcast (vlib_main_t * vm, |
| 1984 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1985 | { |
| 1986 | if (adj_are_counters_enabled ()) |
| 1987 | return ip6_rewrite_inline (vm, node, frame, 1, 0, 0); |
| 1988 | else |
| 1989 | return ip6_rewrite_inline (vm, node, frame, 0, 0, 0); |
| 1990 | } |
| 1991 | |
| 1992 | static uword |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1993 | ip6_rewrite_mcast (vlib_main_t * vm, |
| 1994 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1995 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 1996 | if (adj_are_counters_enabled ()) |
| 1997 | return ip6_rewrite_inline (vm, node, frame, 1, 0, 1); |
| 1998 | else |
| 1999 | return ip6_rewrite_inline (vm, node, frame, 0, 0, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2000 | } |
| 2001 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2002 | static uword |
| 2003 | ip6_midchain (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2004 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2005 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2006 | if (adj_are_counters_enabled ()) |
| 2007 | return ip6_rewrite_inline (vm, node, frame, 1, 1, 0); |
| 2008 | else |
| 2009 | return ip6_rewrite_inline (vm, node, frame, 0, 1, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2010 | } |
| 2011 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2012 | static uword |
| 2013 | ip6_mcast_midchain (vlib_main_t * vm, |
| 2014 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 2015 | { |
| 2016 | if (adj_are_counters_enabled ()) |
| 2017 | return ip6_rewrite_inline (vm, node, frame, 1, 1, 1); |
| 2018 | else |
Neale Ranns | 9f171f5 | 2017-04-11 08:56:53 -0700 | [diff] [blame] | 2019 | return ip6_rewrite_inline (vm, node, frame, 0, 1, 1); |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2020 | } |
| 2021 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2022 | /* *INDENT-OFF* */ |
| 2023 | VLIB_REGISTER_NODE (ip6_midchain_node) = |
| 2024 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2025 | .function = ip6_midchain, |
| 2026 | .name = "ip6-midchain", |
| 2027 | .vector_size = sizeof (u32), |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2028 | .format_trace = format_ip6_forward_next_trace, |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 2029 | .sibling_of = "ip6-rewrite", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2030 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2031 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2032 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_midchain_node, ip6_midchain); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2033 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2034 | VLIB_REGISTER_NODE (ip6_rewrite_node) = |
| 2035 | { |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2036 | .function = ip6_rewrite, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2037 | .name = "ip6-rewrite", |
| 2038 | .vector_size = sizeof (u32), |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 2039 | .format_trace = format_ip6_rewrite_trace, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2040 | .n_next_nodes = IP6_REWRITE_N_NEXT, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2041 | .next_nodes = |
| 2042 | { |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 2043 | [IP6_REWRITE_NEXT_DROP] = "ip6-drop", |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 2044 | [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error", |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2045 | [IP6_REWRITE_NEXT_FRAGMENT] = "ip6-frag", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2046 | }, |
| 2047 | }; |
| 2048 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2049 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_node, ip6_rewrite); |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 2050 | |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2051 | VLIB_REGISTER_NODE (ip6_rewrite_bcast_node) = { |
Matthew Smith | e375067 | 2018-07-20 11:52:05 -0500 | [diff] [blame] | 2052 | .function = ip6_rewrite_bcast, |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2053 | .name = "ip6-rewrite-bcast", |
| 2054 | .vector_size = sizeof (u32), |
| 2055 | |
| 2056 | .format_trace = format_ip6_rewrite_trace, |
| 2057 | .sibling_of = "ip6-rewrite", |
| 2058 | }; |
| 2059 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_bcast_node, ip6_rewrite_bcast) |
| 2060 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2061 | VLIB_REGISTER_NODE (ip6_rewrite_mcast_node) = |
| 2062 | { |
| 2063 | .function = ip6_rewrite_mcast, |
| 2064 | .name = "ip6-rewrite-mcast", |
| 2065 | .vector_size = sizeof (u32), |
| 2066 | .format_trace = format_ip6_rewrite_trace, |
| 2067 | .sibling_of = "ip6-rewrite", |
| 2068 | }; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2069 | |
| 2070 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_mcast_node, ip6_rewrite_mcast); |
| 2071 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2072 | VLIB_REGISTER_NODE (ip6_mcast_midchain_node, static) = |
| 2073 | { |
| 2074 | .function = ip6_mcast_midchain, |
| 2075 | .name = "ip6-mcast-midchain", |
| 2076 | .vector_size = sizeof (u32), |
| 2077 | .format_trace = format_ip6_rewrite_trace, |
| 2078 | .sibling_of = "ip6-rewrite", |
| 2079 | }; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2080 | |
| 2081 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_mcast_midchain_node, ip6_mcast_midchain); |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2082 | /* *INDENT-ON* */ |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2083 | |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2084 | /* |
| 2085 | * Hop-by-Hop handling |
| 2086 | */ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2087 | ip6_hop_by_hop_main_t ip6_hop_by_hop_main; |
| 2088 | |
| 2089 | #define foreach_ip6_hop_by_hop_error \ |
| 2090 | _(PROCESSED, "pkts with ip6 hop-by-hop options") \ |
| 2091 | _(FORMAT, "incorrectly formatted hop-by-hop options") \ |
| 2092 | _(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options") |
| 2093 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2094 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2095 | typedef enum |
| 2096 | { |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2097 | #define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym, |
| 2098 | foreach_ip6_hop_by_hop_error |
| 2099 | #undef _ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2100 | IP6_HOP_BY_HOP_N_ERROR, |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2101 | } ip6_hop_by_hop_error_t; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2102 | /* *INDENT-ON* */ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2103 | |
| 2104 | /* |
| 2105 | * Primary h-b-h handler trace support |
| 2106 | * We work pretty hard on the problem for obvious reasons |
| 2107 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2108 | typedef struct |
| 2109 | { |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2110 | u32 next_index; |
| 2111 | u32 trace_len; |
| 2112 | u8 option_data[256]; |
| 2113 | } ip6_hop_by_hop_trace_t; |
| 2114 | |
| 2115 | vlib_node_registration_t ip6_hop_by_hop_node; |
| 2116 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2117 | static char *ip6_hop_by_hop_error_strings[] = { |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2118 | #define _(sym,string) string, |
| 2119 | foreach_ip6_hop_by_hop_error |
| 2120 | #undef _ |
| 2121 | }; |
| 2122 | |
Shwetha Bhandari | 78372a9 | 2017-01-18 12:43:54 +0530 | [diff] [blame] | 2123 | u8 * |
| 2124 | format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args) |
| 2125 | { |
| 2126 | ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *); |
| 2127 | int total_len = va_arg (*args, int); |
| 2128 | ip6_hop_by_hop_option_t *opt0, *limit0; |
| 2129 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
| 2130 | u8 type0; |
| 2131 | |
| 2132 | s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d", |
| 2133 | hbh0->protocol, (hbh0->length + 1) << 3, total_len); |
| 2134 | |
| 2135 | opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1); |
| 2136 | limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len); |
| 2137 | |
| 2138 | while (opt0 < limit0) |
| 2139 | { |
| 2140 | type0 = opt0->type; |
| 2141 | switch (type0) |
| 2142 | { |
| 2143 | case 0: /* Pad, just stop */ |
| 2144 | opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1); |
| 2145 | break; |
| 2146 | |
| 2147 | default: |
| 2148 | if (hm->trace[type0]) |
| 2149 | { |
| 2150 | s = (*hm->trace[type0]) (s, opt0); |
| 2151 | } |
| 2152 | else |
| 2153 | { |
| 2154 | s = |
| 2155 | format (s, "\n unrecognized option %d length %d", type0, |
| 2156 | opt0->length); |
| 2157 | } |
| 2158 | opt0 = |
| 2159 | (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length + |
| 2160 | sizeof (ip6_hop_by_hop_option_t)); |
| 2161 | break; |
| 2162 | } |
| 2163 | } |
| 2164 | return s; |
| 2165 | } |
| 2166 | |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2167 | static u8 * |
| 2168 | format_ip6_hop_by_hop_trace (u8 * s, va_list * args) |
| 2169 | { |
| 2170 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 2171 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2172 | ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2173 | ip6_hop_by_hop_header_t *hbh0; |
| 2174 | ip6_hop_by_hop_option_t *opt0, *limit0; |
| 2175 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
| 2176 | |
| 2177 | u8 type0; |
| 2178 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2179 | hbh0 = (ip6_hop_by_hop_header_t *) t->option_data; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2180 | |
| 2181 | s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2182 | t->next_index, (hbh0->length + 1) << 3, t->trace_len); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2183 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2184 | opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1); |
| 2185 | limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2186 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2187 | while (opt0 < limit0) |
| 2188 | { |
| 2189 | type0 = opt0->type; |
| 2190 | switch (type0) |
| 2191 | { |
| 2192 | case 0: /* Pad, just stop */ |
| 2193 | opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1; |
| 2194 | break; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2195 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2196 | default: |
| 2197 | if (hm->trace[type0]) |
| 2198 | { |
| 2199 | s = (*hm->trace[type0]) (s, opt0); |
| 2200 | } |
| 2201 | else |
| 2202 | { |
| 2203 | s = |
| 2204 | format (s, "\n unrecognized option %d length %d", type0, |
| 2205 | opt0->length); |
| 2206 | } |
| 2207 | opt0 = |
| 2208 | (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length + |
| 2209 | sizeof (ip6_hop_by_hop_option_t)); |
| 2210 | break; |
| 2211 | } |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2212 | } |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2213 | return s; |
| 2214 | } |
| 2215 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2216 | always_inline u8 |
| 2217 | ip6_scan_hbh_options (vlib_buffer_t * b0, |
| 2218 | ip6_header_t * ip0, |
| 2219 | ip6_hop_by_hop_header_t * hbh0, |
| 2220 | ip6_hop_by_hop_option_t * opt0, |
| 2221 | ip6_hop_by_hop_option_t * limit0, u32 * next0) |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2222 | { |
| 2223 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
| 2224 | u8 type0; |
| 2225 | u8 error0 = 0; |
| 2226 | |
| 2227 | while (opt0 < limit0) |
| 2228 | { |
| 2229 | type0 = opt0->type; |
| 2230 | switch (type0) |
| 2231 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2232 | case 0: /* Pad1 */ |
| 2233 | opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1; |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2234 | continue; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2235 | case 1: /* PadN */ |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2236 | break; |
| 2237 | default: |
| 2238 | if (hm->options[type0]) |
| 2239 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2240 | if ((*hm->options[type0]) (b0, ip0, opt0) < 0) |
| 2241 | { |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2242 | error0 = IP6_HOP_BY_HOP_ERROR_FORMAT; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2243 | return (error0); |
| 2244 | } |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2245 | } |
| 2246 | else |
| 2247 | { |
| 2248 | /* Unrecognized mandatory option, check the two high order bits */ |
| 2249 | switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS) |
| 2250 | { |
| 2251 | case HBH_OPTION_TYPE_SKIP_UNKNOWN: |
| 2252 | break; |
| 2253 | case HBH_OPTION_TYPE_DISCARD_UNKNOWN: |
| 2254 | error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION; |
| 2255 | *next0 = IP_LOOKUP_NEXT_DROP; |
| 2256 | break; |
| 2257 | case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP: |
| 2258 | error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION; |
| 2259 | *next0 = IP_LOOKUP_NEXT_ICMP_ERROR; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2260 | icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem, |
| 2261 | ICMP6_parameter_problem_unrecognized_option, |
| 2262 | (u8 *) opt0 - (u8 *) ip0); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2263 | break; |
| 2264 | case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST: |
| 2265 | error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2266 | if (!ip6_address_is_multicast (&ip0->dst_address)) |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2267 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2268 | *next0 = IP_LOOKUP_NEXT_ICMP_ERROR; |
| 2269 | icmp6_error_set_vnet_buffer (b0, |
| 2270 | ICMP6_parameter_problem, |
| 2271 | ICMP6_parameter_problem_unrecognized_option, |
| 2272 | (u8 *) opt0 - (u8 *) ip0); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2273 | } |
| 2274 | else |
| 2275 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2276 | *next0 = IP_LOOKUP_NEXT_DROP; |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2277 | } |
| 2278 | break; |
| 2279 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2280 | return (error0); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2281 | } |
| 2282 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2283 | opt0 = |
| 2284 | (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length + |
| 2285 | sizeof (ip6_hop_by_hop_option_t)); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2286 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2287 | return (error0); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2288 | } |
| 2289 | |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2290 | /* |
| 2291 | * Process the Hop-by-Hop Options header |
| 2292 | */ |
| 2293 | static uword |
| 2294 | ip6_hop_by_hop (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2295 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2296 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2297 | vlib_node_runtime_t *error_node = |
| 2298 | vlib_node_get_runtime (vm, ip6_hop_by_hop_node.index); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2299 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
| 2300 | u32 n_left_from, *from, *to_next; |
| 2301 | ip_lookup_next_t next_index; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2302 | |
| 2303 | from = vlib_frame_vector_args (frame); |
| 2304 | n_left_from = frame->n_vectors; |
| 2305 | next_index = node->cached_next_index; |
| 2306 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2307 | while (n_left_from > 0) |
| 2308 | { |
| 2309 | u32 n_left_to_next; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2310 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2311 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2312 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2313 | while (n_left_from >= 4 && n_left_to_next >= 2) |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2314 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2315 | u32 bi0, bi1; |
| 2316 | vlib_buffer_t *b0, *b1; |
| 2317 | u32 next0, next1; |
| 2318 | ip6_header_t *ip0, *ip1; |
| 2319 | ip6_hop_by_hop_header_t *hbh0, *hbh1; |
| 2320 | ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1; |
| 2321 | u8 error0 = 0, error1 = 0; |
| 2322 | |
| 2323 | /* Prefetch next iteration. */ |
| 2324 | { |
| 2325 | vlib_buffer_t *p2, *p3; |
| 2326 | |
| 2327 | p2 = vlib_get_buffer (vm, from[2]); |
| 2328 | p3 = vlib_get_buffer (vm, from[3]); |
| 2329 | |
| 2330 | vlib_prefetch_buffer_header (p2, LOAD); |
| 2331 | vlib_prefetch_buffer_header (p3, LOAD); |
| 2332 | |
| 2333 | CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 2334 | CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2335 | } |
| 2336 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2337 | /* Speculatively enqueue b0, b1 to the current next frame */ |
| 2338 | to_next[0] = bi0 = from[0]; |
| 2339 | to_next[1] = bi1 = from[1]; |
| 2340 | from += 2; |
| 2341 | to_next += 2; |
| 2342 | n_left_from -= 2; |
| 2343 | n_left_to_next -= 2; |
| 2344 | |
| 2345 | b0 = vlib_get_buffer (vm, bi0); |
| 2346 | b1 = vlib_get_buffer (vm, bi1); |
| 2347 | |
| 2348 | /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */ |
| 2349 | u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2350 | ip_adjacency_t *adj0 = adj_get (adj_index0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2351 | u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2352 | ip_adjacency_t *adj1 = adj_get (adj_index1); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2353 | |
| 2354 | /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */ |
| 2355 | next0 = adj0->lookup_next_index; |
| 2356 | next1 = adj1->lookup_next_index; |
| 2357 | |
| 2358 | ip0 = vlib_buffer_get_current (b0); |
| 2359 | ip1 = vlib_buffer_get_current (b1); |
| 2360 | hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1); |
| 2361 | hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1); |
| 2362 | opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1); |
| 2363 | opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1); |
| 2364 | limit0 = |
| 2365 | (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + |
| 2366 | ((hbh0->length + 1) << 3)); |
| 2367 | limit1 = |
| 2368 | (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 + |
| 2369 | ((hbh1->length + 1) << 3)); |
| 2370 | |
| 2371 | /* |
| 2372 | * Basic validity checks |
| 2373 | */ |
| 2374 | if ((hbh0->length + 1) << 3 > |
| 2375 | clib_net_to_host_u16 (ip0->payload_length)) |
| 2376 | { |
| 2377 | error0 = IP6_HOP_BY_HOP_ERROR_FORMAT; |
| 2378 | next0 = IP_LOOKUP_NEXT_DROP; |
| 2379 | goto outdual; |
| 2380 | } |
| 2381 | /* Scan the set of h-b-h options, process ones that we understand */ |
| 2382 | error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0); |
| 2383 | |
| 2384 | if ((hbh1->length + 1) << 3 > |
| 2385 | clib_net_to_host_u16 (ip1->payload_length)) |
| 2386 | { |
| 2387 | error1 = IP6_HOP_BY_HOP_ERROR_FORMAT; |
| 2388 | next1 = IP_LOOKUP_NEXT_DROP; |
| 2389 | goto outdual; |
| 2390 | } |
| 2391 | /* Scan the set of h-b-h options, process ones that we understand */ |
| 2392 | error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1); |
| 2393 | |
| 2394 | outdual: |
| 2395 | /* Has the classifier flagged this buffer for special treatment? */ |
| 2396 | if (PREDICT_FALSE |
| 2397 | ((error0 == 0) |
| 2398 | && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP))) |
| 2399 | next0 = hm->next_override; |
| 2400 | |
| 2401 | /* Has the classifier flagged this buffer for special treatment? */ |
| 2402 | if (PREDICT_FALSE |
| 2403 | ((error1 == 0) |
| 2404 | && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP))) |
| 2405 | next1 = hm->next_override; |
| 2406 | |
| 2407 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
| 2408 | { |
| 2409 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 2410 | { |
| 2411 | ip6_hop_by_hop_trace_t *t = |
| 2412 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 2413 | u32 trace_len = (hbh0->length + 1) << 3; |
| 2414 | t->next_index = next0; |
| 2415 | /* Capture the h-b-h option verbatim */ |
| 2416 | trace_len = |
| 2417 | trace_len < |
| 2418 | ARRAY_LEN (t->option_data) ? trace_len : |
| 2419 | ARRAY_LEN (t->option_data); |
| 2420 | t->trace_len = trace_len; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2421 | clib_memcpy_fast (t->option_data, hbh0, trace_len); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2422 | } |
| 2423 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 2424 | { |
| 2425 | ip6_hop_by_hop_trace_t *t = |
| 2426 | vlib_add_trace (vm, node, b1, sizeof (*t)); |
| 2427 | u32 trace_len = (hbh1->length + 1) << 3; |
| 2428 | t->next_index = next1; |
| 2429 | /* Capture the h-b-h option verbatim */ |
| 2430 | trace_len = |
| 2431 | trace_len < |
| 2432 | ARRAY_LEN (t->option_data) ? trace_len : |
| 2433 | ARRAY_LEN (t->option_data); |
| 2434 | t->trace_len = trace_len; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2435 | clib_memcpy_fast (t->option_data, hbh1, trace_len); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2436 | } |
| 2437 | |
| 2438 | } |
| 2439 | |
| 2440 | b0->error = error_node->errors[error0]; |
| 2441 | b1->error = error_node->errors[error1]; |
| 2442 | |
| 2443 | /* verify speculative enqueue, maybe switch current next frame */ |
| 2444 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next, |
| 2445 | n_left_to_next, bi0, bi1, next0, |
| 2446 | next1); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2447 | } |
| 2448 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2449 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2450 | { |
| 2451 | u32 bi0; |
| 2452 | vlib_buffer_t *b0; |
| 2453 | u32 next0; |
| 2454 | ip6_header_t *ip0; |
| 2455 | ip6_hop_by_hop_header_t *hbh0; |
| 2456 | ip6_hop_by_hop_option_t *opt0, *limit0; |
| 2457 | u8 error0 = 0; |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2458 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2459 | /* Speculatively enqueue b0 to the current next frame */ |
| 2460 | bi0 = from[0]; |
| 2461 | to_next[0] = bi0; |
| 2462 | from += 1; |
| 2463 | to_next += 1; |
| 2464 | n_left_from -= 1; |
| 2465 | n_left_to_next -= 1; |
| 2466 | |
| 2467 | b0 = vlib_get_buffer (vm, bi0); |
| 2468 | /* |
| 2469 | * Default use the next_index from the adjacency. |
| 2470 | * A HBH option rarely redirects to a different node |
| 2471 | */ |
| 2472 | u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2473 | ip_adjacency_t *adj0 = adj_get (adj_index0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2474 | next0 = adj0->lookup_next_index; |
| 2475 | |
| 2476 | ip0 = vlib_buffer_get_current (b0); |
| 2477 | hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1); |
| 2478 | opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1); |
| 2479 | limit0 = |
| 2480 | (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + |
| 2481 | ((hbh0->length + 1) << 3)); |
| 2482 | |
| 2483 | /* |
| 2484 | * Basic validity checks |
| 2485 | */ |
| 2486 | if ((hbh0->length + 1) << 3 > |
| 2487 | clib_net_to_host_u16 (ip0->payload_length)) |
| 2488 | { |
| 2489 | error0 = IP6_HOP_BY_HOP_ERROR_FORMAT; |
| 2490 | next0 = IP_LOOKUP_NEXT_DROP; |
| 2491 | goto out0; |
| 2492 | } |
| 2493 | |
| 2494 | /* Scan the set of h-b-h options, process ones that we understand */ |
| 2495 | error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0); |
| 2496 | |
| 2497 | out0: |
| 2498 | /* Has the classifier flagged this buffer for special treatment? */ |
| 2499 | if (PREDICT_FALSE |
| 2500 | ((error0 == 0) |
| 2501 | && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP))) |
| 2502 | next0 = hm->next_override; |
| 2503 | |
| 2504 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2505 | { |
| 2506 | ip6_hop_by_hop_trace_t *t = |
| 2507 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 2508 | u32 trace_len = (hbh0->length + 1) << 3; |
| 2509 | t->next_index = next0; |
| 2510 | /* Capture the h-b-h option verbatim */ |
| 2511 | trace_len = |
| 2512 | trace_len < |
| 2513 | ARRAY_LEN (t->option_data) ? trace_len : |
| 2514 | ARRAY_LEN (t->option_data); |
| 2515 | t->trace_len = trace_len; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 2516 | clib_memcpy_fast (t->option_data, hbh0, trace_len); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2517 | } |
| 2518 | |
| 2519 | b0->error = error_node->errors[error0]; |
| 2520 | |
| 2521 | /* verify speculative enqueue, maybe switch current next frame */ |
| 2522 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2523 | n_left_to_next, bi0, next0); |
| 2524 | } |
| 2525 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2526 | } |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2527 | return frame->n_vectors; |
| 2528 | } |
| 2529 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2530 | /* *INDENT-OFF* */ |
| 2531 | VLIB_REGISTER_NODE (ip6_hop_by_hop_node) = |
| 2532 | { |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2533 | .function = ip6_hop_by_hop, |
| 2534 | .name = "ip6-hop-by-hop", |
Ole Troan | 964f93e | 2016-06-10 13:22:36 +0200 | [diff] [blame] | 2535 | .sibling_of = "ip6-lookup", |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2536 | .vector_size = sizeof (u32), |
| 2537 | .format_trace = format_ip6_hop_by_hop_trace, |
| 2538 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2539 | .n_errors = ARRAY_LEN (ip6_hop_by_hop_error_strings), |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2540 | .error_strings = ip6_hop_by_hop_error_strings, |
Ole Troan | 964f93e | 2016-06-10 13:22:36 +0200 | [diff] [blame] | 2541 | .n_next_nodes = 0, |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2542 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2543 | /* *INDENT-ON* */ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2544 | |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 2545 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_hop_by_hop_node, ip6_hop_by_hop); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2546 | |
| 2547 | static clib_error_t * |
| 2548 | ip6_hop_by_hop_init (vlib_main_t * vm) |
| 2549 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2550 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 2551 | clib_memset (hm->options, 0, sizeof (hm->options)); |
| 2552 | clib_memset (hm->trace, 0, sizeof (hm->trace)); |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2553 | hm->next_override = IP6_LOOKUP_NEXT_POP_HOP_BY_HOP; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2554 | return (0); |
| 2555 | } |
| 2556 | |
| 2557 | VLIB_INIT_FUNCTION (ip6_hop_by_hop_init); |
| 2558 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2559 | void |
| 2560 | ip6_hbh_set_next_override (uword next) |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2561 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2562 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
Shwetha | a91cbe6 | 2016-08-08 15:51:04 +0100 | [diff] [blame] | 2563 | |
| 2564 | hm->next_override = next; |
| 2565 | } |
| 2566 | |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2567 | int |
| 2568 | ip6_hbh_register_option (u8 option, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2569 | int options (vlib_buffer_t * b, ip6_header_t * ip, |
| 2570 | ip6_hop_by_hop_option_t * opt), |
| 2571 | u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt)) |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2572 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2573 | ip6_main_t *im = &ip6_main; |
| 2574 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2575 | |
Neale Ranns | 756cd94 | 2018-04-06 09:18:11 -0700 | [diff] [blame] | 2576 | ASSERT ((u32) option < ARRAY_LEN (hm->options)); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2577 | |
| 2578 | /* Already registered */ |
| 2579 | if (hm->options[option]) |
| 2580 | return (-1); |
| 2581 | |
| 2582 | hm->options[option] = options; |
| 2583 | hm->trace[option] = trace; |
| 2584 | |
| 2585 | /* Set global variable */ |
| 2586 | im->hbh_enabled = 1; |
| 2587 | |
| 2588 | return (0); |
| 2589 | } |
| 2590 | |
| 2591 | int |
| 2592 | ip6_hbh_unregister_option (u8 option) |
| 2593 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2594 | ip6_main_t *im = &ip6_main; |
| 2595 | ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main; |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2596 | |
Neale Ranns | 756cd94 | 2018-04-06 09:18:11 -0700 | [diff] [blame] | 2597 | ASSERT ((u32) option < ARRAY_LEN (hm->options)); |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2598 | |
| 2599 | /* Not registered */ |
| 2600 | if (!hm->options[option]) |
| 2601 | return (-1); |
| 2602 | |
| 2603 | hm->options[option] = NULL; |
| 2604 | hm->trace[option] = NULL; |
| 2605 | |
| 2606 | /* Disable global knob if this was the last option configured */ |
| 2607 | int i; |
| 2608 | bool found = false; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2609 | for (i = 0; i < 256; i++) |
| 2610 | { |
| 2611 | if (hm->options[option]) |
| 2612 | { |
| 2613 | found = true; |
| 2614 | break; |
| 2615 | } |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2616 | } |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2617 | if (!found) |
| 2618 | im->hbh_enabled = 0; |
| 2619 | |
| 2620 | return (0); |
| 2621 | } |
| 2622 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2623 | /* Global IP6 main. */ |
| 2624 | ip6_main_t ip6_main; |
| 2625 | |
| 2626 | static clib_error_t * |
| 2627 | ip6_lookup_init (vlib_main_t * vm) |
| 2628 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2629 | ip6_main_t *im = &ip6_main; |
| 2630 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2631 | uword i; |
| 2632 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 2633 | if ((error = vlib_call_init_function (vm, vnet_feature_init))) |
| 2634 | return error; |
| 2635 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2636 | for (i = 0; i < ARRAY_LEN (im->fib_masks); i++) |
| 2637 | { |
| 2638 | u32 j, i0, i1; |
| 2639 | |
| 2640 | i0 = i / 32; |
| 2641 | i1 = i % 32; |
| 2642 | |
| 2643 | for (j = 0; j < i0; j++) |
| 2644 | im->fib_masks[i].as_u32[j] = ~0; |
| 2645 | |
| 2646 | if (i1) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2647 | im->fib_masks[i].as_u32[i0] = |
| 2648 | clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2649 | } |
| 2650 | |
| 2651 | ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1); |
| 2652 | |
| 2653 | if (im->lookup_table_nbuckets == 0) |
| 2654 | im->lookup_table_nbuckets = IP6_FIB_DEFAULT_HASH_NUM_BUCKETS; |
| 2655 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2656 | im->lookup_table_nbuckets = 1 << max_log2 (im->lookup_table_nbuckets); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2657 | |
| 2658 | if (im->lookup_table_size == 0) |
| 2659 | im->lookup_table_size = IP6_FIB_DEFAULT_HASH_MEMORY_SIZE; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2660 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2661 | BV (clib_bihash_init) (&(im->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash), |
| 2662 | "ip6 FIB fwding table", |
| 2663 | im->lookup_table_nbuckets, im->lookup_table_size); |
| 2664 | BV (clib_bihash_init) (&im->ip6_table[IP6_FIB_TABLE_NON_FWDING].ip6_hash, |
| 2665 | "ip6 FIB non-fwding table", |
| 2666 | im->lookup_table_nbuckets, im->lookup_table_size); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2667 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2668 | /* Create FIB with index 0 and table id of 0. */ |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 2669 | fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0, |
| 2670 | FIB_SOURCE_DEFAULT_ROUTE); |
| 2671 | mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0, |
| 2672 | MFIB_SOURCE_DEFAULT_ROUTE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2673 | |
| 2674 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2675 | pg_node_t *pn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2676 | pn = pg_get_node (ip6_lookup_node.index); |
| 2677 | pn->unformat_edit = unformat_pg_ip6_header; |
| 2678 | } |
| 2679 | |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 2680 | /* Unless explicitly configured, don't process HBH options */ |
| 2681 | im->hbh_enabled = 0; |
| 2682 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2683 | { |
| 2684 | icmp6_neighbor_solicitation_header_t p; |
| 2685 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 2686 | clib_memset (&p, 0, sizeof (p)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2687 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2688 | p.ip.ip_version_traffic_class_and_flow_label = |
| 2689 | clib_host_to_net_u32 (0x6 << 28); |
| 2690 | p.ip.payload_length = |
| 2691 | clib_host_to_net_u16 (sizeof (p) - |
| 2692 | STRUCT_OFFSET_OF |
| 2693 | (icmp6_neighbor_solicitation_header_t, neighbor)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2694 | p.ip.protocol = IP_PROTOCOL_ICMP6; |
| 2695 | p.ip.hop_limit = 255; |
| 2696 | ip6_set_solicited_node_multicast_address (&p.ip.dst_address, 0); |
| 2697 | |
| 2698 | p.neighbor.icmp.type = ICMP6_neighbor_solicitation; |
| 2699 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2700 | p.link_layer_option.header.type = |
| 2701 | ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address; |
| 2702 | p.link_layer_option.header.n_data_u64s = |
| 2703 | sizeof (p.link_layer_option) / sizeof (u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2704 | |
| 2705 | vlib_packet_template_init (vm, |
| 2706 | &im->discover_neighbor_packet_template, |
| 2707 | &p, sizeof (p), |
| 2708 | /* alloc chunk size */ 8, |
| 2709 | "ip6 neighbor discovery"); |
| 2710 | } |
| 2711 | |
Dave Barach | 203c632 | 2016-06-26 10:29:03 -0400 | [diff] [blame] | 2712 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2713 | } |
| 2714 | |
| 2715 | VLIB_INIT_FUNCTION (ip6_lookup_init); |
| 2716 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2717 | void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2718 | ip6_link_local_address_from_ethernet_mac_address (ip6_address_t * ip, |
| 2719 | u8 * mac) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2720 | { |
| 2721 | ip->as_u64[0] = clib_host_to_net_u64 (0xFE80000000000000ULL); |
| 2722 | /* Invert the "u" bit */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2723 | ip->as_u8[8] = mac[0] ^ (1 << 1); |
| 2724 | ip->as_u8[9] = mac[1]; |
| 2725 | ip->as_u8[10] = mac[2]; |
| 2726 | ip->as_u8[11] = 0xFF; |
| 2727 | ip->as_u8[12] = 0xFE; |
| 2728 | ip->as_u8[13] = mac[3]; |
| 2729 | ip->as_u8[14] = mac[4]; |
| 2730 | ip->as_u8[15] = mac[5]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2731 | } |
| 2732 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2733 | void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2734 | ip6_ethernet_mac_address_from_link_local_address (u8 * mac, |
| 2735 | ip6_address_t * ip) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2736 | { |
| 2737 | /* Invert the previously inverted "u" bit */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2738 | mac[0] = ip->as_u8[8] ^ (1 << 1); |
| 2739 | mac[1] = ip->as_u8[9]; |
| 2740 | mac[2] = ip->as_u8[10]; |
| 2741 | mac[3] = ip->as_u8[13]; |
| 2742 | mac[4] = ip->as_u8[14]; |
| 2743 | mac[5] = ip->as_u8[15]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2744 | } |
| 2745 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2746 | static clib_error_t * |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2747 | test_ip6_link_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2748 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2749 | { |
| 2750 | u8 mac[6]; |
| 2751 | ip6_address_t _a, *a = &_a; |
| 2752 | |
| 2753 | if (unformat (input, "%U", unformat_ethernet_address, mac)) |
| 2754 | { |
| 2755 | ip6_link_local_address_from_ethernet_mac_address (a, mac); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2756 | vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2757 | ip6_ethernet_mac_address_from_link_local_address (mac, a); |
| 2758 | vlib_cli_output (vm, "Original MAC address: %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2759 | format_ethernet_address, mac); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2760 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2761 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2762 | return 0; |
| 2763 | } |
| 2764 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2765 | /*? |
| 2766 | * This command converts the given MAC Address into an IPv6 link-local |
| 2767 | * address. |
| 2768 | * |
| 2769 | * @cliexpar |
| 2770 | * Example of how to create an IPv6 link-local address: |
| 2771 | * @cliexstart{test ip6 link 16:d9:e0:91:79:86} |
| 2772 | * Link local address: fe80::14d9:e0ff:fe91:7986 |
| 2773 | * Original MAC address: 16:d9:e0:91:79:86 |
| 2774 | * @cliexend |
| 2775 | ?*/ |
| 2776 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2777 | VLIB_CLI_COMMAND (test_link_command, static) = |
| 2778 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2779 | .path = "test ip6 link", |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2780 | .function = test_ip6_link_command_fn, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2781 | .short_help = "test ip6 link <mac-address>", |
| 2782 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2783 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2784 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2785 | int |
| 2786 | vnet_set_ip6_flow_hash (u32 table_id, u32 flow_hash_config) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2787 | { |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2788 | u32 fib_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2789 | |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2790 | fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2791 | |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2792 | if (~0 == fib_index) |
| 2793 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 2794 | |
Neale Ranns | 227038a | 2017-04-21 01:07:59 -0700 | [diff] [blame] | 2795 | fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP6, |
| 2796 | flow_hash_config); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2797 | |
Neale Ranns | 227038a | 2017-04-21 01:07:59 -0700 | [diff] [blame] | 2798 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2799 | } |
| 2800 | |
| 2801 | static clib_error_t * |
| 2802 | set_ip6_flow_hash_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2803 | unformat_input_t * input, |
| 2804 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2805 | { |
| 2806 | int matched = 0; |
| 2807 | u32 table_id = 0; |
| 2808 | u32 flow_hash_config = 0; |
| 2809 | int rv; |
| 2810 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2811 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2812 | { |
| 2813 | if (unformat (input, "table %d", &table_id)) |
| 2814 | matched = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2815 | #define _(a,v) \ |
| 2816 | else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;} |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2817 | foreach_flow_hash_bit |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2818 | #undef _ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2819 | else |
| 2820 | break; |
| 2821 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2822 | |
| 2823 | if (matched == 0) |
| 2824 | return clib_error_return (0, "unknown input `%U'", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2825 | format_unformat_error, input); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2826 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2827 | rv = vnet_set_ip6_flow_hash (table_id, flow_hash_config); |
| 2828 | switch (rv) |
| 2829 | { |
Neale Ranns | 227038a | 2017-04-21 01:07:59 -0700 | [diff] [blame] | 2830 | case 0: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2831 | break; |
| 2832 | |
| 2833 | case -1: |
| 2834 | return clib_error_return (0, "no such FIB table %d", table_id); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2835 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2836 | default: |
| 2837 | clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config); |
| 2838 | break; |
| 2839 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2840 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2841 | return 0; |
| 2842 | } |
| 2843 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2844 | /*? |
| 2845 | * Configure the set of IPv6 fields used by the flow hash. |
| 2846 | * |
| 2847 | * @cliexpar |
| 2848 | * @parblock |
| 2849 | * Example of how to set the flow hash on a given table: |
Billy McFall | ebb9a6a | 2016-10-17 11:35:32 -0400 | [diff] [blame] | 2850 | * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto} |
| 2851 | * |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2852 | * Example of display the configured flow hash: |
| 2853 | * @cliexstart{show ip6 fib} |
Billy McFall | ebb9a6a | 2016-10-17 11:35:32 -0400 | [diff] [blame] | 2854 | * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto |
| 2855 | * @::/0 |
| 2856 | * unicast-ip6-chain |
| 2857 | * [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]] |
| 2858 | * [0] [@0]: dpo-drop ip6 |
| 2859 | * fe80::/10 |
| 2860 | * unicast-ip6-chain |
| 2861 | * [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]] |
| 2862 | * [0] [@2]: dpo-receive |
| 2863 | * ff02::1/128 |
| 2864 | * unicast-ip6-chain |
| 2865 | * [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]] |
| 2866 | * [0] [@2]: dpo-receive |
| 2867 | * ff02::2/128 |
| 2868 | * unicast-ip6-chain |
| 2869 | * [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]] |
| 2870 | * [0] [@2]: dpo-receive |
| 2871 | * ff02::16/128 |
| 2872 | * unicast-ip6-chain |
| 2873 | * [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]] |
| 2874 | * [0] [@2]: dpo-receive |
| 2875 | * ff02::1:ff00:0/104 |
| 2876 | * unicast-ip6-chain |
| 2877 | * [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]] |
| 2878 | * [0] [@2]: dpo-receive |
| 2879 | * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto |
| 2880 | * @::/0 |
| 2881 | * unicast-ip6-chain |
| 2882 | * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]] |
| 2883 | * [0] [@0]: dpo-drop ip6 |
| 2884 | * @::a:1:1:0:4/126 |
| 2885 | * unicast-ip6-chain |
| 2886 | * [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]] |
| 2887 | * [0] [@4]: ipv6-glean: af_packet0 |
| 2888 | * @::a:1:1:0:7/128 |
| 2889 | * unicast-ip6-chain |
| 2890 | * [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]] |
| 2891 | * [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0 |
| 2892 | * fe80::/10 |
| 2893 | * unicast-ip6-chain |
| 2894 | * [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]] |
| 2895 | * [0] [@2]: dpo-receive |
| 2896 | * fe80::fe:3eff:fe3e:9222/128 |
| 2897 | * unicast-ip6-chain |
| 2898 | * [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]] |
| 2899 | * [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0 |
| 2900 | * ff02::1/128 |
| 2901 | * unicast-ip6-chain |
| 2902 | * [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]] |
| 2903 | * [0] [@2]: dpo-receive |
| 2904 | * ff02::2/128 |
| 2905 | * unicast-ip6-chain |
| 2906 | * [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]] |
| 2907 | * [0] [@2]: dpo-receive |
| 2908 | * ff02::16/128 |
| 2909 | * unicast-ip6-chain |
| 2910 | * [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]] |
| 2911 | * [0] [@2]: dpo-receive |
| 2912 | * ff02::1:ff00:0/104 |
| 2913 | * unicast-ip6-chain |
| 2914 | * [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]] |
| 2915 | * [0] [@2]: dpo-receive |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2916 | * @cliexend |
| 2917 | * @endparblock |
| 2918 | ?*/ |
| 2919 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2920 | VLIB_CLI_COMMAND (set_ip6_flow_hash_command, static) = |
| 2921 | { |
| 2922 | .path = "set ip6 flow-hash", |
| 2923 | .short_help = |
| 2924 | "set ip6 flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]", |
| 2925 | .function = set_ip6_flow_hash_command_fn, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2926 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2927 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2928 | |
| 2929 | static clib_error_t * |
| 2930 | show_ip6_local_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2931 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2932 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2933 | ip6_main_t *im = &ip6_main; |
| 2934 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2935 | int i; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2936 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2937 | vlib_cli_output (vm, "Protocols handled by ip6_local"); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2938 | for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2939 | { |
| 2940 | if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT) |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 2941 | { |
| 2942 | |
| 2943 | u32 node_index = vlib_get_node (vm, |
| 2944 | ip6_local_node.index)-> |
| 2945 | next_nodes[lm->local_next_by_ip_protocol[i]]; |
| 2946 | vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm, |
| 2947 | node_index); |
| 2948 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2949 | } |
| 2950 | return 0; |
| 2951 | } |
| 2952 | |
| 2953 | |
| 2954 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2955 | /*? |
| 2956 | * Display the set of protocols handled by the local IPv6 stack. |
| 2957 | * |
| 2958 | * @cliexpar |
| 2959 | * Example of how to display local protocol table: |
| 2960 | * @cliexstart{show ip6 local} |
| 2961 | * Protocols handled by ip6_local |
| 2962 | * 17 |
| 2963 | * 43 |
| 2964 | * 58 |
| 2965 | * 115 |
| 2966 | * @cliexend |
| 2967 | ?*/ |
| 2968 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2969 | VLIB_CLI_COMMAND (show_ip6_local, static) = |
| 2970 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2971 | .path = "show ip6 local", |
| 2972 | .function = show_ip6_local_command_fn, |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2973 | .short_help = "show ip6 local", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2974 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2975 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2976 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2977 | int |
| 2978 | vnet_set_ip6_classify_intfc (vlib_main_t * vm, u32 sw_if_index, |
| 2979 | u32 table_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2980 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2981 | vnet_main_t *vnm = vnet_get_main (); |
| 2982 | vnet_interface_main_t *im = &vnm->interface_main; |
| 2983 | ip6_main_t *ipm = &ip6_main; |
| 2984 | ip_lookup_main_t *lm = &ipm->lookup_main; |
| 2985 | vnet_classify_main_t *cm = &vnet_classify_main; |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2986 | ip6_address_t *if_addr; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2987 | |
| 2988 | if (pool_is_free_index (im->sw_interfaces, sw_if_index)) |
| 2989 | return VNET_API_ERROR_NO_MATCHING_INTERFACE; |
| 2990 | |
| 2991 | if (table_index != ~0 && pool_is_free_index (cm->tables, table_index)) |
| 2992 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 2993 | |
| 2994 | vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2995 | lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2996 | |
Neale Ranns | 6cfc39c | 2017-02-14 01:44:25 -0800 | [diff] [blame] | 2997 | if_addr = ip6_interface_first_address (ipm, sw_if_index); |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2998 | |
| 2999 | if (NULL != if_addr) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3000 | { |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3001 | fib_prefix_t pfx = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3002 | .fp_len = 128, |
| 3003 | .fp_proto = FIB_PROTOCOL_IP6, |
| 3004 | .fp_addr.ip6 = *if_addr, |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3005 | }; |
| 3006 | u32 fib_index; |
| 3007 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3008 | fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4, |
| 3009 | sw_if_index); |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3010 | |
| 3011 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3012 | if (table_index != (u32) ~ 0) |
| 3013 | { |
| 3014 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3015 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3016 | dpo_set (&dpo, |
| 3017 | DPO_CLASSIFY, |
| 3018 | DPO_PROTO_IP6, |
| 3019 | classify_dpo_create (DPO_PROTO_IP6, table_index)); |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3020 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3021 | fib_table_entry_special_dpo_add (fib_index, |
| 3022 | &pfx, |
| 3023 | FIB_SOURCE_CLASSIFY, |
| 3024 | FIB_ENTRY_FLAG_NONE, &dpo); |
| 3025 | dpo_reset (&dpo); |
| 3026 | } |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3027 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3028 | { |
| 3029 | fib_table_entry_special_remove (fib_index, |
| 3030 | &pfx, FIB_SOURCE_CLASSIFY); |
| 3031 | } |
| 3032 | } |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 3033 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3034 | return 0; |
| 3035 | } |
| 3036 | |
| 3037 | static clib_error_t * |
| 3038 | set_ip6_classify_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3039 | unformat_input_t * input, |
| 3040 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3041 | { |
| 3042 | u32 table_index = ~0; |
| 3043 | int table_index_set = 0; |
| 3044 | u32 sw_if_index = ~0; |
| 3045 | int rv; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3046 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3047 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3048 | { |
| 3049 | if (unformat (input, "table-index %d", &table_index)) |
| 3050 | table_index_set = 1; |
| 3051 | else if (unformat (input, "intfc %U", unformat_vnet_sw_interface, |
| 3052 | vnet_get_main (), &sw_if_index)) |
| 3053 | ; |
| 3054 | else |
| 3055 | break; |
| 3056 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3057 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3058 | if (table_index_set == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3059 | return clib_error_return (0, "classify table-index must be specified"); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3060 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3061 | if (sw_if_index == ~0) |
| 3062 | return clib_error_return (0, "interface / subif must be specified"); |
| 3063 | |
| 3064 | rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index); |
| 3065 | |
| 3066 | switch (rv) |
| 3067 | { |
| 3068 | case 0: |
| 3069 | break; |
| 3070 | |
| 3071 | case VNET_API_ERROR_NO_MATCHING_INTERFACE: |
| 3072 | return clib_error_return (0, "No such interface"); |
| 3073 | |
| 3074 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 3075 | return clib_error_return (0, "No such classifier table"); |
| 3076 | } |
| 3077 | return 0; |
| 3078 | } |
| 3079 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 3080 | /*? |
| 3081 | * Assign a classification table to an interface. The classification |
| 3082 | * table is created using the '<em>classify table</em>' and '<em>classify session</em>' |
| 3083 | * commands. Once the table is create, use this command to filter packets |
| 3084 | * on an interface. |
| 3085 | * |
| 3086 | * @cliexpar |
| 3087 | * Example of how to assign a classification table to an interface: |
| 3088 | * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1} |
| 3089 | ?*/ |
| 3090 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3091 | VLIB_CLI_COMMAND (set_ip6_classify_command, static) = |
| 3092 | { |
| 3093 | .path = "set ip6 classify", |
| 3094 | .short_help = |
| 3095 | "set ip6 classify intfc <interface> table-index <classify-idx>", |
| 3096 | .function = set_ip6_classify_command_fn, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3097 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 3098 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3099 | |
| 3100 | static clib_error_t * |
| 3101 | ip6_config (vlib_main_t * vm, unformat_input_t * input) |
| 3102 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3103 | ip6_main_t *im = &ip6_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3104 | uword heapsize = 0; |
| 3105 | u32 tmp; |
| 3106 | u32 nbuckets = 0; |
| 3107 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3108 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3109 | { |
| 3110 | if (unformat (input, "hash-buckets %d", &tmp)) |
| 3111 | nbuckets = tmp; |
Neale Ranns | 1ec3652 | 2017-11-29 05:20:37 -0800 | [diff] [blame] | 3112 | else if (unformat (input, "heap-size %U", |
| 3113 | unformat_memory_size, &heapsize)) |
| 3114 | ; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3115 | else |
| 3116 | return clib_error_return (0, "unknown input '%U'", |
| 3117 | format_unformat_error, input); |
| 3118 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3119 | |
| 3120 | im->lookup_table_nbuckets = nbuckets; |
| 3121 | im->lookup_table_size = heapsize; |
| 3122 | |
| 3123 | return 0; |
| 3124 | } |
| 3125 | |
| 3126 | VLIB_EARLY_CONFIG_FUNCTION (ip6_config, "ip6"); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3127 | |
| 3128 | /* |
| 3129 | * fd.io coding-style-patch-verification: ON |
| 3130 | * |
| 3131 | * Local Variables: |
| 3132 | * eval: (c-set-style "gnu") |
| 3133 | * End: |
| 3134 | */ |