af_packet: move to plugin
[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         }
347       else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
348         {
349           udp_header_t *udp =
350             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
351           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;
359       vnet_hdr->csum_start = l4_hdr_offset;
360       ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
361       if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
362         {
363           tcp_header_t *tcp =
364             (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
365           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 =
371             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
372           udp->checksum = ip6_pseudo_header_cksum (ip6);
373           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
374         }
375     }
376 }
377
378 VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm,
379                                                   vlib_node_runtime_t * node,
380                                                   vlib_frame_t * frame)
381 {
382   af_packet_main_t *apm = &af_packet_main;
383   vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame);
384   u32 *buffers = vlib_frame_vector_args (frame);
385   u32 n_left = frame->n_vectors;
386   u32 n_sent = 0;
387   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);
390   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;
394   tpacket3_hdr_t *tph3 = 0;
395   tpacket2_hdr_t *tph2 = 0;
396   u32 frame_not_ready = 0;
397   u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0;
398   u32 tpacket_align = 0;
399   u8 is_v2 = (apif->version == TPACKET_V2) ? 1 : 0;
400
401   if (tf->shared_queue)
402     clib_spinlock_lock (&tx_queue->lockp);
403
404   frame_size = tx_queue->tx_req->req.tp_frame_size;
405   frame_num = tx_queue->tx_req->req.tp_frame_nr;
406   block_start = tx_queue->tx_ring[block];
407   tx_frame = tx_queue->next_tx_frame;
408   if (is_v2)
409     {
410       tpacket_align = TPACKET_ALIGN (sizeof (tpacket2_hdr_t));
411       while (n_left)
412         {
413           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;
418
419           bi = bi_first = buffers[0];
420           n_left--;
421           buffers++;
422
423           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             }
430
431           b0_first = b0 = vlib_get_buffer (vm, bi);
432
433           if (PREDICT_TRUE (is_cksum_gso_enabled))
434             {
435               vnet_hdr =
436                 (vnet_virtio_net_hdr_t *) ((u8 *) tph2 + tpacket_align);
437
438               clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
439               offset = sizeof (vnet_virtio_net_hdr_t);
440
441               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
447           len = b0->current_length;
448           clib_memcpy_fast ((u8 *) tph2 + tpacket_align + offset,
449                             vlib_buffer_get_current (b0), len);
450           offset += len;
451
452           while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
453             {
454               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;
459             }
460
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;
484         }
485     }
486   else
487     {
488       tpacket_align = TPACKET_ALIGN (sizeof (tpacket3_hdr_t));
489
490       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     }
565   CLIB_MEMORY_BARRIER ();
566
567   if (PREDICT_TRUE (n_sent || tx_queue->is_tx_pending))
568     {
569       tx_queue->next_tx_frame = tx_frame;
570       tx_queue->is_tx_pending = 0;
571
572       if (PREDICT_FALSE (
573             sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1))
574         {
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            */
579           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);
599         }
600     }
601
602   if (tf->shared_queue)
603     clib_spinlock_unlock (&tx_queue->lockp);
604
605   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);
608
609   if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
610     vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
611                       n_left);
612
613   vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
614   return frame->n_vectors;
615 }
616
617 static void
618 af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
619                                    u32 node_index)
620 {
621   af_packet_main_t *apm = &af_packet_main;
622   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
623   af_packet_if_t *apif =
624     pool_elt_at_index (apm->interfaces, hw->dev_instance);
625
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 =
634     vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
635                         node_index);
636 }
637
638 static void
639 af_packet_clear_hw_interface_counters (u32 instance)
640 {
641   /* Nothing for now */
642 }
643
644 static clib_error_t *
645 af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
646                                    u32 flags)
647 {
648   af_packet_main_t *apm = &af_packet_main;
649   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
650   af_packet_if_t *apif =
651     pool_elt_at_index (apm->interfaces, hw->dev_instance);
652   u32 hw_flags;
653   int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
654   struct ifreq ifr;
655
656   if (0 > fd)
657     {
658       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
659                      apif->host_if_name);
660       return 0;
661     }
662
663   /* if interface is a bridge ignore */
664   if (apif->host_if_index < 0)
665     goto error;                 /* no error */
666
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     {
671       vlib_log_warn (apm->log_class,
672                      "af_packet_%s ioctl could not retrieve eth name",
673                      apif->host_if_name);
674       goto error;
675     }
676
677   apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
678
679   if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
680     {
681       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
682                      apif->is_admin_up ? "up" : "down", rv);
683       goto error;
684     }
685
686   if (apif->is_admin_up)
687     {
688       hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
689       ifr.ifr_flags |= IFF_UP;
690     }
691   else
692     {
693       hw_flags = 0;
694       ifr.ifr_flags &= ~IFF_UP;
695     }
696
697   if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
698     {
699       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
700                      apif->is_admin_up ? "up" : "down", rv);
701       goto error;
702     }
703
704   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
705
706 error:
707   if (0 <= fd)
708     close (fd);
709
710   return 0;                     /* no error */
711 }
712
713 static clib_error_t *
714 af_packet_subif_add_del_function (vnet_main_t * vnm,
715                                   u32 hw_if_index,
716                                   struct vnet_sw_interface_t *st, int is_add)
717 {
718   /* Nothing for now */
719   return 0;
720 }
721
722 static clib_error_t *af_packet_set_mac_address_function
723   (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
724 {
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);
728   int rv, fd;
729   struct ifreq ifr;
730
731   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
739   fd = socket (AF_UNIX, SOCK_DGRAM, 0);
740   if (0 > fd)
741     {
742       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
743                      apif->host_if_name);
744       return 0;
745     }
746
747   /* 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     {
755       vlib_log_warn
756         (apm->log_class,
757          "af_packet_%s ioctl could not retrieve eth name, error: %d",
758          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     {
767       vlib_log_warn (apm->log_class,
768                      "af_packet_%s ioctl could not set mac, error: %d",
769                      apif->host_if_name, rv);
770       goto error;
771     }
772
773 error:
774
775   if (0 <= fd)
776     close (fd);
777
778   return 0;                     /* no error */
779 }
780
781 static clib_error_t *
782 af_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
815 VNET_DEVICE_CLASS (af_packet_device_class) = {
816   .name = "af-packet",
817   .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,
826   .mac_addr_change_function = af_packet_set_mac_address_function,
827   .rx_mode_change_function = af_packet_interface_rx_mode_change,
828 };
829
830 /*
831  * fd.io coding-style-patch-verification: ON
832  *
833  * Local Variables:
834  * eval: (c-set-style "gnu")
835  * End:
836  */