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/llc/llc.h> |
| 21 | #include <vnet/snap/snap.h> |
| 22 | #include <vnet/bonding/node.h> |
| 23 | |
Benoît Ganne | 47727c0 | 2019-02-12 13:35:08 +0100 | [diff] [blame] | 24 | #ifndef CLIB_MARCH_VARIANT |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 25 | bond_main_t bond_main; |
Benoît Ganne | 47727c0 | 2019-02-12 13:35:08 +0100 | [diff] [blame] | 26 | #endif /* CLIB_MARCH_VARIANT */ |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 27 | |
| 28 | #define foreach_bond_input_error \ |
| 29 | _(NONE, "no error") \ |
| 30 | _(IF_DOWN, "interface down") \ |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 31 | _(PASS_THRU, "pass through (CDP, LLDP, slow protocols)") |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 32 | |
| 33 | typedef enum |
| 34 | { |
| 35 | #define _(f,s) BOND_INPUT_ERROR_##f, |
| 36 | foreach_bond_input_error |
| 37 | #undef _ |
| 38 | BOND_INPUT_N_ERROR, |
| 39 | } bond_input_error_t; |
| 40 | |
| 41 | static char *bond_input_error_strings[] = { |
| 42 | #define _(n,s) s, |
| 43 | foreach_bond_input_error |
| 44 | #undef _ |
| 45 | }; |
| 46 | |
| 47 | static u8 * |
| 48 | format_bond_input_trace (u8 * s, va_list * args) |
| 49 | { |
| 50 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 51 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 52 | bond_packet_trace_t *t = va_arg (*args, bond_packet_trace_t *); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 53 | |
Steven | 70488ab | 2018-03-28 17:59:00 -0700 | [diff] [blame] | 54 | s = format (s, "src %U, dst %U, %U -> %U", |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 55 | format_ethernet_address, t->ethernet.src_address, |
| 56 | format_ethernet_address, t->ethernet.dst_address, |
Steven | 70488ab | 2018-03-28 17:59:00 -0700 | [diff] [blame] | 57 | format_vnet_sw_if_index_name, vnet_get_main (), |
| 58 | t->sw_if_index, |
| 59 | format_vnet_sw_if_index_name, vnet_get_main (), |
| 60 | t->bond_sw_if_index); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 61 | |
| 62 | return s; |
| 63 | } |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 64 | |
| 65 | typedef enum |
| 66 | { |
| 67 | BOND_INPUT_NEXT_DROP, |
| 68 | BOND_INPUT_N_NEXT, |
Steven | 9f781d8 | 2018-06-05 11:09:32 -0700 | [diff] [blame] | 69 | } bond_output_next_t; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 70 | |
| 71 | static_always_inline u8 |
| 72 | packet_is_cdp (ethernet_header_t * eth) |
| 73 | { |
| 74 | llc_header_t *llc; |
| 75 | snap_header_t *snap; |
| 76 | |
| 77 | llc = (llc_header_t *) (eth + 1); |
| 78 | snap = (snap_header_t *) (llc + 1); |
| 79 | |
| 80 | return ((eth->type == htons (ETHERNET_TYPE_CDP)) || |
| 81 | ((llc->src_sap == 0xAA) && (llc->control == 0x03) && |
| 82 | (snap->protocol == htons (0x2000)) && |
| 83 | (snap->oui[0] == 0) && (snap->oui[1] == 0) && |
| 84 | (snap->oui[2] == 0x0C))); |
| 85 | } |
| 86 | |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 87 | static inline void |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 88 | bond_sw_if_idx_rewrite (vlib_main_t * vm, vlib_node_runtime_t * node, |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 89 | vlib_buffer_t * b, u32 bond_sw_if_index, |
| 90 | u32 * n_rx_packets, u32 * n_rx_bytes) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 91 | { |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 92 | u16 *ethertype_p, ethertype; |
| 93 | ethernet_vlan_header_t *vlan; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 94 | ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 95 | |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 96 | (*n_rx_packets)++; |
| 97 | *n_rx_bytes += b->current_length; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 98 | ethertype = clib_mem_unaligned (ð->type, u16); |
| 99 | if (!ethernet_frame_is_tagged (ntohs (ethertype))) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 100 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 101 | // Let some layer2 packets pass through. |
| 102 | if (PREDICT_TRUE ((ethertype != htons (ETHERNET_TYPE_SLOW_PROTOCOLS)) |
| 103 | && !packet_is_cdp (eth) |
| 104 | && (ethertype != htons (ETHERNET_TYPE_802_1_LLDP)))) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 105 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 106 | /* Change the physical interface to bond interface */ |
| 107 | vnet_buffer (b)->sw_if_index[VLIB_RX] = bond_sw_if_index; |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 108 | return; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | else |
| 112 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 113 | vlan = (void *) (eth + 1); |
| 114 | ethertype_p = &vlan->type; |
| 115 | ethertype = clib_mem_unaligned (ethertype_p, u16); |
| 116 | if (ethertype == ntohs (ETHERNET_TYPE_VLAN)) |
| 117 | { |
| 118 | vlan++; |
| 119 | ethertype_p = &vlan->type; |
| 120 | } |
| 121 | ethertype = clib_mem_unaligned (ethertype_p, u16); |
| 122 | if (PREDICT_TRUE ((ethertype != htons (ETHERNET_TYPE_SLOW_PROTOCOLS)) |
| 123 | && (ethertype != htons (ETHERNET_TYPE_CDP)) |
| 124 | && (ethertype != htons (ETHERNET_TYPE_802_1_LLDP)))) |
| 125 | { |
| 126 | /* Change the physical interface to bond interface */ |
| 127 | vnet_buffer (b)->sw_if_index[VLIB_RX] = bond_sw_if_index; |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 128 | return; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 129 | } |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 130 | } |
| 131 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 132 | vlib_error_count (vm, node->node_index, BOND_INPUT_ERROR_PASS_THRU, 1); |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 133 | return; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 136 | static inline void |
| 137 | bond_update_next (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 138 | u32 * last_slave_sw_if_index, u32 slave_sw_if_index, |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 139 | u32 * bond_sw_if_index, vlib_buffer_t * b, |
| 140 | u32 * next_index, vlib_error_t * error) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 141 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 142 | slave_if_t *sif; |
| 143 | bond_if_t *bif; |
| 144 | |
| 145 | if (PREDICT_TRUE (*last_slave_sw_if_index == slave_sw_if_index)) |
| 146 | return; |
| 147 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 148 | *last_slave_sw_if_index = slave_sw_if_index; |
| 149 | *next_index = BOND_INPUT_NEXT_DROP; |
| 150 | |
| 151 | sif = bond_get_slave_by_sw_if_index (slave_sw_if_index); |
| 152 | ASSERT (sif); |
| 153 | |
| 154 | bif = bond_get_master_by_dev_instance (sif->bif_dev_instance); |
| 155 | |
| 156 | ASSERT (bif); |
| 157 | ASSERT (vec_len (bif->slaves)); |
| 158 | |
| 159 | if (PREDICT_TRUE (bif->admin_up == 0)) |
| 160 | { |
| 161 | *bond_sw_if_index = slave_sw_if_index; |
| 162 | *error = node->errors[BOND_INPUT_ERROR_IF_DOWN]; |
| 163 | } |
| 164 | |
| 165 | *bond_sw_if_index = bif->sw_if_index; |
| 166 | *error = 0; |
Damjan Marion | 7d98a12 | 2018-07-19 20:42:08 +0200 | [diff] [blame] | 167 | vnet_feature_next (next_index, b); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 168 | } |
| 169 | |
Damjan Marion | 812b32d | 2018-05-28 21:26:47 +0200 | [diff] [blame] | 170 | VLIB_NODE_FN (bond_input_node) (vlib_main_t * vm, |
| 171 | vlib_node_runtime_t * node, |
| 172 | vlib_frame_t * frame) |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 173 | { |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 174 | u16 thread_index = vm->thread_index; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 175 | u32 *from, n_left; |
| 176 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 177 | u32 sw_if_indices[VLIB_FRAME_SIZE], *sw_if_index; |
| 178 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 179 | u32 last_slave_sw_if_index = ~0; |
| 180 | u32 bond_sw_if_index = 0; |
| 181 | vlib_error_t error = 0; |
| 182 | u32 next_index = 0; |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 183 | u32 n_rx_bytes = 0, n_rx_packets = 0; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 184 | |
| 185 | /* Vector of buffer / pkt indices we're supposed to process */ |
| 186 | from = vlib_frame_vector_args (frame); |
| 187 | |
| 188 | /* Number of buffers / pkts */ |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 189 | n_left = frame->n_vectors; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 190 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 191 | vlib_get_buffers (vm, from, bufs, n_left); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 192 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 193 | b = bufs; |
| 194 | next = nexts; |
| 195 | sw_if_index = sw_if_indices; |
| 196 | |
| 197 | while (n_left >= 4) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 198 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 199 | u32 x = 0; |
| 200 | /* Prefetch next iteration */ |
| 201 | if (PREDICT_TRUE (n_left >= 16)) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 202 | { |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 203 | vlib_prefetch_buffer_data (b[8], LOAD); |
| 204 | vlib_prefetch_buffer_data (b[9], LOAD); |
| 205 | vlib_prefetch_buffer_data (b[10], LOAD); |
| 206 | vlib_prefetch_buffer_data (b[11], LOAD); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 207 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 208 | vlib_prefetch_buffer_header (b[12], LOAD); |
| 209 | vlib_prefetch_buffer_header (b[13], LOAD); |
| 210 | vlib_prefetch_buffer_header (b[14], LOAD); |
| 211 | vlib_prefetch_buffer_header (b[15], LOAD); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 212 | } |
| 213 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 214 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 215 | sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX]; |
| 216 | sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX]; |
| 217 | sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX]; |
| 218 | |
| 219 | x |= sw_if_index[0] ^ last_slave_sw_if_index; |
| 220 | x |= sw_if_index[1] ^ last_slave_sw_if_index; |
| 221 | x |= sw_if_index[2] ^ last_slave_sw_if_index; |
| 222 | x |= sw_if_index[3] ^ last_slave_sw_if_index; |
| 223 | |
| 224 | if (PREDICT_TRUE (x == 0)) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 225 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 226 | next[0] = next[1] = next[2] = next[3] = next_index; |
| 227 | if (next_index == BOND_INPUT_NEXT_DROP) |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 228 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 229 | b[0]->error = error; |
| 230 | b[1]->error = error; |
| 231 | b[2]->error = error; |
| 232 | b[3]->error = error; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 233 | } |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 234 | else |
Steven | 70488ab | 2018-03-28 17:59:00 -0700 | [diff] [blame] | 235 | { |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 236 | bond_sw_if_idx_rewrite (vm, node, b[0], bond_sw_if_index, |
| 237 | &n_rx_packets, &n_rx_bytes); |
| 238 | bond_sw_if_idx_rewrite (vm, node, b[1], bond_sw_if_index, |
| 239 | &n_rx_packets, &n_rx_bytes); |
| 240 | bond_sw_if_idx_rewrite (vm, node, b[2], bond_sw_if_index, |
| 241 | &n_rx_packets, &n_rx_bytes); |
| 242 | bond_sw_if_idx_rewrite (vm, node, b[3], bond_sw_if_index, |
| 243 | &n_rx_packets, &n_rx_bytes); |
Steven | 70488ab | 2018-03-28 17:59:00 -0700 | [diff] [blame] | 244 | } |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 245 | } |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 246 | else |
| 247 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 248 | bond_update_next (vm, node, &last_slave_sw_if_index, sw_if_index[0], |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 249 | &bond_sw_if_index, b[0], &next_index, &error); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 250 | next[0] = next_index; |
| 251 | if (next_index == BOND_INPUT_NEXT_DROP) |
| 252 | b[0]->error = error; |
| 253 | else |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 254 | bond_sw_if_idx_rewrite (vm, node, b[0], bond_sw_if_index, |
| 255 | &n_rx_packets, &n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 256 | |
| 257 | bond_update_next (vm, node, &last_slave_sw_if_index, sw_if_index[1], |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 258 | &bond_sw_if_index, b[1], &next_index, &error); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 259 | next[1] = next_index; |
| 260 | if (next_index == BOND_INPUT_NEXT_DROP) |
| 261 | b[1]->error = error; |
| 262 | else |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 263 | bond_sw_if_idx_rewrite (vm, node, b[1], bond_sw_if_index, |
| 264 | &n_rx_packets, &n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 265 | |
| 266 | bond_update_next (vm, node, &last_slave_sw_if_index, sw_if_index[2], |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 267 | &bond_sw_if_index, b[2], &next_index, &error); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 268 | next[2] = next_index; |
| 269 | if (next_index == BOND_INPUT_NEXT_DROP) |
| 270 | b[2]->error = error; |
| 271 | else |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 272 | bond_sw_if_idx_rewrite (vm, node, b[2], bond_sw_if_index, |
| 273 | &n_rx_packets, &n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 274 | |
| 275 | bond_update_next (vm, node, &last_slave_sw_if_index, sw_if_index[3], |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 276 | &bond_sw_if_index, b[3], &next_index, &error); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 277 | next[3] = next_index; |
| 278 | if (next_index == BOND_INPUT_NEXT_DROP) |
| 279 | b[3]->error = error; |
| 280 | else |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 281 | bond_sw_if_idx_rewrite (vm, node, b[3], bond_sw_if_index, |
| 282 | &n_rx_packets, &n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]); |
| 286 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[1]); |
| 287 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[2]); |
| 288 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[3]); |
| 289 | |
| 290 | /* next */ |
| 291 | n_left -= 4; |
| 292 | b += 4; |
| 293 | sw_if_index += 4; |
| 294 | next += 4; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 295 | } |
| 296 | |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 297 | while (n_left) |
| 298 | { |
| 299 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 300 | bond_update_next (vm, node, &last_slave_sw_if_index, sw_if_index[0], |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 301 | &bond_sw_if_index, b[0], &next_index, &error); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 302 | next[0] = next_index; |
| 303 | if (next_index == BOND_INPUT_NEXT_DROP) |
| 304 | b[0]->error = error; |
| 305 | else |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 306 | bond_sw_if_idx_rewrite (vm, node, b[0], bond_sw_if_index, |
| 307 | &n_rx_packets, &n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 308 | |
| 309 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]); |
| 310 | |
| 311 | /* next */ |
| 312 | n_left -= 1; |
| 313 | b += 1; |
| 314 | sw_if_index += 1; |
| 315 | next += 1; |
| 316 | } |
| 317 | |
| 318 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
| 319 | { |
| 320 | n_left = frame->n_vectors; /* number of packets to process */ |
| 321 | b = bufs; |
| 322 | sw_if_index = sw_if_indices; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 323 | bond_packet_trace_t *t0; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 324 | |
Damjan Marion | f264f08 | 2018-05-30 00:03:34 +0200 | [diff] [blame] | 325 | while (n_left) |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 326 | { |
| 327 | if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED)) |
| 328 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 329 | t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0)); |
| 330 | t0->sw_if_index = sw_if_index[0]; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 331 | clib_memcpy_fast (&t0->ethernet, vlib_buffer_get_current (b[0]), |
| 332 | sizeof (ethernet_header_t)); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 333 | t0->bond_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 334 | } |
| 335 | /* next */ |
| 336 | n_left--; |
| 337 | b++; |
| 338 | sw_if_index++; |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 339 | } |
| 340 | } |
| 341 | |
| 342 | /* increase rx counters */ |
Steven Luong | c94afaa | 2019-07-24 21:16:09 -0700 | [diff] [blame] | 343 | vlib_increment_combined_counter |
| 344 | (vnet_main.interface_main.combined_sw_if_counters + |
| 345 | VNET_INTERFACE_COUNTER_RX, thread_index, bond_sw_if_index, n_rx_packets, |
| 346 | n_rx_bytes); |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 347 | |
| 348 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 349 | vlib_node_increment_counter (vm, bond_input_node.index, |
| 350 | BOND_INPUT_ERROR_NONE, frame->n_vectors); |
| 351 | |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 352 | return frame->n_vectors; |
| 353 | } |
| 354 | |
| 355 | static clib_error_t * |
| 356 | bond_input_init (vlib_main_t * vm) |
| 357 | { |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | /* *INDENT-OFF* */ |
| 362 | VLIB_REGISTER_NODE (bond_input_node) = { |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 363 | .name = "bond-input", |
| 364 | .vector_size = sizeof (u32), |
| 365 | .format_buffer = format_ethernet_header_with_length, |
| 366 | .format_trace = format_bond_input_trace, |
| 367 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 368 | .n_errors = BOND_INPUT_N_ERROR, |
| 369 | .error_strings = bond_input_error_strings, |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 370 | .n_next_nodes = BOND_INPUT_N_NEXT, |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 371 | .next_nodes = |
| 372 | { |
Damjan Marion | 5e5adb3 | 2018-05-26 00:50:39 +0200 | [diff] [blame] | 373 | [BOND_INPUT_NEXT_DROP] = "error-drop" |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 374 | } |
| 375 | }; |
| 376 | |
| 377 | VLIB_INIT_FUNCTION (bond_input_init); |
| 378 | |
| 379 | VNET_FEATURE_INIT (bond_input, static) = |
| 380 | { |
| 381 | .arc_name = "device-input", |
| 382 | .node_name = "bond-input", |
| 383 | .runs_before = VNET_FEATURES ("ethernet-input"), |
| 384 | }; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 385 | /* *INDENT-ON* */ |
| 386 | |
| 387 | static clib_error_t * |
| 388 | bond_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags) |
| 389 | { |
| 390 | bond_main_t *bm = &bond_main; |
| 391 | slave_if_t *sif; |
| 392 | vlib_main_t *vm = bm->vlib_main; |
| 393 | |
| 394 | sif = bond_get_slave_by_sw_if_index (sw_if_index); |
| 395 | if (sif) |
| 396 | { |
Steven | e43278f | 2019-01-17 15:11:29 -0800 | [diff] [blame] | 397 | if (sif->lacp_enabled) |
| 398 | return 0; |
| 399 | |
Steven Luong | bac326c | 2019-08-05 09:47:58 -0700 | [diff] [blame] | 400 | /* port_enabled is both admin up and hw link up */ |
| 401 | sif->port_enabled = ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) && |
| 402 | vnet_sw_interface_is_link_up (vnm, sw_if_index)); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 403 | if (sif->port_enabled == 0) |
Steven Luong | bac326c | 2019-08-05 09:47:58 -0700 | [diff] [blame] | 404 | bond_disable_collecting_distributing (vm, sif); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 405 | else |
Steven Luong | bac326c | 2019-08-05 09:47:58 -0700 | [diff] [blame] | 406 | bond_enable_collecting_distributing (vm, sif); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (bond_sw_interface_up_down); |
| 413 | |
| 414 | static clib_error_t * |
| 415 | bond_hw_interface_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 416 | { |
| 417 | bond_main_t *bm = &bond_main; |
| 418 | slave_if_t *sif; |
| 419 | vnet_sw_interface_t *sw; |
| 420 | vlib_main_t *vm = bm->vlib_main; |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 421 | |
Steven | ce2db6a | 2018-04-23 17:06:24 -0700 | [diff] [blame] | 422 | sw = vnet_get_hw_sw_interface (vnm, hw_if_index); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 423 | sif = bond_get_slave_by_sw_if_index (sw->sw_if_index); |
| 424 | if (sif) |
| 425 | { |
Steven | e43278f | 2019-01-17 15:11:29 -0800 | [diff] [blame] | 426 | if (sif->lacp_enabled) |
| 427 | return 0; |
| 428 | |
Steven Luong | bac326c | 2019-08-05 09:47:58 -0700 | [diff] [blame] | 429 | /* port_enabled is both admin up and hw link up */ |
| 430 | sif->port_enabled = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) && |
| 431 | vnet_sw_interface_is_admin_up (vnm, |
| 432 | sw->sw_if_index)); |
| 433 | if (sif->port_enabled == 0) |
| 434 | bond_disable_collecting_distributing (vm, sif); |
| 435 | else |
| 436 | bond_enable_collecting_distributing (vm, sif); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (bond_hw_interface_up_down); |
Steven | 9cd2d7a | 2017-12-20 12:43:01 -0800 | [diff] [blame] | 443 | |
| 444 | /* |
| 445 | * fd.io coding-style-patch-verification: ON |
| 446 | * |
| 447 | * Local Variables: |
| 448 | * eval: (c-set-style "gnu") |
| 449 | * End: |
| 450 | */ |