Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * af_packet.c - linux kernel packet interface |
| 4 | * |
| 5 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #include <linux/if_packet.h> |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 21 | #include <sys/socket.h> |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 22 | #include <sys/ioctl.h> |
| 23 | #include <net/if.h> |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 24 | #include <net/if_arp.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 25 | |
| 26 | #include <vlib/vlib.h> |
| 27 | #include <vlib/unix/unix.h> |
| 28 | #include <vnet/ip/ip.h> |
| 29 | #include <vnet/ethernet/ethernet.h> |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 30 | #include <vnet/ip/ip4_packet.h> |
| 31 | #include <vnet/ip/ip6_packet.h> |
| 32 | #include <vnet/ip/ip_psh_cksum.h> |
| 33 | #include <vnet/tcp/tcp_packet.h> |
| 34 | #include <vnet/udp/udp_packet.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 35 | |
| 36 | #include <vnet/devices/af_packet/af_packet.h> |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 37 | #include <vnet/devices/virtio/virtio_std.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 38 | |
Chris Luke | 4b46c84 | 2016-05-23 21:30:26 -0400 | [diff] [blame] | 39 | #define foreach_af_packet_tx_func_error \ |
| 40 | _(FRAME_NOT_READY, "tx frame not ready") \ |
| 41 | _(TXRING_EAGAIN, "tx sendto temporary failure") \ |
| 42 | _(TXRING_FATAL, "tx sendto fatal failure") \ |
| 43 | _(TXRING_OVERRUN, "tx ring overrun") |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 44 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 45 | typedef enum |
| 46 | { |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 47 | #define _(f,s) AF_PACKET_TX_ERROR_##f, |
| 48 | foreach_af_packet_tx_func_error |
| 49 | #undef _ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 50 | AF_PACKET_TX_N_ERROR, |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 51 | } af_packet_tx_func_error_t; |
| 52 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 53 | static char *af_packet_tx_func_error_strings[] = { |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 54 | #define _(n,s) s, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 55 | foreach_af_packet_tx_func_error |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 56 | #undef _ |
| 57 | }; |
| 58 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 59 | typedef struct |
| 60 | { |
| 61 | u32 buffer_index; |
| 62 | u32 hw_if_index; |
| 63 | tpacket3_hdr_t tph; |
| 64 | vnet_virtio_net_hdr_t vnet_hdr; |
| 65 | vlib_buffer_t buffer; |
| 66 | } af_packet_tx_trace_t; |
Damjan Marion | c517020 | 2017-10-11 14:15:47 +0200 | [diff] [blame] | 67 | |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 68 | #ifndef CLIB_MARCH_VARIANT |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 69 | u8 * |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 70 | format_af_packet_device_name (u8 * s, va_list * args) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 71 | { |
| 72 | u32 i = va_arg (*args, u32); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 73 | af_packet_main_t *apm = &af_packet_main; |
| 74 | af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 75 | |
| 76 | s = format (s, "host-%s", apif->host_if_name); |
| 77 | return s; |
| 78 | } |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 79 | #endif /* CLIB_MARCH_VARIANT */ |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 80 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 81 | static u8 * |
| 82 | format_af_packet_device (u8 * s, va_list * args) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 83 | { |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 84 | u32 dev_instance = va_arg (*args, u32); |
| 85 | u32 indent = format_get_indent (s); |
| 86 | int __clib_unused verbose = va_arg (*args, int); |
| 87 | |
| 88 | af_packet_main_t *apm = &af_packet_main; |
| 89 | af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, dev_instance); |
| 90 | clib_spinlock_lock_if_init (&apif->lockp); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 91 | u32 tx_block_sz = apif->tx_req->tp_block_size; |
| 92 | u32 tx_frame_sz = apif->tx_req->tp_frame_size; |
| 93 | u32 tx_frame_nr = apif->tx_req->tp_frame_nr; |
| 94 | u32 tx_block_nr = apif->tx_req->tp_block_nr; |
| 95 | u32 rx_block_size = apif->rx_req->tp_block_size; |
| 96 | u32 rx_frame_size = apif->rx_req->tp_frame_size; |
| 97 | u32 rx_frame_nr = apif->rx_req->tp_frame_nr; |
| 98 | u32 rx_block_nr = apif->rx_req->tp_block_nr; |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 99 | int block = 0; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame] | 100 | u8 *tx_block_start = apif->tx_ring[block]; |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 101 | u32 tx_frame = apif->next_tx_frame; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame] | 102 | tpacket3_hdr_t *tph; |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 103 | |
| 104 | s = format (s, "Linux PACKET socket interface\n"); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 105 | s = format (s, "%UTX block size:%d nr:%d TX frame size:%d nr:%d\n", |
| 106 | format_white_space, indent, tx_block_sz, tx_block_nr, |
| 107 | tx_frame_sz, tx_frame_nr); |
| 108 | s = format (s, "%URX block size:%d nr:%d RX frame size:%d nr:%d\n", |
| 109 | format_white_space, indent, rx_block_size, rx_block_nr, |
| 110 | rx_frame_size, rx_frame_nr); |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 111 | s = format (s, "%Unext frame:%d\n", format_white_space, indent, |
| 112 | apif->next_tx_frame); |
| 113 | |
| 114 | int n_send_req = 0, n_avail = 0, n_sending = 0, n_tot = 0, n_wrong = 0; |
| 115 | do |
| 116 | { |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 117 | tph = (tpacket3_hdr_t *) (tx_block_start + tx_frame * tx_frame_sz); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 118 | tx_frame = (tx_frame + 1) % tx_frame_nr; |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 119 | if (tph->tp_status == 0) |
| 120 | n_avail++; |
| 121 | else if (tph->tp_status & TP_STATUS_SEND_REQUEST) |
| 122 | n_send_req++; |
| 123 | else if (tph->tp_status & TP_STATUS_SENDING) |
| 124 | n_sending++; |
| 125 | else |
| 126 | n_wrong++; |
| 127 | n_tot++; |
| 128 | } |
| 129 | while (tx_frame != apif->next_tx_frame); |
| 130 | s = format (s, "%Uavailable:%d request:%d sending:%d wrong:%d total:%d\n", |
| 131 | format_white_space, indent, n_avail, n_send_req, n_sending, |
| 132 | n_wrong, n_tot); |
| 133 | |
| 134 | clib_spinlock_unlock_if_init (&apif->lockp); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 135 | return s; |
| 136 | } |
| 137 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 138 | static u8 * |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 139 | format_af_packet_tx_trace (u8 *s, va_list *va) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 140 | { |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 141 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 142 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
| 143 | af_packet_tx_trace_t *t = va_arg (*va, af_packet_tx_trace_t *); |
| 144 | u32 indent = format_get_indent (s); |
| 145 | |
| 146 | s = format (s, "af_packet: hw_if_index %u", t->hw_if_index); |
| 147 | |
| 148 | s = |
| 149 | format (s, |
| 150 | "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u" |
| 151 | "\n%Usec 0x%x nsec 0x%x vlan %U" |
| 152 | #ifdef TP_STATUS_VLAN_TPID_VALID |
| 153 | " vlan_tpid %u" |
| 154 | #endif |
| 155 | , |
| 156 | format_white_space, indent + 2, format_white_space, indent + 4, |
| 157 | t->tph.tp_status, t->tph.tp_len, t->tph.tp_snaplen, t->tph.tp_mac, |
| 158 | t->tph.tp_net, format_white_space, indent + 4, t->tph.tp_sec, |
| 159 | t->tph.tp_nsec, format_ethernet_vlan_tci, t->tph.hv1.tp_vlan_tci |
| 160 | #ifdef TP_STATUS_VLAN_TPID_VALID |
| 161 | , |
| 162 | t->tph.hv1.tp_vlan_tpid |
| 163 | #endif |
| 164 | ); |
| 165 | |
| 166 | s = format (s, |
| 167 | "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u" |
| 168 | "\n%Ugso_size %u csum_start %u csum_offset %u", |
| 169 | format_white_space, indent + 2, format_white_space, indent + 4, |
| 170 | t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len, |
| 171 | format_white_space, indent + 4, t->vnet_hdr.gso_size, |
| 172 | t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset); |
| 173 | |
| 174 | s = format (s, "\n%Ubuffer 0x%x:\n%U%U", format_white_space, indent + 2, |
| 175 | t->buffer_index, format_white_space, indent + 4, |
| 176 | format_vnet_buffer_no_chain, &t->buffer); |
| 177 | s = format (s, "\n%U%U", format_white_space, indent + 2, |
| 178 | format_ethernet_header_with_length, t->buffer.pre_data, |
| 179 | sizeof (t->buffer.pre_data)); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 180 | return s; |
| 181 | } |
| 182 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 183 | static void |
| 184 | af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node, |
| 185 | vlib_buffer_t *b0, u32 bi, tpacket3_hdr_t *tph, |
| 186 | vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index) |
| 187 | { |
| 188 | af_packet_tx_trace_t *t; |
| 189 | t = vlib_add_trace (vm, node, b0, sizeof (t[0])); |
| 190 | t->hw_if_index = hw_if_index; |
| 191 | t->buffer_index = bi; |
| 192 | |
| 193 | clib_memcpy_fast (&t->tph, tph, sizeof (*tph)); |
| 194 | clib_memcpy_fast (&t->vnet_hdr, vnet_hdr, sizeof (*vnet_hdr)); |
| 195 | clib_memcpy_fast (&t->buffer, b0, sizeof (*b0) - sizeof (b0->pre_data)); |
| 196 | clib_memcpy_fast (t->buffer.pre_data, vlib_buffer_get_current (b0), |
| 197 | sizeof (t->buffer.pre_data)); |
| 198 | } |
| 199 | |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 200 | static_always_inline void |
| 201 | fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr) |
| 202 | { |
| 203 | vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags; |
| 204 | if (b0->flags & VNET_BUFFER_F_IS_IP4) |
| 205 | { |
| 206 | ip4_header_t *ip4; |
| 207 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4; |
| 208 | vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size; |
| 209 | vnet_hdr->hdr_len = |
| 210 | vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz; |
| 211 | vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
| 212 | vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x22; |
| 213 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); |
| 214 | ip4 = (ip4_header_t *) (vlib_buffer_get_current (b0) + |
| 215 | vnet_buffer (b0)->l3_hdr_offset); |
| 216 | if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) |
| 217 | ip4->checksum = ip4_header_checksum (ip4); |
| 218 | } |
| 219 | else if (b0->flags & VNET_BUFFER_F_IS_IP6) |
| 220 | { |
| 221 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6; |
| 222 | vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size; |
| 223 | vnet_hdr->hdr_len = |
| 224 | vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz; |
| 225 | vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
| 226 | vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x36; |
| 227 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | static_always_inline void |
| 232 | fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr) |
| 233 | { |
| 234 | vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags; |
| 235 | if (b0->flags & VNET_BUFFER_F_IS_IP4) |
| 236 | { |
| 237 | ip4_header_t *ip4; |
| 238 | ip4 = (ip4_header_t *) (vlib_buffer_get_current (b0) + |
| 239 | vnet_buffer (b0)->l3_hdr_offset); |
| 240 | if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) |
| 241 | ip4->checksum = ip4_header_checksum (ip4); |
| 242 | vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
| 243 | vnet_hdr->csum_start = 0x22; |
| 244 | if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) |
| 245 | { |
| 246 | tcp_header_t *tcp = |
| 247 | (tcp_header_t *) (vlib_buffer_get_current (b0) + |
| 248 | vnet_buffer (b0)->l4_hdr_offset); |
| 249 | tcp->checksum = ip4_pseudo_header_cksum (ip4); |
| 250 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); |
| 251 | } |
| 252 | else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM) |
| 253 | { |
| 254 | udp_header_t *udp = |
| 255 | (udp_header_t *) (vlib_buffer_get_current (b0) + |
| 256 | vnet_buffer (b0)->l4_hdr_offset); |
| 257 | udp->checksum = ip4_pseudo_header_cksum (ip4); |
| 258 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum); |
| 259 | } |
| 260 | } |
| 261 | else if (b0->flags & VNET_BUFFER_F_IS_IP6) |
| 262 | { |
| 263 | ip6_header_t *ip6; |
| 264 | vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
| 265 | vnet_hdr->csum_start = 0x36; |
| 266 | ip6 = (ip6_header_t *) (vlib_buffer_get_current (b0) + |
| 267 | vnet_buffer (b0)->l3_hdr_offset); |
| 268 | if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) |
| 269 | { |
| 270 | tcp_header_t *tcp = |
| 271 | (tcp_header_t *) (vlib_buffer_get_current (b0) + |
| 272 | vnet_buffer (b0)->l4_hdr_offset); |
| 273 | tcp->checksum = ip6_pseudo_header_cksum (ip6); |
| 274 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); |
| 275 | } |
| 276 | else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM) |
| 277 | { |
| 278 | udp_header_t *udp = |
| 279 | (udp_header_t *) (vlib_buffer_get_current (b0) + |
| 280 | vnet_buffer (b0)->l4_hdr_offset); |
| 281 | udp->checksum = ip6_pseudo_header_cksum (ip6); |
| 282 | vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum); |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 287 | VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm, |
| 288 | vlib_node_runtime_t * node, |
| 289 | vlib_frame_t * frame) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 290 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 291 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 292 | u32 *buffers = vlib_frame_vector_args (frame); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 293 | u32 n_left = frame->n_vectors; |
| 294 | u32 n_sent = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 295 | vnet_interface_output_runtime_t *rd = (void *) node->runtime_data; |
| 296 | af_packet_if_t *apif = |
| 297 | pool_elt_at_index (apm->interfaces, rd->dev_instance); |
Pierre Pfister | 8cedff2 | 2018-02-07 15:48:21 +0100 | [diff] [blame] | 298 | clib_spinlock_lock_if_init (&apif->lockp); |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame] | 299 | u32 block = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 300 | u32 frame_size = apif->tx_req->tp_frame_size; |
| 301 | u32 frame_num = apif->tx_req->tp_frame_nr; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame] | 302 | u8 *block_start = apif->tx_ring[block]; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 303 | u32 tx_frame = apif->next_tx_frame; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame] | 304 | tpacket3_hdr_t *tph; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 305 | u32 frame_not_ready = 0; |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 306 | u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 307 | |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 308 | while (n_left) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 309 | { |
| 310 | u32 len; |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 311 | vnet_virtio_net_hdr_t *vnet_hdr = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 312 | u32 offset = 0; |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 313 | vlib_buffer_t *b0 = 0, *b0_first = 0; |
| 314 | u32 bi, bi_first; |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 315 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 316 | bi = bi_first = buffers[0]; |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 317 | n_left--; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 318 | buffers++; |
| 319 | |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 320 | tph = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size); |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 321 | if (PREDICT_FALSE (tph->tp_status & |
| 322 | (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING))) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 323 | { |
| 324 | frame_not_ready++; |
Mohammed Hawari | eed6fc9 | 2021-09-06 11:48:17 +0200 | [diff] [blame] | 325 | goto next; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 326 | } |
| 327 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 328 | b0_first = b0 = vlib_get_buffer (vm, bi); |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 329 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 330 | if (PREDICT_TRUE (is_cksum_gso_enabled)) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 331 | { |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 332 | vnet_hdr = |
| 333 | (vnet_virtio_net_hdr_t *) ((u8 *) tph + TPACKET_ALIGN (sizeof ( |
| 334 | tpacket3_hdr_t))); |
| 335 | |
| 336 | clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t)); |
| 337 | offset = sizeof (vnet_virtio_net_hdr_t); |
| 338 | |
| 339 | if (b0->flags & VNET_BUFFER_F_GSO) |
| 340 | fill_gso_offload (b0, vnet_hdr); |
| 341 | else if (b0->flags & VNET_BUFFER_F_OFFLOAD) |
| 342 | fill_cksum_offload (b0, vnet_hdr); |
| 343 | } |
| 344 | |
| 345 | len = b0->current_length; |
| 346 | clib_memcpy_fast ((u8 *) tph + TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + |
| 347 | offset, |
| 348 | vlib_buffer_get_current (b0), len); |
| 349 | offset += len; |
| 350 | |
| 351 | while (b0->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 352 | { |
| 353 | b0 = vlib_get_buffer (vm, b0->next_buffer); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 354 | len = b0->current_length; |
Mohsin Kazmi | c1fd17b | 2022-03-22 21:40:04 +0000 | [diff] [blame] | 355 | clib_memcpy_fast ((u8 *) tph + |
| 356 | TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + offset, |
| 357 | vlib_buffer_get_current (b0), len); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 358 | offset += len; |
| 359 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 360 | |
| 361 | tph->tp_len = tph->tp_snaplen = offset; |
| 362 | tph->tp_status = TP_STATUS_SEND_REQUEST; |
| 363 | n_sent++; |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 364 | |
Mohsin Kazmi | 9deb2ec | 2022-03-22 23:17:46 +0000 | [diff] [blame^] | 365 | if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED)) |
| 366 | { |
| 367 | if (PREDICT_TRUE (is_cksum_gso_enabled)) |
| 368 | af_packet_tx_trace (vm, node, b0_first, bi_first, tph, vnet_hdr, |
| 369 | apif->hw_if_index); |
| 370 | else |
| 371 | { |
| 372 | vnet_virtio_net_hdr_t vnet_hdr2 = {}; |
| 373 | af_packet_tx_trace (vm, node, b0_first, bi_first, tph, |
| 374 | &vnet_hdr2, apif->hw_if_index); |
| 375 | } |
| 376 | } |
Florin Coras | 837503c | 2017-11-28 11:59:20 -0800 | [diff] [blame] | 377 | tx_frame = (tx_frame + 1) % frame_num; |
| 378 | |
Mohammed Hawari | eed6fc9 | 2021-09-06 11:48:17 +0200 | [diff] [blame] | 379 | next: |
Chris Luke | 4b46c84 | 2016-05-23 21:30:26 -0400 | [diff] [blame] | 380 | /* check if we've exhausted the ring */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 381 | if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num)) |
| 382 | break; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 383 | } |
| 384 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 385 | CLIB_MEMORY_BARRIER (); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 386 | |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 387 | if (PREDICT_TRUE (n_sent)) |
Mohammed Hawari | eed6fc9 | 2021-09-06 11:48:17 +0200 | [diff] [blame] | 388 | { |
| 389 | apif->next_tx_frame = tx_frame; |
| 390 | |
| 391 | if (PREDICT_FALSE (sendto (apif->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == |
| 392 | -1)) |
| 393 | { |
| 394 | /* Uh-oh, drop & move on, but count whether it was fatal or not. |
| 395 | * Note that we have no reliable way to properly determine the |
| 396 | * disposition of the packets we just enqueued for delivery. |
| 397 | */ |
| 398 | vlib_error_count (vm, node->node_index, |
| 399 | unix_error_is_fatal (errno) ? |
| 400 | AF_PACKET_TX_ERROR_TXRING_FATAL : |
| 401 | AF_PACKET_TX_ERROR_TXRING_EAGAIN, |
| 402 | n_sent); |
| 403 | } |
| 404 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 405 | |
Damjan Marion | 1927da2 | 2017-03-27 17:08:20 +0200 | [diff] [blame] | 406 | clib_spinlock_unlock_if_init (&apif->lockp); |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 407 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 408 | if (PREDICT_FALSE (frame_not_ready)) |
| 409 | vlib_error_count (vm, node->node_index, |
| 410 | AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready); |
Chris Luke | 4b46c84 | 2016-05-23 21:30:26 -0400 | [diff] [blame] | 411 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 412 | if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num)) |
Chris Luke | 4b46c84 | 2016-05-23 21:30:26 -0400 | [diff] [blame] | 413 | vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 414 | n_left); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 415 | |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 416 | vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 417 | return frame->n_vectors; |
| 418 | } |
| 419 | |
| 420 | static void |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 421 | af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index, |
| 422 | u32 node_index) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 423 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 424 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 425 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 426 | af_packet_if_t *apif = |
| 427 | pool_elt_at_index (apm->interfaces, hw->dev_instance); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 428 | |
| 429 | /* Shut off redirection */ |
| 430 | if (node_index == ~0) |
| 431 | { |
| 432 | apif->per_interface_next_index = node_index; |
| 433 | return; |
| 434 | } |
| 435 | |
| 436 | apif->per_interface_next_index = |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 437 | vlib_node_add_next (vlib_get_main (), af_packet_input_node.index, |
| 438 | node_index); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 439 | } |
| 440 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 441 | static void |
| 442 | af_packet_clear_hw_interface_counters (u32 instance) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 443 | { |
| 444 | /* Nothing for now */ |
| 445 | } |
| 446 | |
| 447 | static clib_error_t * |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 448 | af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, |
| 449 | u32 flags) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 450 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 451 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 452 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 453 | af_packet_if_t *apif = |
| 454 | pool_elt_at_index (apm->interfaces, hw->dev_instance); |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 455 | u32 hw_flags; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 456 | int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0); |
| 457 | struct ifreq ifr; |
| 458 | |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 459 | if (0 > fd) |
| 460 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 461 | vlib_log_warn (apm->log_class, "af_packet_%s could not open socket", |
| 462 | apif->host_if_name); |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 463 | return 0; |
| 464 | } |
| 465 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 466 | /* if interface is a bridge ignore */ |
| 467 | if (apif->host_if_index < 0) |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 468 | goto error; /* no error */ |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 469 | |
| 470 | /* use host_if_index in case host name has changed */ |
| 471 | ifr.ifr_ifindex = apif->host_if_index; |
| 472 | if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0) |
| 473 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 474 | vlib_log_warn (apm->log_class, |
| 475 | "af_packet_%s ioctl could not retrieve eth name", |
| 476 | apif->host_if_name); |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 477 | goto error; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 478 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 479 | |
| 480 | apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0; |
| 481 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 482 | if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0) |
| 483 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 484 | vlib_log_warn (apm->log_class, "af_packet_%s error: %d", |
| 485 | apif->is_admin_up ? "up" : "down", rv); |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 486 | goto error; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 489 | if (apif->is_admin_up) |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 490 | { |
| 491 | hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 492 | ifr.ifr_flags |= IFF_UP; |
| 493 | } |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 494 | else |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 495 | { |
| 496 | hw_flags = 0; |
| 497 | ifr.ifr_flags &= ~IFF_UP; |
| 498 | } |
| 499 | |
| 500 | if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0) |
| 501 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 502 | vlib_log_warn (apm->log_class, "af_packet_%s error: %d", |
| 503 | apif->is_admin_up ? "up" : "down", rv); |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 504 | goto error; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 505 | } |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 506 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 507 | vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 508 | |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 509 | error: |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 510 | if (0 <= fd) |
| 511 | close (fd); |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 512 | |
| 513 | return 0; /* no error */ |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | static clib_error_t * |
| 517 | af_packet_subif_add_del_function (vnet_main_t * vnm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 518 | u32 hw_if_index, |
| 519 | struct vnet_sw_interface_t *st, int is_add) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 520 | { |
| 521 | /* Nothing for now */ |
| 522 | return 0; |
| 523 | } |
| 524 | |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 525 | static clib_error_t *af_packet_set_mac_address_function |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 526 | (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address) |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 527 | { |
| 528 | af_packet_main_t *apm = &af_packet_main; |
| 529 | af_packet_if_t *apif = |
| 530 | pool_elt_at_index (apm->interfaces, hi->dev_instance); |
Klement Sekera | c3225dd | 2021-10-26 16:19:45 +0200 | [diff] [blame] | 531 | int rv, fd; |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 532 | struct ifreq ifr; |
| 533 | |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 534 | if (apif->mode == AF_PACKET_IF_MODE_IP) |
| 535 | { |
| 536 | vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode", |
| 537 | apif->host_if_name); |
| 538 | return clib_error_return (0, |
| 539 | " MAC update failed, interface is in IP mode"); |
| 540 | } |
| 541 | |
Klement Sekera | c3225dd | 2021-10-26 16:19:45 +0200 | [diff] [blame] | 542 | fd = socket (AF_UNIX, SOCK_DGRAM, 0); |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 543 | if (0 > fd) |
| 544 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 545 | vlib_log_warn (apm->log_class, "af_packet_%s could not open socket", |
| 546 | apif->host_if_name); |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 547 | return 0; |
| 548 | } |
| 549 | |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 550 | /* if interface is a bridge ignore */ |
| 551 | if (apif->host_if_index < 0) |
| 552 | goto error; /* no error */ |
| 553 | |
| 554 | /* use host_if_index in case host name has changed */ |
| 555 | ifr.ifr_ifindex = apif->host_if_index; |
| 556 | if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0) |
| 557 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 558 | vlib_log_warn |
| 559 | (apm->log_class, |
| 560 | "af_packet_%s ioctl could not retrieve eth name, error: %d", |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 561 | apif->host_if_name, rv); |
| 562 | goto error; |
| 563 | } |
| 564 | |
| 565 | clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6); |
| 566 | ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER; |
| 567 | |
| 568 | if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0) |
| 569 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 570 | vlib_log_warn (apm->log_class, |
| 571 | "af_packet_%s ioctl could not set mac, error: %d", |
| 572 | apif->host_if_name, rv); |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 573 | goto error; |
| 574 | } |
| 575 | |
| 576 | error: |
Ray Kinsella | e6cc9cc | 2017-05-20 13:42:30 +0100 | [diff] [blame] | 577 | |
| 578 | if (0 <= fd) |
| 579 | close (fd); |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 580 | |
| 581 | return 0; /* no error */ |
| 582 | } |
| 583 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 584 | VNET_DEVICE_CLASS (af_packet_device_class) = { |
| 585 | .name = "af-packet", |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 586 | .format_device_name = format_af_packet_device_name, |
| 587 | .format_device = format_af_packet_device, |
| 588 | .format_tx_trace = format_af_packet_tx_trace, |
| 589 | .tx_function_n_errors = AF_PACKET_TX_N_ERROR, |
| 590 | .tx_function_error_strings = af_packet_tx_func_error_strings, |
| 591 | .rx_redirect_to_node = af_packet_set_interface_next_node, |
| 592 | .clear_counters = af_packet_clear_hw_interface_counters, |
| 593 | .admin_up_down_function = af_packet_interface_admin_up_down, |
| 594 | .subif_add_del_function = af_packet_subif_add_del_function, |
Ray Kinsella | 2038ad0 | 2017-05-18 11:56:28 +0100 | [diff] [blame] | 595 | .mac_addr_change_function = af_packet_set_mac_address_function, |
Alpesh Patel | 83cc4e1 | 2016-04-05 12:49:30 -0700 | [diff] [blame] | 596 | }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 597 | |
| 598 | /* |
| 599 | * fd.io coding-style-patch-verification: ON |
| 600 | * |
| 601 | * Local Variables: |
| 602 | * eval: (c-set-style "gnu") |
| 603 | * End: |
| 604 | */ |