847affea2430e2ada23a703a4a9a2da7fb613c2e
[vpp.git] / src / plugins / dpdk / device / 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 #include <vppinfra/linux/sysfs.h>
21 #include <vlib/unix/unix.h>
22 #include <vlib/log.h>
23
24 #include <vnet/vnet.h>
25 #include <vnet/ethernet/ethernet.h>
26 #include <vnet/interface/rx_queue_funcs.h>
27 #include <vnet/interface/tx_queue_funcs.h>
28 #include <dpdk/buffer.h>
29 #include <dpdk/device/dpdk.h>
30 #include <dpdk/cryptodev/cryptodev.h>
31 #include <vlib/pci/pci.h>
32 #include <vlib/vmbus/vmbus.h>
33
34 #include <rte_ring.h>
35 #include <rte_vect.h>
36
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <unistd.h>
40 #include <sys/stat.h>
41 #include <sys/mount.h>
42 #include <string.h>
43 #include <fcntl.h>
44 #include <dirent.h>
45
46 #include <dpdk/device/dpdk_priv.h>
47
48 dpdk_main_t dpdk_main;
49 dpdk_config_main_t dpdk_config_main;
50
51 #define LINK_STATE_ELOGS        0
52
53 /* dev_info.speed_capa -> interface name mapppings */
54 const struct
55 {
56   u32 link_speed;
57   const char *pfx;
58 } if_name_prefixes[] = {
59   /* sorted, higher speed first */
60   { RTE_ETH_LINK_SPEED_200G, "TwoHundredGigabitEthernet" },
61   { RTE_ETH_LINK_SPEED_100G, "HundredGigabitEthernet" },
62   { RTE_ETH_LINK_SPEED_56G, "FiftySixGigabitEthernet" },
63   { RTE_ETH_LINK_SPEED_50G, "FiftyGigabitEthernet" },
64   { RTE_ETH_LINK_SPEED_40G, "FortyGigabitEthernet" },
65   { RTE_ETH_LINK_SPEED_25G, "TwentyFiveGigabitEthernet" },
66   { RTE_ETH_LINK_SPEED_20G, "TwentyGigabitEthernet" },
67   { RTE_ETH_LINK_SPEED_10G, "TenGigabitEthernet" },
68   { RTE_ETH_LINK_SPEED_5G, "FiveGigabitEthernet" },
69   { RTE_ETH_LINK_SPEED_2_5G, "TwoDotFiveGigabitEthernet" },
70   { RTE_ETH_LINK_SPEED_1G, "GigabitEthernet" },
71 };
72
73 static clib_error_t *
74 dpdk_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hi,
75                          u32 frame_size)
76 {
77   dpdk_main_t *dm = &dpdk_main;
78   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
79   int rv;
80   u32 mtu;
81
82   mtu = frame_size - xd->driver_frame_overhead;
83
84   rv = rte_eth_dev_set_mtu (xd->port_id, mtu);
85
86   if (rv < 0)
87     {
88       dpdk_log_err ("[%u] rte_eth_dev_set_mtu failed (mtu %u, rv %d)",
89                     xd->port_id, mtu, rv);
90       switch (rv)
91         {
92         case -ENOTSUP:
93           return vnet_error (VNET_ERR_UNSUPPORTED,
94                              "dpdk driver doesn't support MTU change");
95         case -EBUSY:
96           return vnet_error (VNET_ERR_BUSY, "port is running");
97         case -EINVAL:
98           return vnet_error (VNET_ERR_INVALID_VALUE, "invalid MTU");
99         default:
100           return vnet_error (VNET_ERR_BUG,
101                              "unexpected return value %d returned from "
102                              "rte_eth_dev_set_mtu(...)",
103                              rv);
104         }
105     }
106   else
107     dpdk_log_debug ("[%u] max_frame_size set to %u by setting MTU to %u",
108                     xd->port_id, frame_size, mtu);
109
110   return 0;
111 }
112
113 static u32
114 dpdk_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
115 {
116   dpdk_main_t *dm = &dpdk_main;
117   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
118   u32 old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
119
120   switch (flags)
121     {
122     case ETHERNET_INTERFACE_FLAG_DEFAULT_L3:
123       /* set to L3/non-promisc mode */
124       dpdk_device_flag_set (xd, DPDK_DEVICE_FLAG_PROMISC, 0);
125       break;
126     case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
127       dpdk_device_flag_set (xd, DPDK_DEVICE_FLAG_PROMISC, 1);
128       break;
129     default:
130       return ~0;
131     }
132
133   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
134     {
135       if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
136         rte_eth_promiscuous_enable (xd->port_id);
137       else
138         rte_eth_promiscuous_disable (xd->port_id);
139     }
140
141   return old;
142 }
143
144 /* The function check_l3cache helps check if Level 3 cache exists or not on current CPUs
145   return value 1: exist.
146   return value 0: not exist.
147 */
148 static int
149 check_l3cache ()
150 {
151
152   struct dirent *dp;
153   clib_error_t *err;
154   const char *sys_cache_dir = "/sys/devices/system/cpu/cpu0/cache";
155   DIR *dir_cache = opendir (sys_cache_dir);
156
157   if (dir_cache == NULL)
158     return -1;
159
160   while ((dp = readdir (dir_cache)) != NULL)
161     {
162       if (dp->d_type == DT_DIR)
163         {
164           u8 *p = NULL;
165           int level_cache = -1;
166
167           p = format (p, "%s/%s/%s%c", sys_cache_dir, dp->d_name, "level", 0);
168           if ((err = clib_sysfs_read ((char *) p, "%d", &level_cache)))
169             clib_error_free (err);
170
171           if (level_cache == 3)
172             {
173               closedir (dir_cache);
174               return 1;
175             }
176         }
177     }
178
179   if (dir_cache != NULL)
180     closedir (dir_cache);
181
182   return 0;
183 }
184
185 static dpdk_device_config_t *
186 dpdk_find_startup_config (struct rte_eth_dev_info *di)
187 {
188   dpdk_main_t *dm = &dpdk_main;
189   struct rte_pci_device *pci_dev;
190   struct rte_vmbus_device *vmbus_dev;
191   vlib_pci_addr_t pci_addr;
192   vlib_vmbus_addr_t vmbus_addr;
193   uword *p = 0;
194
195   if ((pci_dev = dpdk_get_pci_device (di)))
196     {
197       pci_addr.domain = pci_dev->addr.domain;
198       pci_addr.bus = pci_dev->addr.bus;
199       pci_addr.slot = pci_dev->addr.devid;
200       pci_addr.function = pci_dev->addr.function;
201       p =
202         hash_get (dm->conf->device_config_index_by_pci_addr, pci_addr.as_u32);
203     }
204
205   if ((vmbus_dev = dpdk_get_vmbus_device (di)))
206     {
207       unformat_input_t input_vmbus;
208       unformat_init_string (&input_vmbus, di->device->name,
209                             strlen (di->device->name));
210       if (unformat (&input_vmbus, "%U", unformat_vlib_vmbus_addr, &vmbus_addr))
211         p = mhash_get (&dm->conf->device_config_index_by_vmbus_addr,
212                        &vmbus_addr);
213       unformat_free (&input_vmbus);
214     }
215
216   if (p)
217     return pool_elt_at_index (dm->conf->dev_confs, p[0]);
218   return &dm->conf->default_devconf;
219 }
220
221 static clib_error_t *
222 dpdk_lib_init (dpdk_main_t * dm)
223 {
224   vnet_main_t *vnm = vnet_get_main ();
225   u16 port_id;
226   vlib_thread_main_t *tm = vlib_get_thread_main ();
227   vnet_device_main_t *vdm = &vnet_device_main;
228   vnet_sw_interface_t *sw;
229   vnet_hw_interface_t *hi;
230   dpdk_device_t *xd;
231   char *if_num_fmt;
232
233   /* vlib_buffer_t template */
234   vec_validate_aligned (dm->per_thread_data, tm->n_vlib_mains - 1,
235                         CLIB_CACHE_LINE_BYTES);
236   for (int i = 0; i < tm->n_vlib_mains; i++)
237     {
238       dpdk_per_thread_data_t *ptd = vec_elt_at_index (dm->per_thread_data, i);
239       clib_memset (&ptd->buffer_template, 0, sizeof (vlib_buffer_t));
240       vnet_buffer (&ptd->buffer_template)->sw_if_index[VLIB_TX] = (u32) ~ 0;
241     }
242
243   if_num_fmt =
244     dm->conf->interface_name_format_decimal ? "%d/%d/%d" : "%x/%x/%x";
245
246   /* device config defaults */
247   dm->default_port_conf.n_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
248   dm->default_port_conf.n_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
249   dm->default_port_conf.n_rx_queues = 1;
250   dm->default_port_conf.n_tx_queues = tm->n_vlib_mains;
251   dm->default_port_conf.rss_hf =
252     RTE_ETH_RSS_IP | RTE_ETH_RSS_UDP | RTE_ETH_RSS_TCP;
253   dm->default_port_conf.max_lro_pkt_size = DPDK_MAX_LRO_SIZE_DEFAULT;
254
255   if ((clib_mem_get_default_hugepage_size () == 2 << 20) &&
256       check_l3cache () == 0)
257     dm->default_port_conf.n_rx_desc = dm->default_port_conf.n_tx_desc = 512;
258
259   RTE_ETH_FOREACH_DEV (port_id)
260     {
261       u8 addr[6];
262       int rv, q;
263       struct rte_eth_dev_info di;
264       dpdk_device_config_t *devconf = 0;
265       vnet_eth_interface_registration_t eir = {};
266       dpdk_driver_t *dr;
267
268       if (!rte_eth_dev_is_valid_port (port_id))
269         continue;
270
271       if ((rv = rte_eth_dev_info_get (port_id, &di)) != 0)
272         {
273           dpdk_log_warn ("[%u] failed to get device info. skipping device.",
274                          port_id);
275           continue;
276         }
277
278       if (di.device == 0)
279         {
280           dpdk_log_warn ("[%u] missing device info. Skipping '%s' device",
281                          port_id, di.driver_name);
282           continue;
283         }
284
285       devconf = dpdk_find_startup_config (&di);
286
287       /* If device is blacklisted, we should skip it */
288       if (devconf->is_blacklisted)
289         {
290           dpdk_log_notice ("[%d] Device %s blacklisted. Skipping...", port_id,
291                            di.driver_name);
292           continue;
293         }
294
295       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
296       xd->port_id = port_id;
297       xd->device_index = xd - dm->devices;
298       xd->per_interface_next_index = ~0;
299
300       clib_memcpy (&xd->conf, &dm->default_port_conf,
301                    sizeof (dpdk_port_conf_t));
302
303       /* find driver datea for this PMD */
304       if ((dr = dpdk_driver_find (di.driver_name, &xd->if_desc)))
305         {
306           xd->driver = dr;
307           xd->supported_flow_actions = dr->supported_flow_actions;
308           xd->conf.disable_rss = dr->mq_mode_none;
309           xd->conf.disable_rx_scatter = dr->disable_rx_scatter;
310           xd->conf.enable_rxq_int = dr->enable_rxq_int;
311           if (dr->use_intel_phdr_cksum)
312             dpdk_device_flag_set (xd, DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM, 1);
313           if (dr->int_unmaskable)
314             dpdk_device_flag_set (xd, DPDK_DEVICE_FLAG_INT_UNMASKABLE, 1);
315         }
316       else
317         dpdk_log_warn ("[%u] unknown driver '%s'", port_id, di.driver_name);
318
319       if (devconf->name)
320         {
321           xd->name = devconf->name;
322         }
323       else
324         {
325           struct rte_pci_device *pci_dev;
326           if (dr && dr->interface_name_prefix)
327             {
328               /* prefix override by driver */
329               xd->name = format (xd->name, "%s", dr->interface_name_prefix);
330             }
331           else
332             {
333               /* interface name prefix from speed_capa */
334               u64 mask = ~((if_name_prefixes[0].link_speed << 1) - 1);
335
336               if (di.speed_capa & mask)
337                 dpdk_log_warn ("[%u] unknown speed capability 0x%x reported",
338                                xd->port_id, di.speed_capa & mask);
339
340               for (int i = 0; i < ARRAY_LEN (if_name_prefixes); i++)
341                 if (if_name_prefixes[i].link_speed & di.speed_capa)
342                   {
343                     xd->name =
344                       format (xd->name, "%s", if_name_prefixes[i].pfx);
345                     break;
346                   }
347               if (xd->name == 0)
348                 xd->name = format (xd->name, "Ethernet");
349             }
350
351           if (dr && dr->interface_number_from_port_id)
352             xd->name = format (xd->name, "%u", port_id);
353           else if ((pci_dev = dpdk_get_pci_device (&di)))
354             xd->name = format (xd->name, if_num_fmt, pci_dev->addr.bus,
355                                pci_dev->addr.devid, pci_dev->addr.function);
356           else
357             xd->name = format (xd->name, "%u", port_id);
358         }
359
360       /* Handle representor devices that share the same PCI ID */
361       if ((di.switch_info.domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) &&
362           (di.switch_info.port_id != (uint16_t) -1))
363         xd->name = format (xd->name, "/%d", di.switch_info.port_id);
364
365       /* number of RX and TX queues */
366       if (devconf->num_tx_queues > 0)
367         {
368           if (di.max_tx_queues < devconf->num_tx_queues)
369             dpdk_log_warn ("[%u] Configured number of TX queues (%u) is "
370                            "bigger than maximum supported (%u)",
371                            port_id, devconf->num_tx_queues, di.max_tx_queues);
372           xd->conf.n_tx_queues = devconf->num_tx_queues;
373         }
374
375       xd->conf.n_tx_queues = clib_min (di.max_tx_queues, xd->conf.n_tx_queues);
376
377       if (devconf->num_rx_queues > 1 &&
378           di.max_rx_queues >= devconf->num_rx_queues)
379         {
380           xd->conf.n_rx_queues = devconf->num_rx_queues;
381           if (devconf->rss_fn)
382             {
383               u64 unsupported_bits;
384               xd->conf.rss_hf = devconf->rss_fn;
385               unsupported_bits = xd->conf.rss_hf;
386               unsupported_bits &= ~di.flow_type_rss_offloads;
387               if (unsupported_bits)
388                 dpdk_log_warn ("Unsupported RSS hash functions: %U",
389                                format_dpdk_rss_hf_name, unsupported_bits);
390             }
391           xd->conf.rss_hf &= di.flow_type_rss_offloads;
392           dpdk_log_debug ("[%u] rss_hf: %U", port_id, format_dpdk_rss_hf_name,
393                           xd->conf.rss_hf);
394         }
395
396 #ifndef RTE_VLAN_HLEN
397 #define RTE_VLAN_HLEN 4
398 #endif
399       xd->driver_frame_overhead =
400         RTE_ETHER_HDR_LEN + 2 * RTE_VLAN_HLEN + RTE_ETHER_CRC_LEN;
401 #if RTE_VERSION >= RTE_VERSION_NUM(21, 11, 0, 0)
402       q = di.max_rx_pktlen - di.max_mtu;
403
404       /* attempt to protect from bogus value provided by pmd */
405       if (q < (2 * xd->driver_frame_overhead) && q > 0 &&
406           di.max_mtu != UINT16_MAX)
407         xd->driver_frame_overhead = q;
408       dpdk_log_debug ("[%u] min_mtu: %u, max_mtu: %u, min_rx_bufsize: %u, "
409                       "max_rx_pktlen: %u, max_lro_pkt_size: %u",
410                       xd->port_id, di.min_mtu, di.max_mtu, di.min_rx_bufsize,
411                       di.max_rx_pktlen, di.max_lro_pkt_size);
412 #endif
413       dpdk_log_debug ("[%u] driver frame overhead is %u", port_id,
414                       xd->driver_frame_overhead);
415
416       /* number of RX and TX tescriptors */
417       if (devconf->num_rx_desc)
418         xd->conf.n_rx_desc = devconf->num_rx_desc;
419       else if (dr && dr->n_rx_desc)
420         xd->conf.n_rx_desc = dr->n_rx_desc;
421
422       if (devconf->num_tx_desc)
423         xd->conf.n_tx_desc = devconf->num_tx_desc;
424       else if (dr && dr->n_tx_desc)
425         xd->conf.n_tx_desc = dr->n_tx_desc;
426
427       dpdk_log_debug (
428         "[%u] n_rx_queues: %u n_tx_queues: %u n_rx_desc: %u n_tx_desc: %u",
429         port_id, xd->conf.n_rx_queues, xd->conf.n_tx_queues,
430         xd->conf.n_rx_desc, xd->conf.n_tx_desc);
431
432       vec_validate_aligned (xd->rx_queues, xd->conf.n_rx_queues - 1,
433                             CLIB_CACHE_LINE_BYTES);
434       vec_validate_aligned (xd->tx_queues, xd->conf.n_tx_queues - 1,
435                             CLIB_CACHE_LINE_BYTES);
436
437       rte_eth_macaddr_get (port_id, (void *) addr);
438
439       /* create interface */
440       eir.dev_class_index = dpdk_device_class.index;
441       eir.dev_instance = xd->device_index;
442       eir.address = addr;
443       eir.cb.flag_change = dpdk_flag_change;
444       eir.cb.set_max_frame_size = dpdk_set_max_frame_size;
445       xd->hw_if_index = vnet_eth_register_interface (vnm, &eir);
446       hi = vnet_get_hw_interface (vnm, xd->hw_if_index);
447       hi->numa_node = xd->cpu_socket = (i8) rte_eth_dev_socket_id (port_id);
448       sw = vnet_get_hw_sw_interface (vnm, xd->hw_if_index);
449       xd->sw_if_index = sw->sw_if_index;
450       dpdk_log_debug ("[%u] interface %s created", port_id, hi->name);
451
452       if (devconf->tag)
453         vnet_set_sw_interface_tag (vnm, devconf->tag, sw->sw_if_index);
454
455       ethernet_set_flags (vnm, xd->hw_if_index,
456                           ETHERNET_INTERFACE_FLAG_DEFAULT_L3);
457
458       /* assign worker threads */
459       vnet_hw_if_set_input_node (vnm, xd->hw_if_index, dpdk_input_node.index);
460       if (devconf->workers)
461         {
462           int j;
463           q = 0;
464           clib_bitmap_foreach (j, devconf->workers)
465             {
466               dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
467               rxq->queue_index = vnet_hw_if_register_rx_queue (
468                 vnm, xd->hw_if_index, q++, vdm->first_worker_thread_index + j);
469             }
470         }
471       else
472         for (q = 0; q < xd->conf.n_rx_queues; q++)
473           {
474             dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
475             rxq->queue_index = vnet_hw_if_register_rx_queue (
476               vnm, xd->hw_if_index, q, VNET_HW_IF_RXQ_THREAD_ANY);
477           }
478
479       for (q = 0; q < xd->conf.n_tx_queues; q++)
480         {
481           dpdk_tx_queue_t *txq = vec_elt_at_index (xd->tx_queues, q);
482           txq->queue_index =
483             vnet_hw_if_register_tx_queue (vnm, xd->hw_if_index, q);
484         }
485
486       for (q = 0; q < tm->n_vlib_mains; q++)
487         {
488           u32 qi = xd->tx_queues[q % xd->conf.n_tx_queues].queue_index;
489           vnet_hw_if_tx_queue_assign_thread (vnm, qi, q);
490         }
491
492       if (devconf->tso == DPDK_DEVICE_TSO_ON)
493         {
494           /*tcp_udp checksum must be enabled*/
495           if (xd->conf.enable_tcp_udp_checksum == 0)
496             dpdk_log_warn ("[%u] TCP/UDP checksum offload must be enabled",
497                            xd->port_id);
498           else if ((di.tx_offload_capa & RTE_ETH_TX_OFFLOAD_TCP_TSO) == 0)
499             dpdk_log_warn ("[%u] TSO not supported by device", xd->port_id);
500           else
501             xd->conf.enable_tso = 1;
502         }
503
504       if (devconf->max_lro_pkt_size)
505         xd->conf.max_lro_pkt_size = devconf->max_lro_pkt_size;
506
507       dpdk_device_setup (xd);
508
509       /* rss queues should be configured after dpdk_device_setup() */
510       if (devconf->rss_queues)
511         {
512           if (vnet_hw_interface_set_rss_queues (vnet_get_main (), hi,
513                                                 devconf->rss_queues))
514             dpdk_log_warn ("[%u] Failed to set rss queues", port_id);
515         }
516
517       if (vec_len (xd->errors))
518         dpdk_log_err ("[%u] setup failed Errors:\n  %U", port_id,
519                       format_dpdk_device_errors, xd);
520     }
521
522   for (int i = 0; i < vec_len (dm->devices); i++)
523     vnet_hw_if_update_runtime_data (vnm, dm->devices[i].hw_if_index);
524
525   return 0;
526 }
527
528 static void
529 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
530 {
531   vlib_main_t *vm = vlib_get_main ();
532   clib_error_t *error;
533   u8 *pci_addr = 0;
534   int num_whitelisted = vec_len (conf->dev_confs);
535   vlib_pci_device_info_t *d = 0;
536   vlib_pci_addr_t *addr = 0, *addrs;
537   int i;
538
539   addrs = vlib_pci_get_all_dev_addrs ();
540   /* *INDENT-OFF* */
541   vec_foreach (addr, addrs)
542     {
543     dpdk_device_config_t * devconf = 0;
544     vec_reset_length (pci_addr);
545     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
546     if (d)
547     {
548       vlib_pci_free_device_info (d);
549       d = 0;
550       }
551     d = vlib_pci_get_device_info (vm, addr, &error);
552     if (error)
553     {
554       vlib_log_warn (dpdk_main.log_default, "%U", format_clib_error, error);
555       clib_error_free (error);
556       continue;
557     }
558
559     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
560       continue;
561
562     if (num_whitelisted)
563       {
564         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
565
566         if (!p)
567           {
568           skipped_pci:
569             continue;
570           }
571
572         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
573       }
574
575     /* Enforce Device blacklist by vendor and device */
576     for (i = 0; i < vec_len (conf->blacklist_by_pci_vendor_and_device); i++)
577       {
578         u16 vendor, device;
579         vendor = (u16)(conf->blacklist_by_pci_vendor_and_device[i] >> 16);
580         device = (u16)(conf->blacklist_by_pci_vendor_and_device[i] & 0xFFFF);
581         if (d->vendor_id == vendor && d->device_id == device)
582           {
583             /*
584              * Expected case: device isn't whitelisted,
585              * so blacklist it...
586              */
587             if (devconf == 0)
588               {
589                 /* Device is blacklisted */
590                 pool_get (conf->dev_confs, devconf);
591                 hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
592                           devconf - conf->dev_confs);
593                 devconf->pci_addr.as_u32 = addr->as_u32;
594                 devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
595                 devconf->is_blacklisted = 1;
596                 goto skipped_pci;
597               }
598             else /* explicitly whitelisted, ignore the device blacklist  */
599               break;
600           }
601       }
602
603     /* virtio */
604     if (d->vendor_id == 0x1af4 &&
605             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
606              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
607       ;
608     /* vmxnet3 */
609     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
610       {
611         /*
612          * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
613          * the default is to put it in the blacklist.
614          */
615         if (devconf == 0)
616           {
617             pool_get (conf->dev_confs, devconf);
618             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
619                       devconf - conf->dev_confs);
620             devconf->pci_addr.as_u32 = addr->as_u32;
621             devconf->is_blacklisted = 1;
622           }
623       }
624     /* all Intel network devices */
625     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
626       ;
627     /* all Intel QAT devices VFs */
628     else if (d->vendor_id == 0x8086 &&
629              d->device_class == PCI_CLASS_PROCESSOR_CO &&
630              (d->device_id == 0x0443 || d->device_id == 0x18a1 ||
631               d->device_id == 0x19e3 || d->device_id == 0x37c9 ||
632               d->device_id == 0x6f55 || d->device_id == 0x18ef ||
633               d->device_id == 0x4941))
634       ;
635     /* Cisco VIC */
636     else if (d->vendor_id == 0x1137 &&
637         (d->device_id == 0x0043 || d->device_id == 0x0071))
638       ;
639     /* Chelsio T4/T5 */
640     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
641       ;
642     /* Amazon Elastic Network Adapter */
643     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
644       ;
645     /* Cavium Network Adapter */
646     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
647       ;
648     /* Cavium FastlinQ QL41000 Series */
649     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
650       ;
651     /* Mellanox CX3, CX3VF */
652     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
653       {
654         continue;
655       }
656     /* Mellanox CX4, CX4VF, CX4LX, CX4LXVF, CX5, CX5VF, CX5EX, CX5EXVF */
657     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
658       {
659         continue;
660       }
661     /* Mellanox CX6, CX6VF, CX6DX, CX6DXVF */
662     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x101b && d->device_id <= 0x101e)
663       {
664         continue;
665       }
666     /* Broadcom NetXtreme S, and E series only */
667     else if (d->vendor_id == 0x14e4 &&
668         ((d->device_id >= 0x16c0 &&
669                 d->device_id != 0x16c6 && d->device_id != 0x16c7 &&
670                 d->device_id != 0x16dd && d->device_id != 0x16f7 &&
671                 d->device_id != 0x16fd && d->device_id != 0x16fe &&
672                 d->device_id != 0x170d && d->device_id != 0x170c &&
673                 d->device_id != 0x170e && d->device_id != 0x1712 &&
674                 d->device_id != 0x1713) ||
675         (d->device_id == 0x1604 || d->device_id == 0x1605 ||
676          d->device_id == 0x1614 || d->device_id == 0x1606 ||
677          d->device_id == 0x1609 || d->device_id == 0x1614)))
678       ;
679     /* Google vNIC */
680     else if (d->vendor_id == 0x1ae0 && d->device_id == 0x0042)
681       ;
682     else
683       {
684         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
685                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
686                       pci_addr);
687         continue;
688       }
689
690     error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name,
691                                   conf->uio_bind_force);
692
693     if (error)
694       {
695         if (devconf == 0)
696           {
697             pool_get (conf->dev_confs, devconf);
698             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
699                       devconf - conf->dev_confs);
700             devconf->pci_addr.as_u32 = addr->as_u32;
701           }
702         devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
703         devconf->is_blacklisted = 1;
704         clib_error_report (error);
705       }
706   }
707   /* *INDENT-ON* */
708   vec_free (pci_addr);
709   vlib_pci_free_device_info (d);
710 }
711
712 static void
713 dpdk_bind_vmbus_devices_to_uio (dpdk_config_main_t * conf)
714 {
715   clib_error_t *error;
716   vlib_vmbus_addr_t *addrs, *addr = 0;
717   int num_whitelisted = vec_len (conf->dev_confs);
718   int i;
719
720   addrs = vlib_vmbus_get_all_dev_addrs ();
721
722   /* *INDENT-OFF* */
723   vec_foreach (addr, addrs)
724     {
725       dpdk_device_config_t *devconf = 0;
726       if (num_whitelisted)
727         {
728           uword *p =
729             mhash_get (&conf->device_config_index_by_vmbus_addr, addr);
730           if (!p)
731             {
732               /* No devices blacklisted, but have whitelisted. blacklist all
733                * non-whitelisted */
734               pool_get (conf->dev_confs, devconf);
735               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
736                          devconf - conf->dev_confs, 0);
737               devconf->vmbus_addr = *addr;
738               devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
739               devconf->is_blacklisted = 1;
740             skipped_vmbus:
741               continue;
742             }
743
744           devconf = pool_elt_at_index (conf->dev_confs, p[0]);
745         }
746
747       /* Enforce Device blacklist by vmbus_addr */
748       for (i = 0; i < vec_len (conf->blacklist_by_vmbus_addr); i++)
749         {
750           vlib_vmbus_addr_t *a1 = &conf->blacklist_by_vmbus_addr[i];
751           vlib_vmbus_addr_t *a2 = addr;
752           if (memcmp (a1, a2, sizeof (vlib_vmbus_addr_t)) == 0)
753             {
754               if (devconf == 0)
755                 {
756                   /* Device not whitelisted */
757                   pool_get (conf->dev_confs, devconf);
758                   mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
759                              devconf - conf->dev_confs, 0);
760                   devconf->vmbus_addr = *addr;
761                   devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
762                   devconf->is_blacklisted = 1;
763                   goto skipped_vmbus;
764                 }
765               else
766                 {
767                   break;
768                 }
769             }
770         }
771
772       error = vlib_vmbus_bind_to_uio (addr);
773       if (error)
774         {
775           if (devconf == 0)
776             {
777               pool_get (conf->dev_confs, devconf);
778               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
779                          devconf - conf->dev_confs, 0);
780               devconf->vmbus_addr = *addr;
781             }
782           devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
783           devconf->is_blacklisted = 1;
784           clib_error_report (error);
785         }
786     }
787   /* *INDENT-ON* */
788 }
789
790 uword
791 unformat_max_simd_bitwidth (unformat_input_t *input, va_list *va)
792 {
793   uword *max_simd_bitwidth = va_arg (*va, uword *);
794
795   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
796     {
797       if (!unformat (input, "%u", max_simd_bitwidth))
798         goto error;
799
800       if (*max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_256 &&
801           *max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_512)
802         goto error;
803     }
804   return 1;
805 error:
806   return 0;
807 }
808
809 static clib_error_t *
810 dpdk_device_config (dpdk_config_main_t *conf, void *addr,
811                     dpdk_device_addr_type_t addr_type, unformat_input_t *input,
812                     u8 is_default)
813 {
814   clib_error_t *error = 0;
815   uword *p;
816   dpdk_device_config_t *devconf = 0;
817   unformat_input_t sub_input;
818
819   if (is_default)
820     {
821       devconf = &conf->default_devconf;
822     }
823   else if (addr_type == VNET_DEV_ADDR_PCI)
824     {
825       p = hash_get (conf->device_config_index_by_pci_addr,
826                     ((vlib_pci_addr_t *) (addr))->as_u32);
827
828       if (!p)
829         {
830           pool_get (conf->dev_confs, devconf);
831           hash_set (conf->device_config_index_by_pci_addr,
832                     ((vlib_pci_addr_t *) (addr))->as_u32,
833                     devconf - conf->dev_confs);
834         }
835       else
836         return clib_error_return (0,
837                                   "duplicate configuration for PCI address %U",
838                                   format_vlib_pci_addr, addr);
839     }
840   else if (addr_type == VNET_DEV_ADDR_VMBUS)
841     {
842       p = mhash_get (&conf->device_config_index_by_vmbus_addr,
843                      (vlib_vmbus_addr_t *) (addr));
844
845       if (!p)
846         {
847           pool_get (conf->dev_confs, devconf);
848           mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
849                      devconf - conf->dev_confs, 0);
850         }
851       else
852         return clib_error_return (
853           0, "duplicate configuration for VMBUS address %U",
854           format_vlib_vmbus_addr, addr);
855     }
856
857   if (addr_type == VNET_DEV_ADDR_PCI)
858     {
859       devconf->pci_addr.as_u32 = ((vlib_pci_addr_t *) (addr))->as_u32;
860       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
861       devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
862     }
863   else if (addr_type == VNET_DEV_ADDR_VMBUS)
864     {
865       devconf->vmbus_addr = *((vlib_vmbus_addr_t *) (addr));
866       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
867       devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
868     }
869
870   if (!input)
871     return 0;
872
873   unformat_skip_white_space (input);
874   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
875     {
876       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
877         ;
878       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
879         ;
880       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
881         ;
882       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
883         ;
884       else if (unformat (input, "name %v", &devconf->name))
885         ;
886       else if (unformat (input, "tag %s", &devconf->tag))
887         ;
888       else if (unformat (input, "workers %U", unformat_bitmap_list,
889                          &devconf->workers))
890         ;
891       else
892         if (unformat
893             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
894         {
895           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
896           if (error)
897             break;
898         }
899       else if (unformat (input, "tso on"))
900         {
901           devconf->tso = DPDK_DEVICE_TSO_ON;
902         }
903       else if (unformat (input, "tso off"))
904         {
905           devconf->tso = DPDK_DEVICE_TSO_OFF;
906         }
907       else if (unformat (input, "devargs %s", &devconf->devargs))
908         ;
909       else if (unformat (input, "rss-queues %U",
910                          unformat_bitmap_list, &devconf->rss_queues))
911         ;
912       else if (unformat (input, "max-lro-pkt-size %u",
913                          &devconf->max_lro_pkt_size))
914         ;
915       else
916         {
917           error = clib_error_return (0, "unknown input `%U'",
918                                      format_unformat_error, input);
919           break;
920         }
921     }
922
923   if (error)
924     return error;
925
926   if (devconf->workers && devconf->num_rx_queues == 0)
927     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
928   else if (devconf->workers &&
929            clib_bitmap_count_set_bits (devconf->workers) !=
930            devconf->num_rx_queues)
931     error = clib_error_return (0,
932                                "%U: number of worker threads must be "
933                                "equal to number of rx queues",
934                                format_vlib_pci_addr, addr);
935
936   return error;
937 }
938
939 static clib_error_t *
940 dpdk_log_read_ready (clib_file_t * uf)
941 {
942   unformat_input_t input;
943   u8 *line, *s = 0;
944   int n, n_try;
945
946   n = n_try = 4096;
947   while (n == n_try)
948     {
949       uword len = vec_len (s);
950       vec_resize (s, len + n_try);
951
952       n = read (uf->file_descriptor, s + len, n_try);
953       if (n < 0 && errno != EAGAIN)
954         return clib_error_return_unix (0, "read");
955       vec_set_len (s, len + (n < 0 ? 0 : n));
956     }
957
958   unformat_init_vector (&input, s);
959
960   while (unformat_user (&input, unformat_line, &line))
961     {
962       int skip = 0;
963       vec_add1 (line, 0);
964
965       /* unfortunatelly DPDK polutes log with this error messages
966        * even when we pass --in-memory which means no secondary process */
967       if (strstr ((char *) line, "WARNING! Base virtual address hint"))
968         skip = 1;
969       else if (strstr ((char *) line, "This may cause issues with mapping "
970                                       "memory into secondary processes"))
971         skip = 1;
972       vec_pop (line);
973       if (!skip)
974         dpdk_log_notice ("%v", line);
975       vec_free (line);
976     }
977
978   unformat_free (&input);
979   return 0;
980 }
981
982 static clib_error_t *
983 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
984 {
985   dpdk_main_t *dm = &dpdk_main;
986   clib_error_t *error = 0;
987   dpdk_config_main_t *conf = &dpdk_config_main;
988   vlib_thread_main_t *tm = vlib_get_thread_main ();
989   dpdk_device_config_t *devconf;
990   vlib_pci_addr_t pci_addr = { 0 };
991   vlib_vmbus_addr_t vmbus_addr = { 0 };
992   unformat_input_t sub_input;
993   uword default_hugepage_sz, x;
994   u8 *s, *tmp = 0;
995   int ret, i;
996   int num_whitelisted = 0;
997   int eal_no_hugetlb = 0;
998   u8 no_pci = 0;
999   u8 no_vmbus = 0;
1000   u8 no_dsa = 0;
1001   u8 file_prefix = 0;
1002   u8 *socket_mem = 0;
1003   u8 *huge_dir_path = 0;
1004   u32 vendor, device, domain, bus, func;
1005   void *fmt_func;
1006   void *fmt_addr;
1007
1008   huge_dir_path =
1009     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1010
1011   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1012   mhash_init (&conf->device_config_index_by_vmbus_addr, sizeof (uword),
1013               sizeof (vlib_vmbus_addr_t));
1014
1015   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1016     {
1017       /* Prime the pump */
1018       if (unformat (input, "no-hugetlb"))
1019         {
1020           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1021           eal_no_hugetlb = 1;
1022         }
1023       else if (unformat (input, "telemetry"))
1024         conf->enable_telemetry = 1;
1025
1026       else if (unformat (input, "enable-tcp-udp-checksum"))
1027         {
1028           dm->default_port_conf.enable_tcp_udp_checksum = 1;
1029           if (unformat (input, "enable-outer-checksum-offload"))
1030             dm->default_port_conf.enable_outer_checksum_offload = 1;
1031         }
1032       else if (unformat (input, "no-tx-checksum-offload"))
1033         dm->default_port_conf.disable_tx_checksum_offload = 1;
1034
1035       else if (unformat (input, "decimal-interface-names"))
1036         conf->interface_name_format_decimal = 1;
1037
1038       else if (unformat (input, "no-multi-seg"))
1039         dm->default_port_conf.disable_multi_seg = 1;
1040       else if (unformat (input, "enable-lro"))
1041         dm->default_port_conf.enable_lro = 1;
1042       else if (unformat (input, "max-simd-bitwidth %U",
1043                          unformat_max_simd_bitwidth, &conf->max_simd_bitwidth))
1044         ;
1045       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1046                          &sub_input))
1047         {
1048           error =
1049             dpdk_device_config (conf, 0, VNET_DEV_ADDR_ANY, &sub_input, 1);
1050
1051           if (error)
1052             return error;
1053         }
1054       else
1055         if (unformat
1056             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1057              unformat_vlib_cli_sub_input, &sub_input))
1058         {
1059           error = dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI,
1060                                       &sub_input, 0);
1061
1062           if (error)
1063             return error;
1064
1065           num_whitelisted++;
1066         }
1067       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1068         {
1069           error =
1070             dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI, 0, 0);
1071
1072           if (error)
1073             return error;
1074
1075           num_whitelisted++;
1076         }
1077       else if (unformat (input, "dev %U %U", unformat_vlib_vmbus_addr,
1078                          &vmbus_addr, unformat_vlib_cli_sub_input, &sub_input))
1079         {
1080           error = dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS,
1081                                       &sub_input, 0);
1082
1083           if (error)
1084             return error;
1085
1086           num_whitelisted++;
1087         }
1088       else if (unformat (input, "dev %U", unformat_vlib_vmbus_addr,
1089                          &vmbus_addr))
1090         {
1091           error =
1092             dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS, 0, 0);
1093
1094           if (error)
1095             return error;
1096
1097           num_whitelisted++;
1098         }
1099       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1100         ;
1101       else if (unformat (input, "uio-bind-force"))
1102         conf->uio_bind_force = 1;
1103       else if (unformat (input, "socket-mem %s", &socket_mem))
1104         ;
1105       else if (unformat (input, "no-pci"))
1106         {
1107           no_pci = 1;
1108           tmp = format (0, "--no-pci%c", 0);
1109           vec_add1 (conf->eal_init_args, tmp);
1110         }
1111       else if (unformat (input, "no-dsa"))
1112         no_dsa = 1;
1113       else if (unformat (input, "blacklist %U", unformat_vlib_vmbus_addr,
1114                          &vmbus_addr))
1115         {
1116           vec_add1 (conf->blacklist_by_vmbus_addr, vmbus_addr);
1117         }
1118       else
1119         if (unformat
1120             (input, "blacklist %x:%x:%x.%x", &domain, &bus, &device, &func))
1121         {
1122           tmp = format (0, "-b%c", 0);
1123           vec_add1 (conf->eal_init_args, tmp);
1124           tmp =
1125             format (0, "%04x:%02x:%02x.%x%c", domain, bus, device, func, 0);
1126           vec_add1 (conf->eal_init_args, tmp);
1127         }
1128       else if (unformat (input, "blacklist %x:%x", &vendor, &device))
1129         {
1130           u32 blacklist_entry;
1131           if (vendor > 0xFFFF)
1132             return clib_error_return (0, "blacklist PCI vendor out of range");
1133           if (device > 0xFFFF)
1134             return clib_error_return (0, "blacklist PCI device out of range");
1135           blacklist_entry = (vendor << 16) | (device & 0xffff);
1136           vec_add1 (conf->blacklist_by_pci_vendor_and_device,
1137                     blacklist_entry);
1138         }
1139       else if (unformat (input, "no-vmbus"))
1140         {
1141           no_vmbus = 1;
1142           tmp = format (0, "--no-vmbus%c", 0);
1143           vec_add1 (conf->eal_init_args, tmp);
1144         }
1145
1146 #define _(a)                                    \
1147       else if (unformat(input, #a))             \
1148         {                                       \
1149           tmp = format (0, "--%s%c", #a, 0);    \
1150           vec_add1 (conf->eal_init_args, tmp);    \
1151         }
1152       foreach_eal_double_hyphen_predicate_arg
1153 #undef _
1154 #define _(a)                                          \
1155         else if (unformat(input, #a " %s", &s))       \
1156           {                                           \
1157             if (!strncmp(#a, "file-prefix", 11)) \
1158               file_prefix = 1;                        \
1159             tmp = format (0, "--%s%c", #a, 0);        \
1160             vec_add1 (conf->eal_init_args, tmp);      \
1161             vec_add1 (s, 0);                          \
1162             if (!strncmp(#a, "vdev", 4))              \
1163               if (strstr((char*)s, "af_packet"))      \
1164                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1165             vec_add1 (conf->eal_init_args, s);        \
1166           }
1167         foreach_eal_double_hyphen_arg
1168 #undef _
1169 #define _(a,b)                                          \
1170           else if (unformat(input, #a " %s", &s))       \
1171             {                                           \
1172               tmp = format (0, "-%s%c", #b, 0);         \
1173               vec_add1 (conf->eal_init_args, tmp);      \
1174               vec_add1 (s, 0);                          \
1175               vec_add1 (conf->eal_init_args, s);        \
1176             }
1177         foreach_eal_single_hyphen_arg
1178 #undef _
1179         else if (unformat (input, "default"))
1180         ;
1181
1182       else if (unformat_skip_white_space (input))
1183         ;
1184       else return clib_error_return (0, "unknown input `%U'",
1185                                      format_unformat_error, input);
1186     }
1187
1188   if (!conf->uio_driver_name)
1189     conf->uio_driver_name = format (0, "auto%c", 0);
1190
1191   if (eal_no_hugetlb == 0)
1192     {
1193       vec_add1 (conf->eal_init_args, (u8 *) "--in-memory");
1194
1195       default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1196
1197       /* *INDENT-OFF* */
1198       clib_bitmap_foreach (x, tm->cpu_socket_bitmap)
1199         {
1200           clib_error_t *e;
1201           uword n_pages;
1202           /* preallocate at least 16MB of hugepages per socket,
1203             if more is needed it is up to consumer to preallocate more */
1204           n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1205           n_pages /= default_hugepage_sz;
1206
1207           if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1208             clib_error_report (e);
1209         }
1210       /* *INDENT-ON* */
1211     }
1212
1213   /* on/off dpdk's telemetry thread */
1214   if (conf->enable_telemetry == 0)
1215     {
1216       vec_add1 (conf->eal_init_args, (u8 *) "--no-telemetry");
1217     }
1218
1219   if (!file_prefix)
1220     {
1221       tmp = format (0, "--file-prefix%c", 0);
1222       vec_add1 (conf->eal_init_args, tmp);
1223       tmp = format (0, "vpp%c", 0);
1224       vec_add1 (conf->eal_init_args, tmp);
1225     }
1226
1227   if (no_pci == 0 && geteuid () == 0)
1228     dpdk_bind_devices_to_uio (conf);
1229
1230   if (no_vmbus == 0 && geteuid () == 0)
1231     dpdk_bind_vmbus_devices_to_uio (conf);
1232
1233 #define _(x) \
1234     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1235       devconf->x = conf->default_devconf.x ;
1236
1237   pool_foreach (devconf, conf->dev_confs)  {
1238
1239     /* default per-device config items */
1240     foreach_dpdk_device_config_item
1241
1242       /* copy tso config from default device */
1243       _ (tso)
1244
1245       /* copy tso config from default device */
1246       _ (devargs)
1247
1248       /* copy rss_queues config from default device */
1249       _ (rss_queues)
1250
1251       /* assume that default is PCI */
1252       fmt_func = format_vlib_pci_addr;
1253     fmt_addr = &devconf->pci_addr;
1254
1255     if (devconf->dev_addr_type == VNET_DEV_ADDR_VMBUS)
1256       {
1257         fmt_func = format_vlib_vmbus_addr;
1258         fmt_addr = &devconf->vmbus_addr;
1259       }
1260
1261     /* add DPDK EAL whitelist/blacklist entry */
1262     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1263       {
1264         tmp = format (0, "-a%c", 0);
1265         vec_add1 (conf->eal_init_args, tmp);
1266         if (devconf->devargs)
1267           {
1268             tmp =
1269               format (0, "%U,%s%c", fmt_func, fmt_addr, devconf->devargs, 0);
1270           }
1271           else
1272           {
1273             tmp = format (0, "%U%c", fmt_func, fmt_addr, 0);
1274           }
1275           vec_add1 (conf->eal_init_args, tmp);
1276       }
1277     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1278       {
1279         tmp = format (0, "-b%c", 0);
1280         vec_add1 (conf->eal_init_args, tmp);
1281         tmp = format (0, "%U%c", fmt_func, fmt_addr, 0);
1282         vec_add1 (conf->eal_init_args, tmp);
1283       }
1284   }
1285
1286 #undef _
1287
1288   if (socket_mem)
1289     clib_warning ("socket-mem argument is deprecated");
1290
1291   /* NULL terminate the "argv" vector, in case of stupidity */
1292   vec_add1 (conf->eal_init_args, 0);
1293   vec_dec_len (conf->eal_init_args, 1);
1294
1295   /* Set up DPDK eal and packet mbuf pool early. */
1296
1297   int log_fds[2] = { 0 };
1298   if (pipe (log_fds) == 0)
1299     {
1300       if (fcntl (log_fds[0], F_SETFL, O_NONBLOCK) == 0 &&
1301           fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1302         {
1303           FILE *f = fdopen (log_fds[1], "a");
1304           if (f && rte_openlog_stream (f) == 0)
1305             {
1306               clib_file_t t = { 0 };
1307               t.read_function = dpdk_log_read_ready;
1308               t.file_descriptor = log_fds[0];
1309               t.description = format (0, "DPDK logging pipe");
1310               clib_file_add (&file_main, &t);
1311             }
1312         }
1313       else
1314         {
1315           close (log_fds[0]);
1316           close (log_fds[1]);
1317         }
1318     }
1319
1320   vm = vlib_get_main ();
1321
1322   if (no_dsa)
1323     {
1324       struct rte_bus *bus;
1325       bus = rte_bus_find_by_name ("dsa");
1326       if (bus)
1327         rte_bus_unregister (bus);
1328     }
1329   /* make copy of args as rte_eal_init tends to mess up with arg array */
1330   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1331     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1332                                       conf->eal_init_args[i]);
1333
1334   vec_terminate_c_string (conf->eal_init_args_str);
1335
1336   dpdk_log_notice ("EAL init args: %s", conf->eal_init_args_str);
1337   ret = rte_eal_init (vec_len (conf->eal_init_args),
1338                       (char **) conf->eal_init_args);
1339   if (ret < 0)
1340     return clib_error_return (0, "rte_eal_init returned %d", ret);
1341
1342   /* enable the AVX-512 vPMDs in DPDK */
1343   if (clib_cpu_supports_avx512_bitalg () &&
1344       conf->max_simd_bitwidth == DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1345     rte_vect_set_max_simd_bitwidth (RTE_VECT_SIMD_512);
1346   else if (conf->max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1347     rte_vect_set_max_simd_bitwidth (conf->max_simd_bitwidth ==
1348                                         DPDK_MAX_SIMD_BITWIDTH_256 ?
1349                                       RTE_VECT_SIMD_256 :
1350                                       RTE_VECT_SIMD_512);
1351
1352   /* lazy umount hugepages */
1353   umount2 ((char *) huge_dir_path, MNT_DETACH);
1354   rmdir ((char *) huge_dir_path);
1355   vec_free (huge_dir_path);
1356
1357   /* main thread 1st */
1358   if ((error = dpdk_buffer_pools_create (vm)))
1359     return error;
1360
1361   return 0;
1362 }
1363
1364 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1365
1366 void
1367 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1368 {
1369   vnet_main_t *vnm = vnet_get_main ();
1370   struct rte_eth_link prev_link = xd->link;
1371   u32 hw_flags = 0;
1372   u8 hw_flags_chg = 0;
1373
1374   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1375   clib_memset (&xd->link, 0, sizeof (xd->link));
1376   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1377
1378   if (LINK_STATE_ELOGS)
1379     {
1380       ELOG_TYPE_DECLARE (e) =
1381       {
1382       .format =
1383           "update-link-state: sw_if_index %d, admin_up %d,"
1384           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1385
1386       struct
1387       {
1388         u32 sw_if_index;
1389         u8 admin_up;
1390         u8 old_link_state;
1391         u8 new_link_state;
1392       } *ed;
1393       ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1394       ed->sw_if_index = xd->sw_if_index;
1395       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1396       ed->old_link_state = (u8)
1397         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1398       ed->new_link_state = (u8) xd->link.link_status;
1399     }
1400
1401   hw_flags_chg = ((xd->link.link_duplex != prev_link.link_duplex) ||
1402                   (xd->link.link_status != prev_link.link_status));
1403
1404   if (xd->link.link_speed != prev_link.link_speed)
1405     vnet_hw_interface_set_link_speed (vnm, xd->hw_if_index,
1406                                       (xd->link.link_speed == UINT32_MAX) ?
1407                                               UINT32_MAX :
1408                                               xd->link.link_speed * 1000);
1409
1410   if (hw_flags_chg)
1411     {
1412       if (xd->link.link_status)
1413         hw_flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
1414
1415       switch (xd->link.link_duplex)
1416         {
1417         case RTE_ETH_LINK_HALF_DUPLEX:
1418           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1419           break;
1420         case RTE_ETH_LINK_FULL_DUPLEX:
1421           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1422           break;
1423         default:
1424           break;
1425         }
1426
1427       if (LINK_STATE_ELOGS)
1428         {
1429           ELOG_TYPE_DECLARE (e) =
1430           {
1431           .format =
1432               "update-link-state: sw_if_index %d, new flags %d",.format_args
1433               = "i4i4",};
1434
1435           struct
1436           {
1437             u32 sw_if_index;
1438             u32 flags;
1439           } *ed;
1440           ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1441           ed->sw_if_index = xd->sw_if_index;
1442           ed->flags = hw_flags;
1443         }
1444       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1445     }
1446 }
1447
1448 static uword
1449 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1450 {
1451   clib_error_t *error;
1452   dpdk_main_t *dm = &dpdk_main;
1453   dpdk_device_t *xd;
1454   vlib_thread_main_t *tm = vlib_get_thread_main ();
1455
1456   vlib_worker_thread_barrier_sync (vm);
1457   error = dpdk_lib_init (dm);
1458
1459   if (error)
1460     clib_error_report (error);
1461
1462   if (dpdk_cryptodev_init)
1463     {
1464       error = dpdk_cryptodev_init (vm);
1465       if (error)
1466         {
1467           vlib_log_warn (dpdk_main.log_cryptodev, "%U", format_clib_error,
1468                          error);
1469           clib_error_free (error);
1470         }
1471     }
1472
1473   vlib_worker_thread_barrier_release (vm);
1474   tm->worker_thread_release = 1;
1475
1476   f64 now = vlib_time_now (vm);
1477   vec_foreach (xd, dm->devices)
1478   {
1479     dpdk_update_link_state (xd, now);
1480   }
1481
1482   while (1)
1483     {
1484       /*
1485        * check each time through the loop in case intervals are changed
1486        */
1487       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1488         dm->link_state_poll_interval : dm->stat_poll_interval;
1489
1490       vlib_process_wait_for_event_or_clock (vm, min_wait);
1491
1492       if (dm->admin_up_down_in_progress)
1493         /* skip the poll if an admin up down is in progress (on any interface) */
1494         continue;
1495
1496       vec_foreach (xd, dm->devices)
1497       {
1498         f64 now = vlib_time_now (vm);
1499         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1500           dpdk_update_counters (xd, now);
1501         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1502           dpdk_update_link_state (xd, now);
1503
1504       }
1505     }
1506
1507   return 0;
1508 }
1509
1510 /* *INDENT-OFF* */
1511 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1512     .function = dpdk_process,
1513     .type = VLIB_NODE_TYPE_PROCESS,
1514     .name = "dpdk-process",
1515     .process_log2_n_stack_bytes = 17,
1516 };
1517 /* *INDENT-ON* */
1518
1519 static clib_error_t *
1520 dpdk_init (vlib_main_t * vm)
1521 {
1522   dpdk_main_t *dm = &dpdk_main;
1523   clib_error_t *error = 0;
1524
1525   /* verify that structs are cacheline aligned */
1526   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1527                  "Cache line marker must be 1st element in dpdk_device_t");
1528   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1529                  CLIB_CACHE_LINE_BYTES,
1530                  "Data in cache line 0 is bigger than cache line size");
1531   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1532                  "Cache line marker must be 1st element in frame_queue_trace_t");
1533
1534   dpdk_cli_reference ();
1535
1536   dm->conf = &dpdk_config_main;
1537
1538   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1539
1540   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1541   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1542
1543   dm->log_default = vlib_log_register_class ("dpdk", 0);
1544   dm->log_cryptodev = vlib_log_register_class ("dpdk", "cryptodev");
1545
1546   return error;
1547 }
1548
1549 VLIB_INIT_FUNCTION (dpdk_init);
1550
1551 static clib_error_t *
1552 dpdk_worker_thread_init (vlib_main_t *vm)
1553 {
1554   if (rte_thread_register () < 0)
1555     clib_panic ("dpdk: cannot register thread %u - %s", vm->thread_index,
1556                 rte_strerror (rte_errno));
1557   return 0;
1558 }
1559
1560 VLIB_WORKER_INIT_FUNCTION (dpdk_worker_thread_init);