blob: 4e4913a071aaa6280f991ab74a9da04d150c28f7 [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
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 Kinsella2038ad02017-05-18 11:56:28 +010021#include <sys/socket.h>
Ray Kinsellac855b732017-04-21 12:24:43 +010022#include <sys/ioctl.h>
23#include <net/if.h>
Ray Kinsella2038ad02017-05-18 11:56:28 +010024#include <net/if_arp.h>
Damjan Marion83243a02016-02-29 13:09:30 +010025
26#include <vlib/vlib.h>
27#include <vlib/unix/unix.h>
28#include <vnet/ip/ip.h>
29#include <vnet/ethernet/ethernet.h>
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +000030#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 Marion83243a02016-02-29 13:09:30 +010035
36#include <vnet/devices/af_packet/af_packet.h>
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +000037#include <vnet/devices/virtio/virtio_std.h>
Damjan Marion83243a02016-02-29 13:09:30 +010038
Chris Luke4b46c842016-05-23 21:30:26 -040039#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 Marion83243a02016-02-29 13:09:30 +010044
Damjan Marion00a9dca2016-08-17 17:05:46 +020045typedef enum
46{
Damjan Marion83243a02016-02-29 13:09:30 +010047#define _(f,s) AF_PACKET_TX_ERROR_##f,
48 foreach_af_packet_tx_func_error
49#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +020050 AF_PACKET_TX_N_ERROR,
Damjan Marion83243a02016-02-29 13:09:30 +010051} af_packet_tx_func_error_t;
52
Damjan Marion00a9dca2016-08-17 17:05:46 +020053static char *af_packet_tx_func_error_strings[] = {
Damjan Marion83243a02016-02-29 13:09:30 +010054#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +020055 foreach_af_packet_tx_func_error
Damjan Marion83243a02016-02-29 13:09:30 +010056#undef _
57};
58
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +000059typedef struct
60{
61 u32 buffer_index;
62 u32 hw_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000063 u16 queue_id;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +000064 tpacket3_hdr_t tph;
65 vnet_virtio_net_hdr_t vnet_hdr;
66 vlib_buffer_t buffer;
67} af_packet_tx_trace_t;
Damjan Marionc5170202017-10-11 14:15:47 +020068
Filip Tehlaraee73642019-03-13 05:50:44 -070069#ifndef CLIB_MARCH_VARIANT
Damjan Marionceab7882018-01-19 20:56:12 +010070u8 *
Damjan Marion00a9dca2016-08-17 17:05:46 +020071format_af_packet_device_name (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010072{
73 u32 i = va_arg (*args, u32);
Damjan Marion00a9dca2016-08-17 17:05:46 +020074 af_packet_main_t *apm = &af_packet_main;
75 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i);
Damjan Marion83243a02016-02-29 13:09:30 +010076
77 s = format (s, "host-%s", apif->host_if_name);
78 return s;
79}
Filip Tehlaraee73642019-03-13 05:50:44 -070080#endif /* CLIB_MARCH_VARIANT */
Damjan Marion83243a02016-02-29 13:09:30 +010081
Damjan Marion00a9dca2016-08-17 17:05:46 +020082static u8 *
83format_af_packet_device (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010084{
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010085 u32 dev_instance = va_arg (*args, u32);
86 u32 indent = format_get_indent (s);
87 int __clib_unused verbose = va_arg (*args, int);
88
89 af_packet_main_t *apm = &af_packet_main;
90 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, dev_instance);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000091 af_packet_queue_t *rx_queue = 0;
92 af_packet_queue_t *tx_queue = 0;
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010093
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000094 s = format (s, "Linux PACKET socket interface");
Mohsin Kazmi2b6479c2022-04-05 12:03:47 +000095 s = format (s, "\n%UFEATURES:", format_white_space, indent);
96 if (apif->is_qdisc_bypass_enabled)
97 s = format (s, "\n%Uqdisc-bpass-enabled", format_white_space, indent + 2);
Mohsin Kazmi788676b2022-04-05 12:43:13 +000098 if (apif->is_cksum_gso_enabled)
99 s = format (s, "\n%Ucksum-gso-enabled", format_white_space, indent + 2);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100100
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000101 vec_foreach (rx_queue, apif->rx_queues)
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100102 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000103 u32 rx_block_size = rx_queue->rx_req->tp_block_size;
104 u32 rx_frame_size = rx_queue->rx_req->tp_frame_size;
105 u32 rx_frame_nr = rx_queue->rx_req->tp_frame_nr;
106 u32 rx_block_nr = rx_queue->rx_req->tp_block_nr;
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100107
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000108 s = format (s, "\n%URX Queue %u:", format_white_space, indent,
109 rx_queue->queue_id);
110 s = format (s, "\n%Ublock size:%d nr:%d frame size:%d nr:%d",
111 format_white_space, indent + 2, rx_block_size, rx_block_nr,
112 rx_frame_size, rx_frame_nr);
113 s = format (s, " next block:%d", rx_queue->next_rx_block);
114 if (rx_queue->is_rx_pending)
115 {
116 s = format (
117 s, "\n%UPending Request: num-rx-pkts:%d next-frame-offset:%d",
118 format_white_space, indent + 2, rx_queue->num_rx_pkts,
119 rx_queue->rx_frame_offset);
120 }
121 }
122
123 vec_foreach (tx_queue, apif->tx_queues)
124 {
125 clib_spinlock_lock (&tx_queue->lockp);
126 u32 tx_block_sz = tx_queue->tx_req->tp_block_size;
127 u32 tx_frame_sz = tx_queue->tx_req->tp_frame_size;
128 u32 tx_frame_nr = tx_queue->tx_req->tp_frame_nr;
129 u32 tx_block_nr = tx_queue->tx_req->tp_block_nr;
130 int block = 0;
131 int n_send_req = 0, n_avail = 0, n_sending = 0, n_tot = 0, n_wrong = 0;
132 u8 *tx_block_start = tx_queue->tx_ring[block];
133 u32 tx_frame = tx_queue->next_tx_frame;
134 tpacket3_hdr_t *tph;
135
136 s = format (s, "\n%UTX Queue %u:", format_white_space, indent,
137 tx_queue->queue_id);
138 s = format (s, "\n%Ublock size:%d nr:%d frame size:%d nr:%d",
139 format_white_space, indent + 2, tx_block_sz, tx_block_nr,
140 tx_frame_sz, tx_frame_nr);
141 s = format (s, " next frame:%d", tx_queue->next_tx_frame);
142
143 do
144 {
145 tph = (tpacket3_hdr_t *) (tx_block_start + tx_frame * tx_frame_sz);
146 tx_frame = (tx_frame + 1) % tx_frame_nr;
147 if (tph->tp_status == 0)
148 n_avail++;
149 else if (tph->tp_status & TP_STATUS_SEND_REQUEST)
150 n_send_req++;
151 else if (tph->tp_status & TP_STATUS_SENDING)
152 n_sending++;
153 else
154 n_wrong++;
155 n_tot++;
156 }
157 while (tx_frame != tx_queue->next_tx_frame);
158 s =
159 format (s, "\n%Uavailable:%d request:%d sending:%d wrong:%d total:%d",
160 format_white_space, indent + 2, n_avail, n_send_req, n_sending,
161 n_wrong, n_tot);
162 clib_spinlock_unlock (&tx_queue->lockp);
163 }
Damjan Marion83243a02016-02-29 13:09:30 +0100164 return s;
165}
166
Damjan Marion00a9dca2016-08-17 17:05:46 +0200167static u8 *
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000168format_af_packet_tx_trace (u8 *s, va_list *va)
Damjan Marion83243a02016-02-29 13:09:30 +0100169{
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000170 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
171 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
172 af_packet_tx_trace_t *t = va_arg (*va, af_packet_tx_trace_t *);
173 u32 indent = format_get_indent (s);
174
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000175 s = format (s, "af_packet: hw_if_index %u tx-queue %u", t->hw_if_index,
176 t->queue_id);
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000177
178 s =
179 format (s,
180 "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
181 "\n%Usec 0x%x nsec 0x%x vlan %U"
182#ifdef TP_STATUS_VLAN_TPID_VALID
183 " vlan_tpid %u"
184#endif
185 ,
186 format_white_space, indent + 2, format_white_space, indent + 4,
187 t->tph.tp_status, t->tph.tp_len, t->tph.tp_snaplen, t->tph.tp_mac,
188 t->tph.tp_net, format_white_space, indent + 4, t->tph.tp_sec,
189 t->tph.tp_nsec, format_ethernet_vlan_tci, t->tph.hv1.tp_vlan_tci
190#ifdef TP_STATUS_VLAN_TPID_VALID
191 ,
192 t->tph.hv1.tp_vlan_tpid
193#endif
194 );
195
196 s = format (s,
197 "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u"
198 "\n%Ugso_size %u csum_start %u csum_offset %u",
199 format_white_space, indent + 2, format_white_space, indent + 4,
200 t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len,
201 format_white_space, indent + 4, t->vnet_hdr.gso_size,
202 t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset);
203
204 s = format (s, "\n%Ubuffer 0x%x:\n%U%U", format_white_space, indent + 2,
205 t->buffer_index, format_white_space, indent + 4,
206 format_vnet_buffer_no_chain, &t->buffer);
207 s = format (s, "\n%U%U", format_white_space, indent + 2,
208 format_ethernet_header_with_length, t->buffer.pre_data,
209 sizeof (t->buffer.pre_data));
Damjan Marion83243a02016-02-29 13:09:30 +0100210 return s;
211}
212
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000213static void
214af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node,
215 vlib_buffer_t *b0, u32 bi, tpacket3_hdr_t *tph,
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000216 vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index,
217 u16 queue_id)
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000218{
219 af_packet_tx_trace_t *t;
220 t = vlib_add_trace (vm, node, b0, sizeof (t[0]));
221 t->hw_if_index = hw_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000222 t->queue_id = queue_id;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000223 t->buffer_index = bi;
224
225 clib_memcpy_fast (&t->tph, tph, sizeof (*tph));
226 clib_memcpy_fast (&t->vnet_hdr, vnet_hdr, sizeof (*vnet_hdr));
227 clib_memcpy_fast (&t->buffer, b0, sizeof (*b0) - sizeof (b0->pre_data));
228 clib_memcpy_fast (t->buffer.pre_data, vlib_buffer_get_current (b0),
229 sizeof (t->buffer.pre_data));
230}
231
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000232static_always_inline void
233fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
234{
235 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
236 if (b0->flags & VNET_BUFFER_F_IS_IP4)
237 {
238 ip4_header_t *ip4;
239 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
240 vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
241 vnet_hdr->hdr_len =
242 vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
243 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
244 vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x22;
245 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000246 ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000247 if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
248 ip4->checksum = ip4_header_checksum (ip4);
249 }
250 else if (b0->flags & VNET_BUFFER_F_IS_IP6)
251 {
252 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
253 vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
254 vnet_hdr->hdr_len =
255 vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
256 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
257 vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x36;
258 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
259 }
260}
261
262static_always_inline void
263fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
264{
265 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
266 if (b0->flags & VNET_BUFFER_F_IS_IP4)
267 {
268 ip4_header_t *ip4;
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000269 ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000270 if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
271 ip4->checksum = ip4_header_checksum (ip4);
272 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
273 vnet_hdr->csum_start = 0x22;
274 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
275 {
276 tcp_header_t *tcp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000277 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000278 tcp->checksum = ip4_pseudo_header_cksum (ip4);
279 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
280 }
281 else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
282 {
283 udp_header_t *udp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000284 (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000285 udp->checksum = ip4_pseudo_header_cksum (ip4);
286 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
287 }
288 }
289 else if (b0->flags & VNET_BUFFER_F_IS_IP6)
290 {
291 ip6_header_t *ip6;
292 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
293 vnet_hdr->csum_start = 0x36;
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000294 ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000295 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
296 {
297 tcp_header_t *tcp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000298 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000299 tcp->checksum = ip6_pseudo_header_cksum (ip6);
300 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
301 }
302 else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
303 {
304 udp_header_t *udp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000305 (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000306 udp->checksum = ip6_pseudo_header_cksum (ip6);
307 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
308 }
309 }
310}
311
Filip Tehlaraee73642019-03-13 05:50:44 -0700312VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm,
313 vlib_node_runtime_t * node,
314 vlib_frame_t * frame)
Damjan Marion83243a02016-02-29 13:09:30 +0100315{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200316 af_packet_main_t *apm = &af_packet_main;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000317 vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame);
Damjan Mariona3d59862018-11-10 10:23:00 +0100318 u32 *buffers = vlib_frame_vector_args (frame);
Damjan Marion83243a02016-02-29 13:09:30 +0100319 u32 n_left = frame->n_vectors;
320 u32 n_sent = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200321 vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
322 af_packet_if_t *apif =
323 pool_elt_at_index (apm->interfaces, rd->dev_instance);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000324 u16 queue_id = tf->queue_id;
325 af_packet_queue_t *tx_queue = vec_elt_at_index (apif->tx_queues, queue_id);
326 u32 block = 0, frame_size = 0, frame_num = 0, tx_frame = 0;
327 u8 *block_start = 0;
328 tpacket3_hdr_t *tph = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100329 u32 frame_not_ready = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000330 u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100331
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000332 if (tf->shared_queue)
333 clib_spinlock_lock (&tx_queue->lockp);
334
335 frame_size = tx_queue->tx_req->tp_frame_size;
336 frame_num = tx_queue->tx_req->tp_frame_nr;
337 block_start = tx_queue->tx_ring[block];
338 tx_frame = tx_queue->next_tx_frame;
339
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100340 while (n_left)
Damjan Marion83243a02016-02-29 13:09:30 +0100341 {
342 u32 len;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000343 vnet_virtio_net_hdr_t *vnet_hdr = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100344 u32 offset = 0;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000345 vlib_buffer_t *b0 = 0, *b0_first = 0;
346 u32 bi, bi_first;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000347
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000348 bi = bi_first = buffers[0];
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000349 n_left--;
Damjan Marion83243a02016-02-29 13:09:30 +0100350 buffers++;
351
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000352 tph = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100353 if (PREDICT_FALSE (tph->tp_status &
354 (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
Damjan Marion83243a02016-02-29 13:09:30 +0100355 {
356 frame_not_ready++;
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200357 goto next;
Damjan Marion83243a02016-02-29 13:09:30 +0100358 }
359
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000360 b0_first = b0 = vlib_get_buffer (vm, bi);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000361
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000362 if (PREDICT_TRUE (is_cksum_gso_enabled))
Damjan Marion83243a02016-02-29 13:09:30 +0100363 {
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000364 vnet_hdr =
365 (vnet_virtio_net_hdr_t *) ((u8 *) tph + TPACKET_ALIGN (sizeof (
366 tpacket3_hdr_t)));
367
368 clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
369 offset = sizeof (vnet_virtio_net_hdr_t);
370
371 if (b0->flags & VNET_BUFFER_F_GSO)
372 fill_gso_offload (b0, vnet_hdr);
373 else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
374 fill_cksum_offload (b0, vnet_hdr);
375 }
376
377 len = b0->current_length;
378 clib_memcpy_fast ((u8 *) tph + TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) +
379 offset,
380 vlib_buffer_get_current (b0), len);
381 offset += len;
382
383 while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
384 {
385 b0 = vlib_get_buffer (vm, b0->next_buffer);
Damjan Marion83243a02016-02-29 13:09:30 +0100386 len = b0->current_length;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000387 clib_memcpy_fast ((u8 *) tph +
388 TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + offset,
389 vlib_buffer_get_current (b0), len);
Damjan Marion83243a02016-02-29 13:09:30 +0100390 offset += len;
391 }
Damjan Marion83243a02016-02-29 13:09:30 +0100392
393 tph->tp_len = tph->tp_snaplen = offset;
394 tph->tp_status = TP_STATUS_SEND_REQUEST;
395 n_sent++;
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100396
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000397 if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
398 {
399 if (PREDICT_TRUE (is_cksum_gso_enabled))
400 af_packet_tx_trace (vm, node, b0_first, bi_first, tph, vnet_hdr,
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000401 apif->hw_if_index, queue_id);
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000402 else
403 {
404 vnet_virtio_net_hdr_t vnet_hdr2 = {};
405 af_packet_tx_trace (vm, node, b0_first, bi_first, tph,
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000406 &vnet_hdr2, apif->hw_if_index, queue_id);
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000407 }
408 }
Florin Coras837503c2017-11-28 11:59:20 -0800409 tx_frame = (tx_frame + 1) % frame_num;
410
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200411 next:
Chris Luke4b46c842016-05-23 21:30:26 -0400412 /* check if we've exhausted the ring */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200413 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
414 break;
Damjan Marion83243a02016-02-29 13:09:30 +0100415 }
416
Damjan Marion00a9dca2016-08-17 17:05:46 +0200417 CLIB_MEMORY_BARRIER ();
Damjan Marion83243a02016-02-29 13:09:30 +0100418
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100419 if (PREDICT_TRUE (n_sent))
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200420 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000421 tx_queue->next_tx_frame = tx_frame;
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200422
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000423 if (PREDICT_FALSE (
424 sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1))
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200425 {
426 /* Uh-oh, drop & move on, but count whether it was fatal or not.
427 * Note that we have no reliable way to properly determine the
428 * disposition of the packets we just enqueued for delivery.
429 */
430 vlib_error_count (vm, node->node_index,
431 unix_error_is_fatal (errno) ?
432 AF_PACKET_TX_ERROR_TXRING_FATAL :
433 AF_PACKET_TX_ERROR_TXRING_EAGAIN,
434 n_sent);
435 }
436 }
Damjan Marion83243a02016-02-29 13:09:30 +0100437
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000438 if (tf->shared_queue)
439 clib_spinlock_unlock (&tx_queue->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100440
Damjan Marion00a9dca2016-08-17 17:05:46 +0200441 if (PREDICT_FALSE (frame_not_ready))
442 vlib_error_count (vm, node->node_index,
443 AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready);
Chris Luke4b46c842016-05-23 21:30:26 -0400444
Damjan Marion00a9dca2016-08-17 17:05:46 +0200445 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
Chris Luke4b46c842016-05-23 21:30:26 -0400446 vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200447 n_left);
Damjan Marion83243a02016-02-29 13:09:30 +0100448
Damjan Mariona3d59862018-11-10 10:23:00 +0100449 vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
Damjan Marion83243a02016-02-29 13:09:30 +0100450 return frame->n_vectors;
451}
452
453static void
Damjan Marion00a9dca2016-08-17 17:05:46 +0200454af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
455 u32 node_index)
Damjan Marion83243a02016-02-29 13:09:30 +0100456{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200457 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100458 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200459 af_packet_if_t *apif =
460 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Damjan Marion83243a02016-02-29 13:09:30 +0100461
462 /* Shut off redirection */
463 if (node_index == ~0)
464 {
465 apif->per_interface_next_index = node_index;
466 return;
467 }
468
469 apif->per_interface_next_index =
Damjan Marion00a9dca2016-08-17 17:05:46 +0200470 vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
471 node_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100472}
473
Damjan Marion00a9dca2016-08-17 17:05:46 +0200474static void
475af_packet_clear_hw_interface_counters (u32 instance)
Damjan Marion83243a02016-02-29 13:09:30 +0100476{
477 /* Nothing for now */
478}
479
480static clib_error_t *
Damjan Marion00a9dca2016-08-17 17:05:46 +0200481af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
482 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +0100483{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200484 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100485 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200486 af_packet_if_t *apif =
487 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700488 u32 hw_flags;
Ray Kinsellac855b732017-04-21 12:24:43 +0100489 int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
490 struct ifreq ifr;
491
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100492 if (0 > fd)
493 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200494 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
495 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100496 return 0;
497 }
498
Ray Kinsellac855b732017-04-21 12:24:43 +0100499 /* if interface is a bridge ignore */
500 if (apif->host_if_index < 0)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100501 goto error; /* no error */
Ray Kinsellac855b732017-04-21 12:24:43 +0100502
503 /* use host_if_index in case host name has changed */
504 ifr.ifr_ifindex = apif->host_if_index;
505 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
506 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200507 vlib_log_warn (apm->log_class,
508 "af_packet_%s ioctl could not retrieve eth name",
509 apif->host_if_name);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100510 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100511 }
Damjan Marion83243a02016-02-29 13:09:30 +0100512
513 apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
514
Ray Kinsellac855b732017-04-21 12:24:43 +0100515 if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
516 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200517 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
518 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100519 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100520 }
521
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700522 if (apif->is_admin_up)
Ray Kinsellac855b732017-04-21 12:24:43 +0100523 {
524 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
525 ifr.ifr_flags |= IFF_UP;
526 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700527 else
Ray Kinsellac855b732017-04-21 12:24:43 +0100528 {
529 hw_flags = 0;
530 ifr.ifr_flags &= ~IFF_UP;
531 }
532
533 if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
534 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200535 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
536 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100537 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100538 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700539
Damjan Marion00a9dca2016-08-17 17:05:46 +0200540 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700541
Ray Kinsella2038ad02017-05-18 11:56:28 +0100542error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100543 if (0 <= fd)
544 close (fd);
Ray Kinsellac855b732017-04-21 12:24:43 +0100545
546 return 0; /* no error */
Damjan Marion83243a02016-02-29 13:09:30 +0100547}
548
549static clib_error_t *
550af_packet_subif_add_del_function (vnet_main_t * vnm,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200551 u32 hw_if_index,
552 struct vnet_sw_interface_t *st, int is_add)
Damjan Marion83243a02016-02-29 13:09:30 +0100553{
554 /* Nothing for now */
555 return 0;
556}
557
Ray Kinsella2038ad02017-05-18 11:56:28 +0100558static clib_error_t *af_packet_set_mac_address_function
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700559 (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100560{
561 af_packet_main_t *apm = &af_packet_main;
562 af_packet_if_t *apif =
563 pool_elt_at_index (apm->interfaces, hi->dev_instance);
Klement Sekerac3225dd2021-10-26 16:19:45 +0200564 int rv, fd;
Ray Kinsella2038ad02017-05-18 11:56:28 +0100565 struct ifreq ifr;
566
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000567 if (apif->mode == AF_PACKET_IF_MODE_IP)
568 {
569 vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode",
570 apif->host_if_name);
571 return clib_error_return (0,
572 " MAC update failed, interface is in IP mode");
573 }
574
Klement Sekerac3225dd2021-10-26 16:19:45 +0200575 fd = socket (AF_UNIX, SOCK_DGRAM, 0);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100576 if (0 > fd)
577 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200578 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
579 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100580 return 0;
581 }
582
Ray Kinsella2038ad02017-05-18 11:56:28 +0100583 /* if interface is a bridge ignore */
584 if (apif->host_if_index < 0)
585 goto error; /* no error */
586
587 /* use host_if_index in case host name has changed */
588 ifr.ifr_ifindex = apif->host_if_index;
589 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
590 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200591 vlib_log_warn
592 (apm->log_class,
593 "af_packet_%s ioctl could not retrieve eth name, error: %d",
Ray Kinsella2038ad02017-05-18 11:56:28 +0100594 apif->host_if_name, rv);
595 goto error;
596 }
597
598 clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6);
599 ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
600
601 if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0)
602 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200603 vlib_log_warn (apm->log_class,
604 "af_packet_%s ioctl could not set mac, error: %d",
605 apif->host_if_name, rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100606 goto error;
607 }
608
609error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100610
611 if (0 <= fd)
612 close (fd);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100613
614 return 0; /* no error */
615}
616
Damjan Marion83243a02016-02-29 13:09:30 +0100617VNET_DEVICE_CLASS (af_packet_device_class) = {
618 .name = "af-packet",
Damjan Marion83243a02016-02-29 13:09:30 +0100619 .format_device_name = format_af_packet_device_name,
620 .format_device = format_af_packet_device,
621 .format_tx_trace = format_af_packet_tx_trace,
622 .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
623 .tx_function_error_strings = af_packet_tx_func_error_strings,
624 .rx_redirect_to_node = af_packet_set_interface_next_node,
625 .clear_counters = af_packet_clear_hw_interface_counters,
626 .admin_up_down_function = af_packet_interface_admin_up_down,
627 .subif_add_del_function = af_packet_subif_add_del_function,
Ray Kinsella2038ad02017-05-18 11:56:28 +0100628 .mac_addr_change_function = af_packet_set_mac_address_function,
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700629};
Damjan Marion00a9dca2016-08-17 17:05:46 +0200630
631/*
632 * fd.io coding-style-patch-verification: ON
633 *
634 * Local Variables:
635 * eval: (c-set-style "gnu")
636 * End:
637 */