Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | *------------------------------------------------------------------ |
| 16 | */ |
| 17 | |
| 18 | #define _GNU_SOURCE |
| 19 | #include <stdint.h> |
| 20 | #include <vnet/ethernet/ethernet.h> |
| 21 | #include <vnet/ip/ip4_packet.h> |
| 22 | #include <vnet/ip/ip6_packet.h> |
| 23 | #include <vnet/ip/ip6_hop_by_hop_packet.h> |
| 24 | #include <vnet/bonding/node.h> |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 25 | #include <vppinfra/lb_hash_hash.h> |
Steven | 9f781d8 | 2018-06-05 11:09:32 -0700 | [diff] [blame] | 26 | #include <vnet/ip/ip.h> |
| 27 | #include <vnet/ethernet/arp_packet.h> |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 28 | |
| 29 | #define foreach_bond_tx_error \ |
| 30 | _(NONE, "no error") \ |
| 31 | _(IF_DOWN, "interface down") \ |
| 32 | _(NO_SLAVE, "no slave") |
| 33 | |
| 34 | typedef enum |
| 35 | { |
| 36 | #define _(f,s) BOND_TX_ERROR_##f, |
| 37 | foreach_bond_tx_error |
| 38 | #undef _ |
| 39 | BOND_TX_N_ERROR, |
| 40 | } bond_tx_error_t; |
| 41 | |
| 42 | static char *bond_tx_error_strings[] = { |
| 43 | #define _(n,s) s, |
| 44 | foreach_bond_tx_error |
| 45 | #undef _ |
| 46 | }; |
| 47 | |
| 48 | static u8 * |
| 49 | format_bond_tx_trace (u8 * s, va_list * args) |
| 50 | { |
| 51 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 52 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 53 | bond_packet_trace_t *t = va_arg (*args, bond_packet_trace_t *); |
| 54 | vnet_hw_interface_t *hw, *hw1; |
| 55 | vnet_main_t *vnm = vnet_get_main (); |
| 56 | |
| 57 | hw = vnet_get_sup_hw_interface (vnm, t->sw_if_index); |
| 58 | hw1 = vnet_get_sup_hw_interface (vnm, t->bond_sw_if_index); |
| 59 | s = format (s, "src %U, dst %U, %s -> %s", |
| 60 | format_ethernet_address, t->ethernet.src_address, |
| 61 | format_ethernet_address, t->ethernet.dst_address, |
| 62 | hw->name, hw1->name); |
| 63 | |
| 64 | return s; |
| 65 | } |
| 66 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 67 | #ifndef CLIB_MARCH_VARIANT |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 68 | u8 * |
| 69 | format_bond_interface_name (u8 * s, va_list * args) |
| 70 | { |
| 71 | u32 dev_instance = va_arg (*args, u32); |
| 72 | bond_main_t *bm = &bond_main; |
| 73 | bond_if_t *bif = pool_elt_at_index (bm->interfaces, dev_instance); |
| 74 | |
Alexander Chernavin | ad9d528 | 2018-12-13 09:08:09 -0500 | [diff] [blame] | 75 | s = format (s, "BondEthernet%lu", bif->id); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 76 | |
| 77 | return s; |
| 78 | } |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 79 | #endif |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 80 | |
| 81 | static __clib_unused clib_error_t * |
Steven | 4f8863b | 2018-04-12 19:36:19 -0700 | [diff] [blame] | 82 | bond_set_l2_mode_function (vnet_main_t * vnm, |
| 83 | struct vnet_hw_interface_t *bif_hw, |
| 84 | i32 l2_if_adjust) |
| 85 | { |
| 86 | bond_if_t *bif; |
| 87 | u32 *sw_if_index; |
| 88 | struct vnet_hw_interface_t *sif_hw; |
| 89 | |
| 90 | bif = bond_get_master_by_sw_if_index (bif_hw->sw_if_index); |
| 91 | if (!bif) |
| 92 | return 0; |
| 93 | |
| 94 | if ((bif_hw->l2_if_count == 1) && (l2_if_adjust == 1)) |
| 95 | { |
| 96 | /* Just added first L2 interface on this port */ |
| 97 | vec_foreach (sw_if_index, bif->slaves) |
| 98 | { |
| 99 | sif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index); |
| 100 | ethernet_set_flags (vnm, sif_hw->hw_if_index, |
| 101 | ETHERNET_INTERFACE_FLAG_ACCEPT_ALL); |
| 102 | |
| 103 | /* ensure all packets go to ethernet-input */ |
| 104 | ethernet_set_rx_redirect (vnm, sif_hw, 1); |
| 105 | } |
| 106 | } |
Steven Luong | a1f9ee8 | 2019-04-09 12:18:46 -0700 | [diff] [blame] | 107 | else if ((bif_hw->l2_if_count == 0) && (l2_if_adjust == -1)) |
| 108 | { |
| 109 | /* Just removed last L2 subinterface on this port */ |
| 110 | vec_foreach (sw_if_index, bif->slaves) |
| 111 | { |
| 112 | sif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index); |
| 113 | |
| 114 | /* Allow ip packets to go directly to ip4-input etc */ |
| 115 | ethernet_set_rx_redirect (vnm, sif_hw, 0); |
| 116 | } |
| 117 | } |
Steven | 4f8863b | 2018-04-12 19:36:19 -0700 | [diff] [blame] | 118 | |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | static __clib_unused clib_error_t * |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 123 | bond_subif_add_del_function (vnet_main_t * vnm, u32 hw_if_index, |
| 124 | struct vnet_sw_interface_t *st, int is_add) |
| 125 | { |
| 126 | /* Nothing for now */ |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static clib_error_t * |
| 131 | bond_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 132 | { |
| 133 | vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index); |
| 134 | uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0; |
| 135 | bond_main_t *bm = &bond_main; |
| 136 | bond_if_t *bif = pool_elt_at_index (bm->interfaces, hif->dev_instance); |
| 137 | |
| 138 | bif->admin_up = is_up; |
| 139 | if (is_up && vec_len (bif->active_slaves)) |
| 140 | vnet_hw_interface_set_flags (vnm, bif->hw_if_index, |
| 141 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
| 142 | return 0; |
| 143 | } |
| 144 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 145 | static_always_inline void |
| 146 | bond_tx_add_to_queue (bond_per_thread_data_t * ptd, u32 port, u32 bi) |
| 147 | { |
| 148 | u32 idx = ptd->per_port_queue[port].n_buffers++; |
| 149 | ptd->per_port_queue[port].buffers[idx] = bi; |
| 150 | } |
| 151 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 152 | static_always_inline u32 |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 153 | bond_lb_broadcast (vlib_main_t * vm, |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 154 | bond_if_t * bif, vlib_buffer_t * b0, uword n_slaves) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 155 | { |
Steven | c4e99c5 | 2018-09-27 20:06:26 -0700 | [diff] [blame] | 156 | bond_main_t *bm = &bond_main; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 157 | vlib_buffer_t *c0; |
Steven | 22b5be0 | 2018-04-11 15:32:15 -0700 | [diff] [blame] | 158 | int port; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 159 | u32 sw_if_index; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 160 | u16 thread_index = vm->thread_index; |
Steven | c4e99c5 | 2018-09-27 20:06:26 -0700 | [diff] [blame] | 161 | bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data, |
| 162 | thread_index); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 163 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 164 | for (port = 1; port < n_slaves; port++) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 165 | { |
Steven | 22b5be0 | 2018-04-11 15:32:15 -0700 | [diff] [blame] | 166 | sw_if_index = *vec_elt_at_index (bif->active_slaves, port); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 167 | c0 = vlib_buffer_copy (vm, b0); |
| 168 | if (PREDICT_TRUE (c0 != 0)) |
| 169 | { |
| 170 | vnet_buffer (c0)->sw_if_index[VLIB_TX] = sw_if_index; |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 171 | bond_tx_add_to_queue (ptd, port, vlib_get_buffer_index (vm, c0)); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 178 | static_always_inline u32 |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 179 | bond_lb_l2 (vlib_buffer_t * b0) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 180 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 181 | ethernet_header_t *eth = vlib_buffer_get_current (b0); |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 182 | u64 *dst = (u64 *) & eth->dst_address[0]; |
| 183 | u64 a = clib_mem_unaligned (dst, u64); |
| 184 | u32 *src = (u32 *) & eth->src_address[2]; |
| 185 | u32 b = clib_mem_unaligned (src, u32); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 186 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 187 | return lb_hash_hash_2_tuples (a, b); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 188 | } |
| 189 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 190 | static_always_inline u16 * |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 191 | bond_locate_ethertype (ethernet_header_t * eth) |
| 192 | { |
| 193 | u16 *ethertype_p; |
| 194 | ethernet_vlan_header_t *vlan; |
| 195 | |
| 196 | if (!ethernet_frame_is_tagged (clib_net_to_host_u16 (eth->type))) |
| 197 | { |
| 198 | ethertype_p = ð->type; |
| 199 | } |
| 200 | else |
| 201 | { |
| 202 | vlan = (void *) (eth + 1); |
| 203 | ethertype_p = &vlan->type; |
| 204 | if (*ethertype_p == ntohs (ETHERNET_TYPE_VLAN)) |
| 205 | { |
| 206 | vlan++; |
| 207 | ethertype_p = &vlan->type; |
| 208 | } |
| 209 | } |
| 210 | return ethertype_p; |
| 211 | } |
| 212 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 213 | static_always_inline u32 |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 214 | bond_lb_l23 (vlib_buffer_t * b0) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 215 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 216 | ethernet_header_t *eth = vlib_buffer_get_current (b0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 217 | u8 ip_version; |
| 218 | ip4_header_t *ip4; |
| 219 | u16 ethertype, *ethertype_p; |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 220 | u32 *mac1, *mac2, *mac3; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 221 | |
| 222 | ethertype_p = bond_locate_ethertype (eth); |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 223 | ethertype = clib_mem_unaligned (ethertype_p, u16); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 224 | |
| 225 | if ((ethertype != htons (ETHERNET_TYPE_IP4)) && |
| 226 | (ethertype != htons (ETHERNET_TYPE_IP6))) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 227 | return bond_lb_l2 (b0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 228 | |
| 229 | ip4 = (ip4_header_t *) (ethertype_p + 1); |
| 230 | ip_version = (ip4->ip_version_and_header_length >> 4); |
| 231 | |
| 232 | if (ip_version == 0x4) |
| 233 | { |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 234 | u32 a, c; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 235 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 236 | mac1 = (u32 *) & eth->dst_address[0]; |
| 237 | mac2 = (u32 *) & eth->dst_address[4]; |
| 238 | mac3 = (u32 *) & eth->src_address[2]; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 239 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 240 | a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^ |
| 241 | clib_mem_unaligned (mac3, u32); |
| 242 | c = |
| 243 | lb_hash_hash_2_tuples (clib_mem_unaligned (&ip4->address_pair, u64), |
| 244 | a); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 245 | return c; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 246 | } |
| 247 | else if (ip_version == 0x6) |
| 248 | { |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 249 | u64 a; |
| 250 | u32 c; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 251 | ip6_header_t *ip6 = (ip6_header_t *) (eth + 1); |
| 252 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 253 | mac1 = (u32 *) & eth->dst_address[0]; |
| 254 | mac2 = (u32 *) & eth->dst_address[4]; |
| 255 | mac3 = (u32 *) & eth->src_address[2]; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 256 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 257 | a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^ |
| 258 | clib_mem_unaligned (mac3, u32); |
| 259 | c = |
| 260 | lb_hash_hash (clib_mem_unaligned |
| 261 | (&ip6->src_address.as_uword[0], uword), |
| 262 | clib_mem_unaligned (&ip6->src_address.as_uword[1], |
| 263 | uword), |
| 264 | clib_mem_unaligned (&ip6->dst_address.as_uword[0], |
| 265 | uword), |
| 266 | clib_mem_unaligned (&ip6->dst_address.as_uword[1], |
| 267 | uword), a); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 268 | return c; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 269 | } |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 270 | return bond_lb_l2 (b0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 271 | } |
| 272 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 273 | static_always_inline u32 |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 274 | bond_lb_l34 (vlib_buffer_t * b0) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 275 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 276 | ethernet_header_t *eth = vlib_buffer_get_current (b0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 277 | u8 ip_version; |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 278 | uword is_tcp_udp; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 279 | ip4_header_t *ip4; |
| 280 | u16 ethertype, *ethertype_p; |
| 281 | |
| 282 | ethertype_p = bond_locate_ethertype (eth); |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 283 | ethertype = clib_mem_unaligned (ethertype_p, u16); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 284 | |
| 285 | if ((ethertype != htons (ETHERNET_TYPE_IP4)) && |
| 286 | (ethertype != htons (ETHERNET_TYPE_IP6))) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 287 | return (bond_lb_l2 (b0)); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 288 | |
| 289 | ip4 = (ip4_header_t *) (ethertype_p + 1); |
| 290 | ip_version = (ip4->ip_version_and_header_length >> 4); |
| 291 | |
| 292 | if (ip_version == 0x4) |
| 293 | { |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 294 | u32 a, t1, t2; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 295 | tcp_header_t *tcp = (void *) (ip4 + 1); |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 296 | |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 297 | is_tcp_udp = (ip4->protocol == IP_PROTOCOL_TCP) || |
| 298 | (ip4->protocol == IP_PROTOCOL_UDP); |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 299 | t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0; |
| 300 | t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0; |
| 301 | a = t1 ^ t2; |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 302 | return |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 303 | lb_hash_hash_2_tuples (clib_mem_unaligned (&ip4->address_pair, u64), |
| 304 | a); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 305 | } |
| 306 | else if (ip_version == 0x6) |
| 307 | { |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 308 | u64 a; |
| 309 | u32 c, t1, t2; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 310 | ip6_header_t *ip6 = (ip6_header_t *) (eth + 1); |
| 311 | tcp_header_t *tcp = (void *) (ip6 + 1); |
| 312 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 313 | is_tcp_udp = 0; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 314 | if (PREDICT_TRUE ((ip6->protocol == IP_PROTOCOL_TCP) || |
| 315 | (ip6->protocol == IP_PROTOCOL_UDP))) |
| 316 | { |
| 317 | is_tcp_udp = 1; |
| 318 | tcp = (void *) (ip6 + 1); |
| 319 | } |
| 320 | else if (ip6->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
| 321 | { |
| 322 | ip6_hop_by_hop_header_t *hbh = |
| 323 | (ip6_hop_by_hop_header_t *) (ip6 + 1); |
| 324 | if ((hbh->protocol == IP_PROTOCOL_TCP) |
| 325 | || (hbh->protocol == IP_PROTOCOL_UDP)) |
| 326 | { |
| 327 | is_tcp_udp = 1; |
| 328 | tcp = (tcp_header_t *) ((u8 *) hbh + ((hbh->length + 1) << 3)); |
| 329 | } |
| 330 | } |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 331 | t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0; |
| 332 | t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0; |
| 333 | a = t1 ^ t2; |
| 334 | c = |
| 335 | lb_hash_hash (clib_mem_unaligned |
| 336 | (&ip6->src_address.as_uword[0], uword), |
| 337 | clib_mem_unaligned (&ip6->src_address.as_uword[1], |
| 338 | uword), |
| 339 | clib_mem_unaligned (&ip6->dst_address.as_uword[0], |
| 340 | uword), |
| 341 | clib_mem_unaligned (&ip6->dst_address.as_uword[1], |
| 342 | uword), a); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 343 | return c; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 344 | } |
| 345 | |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 346 | return bond_lb_l2 (b0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 347 | } |
| 348 | |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 349 | static_always_inline u32 |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 350 | bond_lb_round_robin (bond_if_t * bif, vlib_buffer_t * b0, uword n_slaves) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 351 | { |
| 352 | bif->lb_rr_last_index++; |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 353 | if (bif->lb_rr_last_index >= n_slaves) |
| 354 | bif->lb_rr_last_index = 0; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 355 | |
| 356 | return bif->lb_rr_last_index; |
| 357 | } |
| 358 | |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 359 | static_always_inline void |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 360 | bond_tx_inline (vlib_main_t * vm, bond_if_t * bif, vlib_buffer_t ** b, |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 361 | u32 * h, u32 n_left, uword n_slaves, u32 lb_alg) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 362 | { |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 363 | while (n_left >= 4) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 364 | { |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 365 | // Prefetch next iteration |
| 366 | if (n_left >= 8) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 367 | { |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 368 | vlib_buffer_t **pb = b + 4; |
Steven | 0d88301 | 2018-05-11 11:06:23 -0700 | [diff] [blame] | 369 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 370 | vlib_prefetch_buffer_header (pb[0], LOAD); |
| 371 | vlib_prefetch_buffer_header (pb[1], LOAD); |
| 372 | vlib_prefetch_buffer_header (pb[2], LOAD); |
| 373 | vlib_prefetch_buffer_header (pb[3], LOAD); |
| 374 | |
| 375 | CLIB_PREFETCH (pb[0]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 376 | CLIB_PREFETCH (pb[1]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 377 | CLIB_PREFETCH (pb[2]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 378 | CLIB_PREFETCH (pb[3]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 379 | } |
| 380 | |
| 381 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]); |
| 382 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[1]); |
| 383 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[2]); |
| 384 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[3]); |
| 385 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 386 | if (lb_alg == BOND_LB_L2) |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 387 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 388 | h[0] = bond_lb_l2 (b[0]); |
| 389 | h[1] = bond_lb_l2 (b[1]); |
| 390 | h[2] = bond_lb_l2 (b[2]); |
| 391 | h[3] = bond_lb_l2 (b[3]); |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 392 | } |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 393 | else if (lb_alg == BOND_LB_L34) |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 394 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 395 | h[0] = bond_lb_l34 (b[0]); |
| 396 | h[1] = bond_lb_l34 (b[1]); |
| 397 | h[2] = bond_lb_l34 (b[2]); |
| 398 | h[3] = bond_lb_l34 (b[3]); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 399 | } |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 400 | else if (lb_alg == BOND_LB_L23) |
| 401 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 402 | h[0] = bond_lb_l23 (b[0]); |
| 403 | h[1] = bond_lb_l23 (b[1]); |
| 404 | h[2] = bond_lb_l23 (b[2]); |
| 405 | h[3] = bond_lb_l23 (b[3]); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 406 | } |
| 407 | else if (lb_alg == BOND_LB_RR) |
| 408 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 409 | h[0] = bond_lb_round_robin (bif, b[0], n_slaves); |
| 410 | h[1] = bond_lb_round_robin (bif, b[1], n_slaves); |
| 411 | h[2] = bond_lb_round_robin (bif, b[2], n_slaves); |
| 412 | h[3] = bond_lb_round_robin (bif, b[3], n_slaves); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 413 | } |
| 414 | else if (lb_alg == BOND_LB_BC) |
| 415 | { |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 416 | h[0] = bond_lb_broadcast (vm, bif, b[0], n_slaves); |
| 417 | h[1] = bond_lb_broadcast (vm, bif, b[1], n_slaves); |
| 418 | h[2] = bond_lb_broadcast (vm, bif, b[2], n_slaves); |
| 419 | h[3] = bond_lb_broadcast (vm, bif, b[3], n_slaves); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 420 | } |
| 421 | else |
| 422 | { |
| 423 | ASSERT (0); |
| 424 | } |
Steven | c4e99c5 | 2018-09-27 20:06:26 -0700 | [diff] [blame] | 425 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 426 | n_left -= 4; |
| 427 | b += 4; |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 428 | h += 4; |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 429 | } |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 430 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 431 | while (n_left > 0) |
| 432 | { |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 433 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]); |
| 434 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 435 | if (bif->lb == BOND_LB_L2) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 436 | h[0] = bond_lb_l2 (b[0]); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 437 | else if (bif->lb == BOND_LB_L34) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 438 | h[0] = bond_lb_l34 (b[0]); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 439 | else if (bif->lb == BOND_LB_L23) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 440 | h[0] = bond_lb_l23 (b[0]); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 441 | else if (bif->lb == BOND_LB_RR) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 442 | h[0] = bond_lb_round_robin (bif, b[0], n_slaves); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 443 | else if (bif->lb == BOND_LB_BC) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 444 | h[0] = bond_lb_broadcast (vm, bif, b[0], n_slaves); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 445 | else |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 446 | { |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 447 | ASSERT (0); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 448 | } |
| 449 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 450 | n_left -= 1; |
| 451 | b += 1; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 452 | } |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 453 | } |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 454 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 455 | static_always_inline void |
| 456 | bond_hash_to_port (u32 * h, u32 n_left, u32 n_slaves, int use_modulo_shortcut) |
| 457 | { |
| 458 | u32 mask = n_slaves - 1; |
| 459 | |
| 460 | #ifdef CLIB_HAVE_VEC256 |
Paul Vinciguerra | 8feeaff | 2019-03-27 11:25:48 -0700 | [diff] [blame] | 461 | /* only lower 16 bits of hash due to single precision fp arithmetic */ |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 462 | u32x8 mask8, sc8u, h8a, h8b; |
| 463 | f32x8 sc8f; |
| 464 | |
| 465 | if (use_modulo_shortcut) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 466 | { |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 467 | mask8 = u32x8_splat (mask); |
| 468 | } |
| 469 | else |
| 470 | { |
| 471 | mask8 = u32x8_splat (0xffff); |
| 472 | sc8u = u32x8_splat (n_slaves); |
| 473 | sc8f = f32x8_from_u32x8 (sc8u); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 474 | } |
| 475 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 476 | while (n_left > 16) |
| 477 | { |
| 478 | h8a = u32x8_load_unaligned (h) & mask8; |
| 479 | h8b = u32x8_load_unaligned (h + 8) & mask8; |
| 480 | |
| 481 | if (use_modulo_shortcut == 0) |
| 482 | { |
| 483 | h8a -= sc8u * u32x8_from_f32x8 (f32x8_from_u32x8 (h8a) / sc8f); |
| 484 | h8b -= sc8u * u32x8_from_f32x8 (f32x8_from_u32x8 (h8b) / sc8f); |
| 485 | } |
| 486 | |
| 487 | u32x8_store_unaligned (h8a, h); |
| 488 | u32x8_store_unaligned (h8b, h + 8); |
| 489 | n_left -= 16; |
| 490 | h += 16; |
| 491 | } |
| 492 | #endif |
| 493 | |
| 494 | while (n_left > 4) |
| 495 | { |
| 496 | if (use_modulo_shortcut) |
| 497 | { |
| 498 | h[0] &= mask; |
| 499 | h[1] &= mask; |
| 500 | h[2] &= mask; |
| 501 | h[3] &= mask; |
| 502 | } |
| 503 | else |
| 504 | { |
| 505 | h[0] %= n_slaves; |
| 506 | h[1] %= n_slaves; |
| 507 | h[2] %= n_slaves; |
| 508 | h[3] %= n_slaves; |
| 509 | } |
| 510 | n_left -= 4; |
| 511 | h += 4; |
| 512 | } |
| 513 | while (n_left) |
| 514 | { |
| 515 | if (use_modulo_shortcut) |
| 516 | h[0] &= mask; |
| 517 | else |
| 518 | h[0] %= n_slaves; |
| 519 | n_left -= 1; |
| 520 | h += 1; |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | static_always_inline void |
| 525 | bond_update_sw_if_index (bond_per_thread_data_t * ptd, bond_if_t * bif, |
| 526 | u32 * bi, vlib_buffer_t ** b, u32 * data, u32 n_left, |
| 527 | int single_sw_if_index) |
| 528 | { |
| 529 | u32 sw_if_index = data[0]; |
| 530 | u32 *h = data; |
| 531 | |
| 532 | while (n_left >= 4) |
| 533 | { |
| 534 | // Prefetch next iteration |
| 535 | if (n_left >= 8) |
| 536 | { |
| 537 | vlib_buffer_t **pb = b + 4; |
| 538 | vlib_prefetch_buffer_header (pb[0], LOAD); |
| 539 | vlib_prefetch_buffer_header (pb[1], LOAD); |
| 540 | vlib_prefetch_buffer_header (pb[2], LOAD); |
| 541 | vlib_prefetch_buffer_header (pb[3], LOAD); |
| 542 | } |
| 543 | |
| 544 | if (PREDICT_FALSE (single_sw_if_index)) |
| 545 | { |
| 546 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index; |
| 547 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sw_if_index; |
| 548 | vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sw_if_index; |
| 549 | vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sw_if_index; |
| 550 | |
| 551 | bond_tx_add_to_queue (ptd, 0, bi[0]); |
| 552 | bond_tx_add_to_queue (ptd, 0, bi[1]); |
| 553 | bond_tx_add_to_queue (ptd, 0, bi[2]); |
| 554 | bond_tx_add_to_queue (ptd, 0, bi[3]); |
| 555 | } |
| 556 | else |
| 557 | { |
| 558 | u32 sw_if_index[4]; |
| 559 | |
| 560 | sw_if_index[0] = *vec_elt_at_index (bif->active_slaves, h[0]); |
| 561 | sw_if_index[1] = *vec_elt_at_index (bif->active_slaves, h[1]); |
| 562 | sw_if_index[2] = *vec_elt_at_index (bif->active_slaves, h[2]); |
| 563 | sw_if_index[3] = *vec_elt_at_index (bif->active_slaves, h[3]); |
| 564 | |
| 565 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index[0]; |
| 566 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sw_if_index[1]; |
| 567 | vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sw_if_index[2]; |
| 568 | vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sw_if_index[3]; |
| 569 | |
| 570 | bond_tx_add_to_queue (ptd, h[0], bi[0]); |
| 571 | bond_tx_add_to_queue (ptd, h[1], bi[1]); |
| 572 | bond_tx_add_to_queue (ptd, h[2], bi[2]); |
| 573 | bond_tx_add_to_queue (ptd, h[3], bi[3]); |
| 574 | } |
| 575 | |
| 576 | bi += 4; |
| 577 | h += 4; |
| 578 | b += 4; |
| 579 | n_left -= 4; |
| 580 | } |
| 581 | while (n_left) |
| 582 | { |
| 583 | if (PREDICT_FALSE (single_sw_if_index)) |
| 584 | { |
| 585 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index; |
| 586 | bond_tx_add_to_queue (ptd, 0, bi[0]); |
| 587 | } |
| 588 | else |
| 589 | { |
| 590 | u32 sw_if_index0 = *vec_elt_at_index (bif->active_slaves, h[0]); |
| 591 | |
| 592 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index0; |
| 593 | bond_tx_add_to_queue (ptd, h[0], bi[0]); |
| 594 | } |
| 595 | |
| 596 | bi += 1; |
| 597 | h += 1; |
| 598 | b += 1; |
| 599 | n_left -= 1; |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | static_always_inline void |
| 604 | bond_tx_trace (vlib_main_t * vm, vlib_node_runtime_t * node, bond_if_t * bif, |
| 605 | vlib_buffer_t ** b, u32 n_left, u32 * h) |
| 606 | { |
| 607 | uword n_trace = vlib_get_trace_count (vm, node); |
| 608 | |
| 609 | while (n_trace > 0 && n_left > 0) |
| 610 | { |
| 611 | bond_packet_trace_t *t0; |
| 612 | ethernet_header_t *eth; |
| 613 | u32 next0 = 0; |
| 614 | |
| 615 | vlib_trace_buffer (vm, node, next0, b[0], 0 /* follow_chain */ ); |
| 616 | vlib_set_trace_count (vm, node, --n_trace); |
| 617 | t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0)); |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 618 | eth = vlib_buffer_get_current (b[0]); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 619 | t0->ethernet = *eth; |
| 620 | t0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 621 | if (!h) |
| 622 | { |
| 623 | t0->bond_sw_if_index = *vec_elt_at_index (bif->active_slaves, 0); |
| 624 | } |
| 625 | else |
| 626 | { |
| 627 | t0->bond_sw_if_index = *vec_elt_at_index (bif->active_slaves, h[0]); |
| 628 | h++; |
| 629 | } |
| 630 | b++; |
| 631 | n_left--; |
| 632 | } |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | VNET_DEVICE_CLASS_TX_FN (bond_dev_class) (vlib_main_t * vm, |
| 636 | vlib_node_runtime_t * node, |
| 637 | vlib_frame_t * frame) |
| 638 | { |
| 639 | vnet_interface_output_runtime_t *rund = (void *) node->runtime_data; |
| 640 | bond_main_t *bm = &bond_main; |
| 641 | u16 thread_index = vm->thread_index; |
| 642 | bond_if_t *bif = pool_elt_at_index (bm->interfaces, rund->dev_instance); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 643 | uword n_slaves; |
| 644 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE]; |
| 645 | u32 *from = vlib_frame_vector_args (frame); |
| 646 | u32 n_left = frame->n_vectors; |
| 647 | u32 hashes[VLIB_FRAME_SIZE], *h; |
| 648 | vnet_main_t *vnm = vnet_get_main (); |
| 649 | bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data, |
| 650 | thread_index); |
| 651 | u32 p, sw_if_index; |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 652 | |
| 653 | if (PREDICT_FALSE (bif->admin_up == 0)) |
| 654 | { |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 655 | vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 656 | vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters + |
| 657 | VNET_INTERFACE_COUNTER_DROP, |
| 658 | thread_index, bif->sw_if_index, |
| 659 | frame->n_vectors); |
| 660 | vlib_error_count (vm, node->node_index, BOND_TX_ERROR_IF_DOWN, |
| 661 | frame->n_vectors); |
| 662 | return frame->n_vectors; |
| 663 | } |
| 664 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 665 | n_slaves = vec_len (bif->active_slaves); |
| 666 | if (PREDICT_FALSE (n_slaves == 0)) |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 667 | { |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 668 | vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 669 | vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters + |
| 670 | VNET_INTERFACE_COUNTER_DROP, |
| 671 | thread_index, bif->sw_if_index, |
| 672 | frame->n_vectors); |
| 673 | vlib_error_count (vm, node->node_index, BOND_TX_ERROR_NO_SLAVE, |
| 674 | frame->n_vectors); |
| 675 | return frame->n_vectors; |
| 676 | } |
| 677 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 678 | vlib_get_buffers (vm, from, bufs, n_left); |
| 679 | |
Paul Vinciguerra | 8feeaff | 2019-03-27 11:25:48 -0700 | [diff] [blame] | 680 | /* active-backup mode, ship everything to first sw if index */ |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 681 | if ((bif->lb == BOND_LB_AB) || PREDICT_FALSE (n_slaves == 1)) |
| 682 | { |
| 683 | sw_if_index = *vec_elt_at_index (bif->active_slaves, 0); |
| 684 | |
| 685 | bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0); |
| 686 | bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left, |
| 687 | /* single_sw_if_index */ 1); |
| 688 | goto done; |
| 689 | } |
| 690 | |
| 691 | if (bif->lb == BOND_LB_BC) |
| 692 | { |
| 693 | sw_if_index = *vec_elt_at_index (bif->active_slaves, 0); |
| 694 | |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 695 | bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_BC); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 696 | bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0); |
| 697 | bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left, |
| 698 | /* single_sw_if_index */ 1); |
| 699 | goto done; |
| 700 | } |
| 701 | |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 702 | if (bif->lb == BOND_LB_L2) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 703 | bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L2); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 704 | else if (bif->lb == BOND_LB_L34) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 705 | bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L34); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 706 | else if (bif->lb == BOND_LB_L23) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 707 | bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L23); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 708 | else if (bif->lb == BOND_LB_RR) |
Zhiyong Yang | b388e1a | 2019-05-08 22:57:53 -0400 | [diff] [blame^] | 709 | bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_RR); |
Damjan Marion | 16de39e | 2018-09-26 10:15:41 +0200 | [diff] [blame] | 710 | else |
| 711 | ASSERT (0); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 712 | |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 713 | /* calculate port out of hash */ |
| 714 | h = hashes; |
| 715 | if (BOND_MODULO_SHORTCUT (n_slaves)) |
| 716 | bond_hash_to_port (h, frame->n_vectors, n_slaves, 1); |
| 717 | else |
| 718 | bond_hash_to_port (h, frame->n_vectors, n_slaves, 0); |
| 719 | |
| 720 | bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, h); |
| 721 | |
| 722 | bond_update_sw_if_index (ptd, bif, from, bufs, hashes, frame->n_vectors, |
| 723 | /* single_sw_if_index */ 0); |
| 724 | |
| 725 | done: |
| 726 | for (p = 0; p < n_slaves; p++) |
| 727 | { |
| 728 | vlib_frame_t *f; |
| 729 | u32 *to_next; |
| 730 | |
| 731 | sw_if_index = *vec_elt_at_index (bif->active_slaves, p); |
| 732 | if (PREDICT_TRUE (ptd->per_port_queue[p].n_buffers)) |
| 733 | { |
| 734 | f = vnet_get_frame_to_sw_interface (vnm, sw_if_index); |
| 735 | f->n_vectors = ptd->per_port_queue[p].n_buffers; |
| 736 | to_next = vlib_frame_vector_args (f); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 737 | clib_memcpy_fast (to_next, ptd->per_port_queue[p].buffers, |
| 738 | f->n_vectors * sizeof (u32)); |
Damjan Marion | 69fdfee | 2018-10-06 14:33:18 +0200 | [diff] [blame] | 739 | vnet_put_frame_to_sw_interface (vnm, sw_if_index, f); |
| 740 | ptd->per_port_queue[p].n_buffers = 0; |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters |
| 745 | + VNET_INTERFACE_COUNTER_TX, thread_index, |
| 746 | bif->sw_if_index, frame->n_vectors); |
| 747 | |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 748 | return frame->n_vectors; |
| 749 | } |
| 750 | |
Steven | 9f781d8 | 2018-06-05 11:09:32 -0700 | [diff] [blame] | 751 | static walk_rc_t |
| 752 | bond_active_interface_switch_cb (vnet_main_t * vnm, u32 sw_if_index, |
| 753 | void *arg) |
| 754 | { |
| 755 | bond_main_t *bm = &bond_main; |
| 756 | |
| 757 | send_ip4_garp (bm->vlib_main, sw_if_index); |
| 758 | send_ip6_na (bm->vlib_main, sw_if_index); |
| 759 | |
| 760 | return (WALK_CONTINUE); |
| 761 | } |
| 762 | |
| 763 | static uword |
| 764 | bond_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) |
| 765 | { |
| 766 | vnet_main_t *vnm = vnet_get_main (); |
| 767 | uword event_type, *event_data = 0; |
| 768 | |
| 769 | while (1) |
| 770 | { |
| 771 | u32 i; |
| 772 | u32 hw_if_index; |
| 773 | |
| 774 | vlib_process_wait_for_event (vm); |
| 775 | event_type = vlib_process_get_events (vm, &event_data); |
| 776 | ASSERT (event_type == BOND_SEND_GARP_NA); |
| 777 | for (i = 0; i < vec_len (event_data); i++) |
| 778 | { |
| 779 | hw_if_index = event_data[i]; |
| 780 | /* walk hw interface to process all subinterfaces */ |
| 781 | vnet_hw_interface_walk_sw (vnm, hw_if_index, |
| 782 | bond_active_interface_switch_cb, 0); |
| 783 | } |
| 784 | vec_reset_length (event_data); |
| 785 | } |
| 786 | return 0; |
| 787 | } |
| 788 | |
| 789 | /* *INDENT-OFF* */ |
| 790 | VLIB_REGISTER_NODE (bond_process_node) = { |
| 791 | .function = bond_process, |
| 792 | .type = VLIB_NODE_TYPE_PROCESS, |
| 793 | .name = "bond-process", |
| 794 | }; |
| 795 | /* *INDENT-ON* */ |
| 796 | |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 797 | /* *INDENT-OFF* */ |
| 798 | VNET_DEVICE_CLASS (bond_dev_class) = { |
| 799 | .name = "bond", |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 800 | .tx_function_n_errors = BOND_TX_N_ERROR, |
| 801 | .tx_function_error_strings = bond_tx_error_strings, |
| 802 | .format_device_name = format_bond_interface_name, |
Steven | 4f8863b | 2018-04-12 19:36:19 -0700 | [diff] [blame] | 803 | .set_l2_mode_function = bond_set_l2_mode_function, |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 804 | .admin_up_down_function = bond_interface_admin_up_down, |
| 805 | .subif_add_del_function = bond_subif_add_del_function, |
| 806 | .format_tx_trace = format_bond_tx_trace, |
| 807 | }; |
| 808 | |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 809 | /* *INDENT-ON* */ |
| 810 | |
| 811 | /* |
| 812 | * fd.io coding-style-patch-verification: ON |
| 813 | * |
| 814 | * Local Variables: |
| 815 | * eval: (c-set-style "gnu") |
| 816 | * End: |
| 817 | */ |