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