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