1d14c9b8dcf7d576b36ea51fad489f2f652cb13d
[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   tpacket3_hdr_t tph;
65   vnet_virtio_net_hdr_t vnet_hdr;
66   vlib_buffer_t buffer;
67 } af_packet_tx_trace_t;
68
69 #ifndef CLIB_MARCH_VARIANT
70 u8 *
71 format_af_packet_device_name (u8 * s, va_list * args)
72 {
73   u32 i = va_arg (*args, u32);
74   af_packet_main_t *apm = &af_packet_main;
75   af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i);
76
77   s = format (s, "host-%s", apif->host_if_name);
78   return s;
79 }
80 #endif /* CLIB_MARCH_VARIANT */
81
82 static u8 *
83 format_af_packet_device (u8 * s, va_list * args)
84 {
85   u32 dev_instance = va_arg (*args, u32);
86   u32 indent = format_get_indent (s);
87   int __clib_unused verbose = va_arg (*args, int);
88
89   af_packet_main_t *apm = &af_packet_main;
90   af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, dev_instance);
91   af_packet_queue_t *rx_queue = 0;
92   af_packet_queue_t *tx_queue = 0;
93
94   s = format (s, "Linux PACKET socket interface");
95   s = format (s, "\n%UFEATURES:", format_white_space, indent);
96   if (apif->is_qdisc_bypass_enabled)
97     s = format (s, "\n%Uqdisc-bpass-enabled", format_white_space, indent + 2);
98   if (apif->is_cksum_gso_enabled)
99     s = format (s, "\n%Ucksum-gso-enabled", format_white_space, indent + 2);
100   if (apif->is_fanout_enabled)
101     s = format (s, "\n%Ufanout-enabled", format_white_space, indent + 2);
102
103   vec_foreach (rx_queue, apif->rx_queues)
104     {
105       u32 rx_block_size = rx_queue->rx_req->tp_block_size;
106       u32 rx_frame_size = rx_queue->rx_req->tp_frame_size;
107       u32 rx_frame_nr = rx_queue->rx_req->tp_frame_nr;
108       u32 rx_block_nr = rx_queue->rx_req->tp_block_nr;
109
110       s = format (s, "\n%URX Queue %u:", format_white_space, indent,
111                   rx_queue->queue_id);
112       s = format (s, "\n%Ublock size:%d nr:%d  frame size:%d nr:%d",
113                   format_white_space, indent + 2, rx_block_size, rx_block_nr,
114                   rx_frame_size, rx_frame_nr);
115       s = format (s, " next block:%d", rx_queue->next_rx_block);
116       if (rx_queue->is_rx_pending)
117         {
118           s = format (
119             s, "\n%UPending Request: num-rx-pkts:%d next-frame-offset:%d",
120             format_white_space, indent + 2, rx_queue->num_rx_pkts,
121             rx_queue->rx_frame_offset);
122         }
123     }
124
125   vec_foreach (tx_queue, apif->tx_queues)
126     {
127       clib_spinlock_lock (&tx_queue->lockp);
128       u32 tx_block_sz = tx_queue->tx_req->tp_block_size;
129       u32 tx_frame_sz = tx_queue->tx_req->tp_frame_size;
130       u32 tx_frame_nr = tx_queue->tx_req->tp_frame_nr;
131       u32 tx_block_nr = tx_queue->tx_req->tp_block_nr;
132       int block = 0;
133       int n_send_req = 0, n_avail = 0, n_sending = 0, n_tot = 0, n_wrong = 0;
134       u8 *tx_block_start = tx_queue->tx_ring[block];
135       u32 tx_frame = tx_queue->next_tx_frame;
136       tpacket3_hdr_t *tph;
137
138       s = format (s, "\n%UTX Queue %u:", format_white_space, indent,
139                   tx_queue->queue_id);
140       s = format (s, "\n%Ublock size:%d nr:%d  frame size:%d nr:%d",
141                   format_white_space, indent + 2, tx_block_sz, tx_block_nr,
142                   tx_frame_sz, tx_frame_nr);
143       s = format (s, " next frame:%d", tx_queue->next_tx_frame);
144
145       do
146         {
147           tph = (tpacket3_hdr_t *) (tx_block_start + tx_frame * tx_frame_sz);
148           tx_frame = (tx_frame + 1) % tx_frame_nr;
149           if (tph->tp_status == 0)
150             n_avail++;
151           else if (tph->tp_status & TP_STATUS_SEND_REQUEST)
152             n_send_req++;
153           else if (tph->tp_status & TP_STATUS_SENDING)
154             n_sending++;
155           else
156             n_wrong++;
157           n_tot++;
158         }
159       while (tx_frame != tx_queue->next_tx_frame);
160       s =
161         format (s, "\n%Uavailable:%d request:%d sending:%d wrong:%d total:%d",
162                 format_white_space, indent + 2, n_avail, n_send_req, n_sending,
163                 n_wrong, n_tot);
164       clib_spinlock_unlock (&tx_queue->lockp);
165     }
166   return s;
167 }
168
169 static u8 *
170 format_af_packet_tx_trace (u8 *s, va_list *va)
171 {
172   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
173   CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
174   af_packet_tx_trace_t *t = va_arg (*va, af_packet_tx_trace_t *);
175   u32 indent = format_get_indent (s);
176
177   s = format (s, "af_packet: hw_if_index %u tx-queue %u", t->hw_if_index,
178               t->queue_id);
179
180   s =
181     format (s,
182             "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
183             "\n%Usec 0x%x nsec 0x%x vlan %U"
184 #ifdef TP_STATUS_VLAN_TPID_VALID
185             " vlan_tpid %u"
186 #endif
187             ,
188             format_white_space, indent + 2, format_white_space, indent + 4,
189             t->tph.tp_status, t->tph.tp_len, t->tph.tp_snaplen, t->tph.tp_mac,
190             t->tph.tp_net, format_white_space, indent + 4, t->tph.tp_sec,
191             t->tph.tp_nsec, format_ethernet_vlan_tci, t->tph.hv1.tp_vlan_tci
192 #ifdef TP_STATUS_VLAN_TPID_VALID
193             ,
194             t->tph.hv1.tp_vlan_tpid
195 #endif
196     );
197
198   s = format (s,
199               "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u"
200               "\n%Ugso_size %u csum_start %u csum_offset %u",
201               format_white_space, indent + 2, format_white_space, indent + 4,
202               t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len,
203               format_white_space, indent + 4, t->vnet_hdr.gso_size,
204               t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset);
205
206   s = format (s, "\n%Ubuffer 0x%x:\n%U%U", format_white_space, indent + 2,
207               t->buffer_index, format_white_space, indent + 4,
208               format_vnet_buffer_no_chain, &t->buffer);
209   s = format (s, "\n%U%U", format_white_space, indent + 2,
210               format_ethernet_header_with_length, t->buffer.pre_data,
211               sizeof (t->buffer.pre_data));
212   return s;
213 }
214
215 static void
216 af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node,
217                     vlib_buffer_t *b0, u32 bi, tpacket3_hdr_t *tph,
218                     vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index,
219                     u16 queue_id)
220 {
221   af_packet_tx_trace_t *t;
222   t = vlib_add_trace (vm, node, b0, sizeof (t[0]));
223   t->hw_if_index = hw_if_index;
224   t->queue_id = queue_id;
225   t->buffer_index = bi;
226
227   clib_memcpy_fast (&t->tph, tph, sizeof (*tph));
228   clib_memcpy_fast (&t->vnet_hdr, vnet_hdr, sizeof (*vnet_hdr));
229   clib_memcpy_fast (&t->buffer, b0, sizeof (*b0) - sizeof (b0->pre_data));
230   clib_memcpy_fast (t->buffer.pre_data, vlib_buffer_get_current (b0),
231                     sizeof (t->buffer.pre_data));
232 }
233
234 static_always_inline void
235 fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
236 {
237   vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
238   i16 l4_hdr_offset =
239     vnet_buffer (b0)->l4_hdr_offset - vnet_buffer (b0)->l2_hdr_offset;
240   if (b0->flags & VNET_BUFFER_F_IS_IP4)
241     {
242       ip4_header_t *ip4;
243       vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
244       vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
245       vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
246       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
247       vnet_hdr->csum_start = l4_hdr_offset; // 0x22;
248       vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
249       ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
250       if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
251         ip4->checksum = ip4_header_checksum (ip4);
252       tcp_header_t *tcp =
253         (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
254       tcp->checksum = ip4_pseudo_header_cksum (ip4);
255     }
256   else if (b0->flags & VNET_BUFFER_F_IS_IP6)
257     {
258       ip6_header_t *ip6;
259       vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
260       vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size;
261       vnet_hdr->hdr_len = l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz;
262       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
263       vnet_hdr->csum_start = l4_hdr_offset; // 0x36;
264       vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
265       ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
266       tcp_header_t *tcp =
267         (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
268       tcp->checksum = ip6_pseudo_header_cksum (ip6);
269     }
270 }
271
272 static_always_inline void
273 fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr)
274 {
275   vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
276   i16 l4_hdr_offset =
277     vnet_buffer (b0)->l4_hdr_offset - vnet_buffer (b0)->l2_hdr_offset;
278   if (b0->flags & VNET_BUFFER_F_IS_IP4)
279     {
280       ip4_header_t *ip4;
281       ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
282       if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
283         ip4->checksum = ip4_header_checksum (ip4);
284       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
285       vnet_hdr->csum_start = l4_hdr_offset;
286       if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
287         {
288           tcp_header_t *tcp =
289             (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
290           tcp->checksum = ip4_pseudo_header_cksum (ip4);
291           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
292         }
293       else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
294         {
295           udp_header_t *udp =
296             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
297           udp->checksum = ip4_pseudo_header_cksum (ip4);
298           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
299         }
300     }
301   else if (b0->flags & VNET_BUFFER_F_IS_IP6)
302     {
303       ip6_header_t *ip6;
304       vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
305       vnet_hdr->csum_start = l4_hdr_offset;
306       ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset);
307       if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
308         {
309           tcp_header_t *tcp =
310             (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
311           tcp->checksum = ip6_pseudo_header_cksum (ip6);
312           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum);
313         }
314       else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
315         {
316           udp_header_t *udp =
317             (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
318           udp->checksum = ip6_pseudo_header_cksum (ip6);
319           vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum);
320         }
321     }
322 }
323
324 VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm,
325                                                   vlib_node_runtime_t * node,
326                                                   vlib_frame_t * frame)
327 {
328   af_packet_main_t *apm = &af_packet_main;
329   vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame);
330   u32 *buffers = vlib_frame_vector_args (frame);
331   u32 n_left = frame->n_vectors;
332   u32 n_sent = 0;
333   vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
334   af_packet_if_t *apif =
335     pool_elt_at_index (apm->interfaces, rd->dev_instance);
336   u16 queue_id = tf->queue_id;
337   af_packet_queue_t *tx_queue = vec_elt_at_index (apif->tx_queues, queue_id);
338   u32 block = 0, frame_size = 0, frame_num = 0, tx_frame = 0;
339   u8 *block_start = 0;
340   tpacket3_hdr_t *tph = 0;
341   u32 frame_not_ready = 0;
342   u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0;
343
344   if (tf->shared_queue)
345     clib_spinlock_lock (&tx_queue->lockp);
346
347   frame_size = tx_queue->tx_req->tp_frame_size;
348   frame_num = tx_queue->tx_req->tp_frame_nr;
349   block_start = tx_queue->tx_ring[block];
350   tx_frame = tx_queue->next_tx_frame;
351
352   while (n_left)
353     {
354       u32 len;
355       vnet_virtio_net_hdr_t *vnet_hdr = 0;
356       u32 offset = 0;
357       vlib_buffer_t *b0 = 0, *b0_first = 0;
358       u32 bi, bi_first;
359
360       bi = bi_first = buffers[0];
361       n_left--;
362       buffers++;
363
364       tph = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size);
365       if (PREDICT_FALSE (tph->tp_status &
366                          (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
367         {
368           frame_not_ready++;
369           goto next;
370         }
371
372       b0_first = b0 = vlib_get_buffer (vm, bi);
373
374       if (PREDICT_TRUE (is_cksum_gso_enabled))
375         {
376           vnet_hdr =
377             (vnet_virtio_net_hdr_t *) ((u8 *) tph + TPACKET_ALIGN (sizeof (
378                                                       tpacket3_hdr_t)));
379
380           clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t));
381           offset = sizeof (vnet_virtio_net_hdr_t);
382
383           if (b0->flags & VNET_BUFFER_F_GSO)
384             fill_gso_offload (b0, vnet_hdr);
385           else if (b0->flags & VNET_BUFFER_F_OFFLOAD)
386             fill_cksum_offload (b0, vnet_hdr);
387         }
388
389       len = b0->current_length;
390       clib_memcpy_fast ((u8 *) tph + TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) +
391                           offset,
392                         vlib_buffer_get_current (b0), len);
393       offset += len;
394
395       while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
396         {
397           b0 = vlib_get_buffer (vm, b0->next_buffer);
398           len = b0->current_length;
399           clib_memcpy_fast ((u8 *) tph +
400                               TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + offset,
401                             vlib_buffer_get_current (b0), len);
402           offset += len;
403         }
404
405       tph->tp_len = tph->tp_snaplen = offset;
406       tph->tp_status = TP_STATUS_SEND_REQUEST;
407       n_sent++;
408
409       if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED))
410         {
411           if (PREDICT_TRUE (is_cksum_gso_enabled))
412             af_packet_tx_trace (vm, node, b0_first, bi_first, tph, vnet_hdr,
413                                 apif->hw_if_index, queue_id);
414           else
415             {
416               vnet_virtio_net_hdr_t vnet_hdr2 = {};
417               af_packet_tx_trace (vm, node, b0_first, bi_first, tph,
418                                   &vnet_hdr2, apif->hw_if_index, queue_id);
419             }
420         }
421       tx_frame = (tx_frame + 1) % frame_num;
422
423     next:
424       /* check if we've exhausted the ring */
425       if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
426         break;
427     }
428
429   CLIB_MEMORY_BARRIER ();
430
431   if (PREDICT_TRUE (n_sent || tx_queue->is_tx_pending))
432     {
433       tx_queue->next_tx_frame = tx_frame;
434       tx_queue->is_tx_pending = 0;
435
436       if (PREDICT_FALSE (
437             sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1))
438         {
439           /* Uh-oh, drop & move on, but count whether it was fatal or not.
440            * Note that we have no reliable way to properly determine the
441            * disposition of the packets we just enqueued for delivery.
442            */
443           uword counter;
444
445           if (unix_error_is_fatal (errno))
446             {
447               counter = AF_PACKET_TX_ERROR_TXRING_FATAL;
448             }
449           else
450             {
451               counter = AF_PACKET_TX_ERROR_TXRING_EAGAIN;
452               /* non-fatal error: kick again next time
453                * note that you could still end up in a deadlock: if you do not
454                * try to send new packets (ie reschedule this tx node), eg.
455                * because your peer is waiting for the unsent packets to reply
456                * to you but your waiting for its reply etc., you are not going
457                * to kick again, and everybody is waiting for the other to talk
458                * 1st... */
459               tx_queue->is_tx_pending = 1;
460             }
461
462           vlib_error_count (vm, node->node_index, counter, 1);
463         }
464     }
465
466   if (tf->shared_queue)
467     clib_spinlock_unlock (&tx_queue->lockp);
468
469   if (PREDICT_FALSE (frame_not_ready))
470     vlib_error_count (vm, node->node_index,
471                       AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready);
472
473   if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
474     vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
475                       n_left);
476
477   vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
478   return frame->n_vectors;
479 }
480
481 static void
482 af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
483                                    u32 node_index)
484 {
485   af_packet_main_t *apm = &af_packet_main;
486   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
487   af_packet_if_t *apif =
488     pool_elt_at_index (apm->interfaces, hw->dev_instance);
489
490   /* Shut off redirection */
491   if (node_index == ~0)
492     {
493       apif->per_interface_next_index = node_index;
494       return;
495     }
496
497   apif->per_interface_next_index =
498     vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
499                         node_index);
500 }
501
502 static void
503 af_packet_clear_hw_interface_counters (u32 instance)
504 {
505   /* Nothing for now */
506 }
507
508 static clib_error_t *
509 af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
510                                    u32 flags)
511 {
512   af_packet_main_t *apm = &af_packet_main;
513   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
514   af_packet_if_t *apif =
515     pool_elt_at_index (apm->interfaces, hw->dev_instance);
516   u32 hw_flags;
517   int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
518   struct ifreq ifr;
519
520   if (0 > fd)
521     {
522       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
523                      apif->host_if_name);
524       return 0;
525     }
526
527   /* if interface is a bridge ignore */
528   if (apif->host_if_index < 0)
529     goto error;                 /* no error */
530
531   /* use host_if_index in case host name has changed */
532   ifr.ifr_ifindex = apif->host_if_index;
533   if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
534     {
535       vlib_log_warn (apm->log_class,
536                      "af_packet_%s ioctl could not retrieve eth name",
537                      apif->host_if_name);
538       goto error;
539     }
540
541   apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
542
543   if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
544     {
545       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
546                      apif->is_admin_up ? "up" : "down", rv);
547       goto error;
548     }
549
550   if (apif->is_admin_up)
551     {
552       hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
553       ifr.ifr_flags |= IFF_UP;
554     }
555   else
556     {
557       hw_flags = 0;
558       ifr.ifr_flags &= ~IFF_UP;
559     }
560
561   if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
562     {
563       vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
564                      apif->is_admin_up ? "up" : "down", rv);
565       goto error;
566     }
567
568   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
569
570 error:
571   if (0 <= fd)
572     close (fd);
573
574   return 0;                     /* no error */
575 }
576
577 static clib_error_t *
578 af_packet_subif_add_del_function (vnet_main_t * vnm,
579                                   u32 hw_if_index,
580                                   struct vnet_sw_interface_t *st, int is_add)
581 {
582   /* Nothing for now */
583   return 0;
584 }
585
586 static clib_error_t *af_packet_set_mac_address_function
587   (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
588 {
589   af_packet_main_t *apm = &af_packet_main;
590   af_packet_if_t *apif =
591     pool_elt_at_index (apm->interfaces, hi->dev_instance);
592   int rv, fd;
593   struct ifreq ifr;
594
595   if (apif->mode == AF_PACKET_IF_MODE_IP)
596     {
597       vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode",
598                      apif->host_if_name);
599       return clib_error_return (0,
600                                 " MAC update failed, interface is in IP mode");
601     }
602
603   fd = socket (AF_UNIX, SOCK_DGRAM, 0);
604   if (0 > fd)
605     {
606       vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
607                      apif->host_if_name);
608       return 0;
609     }
610
611   /* if interface is a bridge ignore */
612   if (apif->host_if_index < 0)
613     goto error;                 /* no error */
614
615   /* use host_if_index in case host name has changed */
616   ifr.ifr_ifindex = apif->host_if_index;
617   if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
618     {
619       vlib_log_warn
620         (apm->log_class,
621          "af_packet_%s ioctl could not retrieve eth name, error: %d",
622          apif->host_if_name, rv);
623       goto error;
624     }
625
626   clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6);
627   ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
628
629   if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0)
630     {
631       vlib_log_warn (apm->log_class,
632                      "af_packet_%s ioctl could not set mac, error: %d",
633                      apif->host_if_name, rv);
634       goto error;
635     }
636
637 error:
638
639   if (0 <= fd)
640     close (fd);
641
642   return 0;                     /* no error */
643 }
644
645 static clib_error_t *
646 af_packet_interface_rx_mode_change (vnet_main_t *vnm, u32 hw_if_index, u32 qid,
647                                     vnet_hw_if_rx_mode mode)
648 {
649   af_packet_main_t *apm = &af_packet_main;
650   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
651   af_packet_if_t *apif;
652
653   apif = vec_elt_at_index (apm->interfaces, hw->dev_instance);
654
655   if (mode == VNET_HW_IF_RX_MODE_ADAPTIVE)
656     {
657       vlib_log_err (apm->log_class,
658                     "af_packet_%s adaptive mode is not supported",
659                     apif->host_if_name);
660       return clib_error_return (
661         0, "af_packet_%s adaptive mode is not supported", apif->host_if_name);
662     }
663
664   af_packet_queue_t *rx_queue = vec_elt_at_index (apif->rx_queues, qid);
665
666   if (rx_queue->mode != mode)
667     {
668       rx_queue->mode = mode;
669
670       if (mode == VNET_HW_IF_RX_MODE_POLLING)
671         apm->polling_count++;
672       else if (mode == VNET_HW_IF_RX_MODE_INTERRUPT && apm->polling_count > 0)
673         apm->polling_count--;
674     }
675
676   return 0;
677 }
678
679 VNET_DEVICE_CLASS (af_packet_device_class) = {
680   .name = "af-packet",
681   .format_device_name = format_af_packet_device_name,
682   .format_device = format_af_packet_device,
683   .format_tx_trace = format_af_packet_tx_trace,
684   .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
685   .tx_function_error_strings = af_packet_tx_func_error_strings,
686   .rx_redirect_to_node = af_packet_set_interface_next_node,
687   .clear_counters = af_packet_clear_hw_interface_counters,
688   .admin_up_down_function = af_packet_interface_admin_up_down,
689   .subif_add_del_function = af_packet_subif_add_del_function,
690   .mac_addr_change_function = af_packet_set_mac_address_function,
691   .rx_mode_change_function = af_packet_interface_rx_mode_change,
692 };
693
694 /*
695  * fd.io coding-style-patch-verification: ON
696  *
697  * Local Variables:
698  * eval: (c-set-style "gnu")
699  * End:
700  */