blob: 17291f76b7126e2f43df4785817e55b9ab1d4579 [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 Kazmi8b90d892022-09-08 17:21:20 +000064 u8 is_v2;
65 union
66 {
67 tpacket2_hdr_t tph2;
68 tpacket3_hdr_t tph3;
69 };
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +000070 vnet_virtio_net_hdr_t vnet_hdr;
71 vlib_buffer_t buffer;
72} af_packet_tx_trace_t;
Damjan Marionc5170202017-10-11 14:15:47 +020073
Filip Tehlaraee73642019-03-13 05:50:44 -070074#ifndef CLIB_MARCH_VARIANT
Damjan Marionceab7882018-01-19 20:56:12 +010075u8 *
Damjan Marion00a9dca2016-08-17 17:05:46 +020076format_af_packet_device_name (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010077{
78 u32 i = va_arg (*args, u32);
Damjan Marion00a9dca2016-08-17 17:05:46 +020079 af_packet_main_t *apm = &af_packet_main;
80 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i);
Damjan Marion83243a02016-02-29 13:09:30 +010081
82 s = format (s, "host-%s", apif->host_if_name);
83 return s;
84}
Filip Tehlaraee73642019-03-13 05:50:44 -070085#endif /* CLIB_MARCH_VARIANT */
Damjan Marion83243a02016-02-29 13:09:30 +010086
Damjan Marion00a9dca2016-08-17 17:05:46 +020087static u8 *
88format_af_packet_device (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010089{
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010090 u32 dev_instance = va_arg (*args, u32);
91 u32 indent = format_get_indent (s);
92 int __clib_unused verbose = va_arg (*args, int);
93
94 af_packet_main_t *apm = &af_packet_main;
95 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, dev_instance);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000096 af_packet_queue_t *rx_queue = 0;
97 af_packet_queue_t *tx_queue = 0;
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010098
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000099 s = format (s, "Linux PACKET socket interface %s",
100 (apif->version == TPACKET_V2) ? "v2" : "v3");
Mohsin Kazmi2b6479c2022-04-05 12:03:47 +0000101 s = format (s, "\n%UFEATURES:", format_white_space, indent);
102 if (apif->is_qdisc_bypass_enabled)
103 s = format (s, "\n%Uqdisc-bpass-enabled", format_white_space, indent + 2);
Mohsin Kazmi788676b2022-04-05 12:43:13 +0000104 if (apif->is_cksum_gso_enabled)
105 s = format (s, "\n%Ucksum-gso-enabled", format_white_space, indent + 2);
Mohsin Kazmic73984a2022-04-05 13:08:53 +0000106 if (apif->is_fanout_enabled)
107 s = format (s, "\n%Ufanout-enabled", format_white_space, indent + 2);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100108
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000109 vec_foreach (rx_queue, apif->rx_queues)
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100110 {
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000111 u32 rx_block_size = rx_queue->rx_req->req.tp_block_size;
112 u32 rx_frame_size = rx_queue->rx_req->req.tp_frame_size;
113 u32 rx_frame_nr = rx_queue->rx_req->req.tp_frame_nr;
114 u32 rx_block_nr = rx_queue->rx_req->req.tp_block_nr;
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100115
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000116 s = format (s, "\n%URX Queue %u:", format_white_space, indent,
117 rx_queue->queue_id);
118 s = format (s, "\n%Ublock size:%d nr:%d frame size:%d nr:%d",
119 format_white_space, indent + 2, rx_block_size, rx_block_nr,
120 rx_frame_size, rx_frame_nr);
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000121 if (apif->version == TPACKET_V2)
122 s = format (s, " next frame:%d", rx_queue->next_rx_frame);
123 else
124 s = format (s, " next block:%d", rx_queue->next_rx_block);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000125 if (rx_queue->is_rx_pending)
126 {
127 s = format (
128 s, "\n%UPending Request: num-rx-pkts:%d next-frame-offset:%d",
129 format_white_space, indent + 2, rx_queue->num_rx_pkts,
130 rx_queue->rx_frame_offset);
131 }
132 }
133
134 vec_foreach (tx_queue, apif->tx_queues)
135 {
136 clib_spinlock_lock (&tx_queue->lockp);
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000137 u32 tx_block_sz = tx_queue->tx_req->req.tp_block_size;
138 u32 tx_frame_sz = tx_queue->tx_req->req.tp_frame_size;
139 u32 tx_frame_nr = tx_queue->tx_req->req.tp_frame_nr;
140 u32 tx_block_nr = tx_queue->tx_req->req.tp_block_nr;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000141 int block = 0;
142 int n_send_req = 0, n_avail = 0, n_sending = 0, n_tot = 0, n_wrong = 0;
143 u8 *tx_block_start = tx_queue->tx_ring[block];
144 u32 tx_frame = tx_queue->next_tx_frame;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000145 tpacket3_hdr_t *tph3;
146 tpacket2_hdr_t *tph2;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000147
148 s = format (s, "\n%UTX Queue %u:", format_white_space, indent,
149 tx_queue->queue_id);
150 s = format (s, "\n%Ublock size:%d nr:%d frame size:%d nr:%d",
151 format_white_space, indent + 2, tx_block_sz, tx_block_nr,
152 tx_frame_sz, tx_frame_nr);
153 s = format (s, " next frame:%d", tx_queue->next_tx_frame);
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000154 if (apif->version & TPACKET_V3)
155 do
156 {
157 tph3 =
158 (tpacket3_hdr_t *) (tx_block_start + tx_frame * tx_frame_sz);
159 tx_frame = (tx_frame + 1) % tx_frame_nr;
160 if (tph3->tp_status == 0)
161 n_avail++;
162 else if (tph3->tp_status & TP_STATUS_SEND_REQUEST)
163 n_send_req++;
164 else if (tph3->tp_status & TP_STATUS_SENDING)
165 n_sending++;
166 else
167 n_wrong++;
168 n_tot++;
169 }
170 while (tx_frame != tx_queue->next_tx_frame);
171 else
172 do
173 {
174 tph2 =
175 (tpacket2_hdr_t *) (tx_block_start + tx_frame * tx_frame_sz);
176 tx_frame = (tx_frame + 1) % tx_frame_nr;
177 if (tph2->tp_status == 0)
178 n_avail++;
179 else if (tph2->tp_status & TP_STATUS_SEND_REQUEST)
180 n_send_req++;
181 else if (tph2->tp_status & TP_STATUS_SENDING)
182 n_sending++;
183 else
184 n_wrong++;
185 n_tot++;
186 }
187 while (tx_frame != tx_queue->next_tx_frame);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000188 s =
189 format (s, "\n%Uavailable:%d request:%d sending:%d wrong:%d total:%d",
190 format_white_space, indent + 2, n_avail, n_send_req, n_sending,
191 n_wrong, n_tot);
192 clib_spinlock_unlock (&tx_queue->lockp);
193 }
Damjan Marion83243a02016-02-29 13:09:30 +0100194 return s;
195}
196
Damjan Marion00a9dca2016-08-17 17:05:46 +0200197static u8 *
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000198format_af_packet_tx_trace (u8 *s, va_list *va)
Damjan Marion83243a02016-02-29 13:09:30 +0100199{
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000200 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
201 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
202 af_packet_tx_trace_t *t = va_arg (*va, af_packet_tx_trace_t *);
203 u32 indent = format_get_indent (s);
204
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000205 s = format (s, "af_packet: hw_if_index %u tx-queue %u", t->hw_if_index,
206 t->queue_id);
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000207
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000208 if (t->is_v2)
209 {
210 s = format (
211 s,
212 "\n%Utpacket2_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
213 "\n%Usec 0x%x nsec 0x%x vlan %U"
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000214#ifdef TP_STATUS_VLAN_TPID_VALID
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000215 " vlan_tpid %u"
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000216#endif
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000217 ,
218 format_white_space, indent + 2, format_white_space, indent + 4,
219 t->tph2.tp_status, t->tph2.tp_len, t->tph2.tp_snaplen, t->tph2.tp_mac,
220 t->tph2.tp_net, format_white_space, indent + 4, t->tph2.tp_sec,
221 t->tph2.tp_nsec, format_ethernet_vlan_tci, t->tph2.tp_vlan_tci
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000222#ifdef TP_STATUS_VLAN_TPID_VALID
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000223 ,
224 t->tph2.tp_vlan_tpid
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000225#endif
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000226 );
227 }
228 else
229 {
230 s = format (
231 s,
232 "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
233 "\n%Usec 0x%x nsec 0x%x vlan %U"
234#ifdef TP_STATUS_VLAN_TPID_VALID
235 " vlan_tpid %u"
236#endif
237 ,
238 format_white_space, indent + 2, format_white_space, indent + 4,
239 t->tph3.tp_status, t->tph3.tp_len, t->tph3.tp_snaplen, t->tph3.tp_mac,
240 t->tph3.tp_net, format_white_space, indent + 4, t->tph3.tp_sec,
241 t->tph3.tp_nsec, format_ethernet_vlan_tci, t->tph3.hv1.tp_vlan_tci
242#ifdef TP_STATUS_VLAN_TPID_VALID
243 ,
244 t->tph3.hv1.tp_vlan_tpid
245#endif
246 );
247 }
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000248 s = format (s,
249 "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u"
250 "\n%Ugso_size %u csum_start %u csum_offset %u",
251 format_white_space, indent + 2, format_white_space, indent + 4,
252 t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len,
253 format_white_space, indent + 4, t->vnet_hdr.gso_size,
254 t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset);
255
256 s = format (s, "\n%Ubuffer 0x%x:\n%U%U", format_white_space, indent + 2,
257 t->buffer_index, format_white_space, indent + 4,
258 format_vnet_buffer_no_chain, &t->buffer);
259 s = format (s, "\n%U%U", format_white_space, indent + 2,
260 format_ethernet_header_with_length, t->buffer.pre_data,
261 sizeof (t->buffer.pre_data));
Damjan Marion83243a02016-02-29 13:09:30 +0100262 return s;
263}
264
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000265static void
266af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node,
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000267 vlib_buffer_t *b0, u32 bi, void *tph,
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000268 vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index,
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000269 u16 queue_id, u8 is_v2)
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000270{
271 af_packet_tx_trace_t *t;
272 t = vlib_add_trace (vm, node, b0, sizeof (t[0]));
273 t->hw_if_index = hw_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000274 t->queue_id = queue_id;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000275 t->buffer_index = bi;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000276 t->is_v2 = is_v2;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000277
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000278 if (is_v2)
279 clib_memcpy_fast (&t->tph2, (tpacket2_hdr_t *) tph,
280 sizeof (tpacket2_hdr_t));
281 else
282 clib_memcpy_fast (&t->tph3, (tpacket3_hdr_t *) tph,
283 sizeof (tpacket3_hdr_t));
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000284 clib_memcpy_fast (&t->vnet_hdr, vnet_hdr, sizeof (*vnet_hdr));
285 clib_memcpy_fast (&t->buffer, b0, sizeof (*b0) - sizeof (b0->pre_data));
286 clib_memcpy_fast (t->buffer.pre_data, vlib_buffer_get_current (b0),
287 sizeof (t->buffer.pre_data));
288}
289
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000290static_always_inline void
291fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
292{
293 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
Mohsin Kazmi4561d6d2022-10-25 19:23:51 +0000294 i16 l4_hdr_offset = vnet_buffer (b0)->l4_hdr_offset - b0->current_data;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000295 if (b0->flags & VNET_BUFFER_F_IS_IP4)
296 {
297 ip4_header_t *ip4;
298 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
299 vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000300 vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000301 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000302 vnet_hdr->csum_start = l4_hdr_offset; // 0x22;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000303 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000304 ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000305 if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
306 ip4->checksum = ip4_header_checksum (ip4);
Mohsin Kazmicacde122022-10-17 18:27:21 +0000307 tcp_header_t *tcp =
308 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
309 tcp->checksum = ip4_pseudo_header_cksum (ip4);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000310 }
311 else if (b0->flags & VNET_BUFFER_F_IS_IP6)
312 {
Mohsin Kazmicacde122022-10-17 18:27:21 +0000313 ip6_header_t *ip6;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000314 vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
315 vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000316 vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000317 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000318 vnet_hdr->csum_start = l4_hdr_offset; // 0x36;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000319 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
Mohsin Kazmicacde122022-10-17 18:27:21 +0000320 ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
321 tcp_header_t *tcp =
322 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
323 tcp->checksum = ip6_pseudo_header_cksum (ip6);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000324 }
325}
326
327static_always_inline void
328fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
329{
330 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
Mohsin Kazmi4561d6d2022-10-25 19:23:51 +0000331 i16 l4_hdr_offset = vnet_buffer (b0)->l4_hdr_offset - b0->current_data;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000332 if (b0->flags & VNET_BUFFER_F_IS_IP4)
333 {
334 ip4_header_t *ip4;
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000335 ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000336 if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
337 ip4->checksum = ip4_header_checksum (ip4);
338 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000339 vnet_hdr->csum_start = l4_hdr_offset;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000340 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
341 {
342 tcp_header_t *tcp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000343 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000344 tcp->checksum = ip4_pseudo_header_cksum (ip4);
345 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
346 }
347 else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
348 {
349 udp_header_t *udp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000350 (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000351 udp->checksum = ip4_pseudo_header_cksum (ip4);
352 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
353 }
354 }
355 else if (b0->flags & VNET_BUFFER_F_IS_IP6)
356 {
357 ip6_header_t *ip6;
358 vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Mohsin Kazmicacde122022-10-17 18:27:21 +0000359 vnet_hdr->csum_start = l4_hdr_offset;
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000360 ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000361 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
362 {
363 tcp_header_t *tcp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000364 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000365 tcp->checksum = ip6_pseudo_header_cksum (ip6);
366 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
367 }
368 else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
369 {
370 udp_header_t *udp =
Mohsin Kazmi2f130762022-04-08 17:49:32 +0000371 (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000372 udp->checksum = ip6_pseudo_header_cksum (ip6);
373 vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
374 }
375 }
376}
377
Filip Tehlaraee73642019-03-13 05:50:44 -0700378VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm,
379 vlib_node_runtime_t * node,
380 vlib_frame_t * frame)
Damjan Marion83243a02016-02-29 13:09:30 +0100381{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200382 af_packet_main_t *apm = &af_packet_main;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000383 vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame);
Damjan Mariona3d59862018-11-10 10:23:00 +0100384 u32 *buffers = vlib_frame_vector_args (frame);
Damjan Marion83243a02016-02-29 13:09:30 +0100385 u32 n_left = frame->n_vectors;
386 u32 n_sent = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200387 vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
388 af_packet_if_t *apif =
389 pool_elt_at_index (apm->interfaces, rd->dev_instance);
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000390 u16 queue_id = tf->queue_id;
391 af_packet_queue_t *tx_queue = vec_elt_at_index (apif->tx_queues, queue_id);
392 u32 block = 0, frame_size = 0, frame_num = 0, tx_frame = 0;
393 u8 *block_start = 0;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000394 tpacket3_hdr_t *tph3 = 0;
395 tpacket2_hdr_t *tph2 = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100396 u32 frame_not_ready = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000397 u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000398 u32 tpacket_align = 0;
399 u8 is_v2 = (apif->version == TPACKET_V2) ? 1 : 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100400
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000401 if (tf->shared_queue)
402 clib_spinlock_lock (&tx_queue->lockp);
403
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000404 frame_size = tx_queue->tx_req->req.tp_frame_size;
405 frame_num = tx_queue->tx_req->req.tp_frame_nr;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000406 block_start = tx_queue->tx_ring[block];
407 tx_frame = tx_queue->next_tx_frame;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000408 if (is_v2)
Damjan Marion83243a02016-02-29 13:09:30 +0100409 {
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000410 tpacket_align = TPACKET_ALIGN (sizeof (tpacket2_hdr_t));
411 while (n_left)
Damjan Marion83243a02016-02-29 13:09:30 +0100412 {
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000413 u32 len;
414 vnet_virtio_net_hdr_t *vnet_hdr = 0;
415 u32 offset = 0;
416 vlib_buffer_t *b0 = 0, *b0_first = 0;
417 u32 bi, bi_first;
Damjan Marion83243a02016-02-29 13:09:30 +0100418
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000419 bi = bi_first = buffers[0];
420 n_left--;
421 buffers++;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000422
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000423 tph2 = (tpacket2_hdr_t *) (block_start + tx_frame * frame_size);
424 if (PREDICT_FALSE (tph2->tp_status &
425 (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
426 {
427 frame_not_ready++;
428 goto nextv2;
429 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000430
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000431 b0_first = b0 = vlib_get_buffer (vm, bi);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000432
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000433 if (PREDICT_TRUE (is_cksum_gso_enabled))
434 {
435 vnet_hdr =
436 (vnet_virtio_net_hdr_t *) ((u8 *) tph2 + tpacket_align);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000437
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000438 clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
439 offset = sizeof (vnet_virtio_net_hdr_t);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000440
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000441 if (b0->flags & VNET_BUFFER_F_GSO)
442 fill_gso_offload (b0, vnet_hdr);
443 else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
444 fill_cksum_offload (b0, vnet_hdr);
445 }
446
Damjan Marion83243a02016-02-29 13:09:30 +0100447 len = b0->current_length;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000448 clib_memcpy_fast ((u8 *) tph2 + tpacket_align + offset,
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000449 vlib_buffer_get_current (b0), len);
Damjan Marion83243a02016-02-29 13:09:30 +0100450 offset += len;
Damjan Marion83243a02016-02-29 13:09:30 +0100451
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000452 while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000453 {
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000454 b0 = vlib_get_buffer (vm, b0->next_buffer);
455 len = b0->current_length;
456 clib_memcpy_fast ((u8 *) tph2 + tpacket_align + offset,
457 vlib_buffer_get_current (b0), len);
458 offset += len;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000459 }
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000460
461 tph2->tp_len = tph2->tp_snaplen = offset;
462 tph2->tp_status = TP_STATUS_SEND_REQUEST;
463 n_sent++;
464
465 if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
466 {
467 if (PREDICT_TRUE (is_cksum_gso_enabled))
468 af_packet_tx_trace (vm, node, b0_first, bi_first, tph2,
469 vnet_hdr, apif->hw_if_index, queue_id, 1);
470 else
471 {
472 vnet_virtio_net_hdr_t vnet_hdr2 = {};
473 af_packet_tx_trace (vm, node, b0_first, bi_first, tph2,
474 &vnet_hdr2, apif->hw_if_index, queue_id,
475 1);
476 }
477 }
478 tx_frame = (tx_frame + 1) % frame_num;
479
480 nextv2:
481 /* check if we've exhausted the ring */
482 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
483 break;
Mohsin Kazmi9deb2ec2022-03-22 23:17:46 +0000484 }
Damjan Marion83243a02016-02-29 13:09:30 +0100485 }
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000486 else
487 {
488 tpacket_align = TPACKET_ALIGN (sizeof (tpacket3_hdr_t));
Damjan Marion83243a02016-02-29 13:09:30 +0100489
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000490 while (n_left)
491 {
492 u32 len;
493 vnet_virtio_net_hdr_t *vnet_hdr = 0;
494 u32 offset = 0;
495 vlib_buffer_t *b0 = 0, *b0_first = 0;
496 u32 bi, bi_first;
497
498 bi = bi_first = buffers[0];
499 n_left--;
500 buffers++;
501
502 tph3 = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size);
503 if (PREDICT_FALSE (tph3->tp_status &
504 (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
505 {
506 frame_not_ready++;
507 goto nextv3;
508 }
509
510 b0_first = b0 = vlib_get_buffer (vm, bi);
511
512 if (PREDICT_TRUE (is_cksum_gso_enabled))
513 {
514 vnet_hdr =
515 (vnet_virtio_net_hdr_t *) ((u8 *) tph3 + tpacket_align);
516
517 clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
518 offset = sizeof (vnet_virtio_net_hdr_t);
519
520 if (b0->flags & VNET_BUFFER_F_GSO)
521 fill_gso_offload (b0, vnet_hdr);
522 else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
523 fill_cksum_offload (b0, vnet_hdr);
524 }
525
526 len = b0->current_length;
527 clib_memcpy_fast ((u8 *) tph3 + tpacket_align + offset,
528 vlib_buffer_get_current (b0), len);
529 offset += len;
530
531 while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
532 {
533 b0 = vlib_get_buffer (vm, b0->next_buffer);
534 len = b0->current_length;
535 clib_memcpy_fast ((u8 *) tph3 + tpacket_align + offset,
536 vlib_buffer_get_current (b0), len);
537 offset += len;
538 }
539
540 tph3->tp_len = tph3->tp_snaplen = offset;
541 tph3->tp_status = TP_STATUS_SEND_REQUEST;
542 n_sent++;
543
544 if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
545 {
546 if (PREDICT_TRUE (is_cksum_gso_enabled))
547 af_packet_tx_trace (vm, node, b0_first, bi_first, tph3,
548 vnet_hdr, apif->hw_if_index, queue_id, 0);
549 else
550 {
551 vnet_virtio_net_hdr_t vnet_hdr2 = {};
552 af_packet_tx_trace (vm, node, b0_first, bi_first, tph3,
553 &vnet_hdr2, apif->hw_if_index, queue_id,
554 0);
555 }
556 }
557 tx_frame = (tx_frame + 1) % frame_num;
558
559 nextv3:
560 /* check if we've exhausted the ring */
561 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
562 break;
563 }
564 }
Damjan Marion00a9dca2016-08-17 17:05:46 +0200565 CLIB_MEMORY_BARRIER ();
Damjan Marion83243a02016-02-29 13:09:30 +0100566
Mohammed Hawari8a419d52022-02-24 15:19:01 +0100567 if (PREDICT_TRUE (n_sent || tx_queue->is_tx_pending))
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200568 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000569 tx_queue->next_tx_frame = tx_frame;
Mohammed Hawari8a419d52022-02-24 15:19:01 +0100570 tx_queue->is_tx_pending = 0;
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200571
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000572 if (PREDICT_FALSE (
573 sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1))
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200574 {
575 /* Uh-oh, drop & move on, but count whether it was fatal or not.
576 * Note that we have no reliable way to properly determine the
577 * disposition of the packets we just enqueued for delivery.
578 */
Mohammed Hawari8a419d52022-02-24 15:19:01 +0100579 uword counter;
580
581 if (unix_error_is_fatal (errno))
582 {
583 counter = AF_PACKET_TX_ERROR_TXRING_FATAL;
584 }
585 else
586 {
587 counter = AF_PACKET_TX_ERROR_TXRING_EAGAIN;
588 /* non-fatal error: kick again next time
589 * note that you could still end up in a deadlock: if you do not
590 * try to send new packets (ie reschedule this tx node), eg.
591 * because your peer is waiting for the unsent packets to reply
592 * to you but your waiting for its reply etc., you are not going
593 * to kick again, and everybody is waiting for the other to talk
594 * 1st... */
595 tx_queue->is_tx_pending = 1;
596 }
597
598 vlib_error_count (vm, node->node_index, counter, 1);
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200599 }
600 }
Damjan Marion83243a02016-02-29 13:09:30 +0100601
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000602 if (tf->shared_queue)
603 clib_spinlock_unlock (&tx_queue->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100604
Damjan Marion00a9dca2016-08-17 17:05:46 +0200605 if (PREDICT_FALSE (frame_not_ready))
606 vlib_error_count (vm, node->node_index,
607 AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready);
Chris Luke4b46c842016-05-23 21:30:26 -0400608
Damjan Marion00a9dca2016-08-17 17:05:46 +0200609 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
Chris Luke4b46c842016-05-23 21:30:26 -0400610 vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200611 n_left);
Damjan Marion83243a02016-02-29 13:09:30 +0100612
Damjan Mariona3d59862018-11-10 10:23:00 +0100613 vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
Damjan Marion83243a02016-02-29 13:09:30 +0100614 return frame->n_vectors;
615}
616
617static void
Damjan Marion00a9dca2016-08-17 17:05:46 +0200618af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
619 u32 node_index)
Damjan Marion83243a02016-02-29 13:09:30 +0100620{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200621 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100622 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200623 af_packet_if_t *apif =
624 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Damjan Marion83243a02016-02-29 13:09:30 +0100625
626 /* Shut off redirection */
627 if (node_index == ~0)
628 {
629 apif->per_interface_next_index = node_index;
630 return;
631 }
632
633 apif->per_interface_next_index =
Damjan Marion00a9dca2016-08-17 17:05:46 +0200634 vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
635 node_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100636}
637
Damjan Marion00a9dca2016-08-17 17:05:46 +0200638static void
639af_packet_clear_hw_interface_counters (u32 instance)
Damjan Marion83243a02016-02-29 13:09:30 +0100640{
641 /* Nothing for now */
642}
643
644static clib_error_t *
Damjan Marion00a9dca2016-08-17 17:05:46 +0200645af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
646 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +0100647{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200648 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100649 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200650 af_packet_if_t *apif =
651 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700652 u32 hw_flags;
Ray Kinsellac855b732017-04-21 12:24:43 +0100653 int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
654 struct ifreq ifr;
655
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100656 if (0 > fd)
657 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200658 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
659 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100660 return 0;
661 }
662
Ray Kinsellac855b732017-04-21 12:24:43 +0100663 /* if interface is a bridge ignore */
664 if (apif->host_if_index < 0)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100665 goto error; /* no error */
Ray Kinsellac855b732017-04-21 12:24:43 +0100666
667 /* use host_if_index in case host name has changed */
668 ifr.ifr_ifindex = apif->host_if_index;
669 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
670 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200671 vlib_log_warn (apm->log_class,
672 "af_packet_%s ioctl could not retrieve eth name",
673 apif->host_if_name);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100674 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100675 }
Damjan Marion83243a02016-02-29 13:09:30 +0100676
677 apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
678
Ray Kinsellac855b732017-04-21 12:24:43 +0100679 if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
680 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200681 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
682 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100683 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100684 }
685
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700686 if (apif->is_admin_up)
Ray Kinsellac855b732017-04-21 12:24:43 +0100687 {
688 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
689 ifr.ifr_flags |= IFF_UP;
690 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700691 else
Ray Kinsellac855b732017-04-21 12:24:43 +0100692 {
693 hw_flags = 0;
694 ifr.ifr_flags &= ~IFF_UP;
695 }
696
697 if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
698 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200699 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
700 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100701 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100702 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700703
Damjan Marion00a9dca2016-08-17 17:05:46 +0200704 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700705
Ray Kinsella2038ad02017-05-18 11:56:28 +0100706error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100707 if (0 <= fd)
708 close (fd);
Ray Kinsellac855b732017-04-21 12:24:43 +0100709
710 return 0; /* no error */
Damjan Marion83243a02016-02-29 13:09:30 +0100711}
712
713static clib_error_t *
714af_packet_subif_add_del_function (vnet_main_t * vnm,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200715 u32 hw_if_index,
716 struct vnet_sw_interface_t *st, int is_add)
Damjan Marion83243a02016-02-29 13:09:30 +0100717{
718 /* Nothing for now */
719 return 0;
720}
721
Ray Kinsella2038ad02017-05-18 11:56:28 +0100722static clib_error_t *af_packet_set_mac_address_function
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700723 (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100724{
725 af_packet_main_t *apm = &af_packet_main;
726 af_packet_if_t *apif =
727 pool_elt_at_index (apm->interfaces, hi->dev_instance);
Klement Sekerac3225dd2021-10-26 16:19:45 +0200728 int rv, fd;
Ray Kinsella2038ad02017-05-18 11:56:28 +0100729 struct ifreq ifr;
730
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000731 if (apif->mode == AF_PACKET_IF_MODE_IP)
732 {
733 vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode",
734 apif->host_if_name);
735 return clib_error_return (0,
736 " MAC update failed, interface is in IP mode");
737 }
738
Klement Sekerac3225dd2021-10-26 16:19:45 +0200739 fd = socket (AF_UNIX, SOCK_DGRAM, 0);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100740 if (0 > fd)
741 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200742 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
743 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100744 return 0;
745 }
746
Ray Kinsella2038ad02017-05-18 11:56:28 +0100747 /* if interface is a bridge ignore */
748 if (apif->host_if_index < 0)
749 goto error; /* no error */
750
751 /* use host_if_index in case host name has changed */
752 ifr.ifr_ifindex = apif->host_if_index;
753 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
754 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200755 vlib_log_warn
756 (apm->log_class,
757 "af_packet_%s ioctl could not retrieve eth name, error: %d",
Ray Kinsella2038ad02017-05-18 11:56:28 +0100758 apif->host_if_name, rv);
759 goto error;
760 }
761
762 clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6);
763 ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
764
765 if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0)
766 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200767 vlib_log_warn (apm->log_class,
768 "af_packet_%s ioctl could not set mac, error: %d",
769 apif->host_if_name, rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100770 goto error;
771 }
772
773error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100774
775 if (0 <= fd)
776 close (fd);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100777
778 return 0; /* no error */
779}
780
Mohsin Kazmi89733a12022-08-30 13:29:06 +0000781static clib_error_t *
782af_packet_interface_rx_mode_change (vnet_main_t *vnm, u32 hw_if_index, u32 qid,
783 vnet_hw_if_rx_mode mode)
784{
785 af_packet_main_t *apm = &af_packet_main;
786 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
787 af_packet_if_t *apif;
788
789 apif = vec_elt_at_index (apm->interfaces, hw->dev_instance);
790
791 if (mode == VNET_HW_IF_RX_MODE_ADAPTIVE)
792 {
793 vlib_log_err (apm->log_class,
794 "af_packet_%s adaptive mode is not supported",
795 apif->host_if_name);
796 return clib_error_return (
797 0, "af_packet_%s adaptive mode is not supported", apif->host_if_name);
798 }
799
800 af_packet_queue_t *rx_queue = vec_elt_at_index (apif->rx_queues, qid);
801
802 if (rx_queue->mode != mode)
803 {
804 rx_queue->mode = mode;
805
806 if (mode == VNET_HW_IF_RX_MODE_POLLING)
807 apm->polling_count++;
808 else if (mode == VNET_HW_IF_RX_MODE_INTERRUPT && apm->polling_count > 0)
809 apm->polling_count--;
810 }
811
812 return 0;
813}
814
Damjan Marion83243a02016-02-29 13:09:30 +0100815VNET_DEVICE_CLASS (af_packet_device_class) = {
816 .name = "af-packet",
Damjan Marion83243a02016-02-29 13:09:30 +0100817 .format_device_name = format_af_packet_device_name,
818 .format_device = format_af_packet_device,
819 .format_tx_trace = format_af_packet_tx_trace,
820 .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
821 .tx_function_error_strings = af_packet_tx_func_error_strings,
822 .rx_redirect_to_node = af_packet_set_interface_next_node,
823 .clear_counters = af_packet_clear_hw_interface_counters,
824 .admin_up_down_function = af_packet_interface_admin_up_down,
825 .subif_add_del_function = af_packet_subif_add_del_function,
Ray Kinsella2038ad02017-05-18 11:56:28 +0100826 .mac_addr_change_function = af_packet_set_mac_address_function,
Mohsin Kazmi89733a12022-08-30 13:29:06 +0000827 .rx_mode_change_function = af_packet_interface_rx_mode_change,
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700828};
Damjan Marion00a9dca2016-08-17 17:05:46 +0200829
830/*
831 * fd.io coding-style-patch-verification: ON
832 *
833 * Local Variables:
834 * eval: (c-set-style "gnu")
835 * End:
836 */