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