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