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