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