Put back VMXNET3 driver init for DPDK 2.2.0 or older versions
[vpp.git] / vnet / vnet / devices / dpdk / init.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <vnet/vnet.h>
16 #include <vppinfra/vec.h>
17 #include <vppinfra/error.h>
18 #include <vppinfra/format.h>
19 #include <vppinfra/bitmap.h>
20
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/devices/dpdk/dpdk.h>
23 #include <vlib/unix/physmem.h>
24 #include <vlib/pci/pci.h>
25 #include <vlib/unix/pci.h>
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <sys/stat.h>
31 #include <sys/mount.h>
32 #include <string.h>
33 #include <fcntl.h>
34
35 #include "dpdk_priv.h"
36
37 dpdk_main_t dpdk_main;
38
39 /* force linker to link functions used by vlib and declared weak */
40 void *vlib_weakly_linked_functions[] = {
41   &rte_pktmbuf_init,
42   &rte_pktmbuf_pool_init,
43 };
44
45 #define LINK_STATE_ELOGS        0
46
47 #define DEFAULT_HUGE_DIR "/run/vpp/hugepages"
48 #define VPP_RUN_DIR "/run/vpp"
49
50 /* Port configuration, mildly modified Intel app values */
51
52 static struct rte_eth_conf port_conf_template = {
53   .rxmode = {
54     .split_hdr_size = 0,
55     .header_split   = 0, /**< Header Split disabled */
56     .hw_ip_checksum = 0, /**< IP checksum offload disabled */
57     .hw_vlan_filter = 0, /**< VLAN filtering disabled */
58     .hw_strip_crc   = 1, /**< CRC stripped by hardware */
59   },
60   .txmode = {
61     .mq_mode = ETH_MQ_TX_NONE,
62   },
63 };
64
65 clib_error_t *
66 dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd)
67 {
68   vlib_main_t * vm = vlib_get_main();
69   vlib_buffer_main_t * bm = vm->buffer_main;
70   int rv;
71   int j;
72
73   ASSERT(os_get_cpu_number() == 0);
74
75   if (xd->admin_up) {
76     vnet_hw_interface_set_flags (dm->vnet_main, xd->vlib_hw_if_index, 0);
77     rte_eth_dev_stop (xd->device_index);
78   }
79
80   rv = rte_eth_dev_configure (xd->device_index, xd->rx_q_used,
81                               xd->tx_q_used, &xd->port_conf);
82
83   if (rv < 0)
84     return clib_error_return (0, "rte_eth_dev_configure[%d]: err %d",
85                               xd->device_index, rv);
86
87   /* Set up one TX-queue per worker thread */
88   for (j = 0; j < xd->tx_q_used; j++)
89     {
90       rv = rte_eth_tx_queue_setup(xd->device_index, j, xd->nb_tx_desc,
91                                  xd->cpu_socket, &xd->tx_conf);
92
93       /* retry with any other CPU socket */
94       if (rv < 0)
95         rv = rte_eth_tx_queue_setup(xd->device_index, j, xd->nb_tx_desc,
96                                    SOCKET_ID_ANY, &xd->tx_conf);
97       if (rv < 0)
98         break;
99     }
100
101     if (rv < 0)
102       return clib_error_return (0, "rte_eth_tx_queue_setup[%d]: err %d",
103                                 xd->device_index, rv);
104
105   for (j = 0; j < xd->rx_q_used; j++)
106     {
107
108       rv = rte_eth_rx_queue_setup(xd->device_index, j, xd->nb_rx_desc,
109                                   xd->cpu_socket, 0,
110                                   bm->pktmbuf_pools[xd->cpu_socket_id_by_queue[j]]);
111
112       /* retry with any other CPU socket */
113       if (rv < 0)
114         rv = rte_eth_rx_queue_setup(xd->device_index, j, xd->nb_rx_desc,
115                                     SOCKET_ID_ANY, 0,
116                                     bm->pktmbuf_pools[xd->cpu_socket_id_by_queue[j]]);
117       if (rv < 0)
118         return clib_error_return (0, "rte_eth_rx_queue_setup[%d]: err %d",
119                                   xd->device_index, rv);
120     }
121
122   if (xd->admin_up) {
123     rte_eth_dev_start (xd->device_index);
124   }
125   return 0;
126 }
127
128 static u32 dpdk_flag_change (vnet_main_t * vnm, 
129                              vnet_hw_interface_t * hi,
130                              u32 flags)
131 {
132   dpdk_main_t * dm = &dpdk_main;
133   dpdk_device_t * xd = vec_elt_at_index (dm->devices, hi->dev_instance);
134   u32 old = 0;
135
136   if (ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags))
137     {
138       old = xd->promisc;
139       xd->promisc = flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
140       
141       if (xd->admin_up)
142         {
143           if (xd->promisc)
144             rte_eth_promiscuous_enable(xd->device_index);
145           else
146             rte_eth_promiscuous_disable(xd->device_index);
147         }
148     }
149   else if (ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags))
150     {
151       /*
152        * DAW-FIXME: The Cisco VIC firmware does not provide an api for a
153        *            driver to dynamically change the mtu.  If/when the 
154        *            VIC firmware gets fixed, then this should be removed.
155        */
156       if (xd->pmd == VNET_DPDK_PMD_VICE ||
157           xd->pmd == VNET_DPDK_PMD_ENIC)
158         {
159           struct rte_eth_dev_info dev_info;
160
161           /*
162            * Restore mtu to what has been set by CIMC in the firmware cfg.
163            */
164           rte_eth_dev_info_get(xd->device_index, &dev_info);
165           hi->max_packet_bytes = dev_info.max_rx_pktlen;
166
167           vlib_cli_output (vlib_get_main(), 
168                            "Cisco VIC mtu can only be changed "
169                            "using CIMC then rebooting the server!");
170         }
171       else
172         {
173           int rv;
174       
175           xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
176
177           if (xd->admin_up)
178             rte_eth_dev_stop (xd->device_index);
179
180     rv = rte_eth_dev_configure
181       (xd->device_index,
182        xd->rx_q_used,
183        xd->tx_q_used,
184        &xd->port_conf);
185
186           if (rv < 0)
187             vlib_cli_output (vlib_get_main(), 
188                              "rte_eth_dev_configure[%d]: err %d",
189                              xd->device_index, rv);
190
191           rte_eth_dev_set_mtu(xd->device_index, hi->max_packet_bytes);
192
193           if (xd->admin_up)
194             rte_eth_dev_start (xd->device_index);
195         }
196     }
197   return old;
198 }
199
200 #ifdef NETMAP
201 extern int rte_netmap_probe(void);
202 #endif
203
204 void
205 dpdk_device_lock_init(dpdk_device_t * xd)
206 {
207   int q;
208   vec_validate(xd->lockp, xd->tx_q_used - 1);
209   for (q = 0; q < xd->tx_q_used; q++)
210     {
211       xd->lockp[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
212                                              CLIB_CACHE_LINE_BYTES);
213       memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
214   }
215   xd->need_txlock = 1;
216 }
217
218 void
219 dpdk_device_lock_free(dpdk_device_t * xd)
220 {
221   int q;
222
223   for (q = 0; q < vec_len(xd->lockp); q++)
224     clib_mem_free((void *) xd->lockp[q]);
225   vec_free(xd->lockp);
226   xd->lockp = 0;
227   xd->need_txlock = 0;
228 }
229
230 static clib_error_t *
231 dpdk_lib_init (dpdk_main_t * dm)
232 {
233   u32 nports;
234   u32 nb_desc = 0;
235   int i;
236   clib_error_t * error;
237   vlib_main_t * vm = vlib_get_main();
238   vlib_thread_main_t * tm = vlib_get_thread_main();
239   vnet_sw_interface_t * sw;
240   vnet_hw_interface_t * hi;
241   dpdk_device_t * xd;
242   vlib_thread_registration_t * tr;
243   uword * p;
244
245   u32 next_cpu = 0;
246   u8 af_packet_port_id = 0;
247
248   dm->input_cpu_first_index = 0;
249   dm->input_cpu_count = 1;
250
251   /* find out which cpus will be used for input */
252   p = hash_get_mem (tm->thread_registrations_by_name, "io");
253   tr = p ? (vlib_thread_registration_t *) p[0] : 0;
254
255   if (!tr || tr->count == 0)
256     {
257       /* no io threads, workers doing input */
258       p = hash_get_mem (tm->thread_registrations_by_name, "workers");
259       tr = p ? (vlib_thread_registration_t *) p[0] : 0;
260     }
261   else
262     {
263       dm->have_io_threads = 1;
264     }
265
266   if (tr && tr->count > 0)
267     {
268       dm->input_cpu_first_index = tr->first_index;
269       dm->input_cpu_count = tr->count;
270     }
271
272   vec_validate_aligned (dm->devices_by_cpu, tm->n_vlib_mains - 1,
273                         CLIB_CACHE_LINE_BYTES);
274
275   vec_validate_aligned (dm->workers, tm->n_vlib_mains - 1,
276                         CLIB_CACHE_LINE_BYTES);
277
278 #ifdef NETMAP
279   if(rte_netmap_probe() < 0)
280     return clib_error_return (0, "rte netmap probe failed");
281 #endif
282
283   nports = rte_eth_dev_count();
284   if (nports < 1) 
285     {
286       clib_warning ("DPDK drivers found no ports...");
287     }
288
289   if (CLIB_DEBUG > 0)
290     clib_warning ("DPDK drivers found %d ports...", nports);
291
292   /* 
293    * All buffers are all allocated from the same rte_mempool.
294    * Thus they all have the same number of data bytes.
295    */
296   dm->vlib_buffer_free_list_index = 
297       vlib_buffer_get_or_create_free_list (
298           vm, VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES, "dpdk rx");
299
300   for (i = 0; i < nports; i++)
301     {
302       u8 addr[6];
303       int j;
304       struct rte_eth_dev_info dev_info;
305       clib_error_t * rv;
306       struct rte_eth_link l;
307
308       /* Create vnet interface */
309       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
310       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
311       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
312       xd->cpu_socket = (i8) rte_eth_dev_socket_id(i);
313       rte_eth_dev_info_get(i, &dev_info);
314
315       clib_memcpy(&xd->tx_conf, &dev_info.default_txconf,
316              sizeof(struct rte_eth_txconf));
317       if (dm->no_multi_seg)
318         {
319           xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
320           port_conf_template.rxmode.jumbo_frame = 0;
321         }
322       else
323         {
324           xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOMULTSEGS;
325           port_conf_template.rxmode.jumbo_frame = 1;
326         }
327
328       clib_memcpy(&xd->port_conf, &port_conf_template, sizeof(struct rte_eth_conf));
329
330       xd->tx_q_used = clib_min(dev_info.max_tx_queues, tm->n_vlib_mains);
331
332       if (dm->max_tx_queues)
333         xd->tx_q_used = clib_min(xd->tx_q_used, dm->max_tx_queues);
334
335       if (dm->use_rss > 1 && dev_info.max_rx_queues >= dm->use_rss)
336         {
337           xd->rx_q_used = dm->use_rss;
338           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
339           xd->port_conf.rx_adv_conf.rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
340         }
341       else
342         xd->rx_q_used = 1;
343
344       xd->dev_type = VNET_DPDK_DEV_ETH;
345
346       /* workaround for drivers not setting driver_name */
347       if (!dev_info.driver_name)
348         dev_info.driver_name = dev_info.pci_dev->driver->name;
349       ASSERT(dev_info.driver_name);
350
351       if (!xd->pmd) {
352
353
354 #define _(s,f) else if (!strcmp(dev_info.driver_name, s)) \
355                  xd->pmd = VNET_DPDK_PMD_##f;
356         if (0)
357           ;
358         foreach_dpdk_pmd
359 #undef _
360         else
361           xd->pmd = VNET_DPDK_PMD_UNKNOWN;
362
363
364         switch (xd->pmd) {
365           /* 1G adapters */
366           case VNET_DPDK_PMD_E1000EM:
367           case VNET_DPDK_PMD_IGB:
368           case VNET_DPDK_PMD_IGBVF:
369             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
370             break;
371
372           /* 10G adapters */
373           case VNET_DPDK_PMD_IXGBE:
374           case VNET_DPDK_PMD_IXGBEVF:
375           case VNET_DPDK_PMD_THUNDERX:
376             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
377             xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
378             xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
379             break;
380
381           /* Cisco VIC */
382           case VNET_DPDK_PMD_VICE:
383           case VNET_DPDK_PMD_ENIC:
384             rte_eth_link_get_nowait(i, &l);
385             if (l.link_speed == 40000)
386               {
387                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
388                 xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
389                 xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
390               }
391             else
392               {
393                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
394                 xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
395                 xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
396               }
397             break;
398
399           /* Intel Fortville */
400           case VNET_DPDK_PMD_I40E:
401           case VNET_DPDK_PMD_I40EVF:
402             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
403             xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
404             xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
405
406             switch (dev_info.pci_dev->id.device_id) {
407               case I40E_DEV_ID_10G_BASE_T:
408               case I40E_DEV_ID_SFP_XL710:
409                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
410                 break;
411               case I40E_DEV_ID_QSFP_A:
412               case I40E_DEV_ID_QSFP_B:
413               case I40E_DEV_ID_QSFP_C:
414                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
415                 break;
416               case I40E_DEV_ID_VF:
417                 rte_eth_link_get_nowait(i, &l);
418                 xd->port_type = l.link_speed == 10000 ?
419                   VNET_DPDK_PORT_TYPE_ETH_10G : VNET_DPDK_PORT_TYPE_ETH_40G;
420                 break;
421               default:
422                 xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
423             }
424             break;
425
426           case VNET_DPDK_PMD_CXGBE:
427             switch (dev_info.pci_dev->id.device_id) {
428               case 0x5410: /* T580-LP-cr */
429                 xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
430                 xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
431                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
432                 break;
433               default:
434                 xd->nb_rx_desc = DPDK_NB_RX_DESC_10GE;
435                 xd->nb_tx_desc = DPDK_NB_TX_DESC_10GE;
436                 xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
437             }
438             break;
439
440           /* Intel Red Rock Canyon */
441           case VNET_DPDK_PMD_FM10K:
442             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
443             xd->nb_rx_desc = DPDK_NB_RX_DESC_40GE;
444             xd->nb_tx_desc = DPDK_NB_TX_DESC_40GE;
445             break;
446
447           /* virtio */
448           case VNET_DPDK_PMD_VIRTIO:
449             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
450             xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
451             xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
452             break;
453
454           /* vmxnet3 */
455           case VNET_DPDK_PMD_VMXNET3:
456             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
457             xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
458             break;
459
460           case VNET_DPDK_PMD_AF_PACKET:
461             xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
462             xd->af_packet_port_id = af_packet_port_id++;
463             break;
464
465           case VNET_DPDK_PMD_BOND:
466             xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
467             break;
468
469           default:
470             xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
471         }
472
473   #ifdef NETMAP
474         if(strncmp(dev_info.driver_name, "vale", 4) == 0
475              || strncmp(dev_info.driver_name, "netmap", 6) == 0)
476           {
477             xd->pmd = VNET_DPDK_PMD_NETMAP;
478             xd->port_type = VNET_DPDK_PORT_TYPE_NETMAP;
479           }
480   #endif
481
482       }
483
484       /*
485        * Ensure default mtu is not > the mtu read from the hardware.
486        * Otherwise rte_eth_dev_configure() will fail and the port will
487        * not be available.
488        */
489       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
490         {
491           /*
492            * This device does not support the platforms's max frame
493            * size. Use it's advertised mru instead.
494            */
495           xd->port_conf.rxmode.max_rx_pkt_len = dev_info.max_rx_pktlen;
496         }
497       else
498         {
499           xd->port_conf.rxmode.max_rx_pkt_len = ETHERNET_MAX_PACKET_BYTES;
500
501           /*
502            * Some platforms do not account for Ethernet FCS (4 bytes) in
503            * MTU calculations. To interop with them increase mru but only
504            * if the device's settings can support it.
505            */
506           if ((dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)) &&
507               xd->port_conf.rxmode.hw_strip_crc)
508             {
509               /*
510                * Allow additional 4 bytes (for Ethernet FCS). These bytes are
511                * stripped by h/w and so will not consume any buffer memory.
512                */
513               xd->port_conf.rxmode.max_rx_pkt_len += 4;
514             }
515         }
516
517 #if RTE_VERSION < RTE_VERSION_NUM(16, 4, 0, 0) 
518       /*
519        * Older VMXNET3 driver doesn't support jumbo / multi-buffer pkts
520        */
521       if (xd->pmd == VNET_DPDK_PMD_VMXNET3)
522         {
523           xd->port_conf.rxmode.max_rx_pkt_len = 1518;
524           xd->port_conf.rxmode.jumbo_frame = 0;
525         }
526 #endif
527
528       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
529         {
530           f64 now = vlib_time_now(vm);
531           u32 rnd;
532           rnd = (u32) (now * 1e6);
533           rnd = random_u32 (&rnd);
534           clib_memcpy (addr+2, &rnd, sizeof(rnd));
535           addr[0] = 2;
536           addr[1] = 0xfe;
537         }
538       else
539         rte_eth_macaddr_get(i,(struct ether_addr *)addr);
540
541       if (xd->tx_q_used < tm->n_vlib_mains)
542         dpdk_device_lock_init(xd);
543
544       xd->device_index = xd - dm->devices;
545       ASSERT(i == xd->device_index);
546       xd->per_interface_next_index = ~0;
547
548       /* assign interface to input thread */
549       dpdk_device_and_queue_t * dq;
550       int q;
551
552       for (q = 0; q < xd->rx_q_used; q++)
553         {
554           int cpu = dm->input_cpu_first_index + next_cpu;
555           unsigned lcore = vlib_worker_threads[cpu].dpdk_lcore_id;
556
557           /*
558            * numa node for worker thread handling this queue
559            * needed for taking buffers from the right mempool
560            */
561           vec_validate(xd->cpu_socket_id_by_queue, q);
562           xd->cpu_socket_id_by_queue[q] = rte_lcore_to_socket_id(lcore);
563
564           /*
565            * construct vector of (device,queue) pairs for each worker thread
566            */
567           vec_add2(dm->devices_by_cpu[cpu], dq, 1);
568           dq->device = xd->device_index;
569           dq->queue_id = q;
570
571           next_cpu++;
572           if (next_cpu == dm->input_cpu_count)
573             next_cpu = 0;
574         }
575
576       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
577                             CLIB_CACHE_LINE_BYTES);
578       for (j = 0; j < tm->n_vlib_mains; j++)
579         {
580           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE, 
581                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
582           vec_reset_length (xd->tx_vectors[j]);
583         }
584
585       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used,
586                             CLIB_CACHE_LINE_BYTES);
587       for (j = 0; j< xd->rx_q_used; j++)
588         {
589           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
590                                 CLIB_CACHE_LINE_BYTES);
591           vec_reset_length (xd->rx_vectors[j]);
592         }
593
594       vec_validate_aligned (xd->frames, tm->n_vlib_mains,
595                             CLIB_CACHE_LINE_BYTES);
596
597       rv = dpdk_port_setup(dm, xd);
598
599       if (rv < 0)
600         return rv;
601
602       /* count the number of descriptors used for this device */
603       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
604
605       error = ethernet_register_interface
606         (dm->vnet_main,
607          dpdk_device_class.index,
608          xd->device_index,
609          /* ethernet address */ addr,
610          &xd->vlib_hw_if_index, 
611          dpdk_flag_change);
612       if (error)
613         return error;
614       
615       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->vlib_hw_if_index);
616       xd->vlib_sw_if_index = sw->sw_if_index;
617       hi = vnet_get_hw_interface (dm->vnet_main, xd->vlib_hw_if_index);
618
619       /*
620        * DAW-FIXME: The Cisco VIC firmware does not provide an api for a
621        *            driver to dynamically change the mtu.  If/when the 
622        *            VIC firmware gets fixed, then this should be removed.
623        */
624       if (xd->pmd == VNET_DPDK_PMD_VICE ||
625           xd->pmd == VNET_DPDK_PMD_ENIC)
626         {
627           /*
628            * Initialize mtu to what has been set by CIMC in the firmware cfg.
629            */
630           hi->max_packet_bytes = dev_info.max_rx_pktlen;
631           /*
632            * remove vlan tag from VIC port to fix VLAN0 issue.
633            * TODO Handle VLAN tagged traffic
634            */
635           int vlan_off;
636           vlan_off = rte_eth_dev_get_vlan_offload(xd->device_index);
637           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
638           rte_eth_dev_set_vlan_offload(xd->device_index, vlan_off);
639         }
640
641 #if RTE_VERSION < RTE_VERSION_NUM(16, 4, 0, 0) 
642       /*
643        * Older VMXNET3 driver doesn't support jumbo / multi-buffer pkts
644        */
645       else if (xd->pmd == VNET_DPDK_PMD_VMXNET3)
646           hi->max_packet_bytes = 1518;
647 #endif
648
649       hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 
650               xd->port_conf.rxmode.max_rx_pkt_len - sizeof(ethernet_header_t);
651
652      rte_eth_dev_set_mtu(xd->device_index, hi->max_packet_bytes);
653     }
654
655 #ifdef RTE_LIBRTE_KNI
656   if (dm->num_kni) {
657     clib_warning("Initializing KNI interfaces...");
658     rte_kni_init(dm->num_kni);
659     for (i = 0; i < dm->num_kni; i++)
660     {
661       u8 addr[6];
662       int j;
663
664       /* Create vnet interface */
665       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
666       xd->dev_type = VNET_DPDK_DEV_KNI;
667
668       xd->device_index = xd - dm->devices;
669       ASSERT(nports + i == xd->device_index);
670       xd->per_interface_next_index = ~0;
671       xd->kni_port_id = i;
672       xd->cpu_socket = -1;
673       hash_set (dm->dpdk_device_by_kni_port_id, i, xd - dm->devices);
674       xd->rx_q_used = 1;
675
676       /* assign interface to input thread */
677       dpdk_device_and_queue_t * dq;
678       vec_add2(dm->devices_by_cpu[dm->input_cpu_first_index], dq, 1);
679       dq->device = xd->device_index;
680       dq->queue_id = 0;
681
682       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
683                             CLIB_CACHE_LINE_BYTES);
684       for (j = 0; j < tm->n_vlib_mains; j++)
685         {
686           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE, 
687                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
688           vec_reset_length (xd->tx_vectors[j]);
689         }
690
691       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used,
692                             CLIB_CACHE_LINE_BYTES);
693       for (j = 0; j< xd->rx_q_used; j++)
694         {
695           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
696                                 CLIB_CACHE_LINE_BYTES);
697           vec_reset_length (xd->rx_vectors[j]);
698         }
699
700       vec_validate_aligned (xd->frames, tm->n_vlib_mains,
701                             CLIB_CACHE_LINE_BYTES);
702
703       /* FIXME Set up one TX-queue per worker thread */
704
705       {
706         f64 now = vlib_time_now(vm);
707         u32 rnd;
708         rnd = (u32) (now * 1e6);
709         rnd = random_u32 (&rnd);
710
711         clib_memcpy (addr+2, &rnd, sizeof(rnd));
712         addr[0] = 2;
713         addr[1] = 0xfe;
714       }
715
716       error = ethernet_register_interface
717         (dm->vnet_main,
718          dpdk_device_class.index,
719          xd->device_index,
720          /* ethernet address */ addr,
721          &xd->vlib_hw_if_index, 
722          dpdk_flag_change);
723
724       if (error)
725         return error;
726
727       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->vlib_hw_if_index);
728       xd->vlib_sw_if_index = sw->sw_if_index;
729       hi = vnet_get_hw_interface (dm->vnet_main, xd->vlib_hw_if_index);
730     }
731   }
732 #endif
733
734   if (nb_desc > dm->num_mbufs) 
735     clib_warning ("%d mbufs allocated but total rx/tx ring size is %d\n",
736                   dm->num_mbufs, nb_desc);
737
738   /* init next vhost-user if index */
739   dm->next_vu_if_id = 0;
740
741   return 0;
742 }
743
744 static void
745 dpdk_bind_devices_to_uio (dpdk_main_t * dm)
746 {
747   linux_pci_main_t * pm = &linux_pci_main;
748   clib_error_t * error;
749   vlib_pci_device_t * d;
750   pci_config_header_t * c;
751   u8 * pci_addr = 0;
752
753   pool_foreach (d, pm->pci_devs, ({
754     c = &d->config0.header;
755     vec_reset_length (pci_addr);
756     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, &d->bus_address, 0);
757
758     if (c->device_class != PCI_CLASS_NETWORK_ETHERNET)
759       continue;
760
761     /* if whitelist exists process only whitelisted devices */
762     if (dm->eth_if_whitelist &&
763         !strstr ((char *) dm->eth_if_whitelist, (char *) pci_addr))
764     continue;
765
766     /* virtio */
767     if (c->vendor_id == 0x1af4 && c->device_id == 0x1000)
768       ;
769     /* vmxnet3 */
770     else if (c->vendor_id == 0x15ad && c->device_id == 0x07b0)
771       ;
772     /* all Intel devices */
773     else if (c->vendor_id == 0x8086)
774       ;
775     /* Cisco VIC */
776     else if (c->vendor_id == 0x1137 && c->device_id == 0x0043)
777       ;
778     /* Chelsio T4/T5 */
779     else if (c->vendor_id == 0x1425 && (c->device_id & 0xe000) == 0x4000)
780       ;
781     else
782       {
783         clib_warning ("Unsupported Ethernet PCI device 0x%04x:0x%04x found "
784                       "at PCI address %s\n", (u16) c->vendor_id, (u16) c->device_id,
785                       pci_addr);
786         continue;
787       }
788
789     error = vlib_pci_bind_to_uio (d, (char *) dm->uio_driver_name);
790
791     if (error)
792       {
793         if (!dm->eth_if_whitelist)
794           dm->eth_if_blacklist = format (dm->eth_if_blacklist, "%U ",
795                                          format_vlib_pci_addr, &d->bus_address);
796         clib_error_report (error);
797       }
798   }));
799   vec_free (pci_addr);
800 }
801
802 static clib_error_t *
803 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
804 {
805   clib_error_t * error = 0;
806   dpdk_main_t * dm = &dpdk_main;
807   vlib_thread_main_t * tm = vlib_get_thread_main();
808   u8 * s, * tmp = 0;
809   u8 * pci_dev_id = 0;
810   u8 * rte_cmd = 0, * ethname = 0;
811   u32 log_level;
812   int ret, i;
813   char * fmt;
814 #ifdef NETMAP
815   int rxrings, txrings, rxslots, txslots, txburst;
816   char * nmnam;
817 #endif
818   unformat_input_t _in;
819   unformat_input_t * in = &_in;
820   u8 no_pci = 0;
821   u8 no_huge = 0;
822   u8 huge_dir = 0;
823   u8 file_prefix = 0;
824   u8 * socket_mem = 0;
825
826   // MATT-FIXME: inverted virtio-vhost logic to use virtio by default
827   dm->use_virtio_vhost = 1;
828
829   while (unformat_check_input(input) != UNFORMAT_END_OF_INPUT)
830     {
831       /* Prime the pump */
832       if (unformat (input, "no-hugetlb"))
833         {
834           vec_add1 (dm->eal_init_args, (u8 *) "no-huge");
835           no_huge = 1;
836         }
837
838       else if (unformat (input, "enable-tcp-udp-checksum"))
839         {
840           dm->buffer_flags_template &= 
841             ~(IP_BUFFER_L4_CHECKSUM_CORRECT | IP_BUFFER_L4_CHECKSUM_COMPUTED);
842         }
843
844       else if (unformat (input, "decimal-interface-names"))
845         dm->interface_name_format_decimal = 1;
846
847       else if (unformat (input, "no-multi-seg"))
848         dm->no_multi_seg = 1;
849
850       else if (unformat (input, "dev %s", &pci_dev_id))
851         {
852           if (dm->eth_if_whitelist)
853             {
854               /*
855                * Don't add duplicate device id's.
856                */
857               if (strstr ((char *)dm->eth_if_whitelist, (char *)pci_dev_id))
858                 continue;
859
860               _vec_len (dm->eth_if_whitelist) -= 1; // chomp trailing NULL.
861               dm->eth_if_whitelist = format (dm->eth_if_whitelist, " %s%c",
862                                              pci_dev_id, 0);
863             }
864           else
865             dm->eth_if_whitelist = format (0, "%s%c", pci_dev_id, 0);
866         }
867
868 #ifdef NETMAP
869      else if (unformat(input, "netmap %s/%d:%d/%d:%d/%d",
870                   &nmname, &rxrings, &rxslots, &txrings, &txslots, &txburst)) {
871         char * rv;
872         rv = (char *)
873           eth_nm_args(nmname, rxrings, rxslots, txrings, txslots, txburst);
874         if (rv) {
875           error = clib_error_return (0, "%s", rv);
876           goto done;
877         }
878       }else if (unformat(input, "netmap %s", &nmname)) {
879         char * rv;
880         rv = (char *)
881           eth_nm_args(nmname, 0, 0, 0, 0, 0);
882         if (rv) {
883           error = clib_error_return (0, "%s", rv);
884           goto done;
885         }
886       }
887 #endif
888
889       else if (unformat (input, "num-mbufs %d", &dm->num_mbufs))
890         ;
891       else if (unformat (input, "max-tx-queues %d", &dm->max_tx_queues))
892         ;
893       else if (unformat (input, "kni %d", &dm->num_kni))
894         ;
895       else if (unformat (input, "uio-driver %s", &dm->uio_driver_name))
896         ;
897       else if (unformat (input, "socket-mem %s", &socket_mem))
898         ;
899       else if (unformat (input, "vhost-user-coalesce-frames %d", &dm->vhost_coalesce_frames))
900         ;
901       else if (unformat (input, "vhost-user-coalesce-time %f", &dm->vhost_coalesce_time))
902         ;
903       else if (unformat (input, "enable-vhost-user"))
904         dm->use_virtio_vhost = 0;
905       else if (unformat (input, "rss %d", &dm->use_rss))
906         ;
907
908 #define _(a)                                    \
909       else if (unformat(input, #a))             \
910         {                                       \
911           if (!strncmp(#a, "no-pci", 6))        \
912             no_pci = 1;                         \
913           tmp = format (0, "--%s%c", #a, 0);    \
914           vec_add1 (dm->eal_init_args, tmp);    \
915         }
916       foreach_eal_double_hyphen_predicate_arg
917 #undef _
918
919 #define _(a)                                          \
920         else if (unformat(input, #a " %s", &s))       \
921           {                                           \
922             if (!strncmp(#a, "huge-dir", 8))          \
923               huge_dir = 1;                           \
924             else if (!strncmp(#a, "file-prefix", 11)) \
925               file_prefix = 1;                        \
926             tmp = format (0, "--%s%c", #a, 0);        \
927             vec_add1 (dm->eal_init_args, tmp);        \
928             vec_add1 (s, 0);                          \
929             vec_add1 (dm->eal_init_args, s);          \
930           }
931         foreach_eal_double_hyphen_arg
932 #undef _
933
934 #define _(a,b)                                          \
935           else if (unformat(input, #a " %s", &s))       \
936             {                                           \
937               tmp = format (0, "-%s%c", #b, 0);         \
938               vec_add1 (dm->eal_init_args, tmp);        \
939               vec_add1 (s, 0);                          \
940               vec_add1 (dm->eal_init_args, s);          \
941             }
942           foreach_eal_single_hyphen_arg
943 #undef _
944
945 #define _(a,b)                                          \
946             else if (unformat(input, #a " %s", &s))     \
947               {                                         \
948                 tmp = format (0, "-%s%c", #b, 0);       \
949                 vec_add1 (dm->eal_init_args, tmp);      \
950                 vec_add1 (s, 0);                        \
951                 vec_add1 (dm->eal_init_args, s);        \
952                 dm->a##_set_manually = 1;               \
953               }
954             foreach_eal_single_hyphen_mandatory_arg
955 #undef _
956
957           else if (unformat(input, "default"))
958             ;
959
960           else
961             {
962               error = clib_error_return (0, "unknown input `%U'",
963                                          format_unformat_error, input);
964               goto done;
965             }
966     }
967
968   if (!dm->uio_driver_name)
969     dm->uio_driver_name = format (0, "igb_uio%c", 0);
970
971   /*
972    * Use 1G huge pages if available.
973    */
974   if (!no_huge && !huge_dir)
975     {
976       u32 x, * mem_by_socket = 0;
977       uword c = 0;
978       u8 use_1g = 1;
979       u8 use_2m = 1;
980       u8 less_than_1g = 1;
981       int rv;
982
983       umount(DEFAULT_HUGE_DIR);
984
985       /* Process "socket-mem" parameter value */
986       if (vec_len (socket_mem))
987         {
988           unformat_input_t in;
989           unformat_init_vector(&in, socket_mem);
990           while (unformat_check_input (&in) != UNFORMAT_END_OF_INPUT)
991             {
992               if (unformat (&in, "%u,", &x))
993                 ;
994               else if (unformat (&in, "%u", &x))
995                 ;
996               else if (unformat (&in, ","))
997                 x = 0;
998               else
999                 break;
1000
1001               vec_add1(mem_by_socket, x);
1002
1003               if (x > 1023)
1004                 less_than_1g = 0;
1005             }
1006           /* Note: unformat_free vec_frees(in.buffer), aka socket_mem... */
1007           unformat_free(&in);
1008           socket_mem = 0;
1009         }
1010       else
1011         {
1012           clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1013             {
1014               vec_validate(mem_by_socket, c);
1015               mem_by_socket[c] = 512; /* default per-socket mem */
1016             }
1017           ));
1018         }
1019
1020       /* check if available enough 1GB pages for each socket */
1021       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1022         {
1023           u32 pages_avail, page_size, mem;
1024           u8 *s = 0;
1025           char * path = "/sys/devices/system/node/node%u/hugepages/"
1026                         "hugepages-%ukB/free_hugepages%c";
1027
1028           vec_validate(mem_by_socket, c);
1029           mem = mem_by_socket[c];
1030
1031           page_size = 1024;
1032           pages_avail = 0;
1033           s = format (s, path, c, page_size * 1024, 0);
1034           read_sys_fs ((char *) s, "%u", &pages_avail);
1035           vec_reset_length (s);
1036
1037           if (page_size * pages_avail < mem)
1038             use_1g = 0;
1039
1040           page_size = 2;
1041           pages_avail = 0;
1042           s = format (s, path, c, page_size * 1024, 0);
1043           read_sys_fs ((char *) s, "%u", &pages_avail);
1044           vec_reset_length (s);
1045
1046           if (page_size * pages_avail < mem)
1047             use_2m = 0;
1048
1049           vec_free(s);
1050       }));
1051       _vec_len (mem_by_socket) = c + 1;
1052
1053       /* regenerate socket_mem string */
1054       vec_foreach_index (x, mem_by_socket)
1055         socket_mem = format (socket_mem, "%s%u",
1056                              socket_mem ? "," : "",
1057                              mem_by_socket[x]);
1058       socket_mem = format (socket_mem, "%c", 0);
1059
1060       vec_free (mem_by_socket);
1061
1062       rv = mkdir(VPP_RUN_DIR, 0755);
1063       if (rv && errno != EEXIST)
1064         {
1065           error = clib_error_return (0, "mkdir '%s' failed errno %d",
1066                                      VPP_RUN_DIR, errno);
1067           goto done;
1068         }
1069
1070       rv = mkdir(DEFAULT_HUGE_DIR, 0755);
1071       if (rv && errno != EEXIST)
1072         {
1073           error = clib_error_return (0, "mkdir '%s' failed errno %d",
1074                                      DEFAULT_HUGE_DIR, errno);
1075           goto done;
1076         }
1077
1078       if (use_1g && !(less_than_1g && use_2m))
1079         {
1080           rv = mount("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, "pagesize=1G");
1081         }
1082       else if (use_2m)
1083         {
1084           rv = mount("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, NULL);
1085         }
1086       else
1087         {
1088           return clib_error_return (0, "not enough free huge pages");
1089         }
1090
1091       if (rv)
1092         {
1093           error = clib_error_return (0, "mount failed %d", errno);
1094           goto done;
1095         }
1096
1097       tmp = format (0, "--huge-dir%c", 0);
1098       vec_add1 (dm->eal_init_args, tmp);
1099       tmp = format (0, "%s%c", DEFAULT_HUGE_DIR, 0);
1100       vec_add1 (dm->eal_init_args, tmp);
1101       if (!file_prefix)
1102         {
1103           tmp = format (0, "--file-prefix%c", 0);
1104           vec_add1 (dm->eal_init_args, tmp);
1105           tmp = format (0, "vpp%c", 0);
1106           vec_add1 (dm->eal_init_args, tmp);
1107         }
1108     }
1109
1110   vec_free (rte_cmd);
1111   vec_free (ethname);
1112
1113   if (error)
1114     return error;
1115
1116   /* I'll bet that -c and -n must be the first and second args... */
1117   if (!dm->coremask_set_manually)
1118     {
1119       vlib_thread_registration_t * tr;
1120       uword * coremask = 0;
1121       int i;
1122
1123       /* main thread core */
1124       coremask = clib_bitmap_set(coremask, tm->main_lcore, 1);
1125
1126       for (i = 0; i < vec_len (tm->registrations); i++)
1127         {
1128           tr = tm->registrations[i];
1129           coremask = clib_bitmap_or(coremask, tr->coremask);
1130         }
1131
1132       vec_insert (dm->eal_init_args, 2, 1);
1133       dm->eal_init_args[1] = (u8 *) "-c";
1134       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1135       dm->eal_init_args[2] = tmp;
1136       clib_bitmap_free(coremask);
1137     }
1138
1139   if (!dm->nchannels_set_manually)
1140     {
1141       vec_insert (dm->eal_init_args, 2, 3);
1142       dm->eal_init_args[3] = (u8 *) "-n";
1143       tmp = format (0, "%d", dm->nchannels);
1144       dm->eal_init_args[4] = tmp;
1145     }
1146
1147   if (no_pci == 0 && geteuid() == 0)
1148     dpdk_bind_devices_to_uio(dm);
1149
1150   /*
1151    * If there are whitelisted devices,
1152    * add the whitelist option & device list to the dpdk arg list...
1153    */
1154   if (dm->eth_if_whitelist)
1155     {
1156       unformat_init_string (in, (char *)dm->eth_if_whitelist,
1157                             vec_len(dm->eth_if_whitelist) - 1);
1158       fmt = "-w%c";
1159     }
1160
1161   /*
1162    * Otherwise add the blacklisted devices to the dpdk arg list.
1163    */
1164   else
1165     {
1166       unformat_init_string (in, (char *)dm->eth_if_blacklist,
1167                             vec_len(dm->eth_if_blacklist) - 1);
1168       fmt = "-b%c";
1169     }
1170
1171   while (unformat_check_input (in) != UNFORMAT_END_OF_INPUT)
1172     {
1173       tmp = format (0, fmt, 0);
1174       vec_add1 (dm->eal_init_args, tmp);
1175       unformat (in, "%s", &pci_dev_id);
1176       vec_add1 (dm->eal_init_args, pci_dev_id);
1177     }
1178
1179   /* set master-lcore */
1180   tmp = format (0, "--master-lcore%c", 0);
1181   vec_add1 (dm->eal_init_args, tmp);
1182   tmp = format (0, "%u%c", tm->main_lcore, 0);
1183   vec_add1 (dm->eal_init_args, tmp);
1184
1185   /* set socket-mem */
1186   tmp = format (0, "--socket-mem%c", 0);
1187   vec_add1 (dm->eal_init_args, tmp);
1188   tmp = format (0, "%s%c", socket_mem, 0);
1189   vec_add1 (dm->eal_init_args, tmp);
1190
1191   /* NULL terminate the "argv" vector, in case of stupidity */
1192   vec_add1 (dm->eal_init_args, 0);
1193   _vec_len(dm->eal_init_args) -= 1;
1194
1195   /* Set up DPDK eal and packet mbuf pool early. */
1196
1197   log_level = (CLIB_DEBUG > 0) ? RTE_LOG_DEBUG : RTE_LOG_NOTICE;
1198
1199   rte_set_log_level (log_level);
1200
1201   vm = dm->vlib_main;
1202
1203   /* make copy of args as rte_eal_init tends to mess up with arg array */
1204   for (i = 1; i < vec_len(dm->eal_init_args); i++)
1205     dm->eal_init_args_str = format(dm->eal_init_args_str, "%s ",
1206                                    dm->eal_init_args[i]);
1207
1208   ret = rte_eal_init(vec_len(dm->eal_init_args), (char **) dm->eal_init_args);
1209
1210   /* lazy umount hugepages */
1211   umount2(DEFAULT_HUGE_DIR, MNT_DETACH);
1212
1213   if (ret < 0)
1214     return clib_error_return (0, "rte_eal_init returned %d", ret);
1215
1216   /* Dump the physical memory layout prior to creating the mbuf_pool */
1217   fprintf(stdout, "DPDK physical memory layout:\n");
1218   rte_dump_physmem_layout(stdout);
1219
1220   /* main thread 1st */
1221   error = vlib_buffer_pool_create(vm, dm->num_mbufs, rte_socket_id());
1222   if (error)
1223     return error;
1224
1225   for (i = 0; i < RTE_MAX_LCORE; i++)
1226     {
1227       error = vlib_buffer_pool_create(vm, dm->num_mbufs,
1228                                       rte_lcore_to_socket_id(i));
1229       if (error)
1230         return error;
1231     }
1232
1233   if (dm->use_rss)
1234     {
1235       vlib_node_runtime_t * rt = vlib_node_get_runtime (vm, dpdk_input_node.index);
1236       rt->function = dpdk_input_rss;
1237     }
1238  done:
1239   return error;
1240 }
1241
1242 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1243
1244 void dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1245 {
1246     vnet_main_t * vnm = vnet_get_main();
1247     struct rte_eth_link prev_link = xd->link;
1248     u32 hw_flags =  0;
1249     u8 hw_flags_chg = 0;
1250
1251     /* only update link state for PMD interfaces */
1252     if (xd->dev_type != VNET_DPDK_DEV_ETH)
1253       return;
1254
1255     xd->time_last_link_update = now ? now : xd->time_last_link_update;
1256     memset(&xd->link, 0, sizeof(xd->link));
1257     rte_eth_link_get_nowait (xd->device_index, &xd->link);
1258
1259     if (LINK_STATE_ELOGS)
1260       {
1261         vlib_main_t * vm = vlib_get_main();
1262         ELOG_TYPE_DECLARE(e) = {
1263           .format = 
1264           "update-link-state: sw_if_index %d, admin_up %d,"
1265           "old link_state %d new link_state %d",
1266           .format_args = "i4i1i1i1",
1267         };
1268
1269         struct { u32 sw_if_index; u8 admin_up; 
1270           u8 old_link_state; u8 new_link_state;} *ed;
1271         ed = ELOG_DATA (&vm->elog_main, e);
1272         ed->sw_if_index = xd->vlib_sw_if_index;
1273         ed->admin_up = xd->admin_up;
1274         ed->old_link_state = (u8)
1275           vnet_hw_interface_is_link_up (vnm, xd->vlib_hw_if_index);
1276         ed->new_link_state = (u8) xd->link.link_status;
1277       }
1278
1279     if ((xd->admin_up == 1) && 
1280         ((xd->link.link_status != 0) ^ 
1281          vnet_hw_interface_is_link_up (vnm, xd->vlib_hw_if_index)))
1282       {
1283         hw_flags_chg = 1;
1284         hw_flags |= (xd->link.link_status ? 
1285                      VNET_HW_INTERFACE_FLAG_LINK_UP: 0);
1286       }
1287
1288     if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1289       {
1290         hw_flags_chg = 1;
1291         switch (xd->link.link_duplex)
1292           {
1293           case ETH_LINK_HALF_DUPLEX:
1294             hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1295             break;
1296           case ETH_LINK_FULL_DUPLEX:
1297             hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1298             break;
1299           default:
1300             break;
1301           }
1302       }
1303 #if RTE_VERSION >= RTE_VERSION_NUM(16, 4, 0, 0)
1304     if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1305       {
1306         hw_flags_chg = 1;
1307         switch (xd->link.link_speed)
1308           {
1309           case ETH_SPEED_NUM_10M:
1310             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1311             break;
1312           case ETH_SPEED_NUM_100M:
1313             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1314             break;
1315           case ETH_SPEED_NUM_1G:
1316             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1317             break;
1318           case ETH_SPEED_NUM_10G:
1319             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1320             break;
1321           case ETH_SPEED_NUM_40G:
1322             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1323             break;
1324     case 0:
1325       break;
1326     default:
1327       clib_warning("unknown link speed %d", xd->link.link_speed);
1328             break;
1329           }
1330       }
1331 #else
1332     if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1333       {
1334         hw_flags_chg = 1;
1335         switch (xd->link.link_speed)
1336           {
1337           case ETH_LINK_SPEED_10:
1338             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1339             break;
1340           case ETH_LINK_SPEED_100:
1341             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1342             break;
1343           case ETH_LINK_SPEED_1000:
1344             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1345             break;
1346           case ETH_LINK_SPEED_10000:
1347             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1348             break;
1349           case ETH_LINK_SPEED_40G:
1350             hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1351             break;
1352     case 0:
1353       break;
1354     default:
1355       clib_warning("unknown link speed %d", xd->link.link_speed);
1356             break;
1357           }
1358       }
1359 #endif
1360     if (hw_flags_chg)
1361       {
1362         if (LINK_STATE_ELOGS)
1363           {
1364             vlib_main_t * vm = vlib_get_main();
1365
1366             ELOG_TYPE_DECLARE(e) = {
1367               .format = "update-link-state: sw_if_index %d, new flags %d",
1368               .format_args = "i4i4",
1369             };
1370
1371             struct { u32 sw_if_index; u32 flags; } *ed;
1372             ed = ELOG_DATA (&vm->elog_main, e);
1373             ed->sw_if_index = xd->vlib_sw_if_index;
1374             ed->flags = hw_flags;
1375           }
1376         vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index, hw_flags);
1377       }
1378 }
1379
1380 static uword
1381 dpdk_process (vlib_main_t * vm,
1382               vlib_node_runtime_t * rt,
1383               vlib_frame_t * f)
1384 {
1385   clib_error_t * error;
1386   vnet_main_t * vnm = vnet_get_main();
1387   dpdk_main_t * dm = &dpdk_main;
1388   ethernet_main_t * em = &ethernet_main;
1389   dpdk_device_t * xd;
1390   vlib_thread_main_t * tm = vlib_get_thread_main();
1391   void *vu_state;
1392   int i;
1393
1394   error = dpdk_lib_init (dm);
1395
1396   /* 
1397    * Turn on the input node if we found some devices to drive
1398    * and we're not running worker threads or i/o threads
1399    */
1400
1401   if (error == 0 && vec_len(dm->devices) > 0)
1402     {
1403         if (tm->n_vlib_mains == 1)
1404           vlib_node_set_state (vm, dpdk_input_node.index,
1405                                VLIB_NODE_STATE_POLLING);
1406         else if (tm->main_thread_is_io_node)
1407           vlib_node_set_state (vm, dpdk_io_input_node.index,
1408                                VLIB_NODE_STATE_POLLING);
1409         else if (!dm->have_io_threads)
1410           for (i=0; i < tm->n_vlib_mains; i++)
1411             if (vec_len(dm->devices_by_cpu[i]) > 0)
1412               vlib_node_set_state (vlib_mains[i], dpdk_input_node.index,
1413                                    VLIB_NODE_STATE_POLLING);
1414     }
1415
1416   if (error)
1417     clib_error_report (error);
1418
1419   dpdk_vhost_user_process_init(&vu_state);
1420
1421   dm->io_thread_release = 1;
1422
1423   f64 now = vlib_time_now (vm);
1424   vec_foreach (xd, dm->devices)
1425     {
1426       dpdk_update_link_state (xd, now);
1427     }
1428
1429 { // Extra set up for bond interfaces:
1430   // 1. Setup MACs for bond interfaces and their slave links which was set
1431   //    in dpdk_port_setup() but needs to be done again here to take effect.
1432   // 2. Set max L3 packet size of each bond interface to the lowerst value of 
1433   //    its slave links 
1434   // 3. Set up info for bond interface related CLI support.
1435   int nports = rte_eth_dev_count();
1436   if (nports > 0) {
1437       for (i = 0; i < nports; i++) {
1438           struct rte_eth_dev_info dev_info;
1439           rte_eth_dev_info_get(i, &dev_info);
1440           if (!dev_info.driver_name)
1441               dev_info.driver_name = dev_info.pci_dev->driver->name;
1442           ASSERT(dev_info.driver_name);
1443           if (strncmp(dev_info.driver_name, "rte_bond_pmd", 12) == 0) {
1444               u8  addr[6]; 
1445               u8  slink[16];
1446               int nlink = rte_eth_bond_slaves_get(i, slink, 16);
1447               if (nlink > 0) {
1448                   vnet_hw_interface_t * bhi;
1449                   ethernet_interface_t * bei;
1450                   /* Get MAC of 1st slave link */
1451                   rte_eth_macaddr_get(slink[0], (struct ether_addr *)addr);
1452                   /* Set MAC of bounded interface to that of 1st slave link */
1453                   rte_eth_bond_mac_address_set(i, (struct ether_addr *)addr);
1454                   /* Populate MAC of bonded interface in VPP hw tables */
1455                   bhi = vnet_get_hw_interface(
1456                       vnm, dm->devices[i].vlib_hw_if_index);
1457                   bei = pool_elt_at_index(em->interfaces, bhi->hw_instance);
1458                   clib_memcpy(bhi->hw_address, addr, 6);
1459                   clib_memcpy(bei->address, addr, 6);
1460                   /* Init l3 packet size allowed on bonded interface */
1461                   bhi->max_l3_packet_bytes[VLIB_RX] = 
1462                   bhi->max_l3_packet_bytes[VLIB_TX] = 
1463                       ETHERNET_MAX_PACKET_BYTES - sizeof(ethernet_header_t);
1464                   while (nlink >= 1) { /* for all slave links */
1465                       int slave = slink[--nlink];
1466                       dpdk_device_t * sdev = &dm->devices[slave];
1467                       vnet_hw_interface_t * shi;
1468                       vnet_sw_interface_t * ssi;
1469                       /* Add MAC to all slave links except the first one */
1470                       if (nlink) rte_eth_dev_mac_addr_add(
1471                           slave, (struct ether_addr *)addr, 0);
1472                       /* Set slaves bitmap for bonded interface */
1473                       bhi->bond_info = clib_bitmap_set(
1474                           bhi->bond_info, sdev->vlib_hw_if_index, 1);
1475                       /* Set slave link flags on slave interface */
1476                       shi = vnet_get_hw_interface(vnm, sdev->vlib_hw_if_index);
1477                       ssi = vnet_get_sw_interface(vnm, sdev->vlib_sw_if_index);
1478                       shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1479                       ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1480                       /* Set l3 packet size allowed as the lowest of slave */
1481                       if (bhi->max_l3_packet_bytes[VLIB_RX] >
1482                           shi->max_l3_packet_bytes[VLIB_RX]) 
1483                           bhi->max_l3_packet_bytes[VLIB_RX] =
1484                           bhi->max_l3_packet_bytes[VLIB_TX] =
1485                               shi->max_l3_packet_bytes[VLIB_RX];
1486                   }
1487               }
1488           }
1489       }
1490   }
1491 }
1492
1493   while (1)
1494     {
1495       /*
1496        * check each time through the loop in case intervals are changed
1497        */
1498       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1499                      dm->link_state_poll_interval : dm->stat_poll_interval;
1500
1501       vlib_process_wait_for_event_or_clock (vm, min_wait);
1502
1503       if (dpdk_get_admin_up_down_in_progress())
1504           /* skip the poll if an admin up down is in progress (on any interface) */
1505           continue;
1506
1507       vec_foreach (xd, dm->devices)
1508         {
1509           f64 now = vlib_time_now (vm);
1510           if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1511             dpdk_update_counters (xd, now);
1512           if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1513             dpdk_update_link_state (xd, now);
1514
1515       if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER)
1516           if (dpdk_vhost_user_process_if(vm, xd, vu_state) != 0)
1517               continue;
1518         }
1519     }
1520
1521   dpdk_vhost_user_process_cleanup(vu_state);
1522
1523   return 0; 
1524 }
1525
1526 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1527     .function = dpdk_process,
1528     .type = VLIB_NODE_TYPE_PROCESS,
1529     .name = "dpdk-process",
1530     .process_log2_n_stack_bytes = 17,
1531 };
1532
1533 int dpdk_set_stat_poll_interval (f64 interval)
1534 {
1535   if (interval < DPDK_MIN_STATS_POLL_INTERVAL)
1536       return (VNET_API_ERROR_INVALID_VALUE);
1537
1538   dpdk_main.stat_poll_interval = interval;
1539
1540   return 0;
1541 }
1542
1543 int dpdk_set_link_state_poll_interval (f64 interval)
1544 {
1545   if (interval < DPDK_MIN_LINK_POLL_INTERVAL)
1546       return (VNET_API_ERROR_INVALID_VALUE);
1547
1548   dpdk_main.link_state_poll_interval = interval;
1549
1550   return 0;
1551 }
1552
1553 clib_error_t *
1554 dpdk_init (vlib_main_t * vm)
1555 {
1556   dpdk_main_t * dm = &dpdk_main;
1557   vlib_node_t * ei;
1558   clib_error_t * error = 0;
1559   vlib_thread_main_t * tm = vlib_get_thread_main();
1560
1561   /* verify that structs are cacheline aligned */
1562   ASSERT(offsetof(dpdk_device_t, cacheline0) == 0);
1563   ASSERT(offsetof(dpdk_device_t, cacheline1) == CLIB_CACHE_LINE_BYTES);
1564   ASSERT(offsetof(dpdk_worker_t, cacheline0) == 0);
1565   ASSERT(offsetof(frame_queue_trace_t, cacheline0) == 0);
1566
1567   dm->vlib_main = vm;
1568   dm->vnet_main = vnet_get_main();
1569
1570   ei = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
1571   if (ei == 0)
1572       return clib_error_return (0, "ethernet-input node AWOL");
1573
1574   dm->ethernet_input_node_index = ei->index;
1575
1576   dm->nchannels = 4;
1577   dm->num_mbufs = dm->num_mbufs ? dm->num_mbufs : NB_MBUF;
1578   vec_add1 (dm->eal_init_args, (u8 *) "vnet");
1579
1580   dm->dpdk_device_by_kni_port_id = hash_create (0, sizeof (uword));
1581   dm->vu_sw_if_index_by_listener_fd = hash_create (0, sizeof (uword));
1582   dm->vu_sw_if_index_by_sock_fd = hash_create (0, sizeof (uword));
1583
1584   /* $$$ use n_thread_stacks since it's known-good at this point */
1585   vec_validate (dm->recycle, tm->n_thread_stacks - 1);
1586
1587   /* initialize EFD (early fast discard) default settings */
1588   dm->efd.enabled = DPDK_EFD_DISABLED;
1589   dm->efd.queue_hi_thresh = ((DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT *
1590                               DPDK_NB_RX_DESC_10GE)/100);
1591   dm->efd.consec_full_frames_hi_thresh =
1592       DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH;
1593
1594   /* vhost-user coalescence frames defaults */
1595   dm->vhost_coalesce_frames = 32;
1596   dm->vhost_coalesce_time = 1e-3;
1597
1598   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1599   dm->buffer_flags_template = 
1600     (VLIB_BUFFER_TOTAL_LENGTH_VALID 
1601      | IP_BUFFER_L4_CHECKSUM_COMPUTED
1602      | IP_BUFFER_L4_CHECKSUM_CORRECT);
1603
1604   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1605   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1606
1607   /* init CLI */
1608   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1609     return error;
1610
1611   return error;
1612 }
1613
1614 VLIB_INIT_FUNCTION (dpdk_init);
1615