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