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