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