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