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