af_packet: add the missing header-len for packets with checksum offload
[vpp.git] / src / plugins / af_packet / device.c
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>
21 #include <sys/socket.h>
22 #include <sys/ioctl.h>
23 #include <net/if.h>
24 #include <net/if_arp.h>
25
26 #include <vlib/vlib.h>
27 #include <vlib/unix/unix.h>
28 #include <vnet/ip/ip.h>
29 #include <vnet/ethernet/ethernet.h>
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>
35
36 #include <af_packet/af_packet.h>
37 #include <vnet/devices/virtio/virtio_std.h>
38
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")
44
45 typedef enum
46 {
47 #define _(f,s) AF_PACKET_TX_ERROR_##f,
48   foreach_af_packet_tx_func_error
49 #undef _
50     AF_PACKET_TX_N_ERROR,
51 } af_packet_tx_func_error_t;
52
53 static char *af_packet_tx_func_error_strings[] = {
54 #define _(n,s) s,
55   foreach_af_packet_tx_func_error
56 #undef _
57 };
58
59 typedef struct
60 {
61   u32 buffer_index;
62   u32 hw_if_index;
63   u16 queue_id;
64   u8 is_v2;
65   union
66   {
67     tpacket2_hdr_t tph2;
68     tpacket3_hdr_t tph3;
69   };
70   vnet_virtio_net_hdr_t vnet_hdr;
71   vlib_buffer_t buffer;
72 } af_packet_tx_trace_t;
73
74 #ifndef CLIB_MARCH_VARIANT
75 u8 *
76 format_af_packet_device_name (u8 * s, va_list * args)
77 {
78   u32 i = va_arg (*args, u32);
79   af_packet_main_t *apm = &af_packet_main;
80   af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i);
81
82   s = format (s, "host-%s", apif->host_if_name);
83   return s;
84 }
85 #endif /* CLIB_MARCH_VARIANT */
86
87 static u8 *
88 format_af_packet_device (u8 * s, va_list * args)
89 {
90   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);
96   af_packet_queue_t *rx_queue = 0;
97   af_packet_queue_t *tx_queue = 0;
98
99   s = format (s, "Linux PACKET socket interface %s",
100               (apif->version == TPACKET_V2) ? "v2" : "v3");
101   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);
104   if (apif->is_cksum_gso_enabled)
105     s = format (s, "\n%Ucksum-gso-enabled", format_white_space, indent + 2);
106   if (apif->is_fanout_enabled)
107     s = format (s, "\n%Ufanout-enabled", format_white_space, indent + 2);
108
109   vec_foreach (rx_queue, apif->rx_queues)
110     {
111       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;
115
116       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);
121       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);
125       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);
137       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;
141       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;
145       tpacket3_hdr_t *tph3;
146       tpacket2_hdr_t *tph2;
147
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);
154       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);
188       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     }
194   return s;
195 }
196
197 static u8 *
198 format_af_packet_tx_trace (u8 *s, va_list *va)
199 {
200   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
205   s = format (s, "af_packet: hw_if_index %u tx-queue %u", t->hw_if_index,
206               t->queue_id);
207
208   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"
214 #ifdef TP_STATUS_VLAN_TPID_VALID
215         " vlan_tpid %u"
216 #endif
217         ,
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
222 #ifdef TP_STATUS_VLAN_TPID_VALID
223         ,
224         t->tph2.tp_vlan_tpid
225 #endif
226       );
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     }
248   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));
262   return s;
263 }
264
265 static void
266 af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node,
267                     vlib_buffer_t *b0, u32 bi, void *tph,
268                     vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index,
269                     u16 queue_id, u8 is_v2)
270 {
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;
274   t->queue_id = queue_id;
275   t->buffer_index = bi;
276   t->is_v2 = is_v2;
277
278   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));
284   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
290 static_always_inline void
291 fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
292 {
293   vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
294   i16 l4_hdr_offset = vnet_buffer (b0)->l4_hdr_offset - b0->current_data;
295   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;
300       vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
301       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
302       vnet_hdr->csum_start = l4_hdr_offset; // 0x22;
303       vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
304       ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
305       if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
306         ip4->checksum = ip4_header_checksum (ip4);
307       tcp_header_t *tcp =
308         (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
309       tcp->checksum = ip4_pseudo_header_cksum (ip4);
310     }
311   else if (b0->flags & VNET_BUFFER_F_IS_IP6)
312     {
313       ip6_header_t *ip6;
314       vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
315       vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
316       vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
317       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
318       vnet_hdr->csum_start = l4_hdr_offset; // 0x36;
319       vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
320       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);
324     }
325 }
326
327 static_always_inline void
328 fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
329 {
330   vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
331   i16 l4_hdr_offset = vnet_buffer (b0)->l4_hdr_offset - b0->current_data;
332   if (b0->flags & VNET_BUFFER_F_IS_IP4)
333     {
334       ip4_header_t *ip4;
335       ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
336       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;
339       vnet_hdr->csum_start = l4_hdr_offset;
340       if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
341         {
342           tcp_header_t *tcp =
343             (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
344           tcp->checksum = ip4_pseudo_header_cksum (ip4);
345           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
346           vnet_hdr->hdr_len = l4_hdr_offset + tcp_header_bytes (tcp);
347         }
348       else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
349         {
350           udp_header_t *udp =
351             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
352           udp->checksum = ip4_pseudo_header_cksum (ip4);
353           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
354           vnet_hdr->hdr_len = l4_hdr_offset + sizeof (udp_header_t);
355         }
356     }
357   else if (b0->flags & VNET_BUFFER_F_IS_IP6)
358     {
359       ip6_header_t *ip6;
360       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
361       vnet_hdr->csum_start = l4_hdr_offset;
362       ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
363       if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
364         {
365           tcp_header_t *tcp =
366             (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
367           tcp->checksum = ip6_pseudo_header_cksum (ip6);
368           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
369           vnet_hdr->hdr_len = l4_hdr_offset + tcp_header_bytes (tcp);
370         }
371       else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
372         {
373           udp_header_t *udp =
374             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
375           udp->checksum = ip6_pseudo_header_cksum (ip6);
376           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
377           vnet_hdr->hdr_len = l4_hdr_offset + sizeof (udp_header_t);
378         }
379     }
380 }
381
382 VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm,
383                                                   vlib_node_runtime_t * node,
384                                                   vlib_frame_t * frame)
385 {
386   af_packet_main_t *apm = &af_packet_main;
387   vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame);
388   u32 *buffers = vlib_frame_vector_args (frame);
389   u32 n_left = frame->n_vectors;
390   u32 n_sent = 0;
391   vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
392   af_packet_if_t *apif =
393     pool_elt_at_index (apm->interfaces, rd->dev_instance);
394   u16 queue_id = tf->queue_id;
395   af_packet_queue_t *tx_queue = vec_elt_at_index (apif->tx_queues, queue_id);
396   u32 block = 0, frame_size = 0, frame_num = 0, tx_frame = 0;
397   u8 *block_start = 0;
398   tpacket3_hdr_t *tph3 = 0;
399   tpacket2_hdr_t *tph2 = 0;
400   u32 frame_not_ready = 0;
401   u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0;
402   u32 tpacket_align = 0;
403   u8 is_v2 = (apif->version == TPACKET_V2) ? 1 : 0;
404
405   if (tf->shared_queue)
406     clib_spinlock_lock (&tx_queue->lockp);
407
408   frame_size = tx_queue->tx_req->req.tp_frame_size;
409   frame_num = tx_queue->tx_req->req.tp_frame_nr;
410   block_start = tx_queue->tx_ring[block];
411   tx_frame = tx_queue->next_tx_frame;
412   if (is_v2)
413     {
414       tpacket_align = TPACKET_ALIGN (sizeof (tpacket2_hdr_t));
415       while (n_left)
416         {
417           u32 len;
418           vnet_virtio_net_hdr_t *vnet_hdr = 0;
419           u32 offset = 0;
420           vlib_buffer_t *b0 = 0, *b0_first = 0;
421           u32 bi, bi_first;
422
423           bi = bi_first = buffers[0];
424           n_left--;
425           buffers++;
426
427           tph2 = (tpacket2_hdr_t *) (block_start + tx_frame * frame_size);
428           if (PREDICT_FALSE (tph2->tp_status &
429                              (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
430             {
431               frame_not_ready++;
432               goto nextv2;
433             }
434
435           b0_first = b0 = vlib_get_buffer (vm, bi);
436
437           if (PREDICT_TRUE (is_cksum_gso_enabled))
438             {
439               vnet_hdr =
440                 (vnet_virtio_net_hdr_t *) ((u8 *) tph2 + tpacket_align);
441
442               clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
443               offset = sizeof (vnet_virtio_net_hdr_t);
444
445               if (b0->flags & VNET_BUFFER_F_GSO)
446                 fill_gso_offload (b0, vnet_hdr);
447               else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
448                 fill_cksum_offload (b0, vnet_hdr);
449             }
450
451           len = b0->current_length;
452           clib_memcpy_fast ((u8 *) tph2 + tpacket_align + offset,
453                             vlib_buffer_get_current (b0), len);
454           offset += len;
455
456           while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
457             {
458               b0 = vlib_get_buffer (vm, b0->next_buffer);
459               len = b0->current_length;
460               clib_memcpy_fast ((u8 *) tph2 + tpacket_align + offset,
461                                 vlib_buffer_get_current (b0), len);
462               offset += len;
463             }
464
465           tph2->tp_len = tph2->tp_snaplen = offset;
466           tph2->tp_status = TP_STATUS_SEND_REQUEST;
467           n_sent++;
468
469           if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
470             {
471               if (PREDICT_TRUE (is_cksum_gso_enabled))
472                 af_packet_tx_trace (vm, node, b0_first, bi_first, tph2,
473                                     vnet_hdr, apif->hw_if_index, queue_id, 1);
474               else
475                 {
476                   vnet_virtio_net_hdr_t vnet_hdr2 = {};
477                   af_packet_tx_trace (vm, node, b0_first, bi_first, tph2,
478                                       &vnet_hdr2, apif->hw_if_index, queue_id,
479                                       1);
480                 }
481             }
482           tx_frame = (tx_frame + 1) % frame_num;
483
484         nextv2:
485           /* check if we've exhausted the ring */
486           if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
487             break;
488         }
489     }
490   else
491     {
492       tpacket_align = TPACKET_ALIGN (sizeof (tpacket3_hdr_t));
493
494       while (n_left)
495         {
496           u32 len;
497           vnet_virtio_net_hdr_t *vnet_hdr = 0;
498           u32 offset = 0;
499           vlib_buffer_t *b0 = 0, *b0_first = 0;
500           u32 bi, bi_first;
501
502           bi = bi_first = buffers[0];
503           n_left--;
504           buffers++;
505
506           tph3 = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size);
507           if (PREDICT_FALSE (tph3->tp_status &
508                              (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
509             {
510               frame_not_ready++;
511               goto nextv3;
512             }
513
514           b0_first = b0 = vlib_get_buffer (vm, bi);
515
516           if (PREDICT_TRUE (is_cksum_gso_enabled))
517             {
518               vnet_hdr =
519                 (vnet_virtio_net_hdr_t *) ((u8 *) tph3 + tpacket_align);
520
521               clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
522               offset = sizeof (vnet_virtio_net_hdr_t);
523
524               if (b0->flags & VNET_BUFFER_F_GSO)
525                 fill_gso_offload (b0, vnet_hdr);
526               else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
527                 fill_cksum_offload (b0, vnet_hdr);
528             }
529
530           len = b0->current_length;
531           clib_memcpy_fast ((u8 *) tph3 + tpacket_align + offset,
532                             vlib_buffer_get_current (b0), len);
533           offset += len;
534
535           while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
536             {
537               b0 = vlib_get_buffer (vm, b0->next_buffer);
538               len = b0->current_length;
539               clib_memcpy_fast ((u8 *) tph3 + tpacket_align + offset,
540                                 vlib_buffer_get_current (b0), len);
541               offset += len;
542             }
543
544           tph3->tp_len = tph3->tp_snaplen = offset;
545           tph3->tp_status = TP_STATUS_SEND_REQUEST;
546           n_sent++;
547
548           if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
549             {
550               if (PREDICT_TRUE (is_cksum_gso_enabled))
551                 af_packet_tx_trace (vm, node, b0_first, bi_first, tph3,
552                                     vnet_hdr, apif->hw_if_index, queue_id, 0);
553               else
554                 {
555                   vnet_virtio_net_hdr_t vnet_hdr2 = {};
556                   af_packet_tx_trace (vm, node, b0_first, bi_first, tph3,
557                                       &vnet_hdr2, apif->hw_if_index, queue_id,
558                                       0);
559                 }
560             }
561           tx_frame = (tx_frame + 1) % frame_num;
562
563         nextv3:
564           /* check if we've exhausted the ring */
565           if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
566             break;
567         }
568     }
569   CLIB_MEMORY_BARRIER ();
570
571   if (PREDICT_TRUE (n_sent || tx_queue->is_tx_pending))
572     {
573       tx_queue->next_tx_frame = tx_frame;
574       tx_queue->is_tx_pending = 0;
575
576       if (PREDICT_FALSE (
577             sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1))
578         {
579           /* Uh-oh, drop & move on, but count whether it was fatal or not.
580            * Note that we have no reliable way to properly determine the
581            * disposition of the packets we just enqueued for delivery.
582            */
583           uword counter;
584
585           if (unix_error_is_fatal (errno))
586             {
587               counter = AF_PACKET_TX_ERROR_TXRING_FATAL;
588             }
589           else
590             {
591               counter = AF_PACKET_TX_ERROR_TXRING_EAGAIN;
592               /* non-fatal error: kick again next time
593                * note that you could still end up in a deadlock: if you do not
594                * try to send new packets (ie reschedule this tx node), eg.
595                * because your peer is waiting for the unsent packets to reply
596                * to you but your waiting for its reply etc., you are not going
597                * to kick again, and everybody is waiting for the other to talk
598                * 1st... */
599               tx_queue->is_tx_pending = 1;
600             }
601
602           vlib_error_count (vm, node->node_index, counter, 1);
603         }
604     }
605
606   if (tf->shared_queue)
607     clib_spinlock_unlock (&tx_queue->lockp);
608
609   if (PREDICT_FALSE (frame_not_ready))
610     vlib_error_count (vm, node->node_index,
611                       AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready);
612
613   if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
614     vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
615                       n_left);
616
617   vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
618   return frame->n_vectors;
619 }
620
621 static void
622 af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
623                                    u32 node_index)
624 {
625   af_packet_main_t *apm = &af_packet_main;
626   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
627   af_packet_if_t *apif =
628     pool_elt_at_index (apm->interfaces, hw->dev_instance);
629
630   /* Shut off redirection */
631   if (node_index == ~0)
632     {
633       apif->per_interface_next_index = node_index;
634       return;
635     }
636
637   apif->per_interface_next_index =
638     vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
639                         node_index);
640 }
641
642 static void
643 af_packet_clear_hw_interface_counters (u32 instance)
644 {
645   /* Nothing for now */
646 }
647
648 static clib_error_t *
649 af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
650                                    u32 flags)
651 {
652   af_packet_main_t *apm = &af_packet_main;
653   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
654   af_packet_if_t *apif =
655     pool_elt_at_index (apm->interfaces, hw->dev_instance);
656   u32 hw_flags;
657   int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
658   struct ifreq ifr;
659
660   if (0 > fd)
661     {
662       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
663                      apif->host_if_name);
664       return 0;
665     }
666
667   /* if interface is a bridge ignore */
668   if (apif->host_if_index < 0)
669     goto error;                 /* no error */
670
671   /* use host_if_index in case host name has changed */
672   ifr.ifr_ifindex = apif->host_if_index;
673   if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
674     {
675       vlib_log_warn (apm->log_class,
676                      "af_packet_%s ioctl could not retrieve eth name",
677                      apif->host_if_name);
678       goto error;
679     }
680
681   apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
682
683   if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
684     {
685       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
686                      apif->is_admin_up ? "up" : "down", rv);
687       goto error;
688     }
689
690   if (apif->is_admin_up)
691     {
692       hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
693       ifr.ifr_flags |= IFF_UP;
694     }
695   else
696     {
697       hw_flags = 0;
698       ifr.ifr_flags &= ~IFF_UP;
699     }
700
701   if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
702     {
703       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
704                      apif->is_admin_up ? "up" : "down", rv);
705       goto error;
706     }
707
708   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
709
710 error:
711   if (0 <= fd)
712     close (fd);
713
714   return 0;                     /* no error */
715 }
716
717 static clib_error_t *
718 af_packet_subif_add_del_function (vnet_main_t * vnm,
719                                   u32 hw_if_index,
720                                   struct vnet_sw_interface_t *st, int is_add)
721 {
722   /* Nothing for now */
723   return 0;
724 }
725
726 static clib_error_t *af_packet_set_mac_address_function
727   (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
728 {
729   af_packet_main_t *apm = &af_packet_main;
730   af_packet_if_t *apif =
731     pool_elt_at_index (apm->interfaces, hi->dev_instance);
732   int rv, fd;
733   struct ifreq ifr;
734
735   if (apif->mode == AF_PACKET_IF_MODE_IP)
736     {
737       vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode",
738                      apif->host_if_name);
739       return clib_error_return (0,
740                                 " MAC update failed, interface is in IP mode");
741     }
742
743   fd = socket (AF_UNIX, SOCK_DGRAM, 0);
744   if (0 > fd)
745     {
746       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
747                      apif->host_if_name);
748       return 0;
749     }
750
751   /* if interface is a bridge ignore */
752   if (apif->host_if_index < 0)
753     goto error;                 /* no error */
754
755   /* use host_if_index in case host name has changed */
756   ifr.ifr_ifindex = apif->host_if_index;
757   if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
758     {
759       vlib_log_warn
760         (apm->log_class,
761          "af_packet_%s ioctl could not retrieve eth name, error: %d",
762          apif->host_if_name, rv);
763       goto error;
764     }
765
766   clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6);
767   ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
768
769   if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0)
770     {
771       vlib_log_warn (apm->log_class,
772                      "af_packet_%s ioctl could not set mac, error: %d",
773                      apif->host_if_name, rv);
774       goto error;
775     }
776
777 error:
778
779   if (0 <= fd)
780     close (fd);
781
782   return 0;                     /* no error */
783 }
784
785 static clib_error_t *
786 af_packet_interface_rx_mode_change (vnet_main_t *vnm, u32 hw_if_index, u32 qid,
787                                     vnet_hw_if_rx_mode mode)
788 {
789   af_packet_main_t *apm = &af_packet_main;
790   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
791   af_packet_if_t *apif;
792
793   apif = vec_elt_at_index (apm->interfaces, hw->dev_instance);
794
795   if (mode == VNET_HW_IF_RX_MODE_ADAPTIVE)
796     {
797       vlib_log_err (apm->log_class,
798                     "af_packet_%s adaptive mode is not supported",
799                     apif->host_if_name);
800       return clib_error_return (
801         0, "af_packet_%s adaptive mode is not supported", apif->host_if_name);
802     }
803
804   af_packet_queue_t *rx_queue = vec_elt_at_index (apif->rx_queues, qid);
805
806   if (rx_queue->mode != mode)
807     {
808       rx_queue->mode = mode;
809
810       if (mode == VNET_HW_IF_RX_MODE_POLLING)
811         apm->polling_count++;
812       else if (mode == VNET_HW_IF_RX_MODE_INTERRUPT && apm->polling_count > 0)
813         apm->polling_count--;
814     }
815
816   return 0;
817 }
818
819 VNET_DEVICE_CLASS (af_packet_device_class) = {
820   .name = "af-packet",
821   .format_device_name = format_af_packet_device_name,
822   .format_device = format_af_packet_device,
823   .format_tx_trace = format_af_packet_tx_trace,
824   .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
825   .tx_function_error_strings = af_packet_tx_func_error_strings,
826   .rx_redirect_to_node = af_packet_set_interface_next_node,
827   .clear_counters = af_packet_clear_hw_interface_counters,
828   .admin_up_down_function = af_packet_interface_admin_up_down,
829   .subif_add_del_function = af_packet_subif_add_del_function,
830   .mac_addr_change_function = af_packet_set_mac_address_function,
831   .rx_mode_change_function = af_packet_interface_rx_mode_change,
832 };
833
834 /*
835  * fd.io coding-style-patch-verification: ON
836  *
837  * Local Variables:
838  * eval: (c-set-style "gnu")
839  * End:
840  */