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